.dropdown-filter {
    display: flex;
    gap: 40px;
    background: #477ba5;
    padding: 35px;
}

.dropdown-filter__group {
    flex: 1;
}

.dropdown-filter__group label {
    display: block;
    text-align: left;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.dropdown-filter__hidden-label {
    visibility: hidden;
}

.dropdown-filter select {
    width: 100%;
    height: 105px;

    box-sizing: border-box;

    padding: 0 70px 0 30px;

    color: #fff;
    background-color: #032c4e;

    border: 4px solid #fff;
    border-radius: 6px;

    font-size: 27px;
    font-weight: 700;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 30px center;
}

.dropdown-filter select:focus {
    outline: none;
}

@media (max-width: 700px) {

    .dropdown-filter {
        flex-direction: column;
        gap: 20px;
    }

    .dropdown-filter__hidden-label {
        display: none;
    }

    .dropdown-filter select {
        height: 70px;
        font-size: 20px;
    }
}
