.c-chip,
.c-search__input::placeholder,
.c-search__btn::placeholder {
    transition: all 0.2s ease-in;
}

.c-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.c-chips-intro_text {
    font-family: var(--main-font-light);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.87);
    margin-right: 0.5rem;
}

.c-chip,
.c-chip-list {
    background-color: rgba(18, 18, 18, 0);
    border: 0.0625rem solid rgb(9, 59, 113);
    border-radius: 1rem;
    color: rgb(0, 0, 0);
    font-family: var(--main-font-light);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.015625rem;
    display: inline-block;
    padding: 0 0.75rem;
    text-decoration: none;
    height: 2.2rem;
    margin: 0.5rem 0.25rem;
    outline: none;
}

.selected-tag:hover,
.selected-tag:focus,
.selected-tag:active,
.selected-tag.is-active:hover,
.selected-tag.is-active:focus,
.selected-tag.is-active:active {
    background-color: var(--blue);
    border: 0.0625rem solid transparent;
    color: rgba(255, 255, 255, 0.87);
}

.selected-tag span {
    pointer-events: none;
}

.view-more {
    color: var(--blue);
    font-family: var(--main-font-book)";
    font-size: 14px;
    padding-left: 16px;
}

.view-more:hover {
    color: var(--redhover);
    text-decoration: none;
}

@media (max-width: 768px) {
    .c-chip {
        height: 2rem;
    }
}