.catalog{}

.catalog__text_content{
    margin: 30px 0 0;
}
.catalog__filesfordownload{
    margin-bottom: 35px;
}
.catalog__download_btn{
    border: #fff;
    color: #7e2e2e;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 13px 8px 50px;
    text-align: left;
    line-height: 16px;
    margin-right: 5px;
    position: relative;
    transition: all ease-in-out 0.2s;
}
@media (max-width: 992px){
    .catalog__download_btn{
        width: 100%;
    }
    .catalog__download_btn + .catalog__download_btn{
        margin-top: 15px;
    }
}
.catalog__download_btn:before
{
    content: '';
    width: 22px;
    height: 20px;
    background: url(/assets/redesign/img/download_btn_sprte.png) no-repeat 0 0;
    position: absolute;
    left: 15px;
    top: 14px;
    transition: all ease-in-out 0.2s;
}
.catalog__download_btn:hover:before{
    background-position: 0 -20px;
    transition: all ease-in-out 0.2s;
}
.catalog__download_btn:hover{
    background: #7e2e2e;
    color: #fff;
    transition: all ease-in-out 0.2s;
}
.catalog__download_btn > span{
    font-size: 12px;
    font-weight: 300;
}

.catalog__choosen{
    display: block;
    background: none;
    font-size: 14px;
    color: #7e2e2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin: 23px 0!important;
}
.catalog__choosen > #mse2_selected{
    background: none;
}
.catalog__choosen .mse2_selected_link, .catalog__choosen .mse2_selected_link em{
    background: #fff;
    text-transform: lowercase;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-right: 7px;
    border-radius: 2px;
    padding: 3px 4px 4px;
    letter-spacing: 0;
}
.catalog__choosen .mse2_selected_link
{
    display: inline-block;
    margin-bottom: 5px;
}
.catalog__choosen .mse2_selected_link em{
    margin-right: 0px;
}
.catalog__choosen .mse2_selected_link sup{
    top: 0;
    font-size: 14px;
    color: initial;
    margin-left: 0px!important;
    margin-right: 3px;
}




.catalog__filter{
    margin-bottom: 30px;
    width: 100%;
}

.catalog__filter__links{
    margin-bottom: 25px;
}
.catalog__filter__links > a{
    display: block;
    margin-bottom: 4px;
}
.catalog__filter__links > a.active{
    color: initial;
    text-decoration: none;
}

.catalog__filter__form{
    
}
.catalog__filter__form fieldset h4{
    color: #7e2e2e;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.catalog__filter__showby{
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #7e2e2e;
    margin-top: 10px;
}
.catalog__filter__showby select{
    border: none;
    margin-left: 10px;
    color: initiak;
}
.catalog__results{
    clear: both;
    display: inline-block;
    width: 100%;
}

/*Выезжающая панель с фильтрами*/
.catalog__filter_btn{
    display: none;
}
@media (max-width: 992px){
    .catalog__filter_btn{
        display: block;
        position: fixed;
        border-radius: 100%;
        right: 40px;
        bottom: 40px;
        font-size: 40px;
        z-index: 1050;
        width: 71px;
        box-shadow: 0px 4px 5px rgba(0,0,0,0.4);
        
        transition: right 0.3s ease-in-out;
        outline: none;
    }
    .catalog__filter_btn.open{
        right: 340px;
        transition: right 0.3s ease-in-out;
    }
    .catalog__filter_btn:focus{
        outline: none!important;
    }
    .catalog__filter{
        position: fixed;
        /* right: 0; */
        top: 0;
        height: 100vh;
        overflow-x: auto;
        overflow-y: scroll;
        width: 270px;
        background: #ece4cc;
        padding: 20px 20px;
        box-sizing: border-box;
        transition: right 0.3s ease-in-out;
        right: -300px;
        z-index: 1050;
        box-shadow: -4px 0px 17px rgba(0,0,0,0.4);
    }
    .catalog__filter.open{
        right: 0;
        transition: right 0.3s ease-in-out;
    }
    .catalog__filter_backdrop{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        opacity: 0;
        background-color: #000;
        transition: opacity 0.3s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    }
    .catalog__filter_backdrop.open{
        opacity: 0.5;
        z-index: 1040;
        -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-animation: fadeOut 0.5s ; /* Safari 4+ */
	-moz-animation:    fadeOut 0.5s ; /* Fx 5+ */
	-o-animation:      fadeOut 0.5s ; /* Opera 12+ */
	animation:         fadeOut 0.5s ;
    }
    
}
@keyframes fadeOut {
          0% {
            opacity: 0;
            z-index: -1;
          }
          100% {
            opacity: 0.5;
            z-index: 1040;
          }
    }
    
#mse2_selected_wrapper {
    min-height: auto!important;
}
.catalog__filter_close_btn{
        position: absolute;
    right: 11px;
    top: 10px;
}