.filter__tablet {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 60px;
    flex-wrap: wrap;
}

.filters__tablet-item {
    width: 24%;
    height: 66px;
    margin: 10px 0;
}

.filters__tablet-item input {
    display: none;
}

.filters__tablet-item-text {
    text-align: center;
    border: 1px solid #B3B3B3;
    color: #323232;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
}

.filters__tablet-item input:checked + .filters__tablet-item-text, .filters__tablet-item-text:hover {
    border-color: #FD4000;
    color: white;
    background-color: #FD4000;
}

@media (min-width: 768px) {
    .only-mob {
        display: none;
    }
}

@media (max-width: 767px) {
    .filter__tablet {
        display: none;
    }
}