body.-jsplash-opened {
    overflow-y: hidden !important;
}

.jsplash-viewport {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.17);
    opacity: 0;
    z-index: 9999;
    animation: jssplash-fade-out 300ms both cubic-bezier(0.22, 0.61, 0.36, 1);
}

.jsplash-blured {
    filter: blur(4px);
}

.jsplash-viewport.jsplash-visible {
    animation: jssplash-fade-in 400ms both cubic-bezier(0.13, 0.97, 0.53, 1.01);
}

.jsplash-closebtn {
    position: absolute;
    top: -7px;
    right: -10px;
    cursor: pointer;
    z-index: 100;
    font: normal normal normal 14px/1 FontAwesome;
    background-color: #281d11;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 14%), -2px 6px 6px -2px rgb(0 0 0 / 42%);
    padding: 0;
    font-size: 30px;
    line-height: 25px;
}


.jsplash-closebtn:before {
    content: "\f05c";
}

.jsplash-wrapper {
    background-color: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 30px 90px -20px rgba(0, 0, 0, 0.3);
    border-radius: 1px;
    padding: 20px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.jsplash-inner {
    position: relative;
    max-width: 400px;
    height: 100%;
    overflow: auto;
    text-align: center;
}

.jsplash-wrapper.jsplash-fullscreen {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-y: auto;
}

.jsplash-fullscreen .jsplash-inner {
    padding: 0 12px;
    max-width: 100%;
    height: 100%;
    overflow: auto;
}

@keyframes jssplash-fade-out {
    0% {
        opacity: 1;
        transform: none;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }
}

@keyframes jssplash-fade-in {
    0% {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}
