/*--------------------------------------------------------------------------*\
	Slider input range
\*--------------------------------------------------------------------------*/

.slider__body__slider {
    /*box*/
    display: inline-block;
    height: 8px;
    width:160px;
    padding: 0;

    /*border*/
    border-radius: 5px;
    outline: none;

    /*other*/
    -webkit-appearance: none;
    appearance: none;
}

/*--------------------------------------------------------------------------*\
	Tick appearance
\*--------------------------------------------------------------------------*/

.slider__body__slider::-webkit-slider-thumb {
    /*box*/
    width: 20px;
    height: 20px;
    cursor: pointer;

    /*background*/
    background: var(--c-cta-2);

    /*border*/
    border-radius: 50%;

    /*other*/
    -webkit-appearance: none;
    appearance: none;
}