.shop-search {
    border-radius: 20px;
    background: #F5FDFF;
    padding: 32px;
    margin-bottom: 24px;
}
.shop_search_cat_ids {
    display: none;
}
.shop-search {
    display: none;
}
.shop-search .input-title {
    color: #277BAA;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.4px; /* 22.4px */
    flex-shrink: 0;
}
.shop-search .shop_search_param {
    display: block;
}
.prop-wrapper .js_shop_search_param.shop_search_param:not(:last-child) {
    border-bottom: 1px solid #BEE2F5;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.prop-wrapper .shop_search_param {
    margin-right: 0;
}
.search-prop-wrapper {
    display: flex;
    gap: 24px;
    /*flex-wrap: wrap;*/
}
.inputs-wrapper {
    /*width: 100%;*/
    /*max-width: 790px;*/
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.inputs-wrapper .checkboxItem {
    /*margin-left: 16px;*/
    margin-left: 0px;
}
.show-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.shop-search--show {
    display: block;
}
.find-button {
    background-color: #00C2F3 !important;
    color: #fff !important;
}
.show-filters__button {
    background-color: #fff;
    border-radius: 60px;
    border: 1px solid #00C2F3;
    padding: 10px 30px;

    color: #00C2F3;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 21px */
    cursor: pointer;
    /*transition: .2s ease-in all;*/
}
/*.show-filters__button:hover {*/
/*    transition: .2s ease-out all;*/
/*    background-color: #00C2F3;*/
/*    color: #fff;*/
/*}*/
/***************************************/
/* Customize the label (the container) */
.label-container {
    display: block;
    position: relative;
    padding-left: 24px;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    color: #2F2F2F;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 18.2px */
}

/* Hide the browser's default checkbox */
.label-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    /*background-color: #eee;*/
    border-radius: 3px;
    border: 1px solid rgba(47, 47, 47, 0.30);

}

/* On mouse-over, add a grey background color */
.label-container:hover input ~ .checkmark {
    /*background-color: #ccc;*/
}

/* When the checkbox is checked, add a blue background */
.label-container input:checked ~ .checkmark {
    /*background-color: #00C2F3;*/
    background-image: url('/custom/base/img/checked-input.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    /*content: "";*/
    /*position: absolute;*/
    /*display: none;*/
}

/* Show the checkmark when checked */
.label-container input:checked ~ .checkmark:after {
    /*display: block;*/
}

/* Style the checkmark/indicator */
.label-container .checkmark:after {
    /*left: 9px;*/
    /*top: 5px;*/
    /*width: 5px;*/
    /*height: 10px;*/
    /*border: solid white;*/
    /*border-width: 0 3px 3px 0;*/
    /*-webkit-transform: rotate(45deg);*/
    /*-ms-transform: rotate(45deg);*/
    /*transform: rotate(45deg);*/
}

@media screen and (max-width: 600px) {
    .search-prop-wrapper {
        flex-wrap: wrap;
    }
    .show-filters {
        padding: 0 15px;
    }
    .show-filters__button {
        width: 100%;
    }
    .find-button {
        width: 40%;
    }
    .shop-search--show {
        margin-left: 15px;
        margin-right: 15px;
    }
}