.catalog-selections {
    margin-bottom: 10px;
}

.catalog-selections__title {
    font-size: 13px;
    line-height: 115%;
    color: #777777;
    text-align: left;
}

.catalog-selections__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: 10px;
    justify-content: space-between;
}

.catalog-selections__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 40px;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    margin-right: 10px;
}

.catalog-selections__inner.active {
    height: auto;
    overflow: visible;
}

.catalog-selections__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalog-selections__item {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 7.5px 15px;
    background-color: #F4F6F7;
    font-size: 13px;
    line-height: 115%;
    color: #111111;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 30px;
    text-decoration: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
}

.catalog-selections__item:hover {
    background-color: #FFFFFF;
    border: 1px solid #1AB1F1;
}

.catalog-selections__item_active {
    background-color: #FFFFFF;
    border: 1px solid #1AB1F1;
}

.catalog-selections__item_active:hover {
    border: 1px solid #1AB1F1;
}

.catalog-selections__more {
    font-weight: 400;
    font-size: 13px;
    line-height: 138%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #175085;
    cursor: pointer;
    white-space: nowrap;
}

.catalog-selections__more:hover {
    text-decoration: none;
}

@media screen and (max-width: 425px) {

    .catalog-selections__inner {
        height: 33px;
    }

    .catalog-selections__item {
        padding: 4px 10px;
        font-size: 12px;
        max-height: 23px;
    }

    .catalog-selections__more {
        font-size: 12px;
    }
}
