
.t-checkbox__indicator {
    border-radius: 3px; /*скругление углов*/
    transition: all 0.3s;
    opacity: 1; /* прозрачность*/
}
.t-checkbox__indicator:after {
    border-color: #fafafa !important; /* цвет галочки*/
}
.t-checkbox__control .t-checkbox:checked~.t-checkbox__indicator:after,{
    animation: jelly 0.6s ease;
}
.t-checkbox__control .t-checkbox:checked~.t-checkbox__indicator {
    background: #6900ff; /* цвет фона в активном состоянии*/
    animation: jelly 0.6s ease;
}
