body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#adContainer {
    width: 100%;
    height: 100vh;
    max-width: 600px;
    position: absolute;
    overflow: hidden;
    display: block;
    background: url('loading.png') center center no-repeat black;
}

#contents {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background-color: gray;
    overflow: hidden;
    overflow-y: hidden;
    visibility: hidden;
}

img {
    max-width: 100%;
    overflow: hidden;
    display: block;
}

#close {
    width: 20px;
    height: 20px;
    position: fixed;
    top: 10px;
    right: 10px;
    display: block;
    z-index: 1000;
    background-image: url('close.png');
}

#exit {
    width: 50%;
    display: block;
    margin-top: 10vh;
}

/* LANDSCAPE CONTROL */
#rotate {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url('rotation.png') center center no-repeat black;
    display: none;
}


@media only screen and (orientation: landscape) {
    #adContainer {max-width: 100%;}
    #rotate {display: block;}
  }

/* START STYLING HERE */
/* @import url('video.css');
@import url('carousel.css'); */

.content {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.blue {
    background: #006699;
}

.white {
    background: white;
}

.yellow {
    background: #fcaa28;
}

#logo {
    width: 50%;
    position: absolute;
    top: 3%;
}
#headline {
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.cta {
    width: 50%;
}

#videoContainer {
    width: 100%;
    aspect-ratio: 16/9;
    background: black;
}

#scroll {
    position: absolute;
    bottom: 2%;
    width: 100%;
}

#videoBox {
    width: 90%;
    aspect-ratio: 16/9;
    background: black;
    margin-top: 15vh;
}

.playerContainer {
    position: relative;
    width: 100%;
}

#duration {
    position: absolute;
    top: 5px;
    right: 5px;
    color: beige;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 0.7em;
    text-align: center;
}

.player {
    position: absolute;
    top: 0;
    padding-top: 56.25%;
    width: 100%;
}

.control {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    visibility: hidden;
}

.sound {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    visibility: hidden;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

#shopHeadline {
    width: 100%;
}

#sliderBox {
    width: 80%;
    padding: 5%;
    overflow: hidden;
    margin-top: 5vh;
}

.w100 {
    width: 100%;
}

#logoFinal {
    width: 80%;
}

#offerText, #offerSub {
    margin-top: 5vh;
}

#introContainer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('img-intro.jpg') center top / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#frame {
    width: 45%;
}

#introText {
    width: 100%;
    position: absolute;
    top: 5vh;
}

#drag {
    width: 100%;
    position: absolute;
    bottom: 2vh;
}


#modesh {
    width: 30%;
    position: absolute;
    bottom: 8vh;
    transform: scale(0);
    transform-origin: bottom center;
}

#cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
}