html {
    overflow: hidden;

    touch-action: none;
    --color-primary: #ce0026;
}

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 50;
}

button {
    border: none;
    color: white;
    background-color: var(--color-primary);

    width: 130px;
    height: 40px;

    padding: 2px;
}

.video-selector {
    width: 25%;

    margin-right: 6vw;
    margin-bottom: 6vh;
}

.video-selector h1 {
    color: var(--color-primary)
}

.hidden {
    display: none;
}

.skip {
    width: 50%;
}

.volume-slider-con{
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.volume-slider{
    position: relative;

    width: 8px;
    height: 220px;

    background: #c7c7c7;
    border-radius: 999px;

    overflow: visible;

    cursor: pointer;
}

.volume-fill{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 70%;

    background: var(--color-primary);

    border-radius: 999px;

    transition: height 0.08s linear;
}

.volume-thumb{
    position: absolute;

    top: -9px;
    left: 50%;

    transform: translateX(-50%);

    width: 22px;
    height: 22px;

    background: var(--color-primary);

    border-radius: 50%;

    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.volume-icon{
    width: 24px;
    height: 24px;

    opacity: 0.75;
    cursor: pointer;

    transition: opacity 0.2s ease;
}

.volume-icon:hover{
    opacity: 1;
}

#skip-div {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0);
}

#skip-div button {
    width: 50px;
    height: 50px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

#controls div{
    z-index: 100;
}

#exit-button-div {
    position: fixed;
    bottom: 50px;
    right: 50px;
}

#top-divider {
    height: 12vh;

    padding-top: 15px;
}

#logo {
    height: 100%;
    float: right;
    margin-right: 30px;
}

#bottom-divider {
    display: flex;
    flex-wrap: wrap;

    justify-content: start;

    width: 80vw;

    margin-top: 5vh;

    padding-left: 30px;
    padding-right: 30px;
}

#video-div {
    height: 0;
}

