
.prices-ticks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 0px;

}

.prices-ticks .tick-outer:nth-child(even)>.lbl {
    display: none;
}

.prices-ticks .tick-outer {
    width: 55px;
    display: flex;
    flex-direction: column;
}

.prices-ticks .tick {
    width: 1.25px;
    margin-left: auto;
    margin-right: auto;
    height: 7.2px;
    min-height: 5.2px;
    padding: 0 !important;
    background: #d3d3d3;
}


.prices-ticks .lbl {

    vertical-align: middle;
    flex-grow: 1;

    padding-top: 2px;
    text-align: center;
}



input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;    
  

}

/***** Track Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
    background: var(--color-green);
    height: 12px;
    border-radius: 35px;
}

/******** Firefox ********/
input[type="range"]::-moz-range-track {
    background: var(--color-green);
    height: 12px;
    border-radius: 35px;
}


/***** Thumb Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    height: 24px;
    margin-top: -6px;
    width: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="23.95 15.95 24.1 24.1"><g ><circle cx="36" cy="28" r="12" fill="%2325C588"></circle><circle cx="36" cy="28" r="11.3" stroke="%23fff" stroke-width="1.5"></circle><circle cx="36" cy="28" r="5" fill="white"></circle></g></svg>');

}

input[type="range"] {
    --range: calc(var(--max) - var(--min));
    --ratio: calc((var(--value) - var(--min)) / var(--range));
    --sx: calc(0.5 * 2em + var(--ratio) * (100% - 2em));
}

input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(var(--color-green), var(--color-green)) 0/var(--sx) 100% no-repeat, white;
}

input[type="range"]:hover::-webkit-slider-runnable-track {
    background: linear-gradient(var(--color-green), var(--color-green)) 0/var(--sx) 100% no-repeat, white;
}

input[type="range"]:active::-webkit-slider-runnable-track {
    background: linear-gradient(var(--color-green), var(--color-green)) 0/var(--sx) 100% no-repeat, white;
}



@container pricing-outer (max-width:400px) {
    .prices-ticks .lbl {
        writing-mode: vertical-lr;
        line-height: 22px;
        text-align: start;
    }

    .prices-ticks .tick-outer {
        width: 22px;
    }

    input[type="range"] {
        width: 100% !important;
        margin: 0 !important;
    }
}