.cr_slider-container {
    width: 100%;
    padding: 15px 20px;
    padding-bottom: 10px;
    /*background: rgba(73, 117, 139, 0.34);*/
    background: #DDD;
    border-radius: 5px;
    backdrop-filter: blur(4px);
}

.cr_slider-track {
    opacity: 0;
    position: relative;
    background-color: #1b495e;
    background-color: rgba(73, 117, 139, 0.34);

    /*background: linear-gradient(to right, #1b495e, white);*/
    height: 0px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.25);
    transition: opacity 0.5s, height 0.5s;
}

.cr_slider-container:hover .cr_slider-track {
    opacity: 1;
    height: 12px;
}

.cr_slider-container:hover .cr_slider-value {
    margin-top: 5px;
}

.cr_slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;


    /*background: radial-gradient(circle at 20% 20%, #ffffff, #1b495e);*/
    background: #1b495e;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border: 2px solid white;
    transition: transform 0.15s ease, box-shadow 0.15s ease, width 0.8s, height 0.8s;
}

.cr_slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

.cr_slider-container:hover .cr_slider-thumb {
    width: 26px;
    height: 26px;
}

.cr_slider-value {
    margin-top: -5px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #333;
    transition: margin-top 0.5s;
}

