/* 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: white;
    position: absolute;
    font-size: 100px;
    font-family: lato;
    font-weight: lighter;
    color: white!important;
    opacity: 0.3;
    right: -50px;
    top: -120px;
}
@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}