#progress-tracker .window-content{
    padding: 0;
    margin: 0;
    background: none;
}

#progress-tracker .window-header{
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    background: #0000009c;
    z-index: 100;
    opacity: 0;
    height: 30px;
    top: 0;
    width: 100%;
}

#progress-tracker .window-header:hover{
    opacity: 1;
}

#progress-tracker .window-resizable-handle{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#progress-tracker .window-resizable-handle:hover{
    opacity: 1;
}

#progress-tracker .main-body{
    height: 100%;
    width: 100%;
}

#progress-tracker .progress-bar{
    position: relative;
    height: 100%;
    width: 100%;
}
#progress-tracker .waypoint{
    position: absolute;
    max-height: 80%;
    top:20%;
    opacity: 0.7;
    border: none;
    aspect-ratio: 1 / 1;
}
#progress-tracker .progress-bar-bg{
    position: absolute;
    height: 100%;
    width: 100%;
}
#progress-tracker .slider{
    position: absolute;
    max-height: 80%;
    top: 10%;
    border:none;
    aspect-ratio: 1 / 1;
    z-index: 10000;
}

/* CONFIG */

#sliders-configurator .config-content{
    height: 100%;
}

#sliders-configurator .progress-container{
    margin: 0;
    padding: 0;
    list-style: none;
}

#sliders-configurator .progress-container > button{
    margin: 10px 0;
}

#sliders-configurator .sliders-container{
    height: calc(100% - 32px);
}

#sliders-configurator .form-group{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

#sliders-configurator .form-group label{
    width: 120px;
}

#sliders-configurator .form-fields{
    display: flex;
    width: inherit;
}

#configure-sliders .sliders{
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    height: calc(100% - 40px);
}

#configure-sliders .slider{
    list-style: none;
    padding:0;
    margin:0;
    padding: 0.3rem;
    border-bottom: 1px solid rgb(0, 0, 0);
    display: flex;
    justify-content: center;
}

#configure-sliders .slider i{
    margin-right: 0.3rem;
}

#configure-sliders .window-content{
    padding: 0;
    margin: 0;

}