.videoheader{
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    margin: 0;
    max-height: 100vh;
    overflow: hidden;
    padding-top: 0;
    position: relative;
    width: 100%;
}

.videoheader.empty{
    height: 80px;
}

.videoheader video{
    background-position: center center;
    background-size: 100%;
    left: 0;
    object-fit: inherit;
    top: 0;
    width: 100%;
}

video::-webkit-media-controls-start-playback-button{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
video::-webkit-media-controls-enclosure{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
video::-webkit-media-controls-panel{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
video::-webkit-media-controls{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
*::-webkit-media-controls{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
*::-webkit-media-controls-panel{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
*::-webkit-media-controls-start-playback-button{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}
*::--webkit-media-controls-play-button{
    display: none;
    -webkit-appearance: none;
    visibility: hidden;
}

.videoheader .mute-btn{
    background-color: transparent;
    background-image: url(/static/img/icon-muted.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    height: 52px;
    left: 25px;
    position: absolute;
    top: 105px;
    width: 52px;
}

.videoheader.unmuted .mute-btn{
    background-image: url(/static/img/icon-unmuted.svg);
}

.videoheader .scroll-btn{
    background-color: #FFBB2A;
    border: none;
    border-radius: 12px;
    bottom: 30px;
    box-shadow: 1px 1px 8px 2px rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    left: 50%;
    margin: 0;
    outline: none;
    padding: 16px 22px 16px 22px;
    position: absolute;
    transform: translateX(-50%) rotate(180deg);
    z-index: 99;
}

.videoheader .scroll-btn:hover {
    background-color: #f6b642;
}

.videoheader .scroll-btn .down-icon{
    background-image: url(/static/img/up-white.svg);
    background-position: 5px 0;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding: 2.5px 15px;
}

.videoheader .scroll-btn:hover .down-icon{
    background-position: 5px 7.5px;
    padding: 10px 15px;
}

@media screen and (max-aspect-ratio:4/3){
    .videoheader .scroll-btn{
        display: none;
    }
}

@media screen and (max-width: 1160px){
    .videoheader .mute-btn{
        top: 95px;
    }
}

@media screen and (max-width:1000px){
    .videoheader{
        height: 50vh;
        min-height: 50vw;
    }
    .videoheader.empty{
        min-height: 0;
    }
    .videoheader video{
        top: 0;
        transform: none;
    }
}

@media screen and (max-width:760px){
    .videoheader{
        height: auto;
        padding-top: 56px;
    }
    .videoheader.empty{
        height: 56px;
    }
    .videoheader video{
        position: relative;
    }
    .videoheader .mute-btn{
        height: 26px;
        left: 10px;
        top: 66px;
        width: 26px;
    }
}
