
.filter {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.filter-btn {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #05044A;
    text-transform: uppercase;
    text-decoration: none;
    color: #05044A;
    font-size: 14px;
    white-space: nowrap;
}
.filter-btn:first-child {
    padding-left: 0;
}
.filter-btn:last-child {
    padding-right: 0;
    border: none;
}
.filter-btn img {
    width: 40px;
    margin-right: 15px;
}


.filter-btn.no-active {
    color: rgba(5, 4, 74, .2);
}
.filter-btn.no-active img {
    opacity: .2;
}
.filter-btn.no-active:hover {
    color: rgba(5, 4, 74, 1);
}
.filter-btn.no-active:hover img {
    opacity: 1;
}

@media (max-width: 1199px) {
    .section.section-filter {
        font-size: 1.2em;
    }
    .select-item {
    padding-bottom: 10px;
    border-bottom: 2px solid #05044A;
}
}
@media (max-width: 767px) {
 .section.section-filter {
        font-size: 1em;
    }

.form-select option {
    white-space: initial;
}
.select-filter .form-select {
    min-width: auto;
    max-width: 60px;
}

}