/** === APOZ SLIDER (ID VERSION) === **/

#apozgc-slider-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
}

#apozgc-slider-block {
    position: relative;
}

#apozgc-slider-block label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

/* SLIDER */
#apozgc-slider {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    height: 25px;
    border-radius: 4px;
    background: #d9dfd8;
    outline: none;
    cursor: pointer;
}

/* Wartość obok slidera */
#apozgc-slider-value {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #395239;
}

#apozgc-markers {
    position: relative;
}
#apozgc-markers .apozgc-marker {
    position: absolute;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
}

#apozgc-markers .apozgc-marker.visible {
    opacity: 1;
}
#apozgc-best {
    position: absolute;
    top: 0;
    height: 25px;
    background: #b1e6b1;
    border-radius: 6px;
    pointer-events: none;
    display: none;
    padding: 2px 15px;
    font-size: 12px;
    letter-spacing: 6px;
    transition: width 0.35s ease, opacity 0.25s ease;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

#apozgc-slider::-webkit-slider-thumb {
    opacity: 0 !important;
}
#apozgc-slider::-moz-range-thumb {
    opacity: 0 !important;
}
#apozgc-thumb {
    position: absolute;
    top: -8px; /* dopasujemy później */
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #607a60;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #395239;
    pointer-events: none;
    transform: translateX(-50%);
    transition: left 0.15s ease-out;
    z-index: 3;
}

