#banner {
    position: relative;
    width: 100%;
    height: 300px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

ul.advantages {
    list-style-type: none;
    padding: 40px 0 0 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

ul.advantages li {
    display: block;
    position: relative;
    float: left;
    width: 270px;
    height: 170px;
    padding: 0 50px 0 0;
}

ul.advantages li:last-child {
    padding: 0;
}

ul.advantages li img {
    display: block;
    position: relative;
    width: 270px;
    height: 170px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

ul.advantages li:after {
    display: block;
    content: " ";
    position: absolute;
    right: 25px;
    top: 20px;
    width: 1px;
    height: 130px;
    background-color: #eee;
}

ul.advantages li:last-child:after {
    display: none;
}

.main_categories {
    position: relative;
}

.main_categories .nav {
    display: none;
}

section.goods_set {
    position: relative;
    overflow: hidden;
}

section.goods_set > .more {
    display: block;
    position: absolute;
    top: 61px;
    right: 0;
    color: #888;
}

section.goods_set > .more:hover {
    color: #ef2823;
}


h2 {
    display: block;
    position: relative;
    font-size: 24px;
    padding: 50px 0 10px 0;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
    margin-bottom: 40px;
    color: #333e48;
}

h2:after {
    display: block;
    content: " ";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 33%;
    height: 2px;
    background-color: #00b0e2;
}



/*form part*/

.formFilterPart{
    margin-top: 40px;
}

.formFilterPart form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-clip: border-box;
    border: 1px solid rgba(31,41,55,.125);
    border-radius: 0.375rem;
    box-shadow: 3px 3px 0 rgba(0,0,0,.05);
    background-color: #00b0e2;
    padding: 20px;
    gap: 20px;
    color: #fff;
}

.leftBlockFilters, .centerBlockFilters, .rightBlockFilters{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.itemBlockFilters{
    display: flex;
    flex-direction: column;
}

.itemBlockFilters label, .loc{
    font-weight: 600;
    margin-bottom: 5px;
}

.itemBlockFilters input[type="text"], .itemBlockFilters select{
    border: 1px solid #d1d5db;
    padding: 6px 4px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.location{
    display: flex;
    margin-bottom: 5px;
}

.location input{
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.location label{
    border: 1px solid #d1d5db;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#f3f4f6));
    background-image: -o-linear-gradient(#fff,#f3f4f6);
    background-image: linear-gradient(#fff,#f3f4f6);
    flex: 1;
    padding: 6px 4px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    color: #333e48;
}

.location label:hover{
    border: 1px solid #000;
}

.location label.active,
.location input:checked + label {
    border-color: #07f;
    background: #e6f1ff;
}

.btnsForm{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.btnsForm input{
    background: unset;
    border: unset;
    text-decoration: underline dotted;
    color: #fff;
    cursor: pointer;
}

.btnsForm button{
    padding: 12px 20px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 0.375rem;
    border: unset;
    transition: 0.3s;
}

.btnsForm button:hover{
    background-color: #bd9d00;
}


main .select2-container{
    width: 100%!important;
    max-width: 440px!important;
}