/* Styles for the CoverPop.js plugin */

.CoverPop-open,
.CoverPop-open body {
    overflow: hidden;
}

#CoverPop-cover {
    background:rgba(0,0,0,0.8);
    display: none;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    -webkit-animation: fade-in .25s ease-in;
    -moz-animation-name: fade-in .25s ease-in;
    -ms-animation-name: fade-in .25s ease-in;
    -o-animation-name: fade-in .25s ease-in;
    animation-name: fade-in .25s ease-in;
}

    .CoverPop-open #CoverPop-cover {
        display: block;
    }
.CoverPop-content.splash-center {
    background: none repeat scroll 0 0 #fff;
    left: 0;
    margin: auto;
    padding: 40px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 100px;
    width: 600px;
}

a.CoverPop-close {
    border: medium none;
    color: #333 !important;
    font-family: "FontAwesome";
    font-size: 20px;
    opacity: 0.3;
    position: absolute;
    right: 10px;
    top: 5px;
    height:20px;
    width:20px;
}
a.CoverPop-close:after {
    content: "\f00d";
    position:absolute;
    left:0;
    top:0;
}
@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}
