/* Progress Bar */

.progress-container {
    width: 100%;
    height: 11px;
    background-color: #f0f0f03b;;
    border-radius: 0pc;
    margin-top: 0px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.progress-background {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: 0.1;
    position: absolute;

}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #FFF;
    opacity: 1.0;
    position: absolute;
    transition: width 0.1s ease;
}
#progressBar:hover {
    opacity: 1;
}

#progressBar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
}

#progressBar::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
}

/* Steuerungselemente Stil */
.controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Stil für die Zeitanzeige */
.time-display {
    margin-top: 10px;
    z-index: 2;
    position: absolute;
    top: -118px;
    color: white;
    right: 33px;
    font-weight: 100;
    font-family: Lato;
    left: 699px;
    width: 150px;
}

/* Stil für die Schaltflächen */
.buttonClass {
    font-size: 16px !important;
    width: 45px;
    height: 40px;
    color: #001e33;
    font-weight: light;
    border-radius: 90px;
    background: #ffffff;
    border-width: 0px;
    padding-left: 9px;
}

.buttonClass:hover {
    background: rgba(77, 87, 102, 1)
}



/* Stil für den Slider */
.slider {
display: none;
    width: 160px;
    margin-left: 20px;
    margin-top: 5px;
}

.slider label {
    font-size: 16px;
    text-transform: capitalize;
    float: right;
    margin-right: -60px;
    margin-top: 3px;
}

.slider > input[type="range"] {
    -webkit-appearance: none;
    width: 160px;
    height: 6px;
    border-radius: 3.5px;
    background: #e9e9e9;
    outline: none;
    margin: 0;
}

/* Stil für den Slider-Thumb */
.slider > input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #141414;
    cursor: pointer;
    transition: background 0.5s;
}

/* Hover-Effekt für den Slider-Thumb */
.slider > input[type="range"]:hover::-webkit-slider-thumb {
    background: #6b6b6b;
}

/* Aktiver Stil für den Slider-Thumb */
.slider > input[type="range"]:active::-webkit-slider-thumb {
    background: #6b6b6b;
}

.controls {
    width: 690px;
    position: absolute;
    top: -150px;
    z-index: 1;
    transition:  2s;

}


/* Globe */
div#globe {
height:3000px;
    padding-top: 90px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) -50%, rgba(0, 29, 51, 1) 47%);
    width: 100%;
    position: absolute;
    top: 0px;
    padding-top: 160px;
    transition: 2s;
}