.pages-navigation-wrapper{
    padding: calc(10px + 5 * (100vw / 1920)) 0;
}

.main-gallery-catalog{
    width: 337px;
}


.catalog{
    padding: 0 0 calc(60px + 40 * (100vw / 1920)) 0;
}

.catalog-container{
    display: flex;
    justify-content: space-between;
}

.catalog-main{
    max-width: 825px;
}

.catalog-title-btns{
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.catalog-h2{
    font-size: calc(26px + 28 * (100vw / 1920));
    line-height: calc(32px + 34 * (100vw / 1920));
    color: #927039;
}

.catalog-btns{
    width: 74px;


    display: flex;
    justify-content: space-between;

}

.catalog-btn{
    width: 32px;
    background-color: transparent;
}

.catalog-btn svg{
    fill: #909091;
}

.catalog-btn2 svg{
    fill: #B48E50;
}

.catalog-items{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	gap:30px;
    margin-bottom: 40px;
}

.catalog-item{
    width: calc(220px + 35 * (100vw / 1920));

    margin-bottom: calc(30px + 30 * (100vw / 1920));
}

.catalog-item:nth-child(10), .catalog-item:nth-child(11), .catalog-item:last-child {
    margin-bottom: 0;
}

.catalog-item-img-wrapper{
    width: calc(220px + 35 * (100vw / 1920));
    padding: calc(13px + 3 * (100vw / 1920)) 0;
    border: 1px solid #D9D9D9;
    border-radius: 20px;

    margin: 0 auto;
    
    margin-bottom: calc(10px + 6 * (100vw / 1920));
}

.catalog-item-wrapped-img{
    width: calc(212px + 35 * (100vw / 1920));
    border-radius: 20px;
}

.catalog-item-img{
    width: calc(220px + 35 * (100vw / 1920));

    margin-bottom: calc(10px + 6 * (100vw / 1920));
}

.catalog-item-h5{
    margin-bottom: 8px;
}

.catalog-item small{
    display: block;

    font-size: calc(14px + 2 * (100vw / 1920));
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;

    margin-bottom: calc(4px + 2 * (100vw / 1920));
}

.catalog-item small:last-child{
    margin-bottom: 0;
}

.catalog-item small span{
    font-weight: 400;
}

.catalog-item  .catalog-item-size{
    font-weight: 500;
}

.catalog-item  .catalog-item-price{
    font-weight: 700;
}

.show-more-btn{
    display: block;
    width: 234px;
    padding: 19px 0;

    margin: 0 auto;
}












/* ----------------------------------------------------------------------------------> */
/* Боковая панель - фильтры, форма и навигация */

.catalog-sidebar{
    max-width: 255px;
}

.catalog-sidebar button{
    width: 100%;
    padding: 12px;

    font-size: 14px;
    font-weight: 500;
}

.catalog-filter{
    padding: 25px 20px;
    border-radius: 6px;
    background-color: #F9F9F9;

    margin-bottom: 20px;
   
}

.catalog-filter .close-filter-btn{
    width: calc(32px + 10 * (100vw / 1920));
    height: calc(32px + 10 * (100vw / 1920));
    border-radius: 50%;

    display: none;
    justify-content: center;
    align-items: center;
}

.switch-filter{
    display: inline-block;
    width: 80px;
    height: 38px;


    position: relative;

    
    display: none;
}

.catalog-filter-items{
    margin-bottom: 20px;
}

.catalog-filter-item{
    border-bottom: 1px solid #E4E3E3;


    margin-bottom: 15px;
}

.catalog-filter-item:last-child{
    margin-bottom: 0;
}

.catalog-filter-param{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    
    padding: 0 0 15px 0;
}

.catalog-filter-item-span-span{
    font-weight: 500;
    color: #2E3342;
}

.angle-down{
    transition: transform .4s;
}

.angle-down.active-angle-down{
    transform: rotate(180deg);
}

.catalog-filter-options{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    
    transition: max-height 0.4s, overflow 0.4s, opacity 0.4s;
    
}

.catalog-filter-options.active-options{
    max-height: 1000px;
    padding: 0 0 15px 0;
    overflow: auto;
    opacity: 1;
}

.catalog-filter-option{
    margin-bottom: 10px;
}

.catalog-filter-option:last-child{
    margin-bottom: 0;
}

.catalog-filter-options label{
    color: #2E3342;

    cursor: pointer;
}

.catalog-filter-options label:last-child{
    margin-bottom: 0;
}

.real-checkbox{
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.custom-checkbox{
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #DBDBDB;
    border-radius: 2px;
    background-color: #fff;
    
    vertical-align: sub;
    margin-right: 5px;


    position: relative;
}

.custom-checkbox::before{
    content: "";

    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../img/checkbox-check.svg);
    background-size: contain;
    background-repeat: no-repeat;

    position: absolute;
    top: 4.3px;
    left: 3px;    
    transform: scale(0);

    transition: 0.2s ease-in;
}

.real-checkbox:checked + .custom-checkbox{
    background-color: #927039;
    border: none;
}

.real-checkbox:checked + .custom-checkbox::before{
    transform: scale(1);
}






/* ----------------------------------------------------------------------------------> */
/* Каталог -  выбрать цену */

.catalog-filter-price{
    margin-bottom: 30px;
}

.catalog-filter-price-span{
    display: inline-block;

    margin-bottom: 11px;
}

.catalog-filter-min-max-price{
    display: flex;
    justify-content: space-between;

    margin-bottom: 12px;
}

.catalog-filter-min-price, .catalog-filter-max-price{
    width: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catalog-filter-min-price span, .catalog-filter-max-price span{
    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;
}

.input-min-price, .input-max-price{
    width: 83px;
    padding: 10px;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
    outline: none;

    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;
}

.price-slider{
    height: 5px;
    background-color:  #DBDBDB;
    border-radius: 6px;

    position: relative;
}

.price-slider-progress{
    height: 5px;
    background-color: #B48E50;

    position: absolute;
    left: 20%;
    right: 20%;
}

.range-inputs{
    position: relative;
}

.range-input{
    position: absolute;
    top: -5px;

    height: 5px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb{
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #B48E50;
 

    pointer-events: auto;
    -webkit-appearance: none;
}

input[type="range"]::-moz-range-thumb{
    width: 20px;
    height: 20px;
    border: 2px solid #fff;

    border-radius: 50%;
    background-color: #B48E50;
  
    pointer-events: auto;
    -webkit-appearance: none;
}

/* ----------------------------------------------------------------------------------> */













/* ----------------------------------------------------------------------------------> */
/* Каталог - выбрать размеры */

.catalog-filter-size{
    width: 216px;
    text-align: center;

    margin-bottom: 30px;
}

.catalog-filter-width, .catalog-filter-height{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.catalog-filter-width{
    margin-bottom: 5px;
}

.catalog-filter-width span, .catalog-filter-height span{
    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;
}

.size-input{
    width: 140px;
    padding: 10px;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
    outline: none;

    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;
}


.x-sign{
    display: inline-block;

    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;

    margin-bottom: 5px;
}

/* ----------------------------------------------------------------------------------> */












/* ----------------------------------------------------------------------------------> */
/* Кнопки: Подобрать и очистить фильтр */

.pick-up-btn{
    margin-bottom: 20px;
}

.clear-filter-btn{
    border: 1px solid #B48E50;
    background-color: transparent;

    color: #B48E50;
}

/* ----------------------------------------------------------------------------------> */














/* ----------------------------------------------------------------------------------> */
/* Форма подписки */

.subscription-form-wrapper{
    padding: 20px 20px 31px 20px;
    border-radius: 6px;
    background-color: #F9F9F9;

    margin-bottom: 20px;
}

.subscription-form label{
    display: inline-block;

    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;

    margin-bottom: 5px;
}

.subscription-img{
    width: 178px;

    margin-bottom: 8px;
}

.subscription-desc{
    font-size: 12px;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    line-height: 17px;
    color: #2E3342;

    margin-bottom: 20px;
}

.email-inp{
    width: 100%;
    padding: 10px;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
    outline: none;

    font-size: 12px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;

    margin-bottom: 20px;
}

.email-inp::placeholder{
    color: #DBDBDB;
}

/* ----------------------------------------------------------------------------------> */














/* ----------------------------------------------------------------------------------> */
/* Навигация по страницам: Доставка и возврат, Выставки, Интервью, Художникам */

.catalog-sidebar-navigation{
    padding: 5px 20px;
    border-radius: 6px;
    background-color: #F9F9F9;
}

.catalog-sidebar-navigation-link{
    display: block;
    padding: 15px 5px;
    border-bottom: 1px solid #E4E3E3;


    font-size: 500;
    color: #2E3342;

    transition: background-color 0.3s,  color 0.3s;
}

.catalog-sidebar-navigation-link:hover{
    background-color: #B48E50;
    color: #fff;

    border-bottom: none;
}

.catalog-sidebar-navigation-link:last-child{
    border-bottom: none;
}

/* ----------------------------------------------------------------------------------> */











/* ----------------------------------------------------------------------------------> */
/* Второй вариант каталога */

.catalog-items2{
    width: 825px;
    display: none;
}

.catalog-item2{
    width: 419px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.catalog-item2:last-child{
    margin-bottom: 0;
}

.catalog-item2-img-wrapper{
    width: 190px;
    padding: 20px;
    border: 1px solid #E9E9E9;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-item2-img-wrapper-big{
    padding: 15px;
    
}

.catalog-item2-wrapped-img{
    width: 150px;
}


.catalog-item2-desc small{
    display: block;

    font-size: calc(14px + 2 * (100vw / 1920));
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
    color: #2E3342;

    margin-bottom: calc(4px + 2 * (100vw / 1920));
}

.catalog-item2-desc small span{
    font-weight: 400;
}

/* ----------------------------------------------------------------------------------> */





@media(max-width: 1160px){
    .catalog-main{
        max-width: 650px;
    }
    
}

@media(max-width: 980px){
    .catalog-container{
        flex-direction: column-reverse;
    }

    .catalog-main{
        max-width: 100%;
        margin: 0 auto;
    }
    
    .catalog-title-btns{
        width: 100%;
    }

    .catalog-btns{
        display: none;
    }

    .switch{
        display: inline-block;
    }

    .catalog-items{
        margin-bottom: 152px;
    }

    .show-more-btn{
        display: none;
    }

    .catalog-sidebar{
        max-width: 100%;
    }

    .catalog-filter{
        width: 100%;
        padding: 80px 30px;
        background-color: #fff;
        box-shadow: 1px 1px 20px  #000;
    

        position: absolute;
        top: -100%;
        left: 0;
        z-index: 999;

        
        transition: 0.4s;
    }

    .catalog-filter.active-mobile-filter{
        top: 0;
    }


    .subscription-form-wrapper{
        text-align: center;
    }

    .catalog-filter .close-filter-btn{
        display: flex;

        position: absolute;
        top: 15px;
        right: 15px;
        
    }

    .catalog-filter-price{
        max-width: 250px;
    }
}


@media(max-width: 790px){
    .catalog-main{
        max-width: 500px;
    }

}


@media(max-width: 530px){
    .catalog-main{
        max-width: 300px;
        margin: 0 auto;
    }
    
    .catalog-item{
        width: 100%;
        text-align: center;
    }

    .catalog-item{
        margin-bottom: 30px;
    }
    
    
    .catalog-item:nth-child(10), .catalog-item:nth-child(11){
        margin-bottom: 30px;
    }
    
    .catalog-items2{
        max-width: 100%;
    }

    .catalog-item2{
        max-width: 190px;
        flex-direction: column;
        text-align: center;
        
        margin: 0 auto;
        margin-bottom: 20px;
    }
 
    .catalog-item2-img-wrapper{
        margin-bottom: 10px;
    }
}

@media(max-width: 340px){
    .catalog-main{
        max-width: 100%;
    }

}