/*——————————————————————————————————————
  ———————————————— Fonts ———————————————
  ———————————————————————————————————————*/
@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap);

/*——————————————————————————————————————
  —————————————— Defaults ——————————————
  ———————————————————————————————————————*/
* {
    margin: 0;
    padding: 0;

    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "YTLC" 500;
}

select {
    outline: none;
    border: none;
}

select option {
    background: #f7f3f3;
    color: #1e1b1b;
    padding: 10px;
    font-size: 0.95rem;
    transition: font-size .5s ease-in-out;
}

body {
    overflow: hidden;
}

.ar-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
    min-height: 60px;
    padding: 5px 10px;
    border-radius: 30px;
    border: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;

    font-size: 1rem;

    background: rgb(241, 0, 13);
    background: -moz-linear-gradient(90deg, rgba(241, 0, 13, 1) 0%, rgba(157, 16, 6, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(241, 0, 13, 1) 0%, rgba(157, 16, 6, 1) 100%);
    background: linear-gradient(90deg, rgba(241, 0, 13, 1) 0%, rgba(157, 16, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1000d", endColorstr="#9d1006", GradientType=1);
}

.ar-button img {
    aspect-ratio: 1/1;
    width: 30px;
    outline-color: white;
}

footer {
    position: absolute;
    display: flex;
    font-size: 1rem;
    gap: 5px;
    flex-direction: row;
    bottom: 5px;
    border-radius: 1rem 1rem 0 0;
    opacity: .6;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    z-index: 999;
}

footer a {
    display: flex;
    gap: 5px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

footer img {
    height: 20px;
}

.logo-desktop {
    display: none;
}

.h-bigger {
    height: 32px;
}

.anim-player {
    position: absolute;
    bottom: 40px;
    width: 100dvw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: bottom .5s ease-in-out;
}

.anim-player-container {
    background: #1E1B1B;
    background: linear-gradient(145deg, #1e1b1b28, #2926262a);
    box-shadow: 8px 8px 16px #1413132a, -8px -8px 16px #28252528;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Because Safari is a lil whiney boo boo  */
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80vw;
    gap: 15px;
    border-left: 1px solid #f7f3f3;
    border-top: 4px solid #f7f3f3;
    border-right: 1px solid #f7f3f3;
    border-bottom: 1px solid #f7f3f34f;
    transition: width .5s ease-in-out;
    border-radius: 100vmax;
}

.anim-player-container:nth-of-type(2) {
    display: flex;
    flex-direction: row;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    width: 85.5vw;
    padding: 0;
    transition: width .5s ease-in-out;
}

.anim-player .player-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.anim-player-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12.5%;
    text-overflow: ellipsis;
    gap: 1rem;
}

.anim-player-left .player-buttons button,
.anim-player #anim-list {
    width: 100%;
    border: none;
}

.anim-player #anim-list {
    background: #1E1B1B;
    background: linear-gradient(145deg, #1e1b1b28, #2926262d);
    box-shadow: 8px 8px 16px #1413132a, -8px -8px 16px #28252528;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Because Safari is a lil whiney boo boo  */
    min-height: 70px;
    border-radius: 100vmax;
    padding: .5rem;
    color: #f7f3f3;
    font-size: 1.1rem;
    font-weight: bold;
    border-top: 1px solid #f7f3f34f;
    border-left: 1px solid #f7f3f3;
    border-right: 1px solid #f7f3f3;
    border-bottom: 2px solid #f7f3f3;
    cursor: pointer;
    width: 40vw;
    text-align: center;
    transition: all .5s ease-in-out;
}

.player-buttons button {
    background: none;
    cursor: pointer;
    color: #f7f3f3;
    border-radius: 3px;
    width: 35px;
    height: 35px;
}

.player-buttons button i {
    scale: 2.5;
}

.anim-player-action {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    width: 100dvw;
    min-height: 100dvh;
    background: rgb(0, 0, 0, .2);
}

#player-slider {
    -webkit-appearance: none;
    border-radius: 100vmax;
    background: #1E1B1B;
    background: linear-gradient(145deg, #1e1b1b28, #2926262d);
    outline: none;
    box-shadow: inset 0 0 5px #0000002d;
    width: 75%;
    height: 11px;
}

#player-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 100vmax;
    background: #ffffff;
    box-shadow: 0 0 5px #0000002d;
    cursor: pointer;
}

#player-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #ffffff;
    box-shadow: 0 0 5px #0000002d;
    cursor: pointer;
}

.hidden {
    display: none;
}

#player-button-stop {
    opacity: 1;
    transition: opacity .15s ease-in-out;
}

.disabled {
    pointer-events: none;
    opacity: .15 !important;
    transition: opacity .15s ease-in-out;
}

.ar-button {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 40vw !important;
    transform: none !important;
}

.mobile-nonanim {
    position: relative !important;
    left: 50% !important;
    bottom: 25vw !important;
    width: 40vw !important;
    min-width: 160px;
    transform: translateX(-50%) !important;
    transition: bottom .5s ease-in-out !important;
}

@media screen and (min-width: 500px) {
    .ar-button {
        left: 21vw;
        min-height: 70px;
        min-width: 180px;
    }
}

@media screen and (min-width: 700px) {
    .ar-button {
        left: 15.5vw;
        min-width: 180px;
    }

    .anim-player-container:nth-of-type(2) {
        width: 84vw;
        transition: width .5s ease-in-out;
    }

    .mobile-nonanim {
        bottom: 15vw !important;
        transition: bottom .5s ease-in-out !important;
    }

    .anim-player #anim-list {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 800px) {
    .ar-button {
        min-height: auto;
        position: absolute;
        bottom: 40px;
        left: 40px;
        transform: translate(-50%);
        width: 30vw !important;
        padding: 20px 50px;
        border-radius: 30px;
        border: 0;
        display: flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
        color: white;
        cursor: pointer;

        font-size: 20px;

        background: rgb(241, 0, 13);
        background: -moz-linear-gradient(90deg, rgba(241, 0, 13, 1) 0%, rgba(157, 16, 6, 1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(241, 0, 13, 1) 0%, rgba(157, 16, 6, 1) 100%);
        background: linear-gradient(90deg, rgba(241, 0, 13, 1) 0%, rgba(157, 16, 6, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1000d", endColorstr="#9d1006", GradientType=1);
        transform: unset;
    }

    .logo-desktop {
        display: block;
    }

    .logo-mobile {
        display: none;
    }

    select option {
        font-size: 1.1rem;
        transition: font-size .5s ease-in-out;
    }

    .anim-player {
        bottom: 3rem;
        transition: bottom .5s ease-in-out;
    }

    .anim-player-container {
        width: 60vw;
        transition: width .5s ease-in-out;
    }

    .anim-player-container:nth-of-type(2) {
        display: flex;
        justify-content: center;
        width: 100%;
        transition: width .5s ease-in-out;
    }

    .anim-player #anim-list {
        font-size: 1.25rem;
        min-height: auto;
        width: 30vw;
        transition: all .5s ease-in-out;
    }

    .anim-player-container select,
    .anim-player-container button {
        min-height: 70px !important;
    }
}

@media screen and (min-width: 1000px) {
    .mobile-nonanim {
        bottom: 12vw !important;
        transition: bottom .5s ease-in-out !important;
    }
}

@media screen and (min-width: 1200px) {
    .mobile {
        display: none !important;
    }

    .anim-player-container {
        width: 30vw;
        transition: width .5s ease-in-out;
    }

    .anim-player-container:nth-of-type(2) {
        width: 15vw;
        transition: width .5s ease-in-out;
    }

    .anim-player #anim-list {
        background: #1E1B1B;
        background: linear-gradient(145deg, #1e1b1b28, #2926262d);
        box-shadow: 8px 8px 16px #1413132a, -8px -8px 16px #28252528;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        /* Because Safari is a lil whiney boo boo  */
        min-height: 70px;
        border-radius: 100vmax;
        padding: .5rem;
        color: #f7f3f3;
        font-size: 1.1rem;
        font-weight: bold;
        border-top: 1px solid #f7f3f34f;
        border-left: 1px solid #f7f3f3;
        border-right: 1px solid #f7f3f3;
        border-bottom: 2px solid #f7f3f3;
        cursor: pointer;
        width: 40vw;
        text-align: center;
        transition: all .5s ease-in-out;
    }


    .ar-button {
        position: absolute !important;
        left: 10.5rem !important;
        bottom: 40px !important;
        width: 250px !important;
        transform: translate(-50%) !important;
        scale: 1;
    }
}