.select {
    width: 250px;
    height: 30px;
    padding: 5px;
    font-size: 1.4em;
}
.select__wrap {
    width: 230px;
    border: 1px solid #343434;
    height: 32px;
    position: relative;
    overflow: hidden;
}
.select__button {
    width: 30px;
    height: 30px;
    background-color: #343434;
    background-image: url('../img/sprites.png');
    background-position: -10px -810px;
    background-repeat: no-repeat;
    position: absolute;
    right: 1px;
    top: 1px;
}
.select__wrap_news {
    width: 180px;
    float: right;
}
.select__wrap_news select {
    width: 200px;
}
.b-filter {
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-filter__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding: 9px 15px;
    max-height: 100px;
    opacity: 1;
}
.b-filter__wrap_bordered{
    border-bottom: 1px solid #ccc;
}
.b-filter__wrap_hide{
    padding: 0px 15px;  
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.filter__item {
    font-size: 1.6em;
    height: 50px;
    line-height: 40px;
    align-self: flex-start;
}
.filter__item > label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 40px;
}
.filter__item_top{
    height: auto;
    line-height: 30px;
}
.filter__date {
    width: 70px;
    height: 25px;
    border: 1px solid #000;
    margin: 0 3px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding-left: 15px;
}
.filter__item_top .filter__date{
    height: 32px;
}
.filter__notice-type{
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    opacity: .5;
}
.filter__notice-type_active,.filter__notice-type:hover{
    opacity: 1;
}
.filter__notice-type i{
    width: 40px;
    height: 40px;
   margin-top: -5px;
}

.filter__price {
    width: 175px;
    height: 25px;
    border: 1px solid #000;
    margin: 0 5px;
}
.filter__heading {
    font-size: 1.8em;
    text-transform: uppercase;
    color: #343434;
    font-weight: 700;
    line-height: 30px;
}
.filter__link {
    color: #3a80d5;
    font-size: 1.4em;
    border-bottom: 1px dashed #3a80d5;
    height: 18px;
    padding-top: 7px;
}
.filter__link:hover {
    color: #000;
    border-color: #000;
}
input[type="checkbox"]{
    display: none;
}
input[type="checkbox"]:checked+label{
    background-image: url('../img/sprites.png');
}
input[type="checkbox"]+label{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: 1px solid #000;
    display: inline-block;
    text-align: center;
    position: relative;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: -15px -1865px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}