/* Styles for the CoverPop.js plugin */


html,
body {
    overflow: auto;
}

body {
    position: relative;
}

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

#CoverPop-cover {
    display: none;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    -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;
}
.splash {
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,.4);
}
.splash-center {
    text-align: center;
    width: 540px;
    height: 410px;
    margin: 10% auto 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
}
.splash-center img {
    width: 540px;
    height: 410px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow:    0px 0px 20px 5px rgba(0, 0, 0, 0.5);
    box-shadow:         0px 0px 20px 5px rgba(0, 0, 0, 0.5);
}
#pop-close {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
}

@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}
