/* Styles for the CoverPop.js plugin */
html,
body {
    overflow: auto;
}

body {
    position: relative;
}

.CoverPop-open,
.CoverPop-open body {
    overflow: hidden;
}

#CoverPop-cover {
    background-color: transparent;
    background-color: rgba(0,0,0,0.6);
    display: none;
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}

.CoverPop-open #CoverPop-cover {
    display: block;
}

.CoverPop-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.CoverPop-wrapper-box {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.CoverPop-content {
    border-radius: 5px;
    background-color: #FFF;
    display: inline-block;
    max-width: 720px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    padding:10px;
}

.CoverPop-content, .CoverPop-content h2 {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 300; 
    color:#6d6e70;
}

.CoverPop-content h2 {
    font-size: 20px;
    margin: 20px;
}

.CoverPop-content p {
    margin: 15px 0;
}

.CoverPop-content .announce-text {
    line-height: 20px;
}

.CoverPop-content .goto-btn {
    border: 2px solid #ccc;
    border-radius: 20px;
    color: #aaa;
    display: inline-block;
    margin: 0 10px;
    min-width: 150px;
    padding: 5px 10px;
    text-decoration: none;
}

.CoverPop-content .goto-btn.goto-new {
    border-color: #f9a01e;
    color: #f9a01e;
    font-weight: bold;
}

.CoverPop-content .goto-btn.goto-new:hover {
    background-color: #f9a01e;
    border-color: #f9a01e;
    color: #fff;
    font-weight: bold;
}