@media screen and (max-width: 1200px) {
.t-checkbox__indicator {
    border: 1px solid #000;
    box-sizing: border-box;
    display: inline-block;
    height: 12px;
    opacity: .6;
    position: relative;
    transition: all .2s;
    vertical-align: middle;
    width: 12px;
}
.t-checkbox__indicator:after {
    border: solid #000;
    border-width: 0 1px 1px 0;
    content: "";
    display: none;
    height: 5px;
    left: 3px;
    position: absolute;
    top: 1.5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 3px;
}
}