.interstitial-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.85));
    z-index: 2147483638;
}

.interstitial-container-inner {
    position: absolute;
    width: 300px;
    height: 470px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    transform: translateY(-50%);
}

.interstitial-progress {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    width: 0%;
    height: 4px;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.interstitial-close {
    position: absolute;
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    background-image: url(../images/inter/interstitial-close.svg?v4);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    z-index: +1;
    cursor: pointer;
    
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.interstitial-body {
    background-image: url(../images/inter/puff.svg?v4);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 72px 72px;
    width: 100%;
    height: 100%;
    overflow: hidden;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.interstitial-body video {
    width: 300px;
    height: 470px;
}

.interstitial-unmute {
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 42px;
    height: 42px;
    z-index: +1;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url(../images/inter/interstitial-unmute-v2.svg?26);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

@media screen and (min-width: 750px) {
    .interstitial-container-inner {
        width: 360px !important;
        height: 564px !important;
        margin-left: -180px !important;
    }

    .interstitial-body video {
        width: 360px !important;
        height: 564px !important;
    }
}