.catalog__filters {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

.apply__title {
    margin-bottom: 10px;
    font-size: 14px;
}

.apply__form {
    display: flex;
}

.apply__tags {
    display: flex;
    flex-wrap: wrap;
}

.apply__tags span {
    display: flex;
    align-items: center;
}

.apply__tags--item {
    display: flex;
    color: var(--main-text-color);
    background: var(--accent-background-color);
    border-radius: 15px;
    margin: 0 10px 5px 0;
    font-weight: 500;
    padding-left: 8px;
    transition: all .3s ease;
}

.apply__tags--item:hover {
    background: var(--accent-color);
}

.apply__tags--remove {
    display: flex;
    box-sizing: content-box;
    width: 10px;
    height: 10px;
    padding: 10px;
}

.apply__tags--remove svg {
    align-self: flex-start;
    width: 10px;
    height: 10px;
    transition: all .3s ease;
}

.apply__tags--remove:hover svg {
    fill: rgb(245, 96, 96);
}

.apply__tags--values {
    display: flex;
}

.apply__tags--value {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 5px;
    font-weight: 700;
}

li.apply__tags--value:nth-child(n+2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    height: 30px;
    width: 1px;
    background-color: #ddd;
}

.apply__refresh .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    height: 31px;
    color: var(--secondary-text-color);
    background-color: var(--accent-color);
    border-radius: 15px;
    margin-right: 10px;
    transition: all 0.2s;
}

.apply__refresh .button:hover {
    opacity: 0.8;
}