.select-container {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    max-width: 522px;
    width: 100%;
}

.select-container .select {
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    border: 1px solid #E4E6E7;
    padding-top: 18px;
    transition: all .3s ease-in-out;
}

.select-container .select:hover {
    border-color: #AAAAAA;
}

.select-container .select:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -0.525em;
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-right: 1px solid #2b2b2b;
    border-bottom: 1px solid #2b2b2b;
    z-index: 0;
    transition: .3s ease-out;
}

.select-container .select.disabled {
    background: #FAFAFA;
    cursor: not-allowed;
}

.select-container .select.disabled .select__input-inner {
    background: #FAFAFA;
    cursor: not-allowed;
}

.select-container .select .focus-field + label {
    font-size: 11px;
    top: 9px !important;
    margin: 0;
}

.select-container .select[data-state='active'] {
    border-color: #48538B;
}

.select-container .select[data-state='active'] [data-dropdown] {
    opacity: 1;
    z-index: 1000;
    transform: scaleY(1);
    border-top-color: #48538B;
}

.select-container .select[data-state='active']:after {
    top: 60%;
    transform: rotate(225deg);
}

.select-container .select__input-inner {
    background: #FFFFFF;
    border: none;
    font-size: 16px;
    font-family: 'Roboto', 'sans-serif';
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    padding: 9px 16px;
    height: 36px;
}

.select-container .select__dropdown {
    position: absolute;
    left: 0;
    opacity: 0;
    right: 0;
    padding: 12px;
    transition: all .2s ease-in-out;
    transform: scaleY(0);
    transform-origin: top;
    background: #FFFFFF;
    border: 1px solid #E4E6E7;
    box-shadow: 0 4px 16px rgba(209, 209, 209, 0.25);
    border-radius: 3px;
    z-index: -1;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch;
}

.select-container .select__dropdown-item {
    padding: 0 16px;
    line-height: 36px;
    min-height: 36px;
    cursor: pointer !important;
    font-size: 14px;
    color: #2B2B2B;
    border-radius: 3px;
    transition: .3s ease-out;
}

.select-container .select__dropdown-item.selected {
    background: #48538B;
    color: #FFFFFF;
}

.select-container .select__dropdown-item:hover {
    background: #F7F9FB;
    color: #48538B;
}

.select-container .select__label {
    position: absolute;
    pointer-events: none;
    display: inline-block;
    font-size: 16px;
    left: 16px;
    top: 50%;
    margin-top: -0.525em;
    line-height: 1em;
    transition: all 0.3s;
    color: #AAAAAA;
    cursor: text;
    font-weight: 400;
    font-family: 'Roboto', 'sans-serif';
}

.select-container .select label {
    font-size: 11px;
    top: 9px !important;
    margin: 0;
}

.city-select__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 24px;
}
