.dropdown {
    margin-right: 2rem;
    display: flex;
    flex-direction: row;
}

.dropdown select {
    border-radius: 5rem;
    max-width: 24rem;
    width: 100%;
    padding: 1rem 4rem 1rem 2rem;
    font-weight: 500;
    border: var(--color-brand-navy) solid 2px;
    -webkit-appearance: none;
    appearance: none;
    color: var(--color-brand-navy);
    margin-bottom: 1rem;
}

.dropdown select:active,
.dropdown select:focus{
    outline: none;
}
.dropdown-container.white .dropdown select,
.dropdown.white select {
    color: var(--color-brand-navy);
}

.dropdown-container.blue .dropdown select,
.dropdown.blue select {
    color: var(--color-primary-white);
    background: var(--color-brand-navy);
}

.dropdown svg {
    position: relative;
    left: -2.25rem;
    top: 0.25rem;
    max-width: 0.8rem !important;
    min-width: 0.8rem;
    pointer-events: none;
}

.dropdown.blue select:first-child {
    margin-left: 2rem;
    margin-bottom: 0;
}

.dropdown.blue svg path {
    fill: var(--color-primary-white);
}

.dropdown select > option {
    min-height: 5rem;
    -webkit-appearance: menulist-button;
}
