.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: #211f20;
    border: 1px solid #ddd;
    background: #eee;
    border-radius: 5px;
    margin: 0 10px 5px 0;
    font-weight: 500;
    padding-left: 8px;
    transition: all .3s ease;
}

.apply__tags--item:hover {
    background: rgb(219, 218, 218);
}

.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;
}