body {
    overflow: hidden;
}
body > *:not(#afis-loading) {
    opacity: 0;
}
body.show > * {
    opacity: 1 !important;
}
body.init {
    overflow: auto;
}
#afis-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}
#afis-video {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
}
#afis-video.contain {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#btn-unmute {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .5s all ease-in-out;
    transition-delay: 1s;
    z-index: 99999;
}
#btn-unmute > button {
    display: inline-block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    color: #aaa !important;
    background-color: transparent !important;
    border: 2px solid #aaa !important;
    text-align: center;
    cursor: pointer;
}
#btn-unmute > button::after {
    content: 'Sound On';
}
#btn-unmute > button.on::after {
    content: 'Sound Off';
}