/* Библиотека */
.library-filter__title {
    justify-content: space-between;
}
#example_2_2:before {
    content: 'Скрыть ';
}
#example_2_1:before {
    content: 'Скрыть ';
}
#example_2_2, #example_2_1 {
    display: flex;
    align-items: center;
}
#example_2_2 i {
    margin-left: 5px;
    font-size: large;
}
#example_2_1 i {
    margin-left: 5px;
    font-size: large;
}
.library-filter summary {
    justify-content: space-between;
}
.library-filter__items {
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.library-filter__items li {
    margin-right: 30px;
}

.filter-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .filter-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  .filter-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #EFEFEF;
    border-radius: 3px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    background-color:  #EFEFEF;
  }
  .filter-checkbox:checked+label::before {
    border-color: #FED530;
    background-color: #FED530;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }
.library-list__item {
    border-top: 0px;
}
.library-img {
    margin-bottom: 15px;
}
.library-brand {
    font-size: 12px;
    font-weight: 700;
    color: #59A600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.library-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.library-info {
    font-size: 14px;
    margin-bottom: 10px;
}
.library-list .brand-btn {
    padding: 5px 18px;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px){
    #example_2 {
    /*   display: none; */
    }
    #example_2_2:before {
        content: '';
    }
    #example_2_1:before {
        content: '';
    }
    #example_2_2 i {
        font-weight: 700;
        font-size: x-large;
    }
    #example_2_1 i {
        font-weight: 700;
        font-size: x-large;
    }
    .library-img {
        display: none;
    }
    .library-list .brand-btn {
        margin-bottom: 15px;
    }
    .library-list__item {
        border-top: 1px solid #EFEFEF;
        padding-top: 15px;
    }
}

