#panel-name, #panel-queue, #panel-input {
    display: none;
}

.btn {
    border-radius: 50px;
    padding: 20px 40px;
    background-color: #009EDF;
    color: black;
    border: none;
}

body {
    background-color: black;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    font-family: Arial;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100vh;
}

.name {
    display: flex;
    flex-direction: column;
    gap: 30px;

    label {
        color: white;
    }
}

* {
    font-size: 2rem;
    line-height: 2rem;
}

.reload {
    display: none;
}

#input, #input-name {
    width: 75%;
    padding: 0 20px;
    border-radius: 50px;
}

#panel-input, #panel-name {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#panel-score {
    color: white;
}

.id {
    font-size: 10px;
    position: absolute;
    bottom: 0;
    color: white;
}

.loader {
    width: 100px;
    aspect-ratio: 1;
    --c: linear-gradient(#FFF 0 0);
    --m: radial-gradient(farthest-side, #FFF 90%, #0000);
    background: var(--c), var(--m), var(--c);
    background-size: 16px 8px, 10px 10px;
    background-repeat: no-repeat;
    animation: l19-1 .5s infinite alternate,
    l19-2 4s infinite linear .5s;
}

@keyframes l19-1 {
    0%, 10% {
        background-position: calc(50% - 8px) 50%, 50% 10%, calc(50% + 8px) 50%
    }
    80%, 100% {
        background-position: -20px 50%, 50% 50%, calc(100% + 20px) 50%
    }
}

@keyframes l19-2 {
    0%, 24.99% {
        transform: rotate(0)
    }
    25%, 49.99% {
        transform: rotate(90deg)
    }
    50%, 74.99% {
        transform: rotate(180deg)
    }
    75%, 100% {
        transform: rotate(270deg)
    }
}

input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    /*  overflow: hidden;  remove this line*/

    /* New additions */
    height: 3px;
    background: white;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    height: 40px;
    width: 60px;
    background-color: #009EDF;
    border-radius: 20px;
    border: none;

    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #009EDF;
    border-radius: 50%;
    border: none;

    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */

input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(0,158,223, .1)
}
input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(0,158,223, .2)
}

/* Hover, active & focus Thumb: Firfox */

input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(0,158,223, .1)
}
input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(0,158,223, .2)
}