/* 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: 1031;
    -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;
    }


@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.splash {
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
}

.splash-center {
    max-width: 540px;
    background: #fff;
    padding: 20px;
    margin: 10% auto 0;
    box-shadow: 0px 0px 25px 5px #999;
    border-radius: 10px;
    position: relative;
}

.close-splash {
    border-radius: 7px;
    font: bold 131% sans-serif;
    padding: 4px 6px 2px;
    position: absolute;
    right: -7px;
    top: -7px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
