/* =====================================================
   ЧЕКБОКСЫ
===================================================== */

/* Рамка */
.t-checkbox__indicator{
    border:2px solid #8B4A3A !important;
    background:#fff !important;
    transition:.2s;
}

/* Выбранный чекбокс */
.t-checkbox__control input:checked ~ .t-checkbox__indicator{
    background:#8B4A3A !important;
    border-color:#8B4A3A !important;
}

/* Галочка */
.t-checkbox__indicator:after{
    border-color:#fff !important;
}

.t-checkbox__indicator svg,
.t-checkbox__indicator svg path{
    fill:#fff !important;
    stroke:#fff !important;
}


/* =====================================================
   СЛАЙДЕР ЦЕНЫ
===================================================== */

/* Терракотовая полоса между бегунками */
.t-store__filter__range_bg{
    height:3px !important;
    background:#8B4A3A !important;
    border-radius:999px;
}

/* Серые части по краям */
.t-store__filter__price-outer_start,
.t-store__filter__price-outer_end{
    background:#e5e5e5 !important;
}

/* Сам input */
.t-store__filter__range{
    -webkit-appearance:none !important;
    appearance:none !important;
    background:transparent !important;
    outline:none !important;
}

/* Убираем синюю линию Chrome */
.t-store__filter__range::-webkit-slider-runnable-track{
    height:3px !important;
    background:transparent !important;
    border:none !important;
}

/* Firefox */
.t-store__filter__range::-moz-range-track{
    height:3px !important;
    background:transparent !important;
    border:none !important;
}

/* =====================================================
   БЕГУНОК CHROME
===================================================== */

.t-store__filter__range::-webkit-slider-thumb{
    -webkit-appearance:none !important;
    appearance:none !important;

    width:18px !important;
    height:18px !important;

    border-radius:50% !important;

    background:#8B4A3A !important;

    border:2px solid #ffffff !important;

    box-shadow:
        0 0 0 1px #8B4A3A !important;

    cursor:pointer;

    margin-top:-7px;

    transition:.2s;
}

/* При наведении */
.t-store__filter__range::-webkit-slider-thumb:hover{
    transform:scale(1.08);
}

/* =====================================================
   БЕГУНОК FIREFOX
===================================================== */

.t-store__filter__range::-moz-range-thumb{
    width:18px !important;
    height:18px !important;

    border-radius:50% !important;

    background:#8B4A3A !important;

    border:2px solid #ffffff !important;

    box-shadow:
        0 0 0 1px #8B4A3A !important;

    cursor:pointer;

    transition:.2s;
}

.t-store__filter__range::-moz-range-thumb:hover{
    transform:scale(1.08);
}

/* Убираем синее выделение */
.t-store__filter__range:focus{
    outline:none !important;
}