.gravity-container,
.gravity-container * {
    box-sizing: border-box;
}

.gravity-container {
    background:rgb(255,255,255);
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}

.video {
    height: 98%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.video > video {
    object-fit: contain !important;
}

.video-cover {
    background-color: rgb(255,255,255);
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background-color 0.5s;
    width: 100%;
    z-index: 3;
}
.video-cover.fade {
    background-color: transparent;
}

.video-mute {
    bottom: 6%;
    cursor: pointer;
    display: none;
    left: 20px;
    max-width: 53px;
    min-width: 40px;
    opacity: 1;
    position: absolute;
    width: 4%;
    z-index: 4;
}

.video-mute.show {
    display: block;
}

.video-mute .unmute {
    display: none;
}

.video-mute.muted .mute {
    display: none;
}

.video-mute.muted .unmute {
    display: block;
}

.video-mute > svg {
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Define mute/unmute button color */
.video-mute .unmute,
.video-mute .mute {
    fill: rgba(233, 233, 233, 0.9);
}

/* Video aspect ratio */
.ar-185-1 {
    left: -2%;
    width: 104%
}

.ar-235-1 {
    left: -17.5%;
    width: 135%;
}

.ar-4-3 {
    left: -20%;
    width: 140%;
}

/* Sub Container */
.sub-container {
    height: 100%;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

/* Background (load-in image) */
.background {
    height: 100%;
    left: 0;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.4s;
    width: 100%;
    z-index: 1;
}

/* Overlay */
.overlay {
    height: 100%;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: opacity 0.3s;
    top: 0;
    width: auto;
    z-index: 2;
}

/* Common */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

a:focus,
a:visited,
a:active,
a:hover {
    border: none;
    outline: 0;
}

#play {
    opacity: 0;
}
