.dropdown-select__custom {
    max-width: 100% !important;
}

@media (max-width: 520px) {
    .dropdown-select__drawer--mobile-right {
        right: unset !important;
        top: unset !important;
    }
}

.dropdown-select {
    cursor: pointer;
    position: relative;
}

.dropdown-select__title {
    padding: 5px 0px;
    font-size: 13px;
}

.dropdown-select__title .svg {
    margin: 0px 0px 0px 4px;
    min-width: auto;
    min-height: auto;
}

.dropdown-select__drawer {
    position: absolute;
    top: 100%;
    left: 0px;
    display: none;
    z-index: 107;
    box-shadow: 0 1px 12px 1px rgb(0 0 0 / 12%);
    overflow: hidden;
    border-radius: 3px;
}

.dropdown-select__drawer--to-top {
    top: -6px;
    left: -15px;
}

.dropdown-select__drawer .menu-list {
    max-height: 251px;
    overflow: auto;
}

@media (max-width: 520px) {
    .dropdown-select .dropdown-select__title {
        white-space: nowrap;
        overflow: hidden;
        max-width: 160px;
        text-overflow: ellipsis;
        position: relative;
        padding-right: 10px;
    }

    .dropdown-select .title--no-max {
        max-width: none;
    }

    .dropdown-select .dropdown-select__title .svg {
        position: absolute;
        right: 0px;
        top: 50%;
        margin-top: -1px;
    }

    .dropdown-select__drawer--mobile-right {
        right: 0px;
        left: auto;
    }
}

.menu-list {
    background: #fff;
}

.menu-list__link {
    display: block;
    padding: 11px 25px 10px 15px;
    white-space: nowrap;
    font-size: 13px;
    overflow: hidden;
}

.menu-list__link:hover,
.menu-list__link--current {
    background: #f8f9fb;
}

.menu-list__link--current {
    cursor: default;
}
