<style>
/*Фоновый трек*/
.t-checkbox__indicator {
height: 26px;
width: 52px;
background-color: #f0f0f0;
box-shadow: 0px 0px 4px 0px rgba(201,201,201,1);
border-radius: 13px;
cursor: pointer;
opacity: 0.6;
border-width: 0;
margin-right: 15px;
}
/*Шар*/
.t-checkbox__indicator::before {
content: "";
height: 26px;
width: 26px;
box-shadow: inset 0px 0 13px 0px #7d7d7d;
position: absolute;
border-radius: 13px;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
/*Смещение шара*/
.t-checkbox__control .t-checkbox:checked~.t-checkbox__indicator:before {
margin-left: 28px;
box-shadow: inset 0px 0 17px 0px #ff3900;
}
.t-checkbox__indicator:after {opacity: 0;}
.t-text_xs { font-size: 16px;}
.t-checkbox__control {-webkit-tap-highlight-color: rgba(0, 0, 0, 0)}
</style>