/* 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; */
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4000;
    -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: flex;
    justify-content: center;
    align-items: center;
}

.splash{
    background: rgba(1, 1, 1, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
}

.splash-center {
    padding: 24px;
    background: white;
    text-align: center;
    border-radius: 4px;
}



@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}