@font-face {
    font-family: "Futura Medium";
    font-display: swap;
    src: url(../fonts/0a41510f-c527-4001-89c5-d66d2c9ed34b.4030bf57.eot?#iefix);
    src: url(../fonts/0a41510f-c527-4001-89c5-d66d2c9ed34b.4030bf57.eot?#iefix) format("eot"),
         url(../fonts/e17c7943-8db2-4470-9e2a-74a8d01f6776.aca56319.woff2) format("woff2"),
         url(../fonts/6c72b0cb-89a1-4da9-8574-9244967bd9d6.d38474d1.woff) format("woff"),
         url(../fonts/dd79c75a-b0c9-4d70-a5a7-bdde1d5449fd.50792346.ttf) format("truetype");
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body,
html {
    height: 100%;
    overflow: hidden;
    font-family: "Futura Medium";
}

body {
    background-color: #fff;
    padding: 0;
    margin: 0;
}

#app {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    height: 100vh;
}

#app .placeholder,
#app .video-thumbnail {
    display: flex;
    flex-basis: 25%;
    height: 33.33vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 1.25em;
}

#app .video-thumbnail em {
    font-size: 0.75em;
}

#app .placeholder.black {
    background-color: #000;
}

#app .placeholder.white {
    background-color: #fff;
}

#app .placeholder.gold {
    background-color: #a57d29;
}

#app .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-basis: 50%;
    height: 33.33vh;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
}

#app .logo img {
    width: 60%;
}

#app .video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#app .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
}

#app .video-thumbnail img ~ span {
    position: absolute;
    padding: 10px 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.85);
}

#app .video-thumbnail img ~ span.left {
    left: 0;
}

#app .video-thumbnail img ~ span.right {
    right: 0;
}

#app .video-thumbnail img ~ span.top {
    top: 0;
}

#app .video-thumbnail img ~ span.bottom {
    bottom: 0;
}

#app .video-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 900;
    background-color: #000;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

#app .video-fullscreen.active {
    pointer-events: all;
}

#app .video-fullscreen .fit {
    width: 100%;
    height: 100%;
}

#app .video-fullscreen .close {
    position: absolute;
    display: block;
    bottom: 40px;
    right: 40px;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    border: 0 solid;
    border-radius: 50%;
    background-color: #a57d29;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    will-change: opacity;
    transform: translateZ(0);
}

#app .video-fullscreen .close:hover {
    opacity: 1;
}

#app .video-fullscreen .close img {
    margin: 22px;
    width: 36px;
    height: auto;
}

video::-webkit-media-controls-fullscreen-button,
video::-webkit-media-controls-mute-button {
    display: none;
}

video::-webkit-media-controls-toggle-closed-captions-button,
video::-webkit-media-controls-volume-slider {
    display: none;
}
