#slot_cat_filters{
    background-image: url(../img/main-bg.jpg);
    padding:100px 0 50px 0;
}
.slot_cat_filters{
    margin:40px 0;
}
.slot_filter_block{
    display: flex;
    justify-content: flex-end;
    text-align-last: center;
    max-width: 320px;
    width: 100%;
    margin:0 auto;
    margin-bottom:20px;
}
.slot_filter_block span{
    margin-right:20px;
    font-size: 15px;
    color:#ffcf86;
    font-weight: 900;
}
.toggle-button-cover{
    position: relative;
    width:74px;
    height:32px;
}
.button-cover, .knobs, .layer
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button
{
    position: relative;
    top: 50%;
    width: 74px;
    height: 32px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}

.button.r, .button.r .layer
{
    border-radius: 100px;
}

.button.b2
{
    border-radius: 2px;
}

.checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs
{
    z-index: 2;
}

.layer
{
    width: 100%;
    background-color: transparent;
    border:solid 1px #8b979e;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 1 */
#button-1 .knobs:before, #button-2 .knobs:before
{
    content: 'off';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 10px;
    color: #8b979e;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #e2edf3;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#button-1 .checkbox:checked + .knobs:before, #button-2 .checkbox:checked + .knobs:before
{
    content: 'on';
    left: 44px;
    background-color: #03a528;
    color: #fff;
}

#button-1 .knobs, #button-1 .knobs:before, #button-1 .layer , #button-2 .knobs, #button-2 .knobs:before, #button-2 .layer
{
    transition: 0.3s ease all;
}

/* chekbox css*/
.slot_filter_box input[type=checkbox] {
    position: relative;
    cursor: pointer;
    background:#fff;
    width: 10px;
    height: 25px;
}
.slot_filter_box input[type=checkbox]:before {
 content: "";
 display: block;
 position: absolute;
 width: 20px;
 height: 20px;
 top: 0;
 left: 0;
 border: 1px solid #8b979e;
 border-radius: 16px;
 background-color: #262323;
}
.slot_filter_box input[type=checkbox]:checked:after {
 content: "";
 display: block;
 width: 5px;
 height: 15px;
 border: solid #03a528;
 border-width: 0 2px 2px 0;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
 position: absolute;
 top: -2px;
 left: 10px;
}

.checkbox_box span{
    margin-left:20px;
    color: #f7e4d6;
    font-size: 14px;
}
.slot_filter_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding:20px 0 40px 0;
}
.checkbox_box{
    display: flex;
    align-items: center;
    width:15%;
}
@media only screen and (max-width: 992px) {
    .checkbox_box{
        width:25%;
    }
}
@media only screen and (max-width: 768px) {
    .checkbox_box{
        width:30%;
    }
}
@media only screen and (max-width: 567px) {
    .checkbox_box{
        width:50%;
    }
}