.my-slider {
    margin: 20px 0;
    height: 5px;
    background: var(--color-slider-grey);
    border-radius: 5px;
    position: relative;
}


.slider-values {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.slider-value {
    font-weight: bold;
}


.noUi-handle:after, .noUi-handle:before {
    content: "";
    display: unset;
    position: unset;
    height: unset;
    width: unset;
    background: unset;
    left: unset;
    top: unset;
}


.noUi-horizontal .noUi-handle {
    width: 8px;
    height: 20px;
    right: -2px;
    top: -8px;
    background: var(--color-slider-grey);
    border: 1px solid var(--color-border)!important;
    cursor: pointer;
    border: unset;
    box-shadow: unset;
}

.noUi-connect {
    background: var(--color-primary);
}

.noUi-connects, .noUi-connect, .noUi-target {
    border:unset;
}

/*
.slider-min {
    position: absolute;
    top: 0;
    left: 0;
}
*/

:root {
    --before-content: "";
}

.noUi-handle-lower::before, .noUi-handle-upper::before {
    content: var(--before-content, "");
    position: absolute;
    top: -35px; /* posune nad element */
    left: 50%;
    transform: translateX(-50%);
    min-width: 76px;
    height: auto;
    border-radius: 4px;
    z-index: 10;
    color: white;
    background: var(--color-background-slider);
    font-size: 12px;
    padding: 2px 5px;
    text-align: center;
}