.dropdown-wrapper {
    position: absolute;
    top: 100%;
    z-index: 1000;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 80px;
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px rgba(156, 156, 156, 0.2);
    background-color: var(--WHITE);
}

.dropdown-wrapper__content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-wrapper__content::-webkit-scrollbar-thumb {
    height: 32px;
    background-color: var(--SCROLLBAR);
    border-radius: 100px;
}

.dropdown-wrapper__content {
    margin-right: 3px;
    overflow: auto;
    display: flex;
    gap: 2px;
    flex-direction: column;
    height: 240px;
}

@-moz-document url-prefix() {
    .dropdown-wrapper__content {
        scrollbar-width: thin;
        scrollbar-color: var(--SCROLLBAR) var(--WHITE);
    }
}

.dropdown-wrapper__item {
    position: relative;
    padding: 10px 40px 10px 20px;
    margin-right: 3px;
    font-size: 16px;
    line-height: 19px;
}

.dropdown-wrapper__item .loading {
    font-size: 14px;
    line-height: 130%;
}

.dropdown-wrapper__input {
    padding: 0 10px;
    font-size: 18px;
    width: 100%;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--BORDER);
}

.dropdown-wrapper__item--default {
    color: var(--DEFAULT)
}

.dropdown-wrapper__item--hover:hover {
    cursor: pointer;
    background-color: var(--SECONDARY);
}

.dropdown-wrapper__item--selected {
    background-color: var(--SECONDARY);
}

.dropdown-wrapper__item--selected::after {
    content: url("data:image/svg+xml,%3Csvg width='11.507812' height='8.504089' viewBox='0 0 11.5078 8.50409' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs/%3E%3Cpath id='Vector 9' d='M1.00391 4.50409L4.00391 7.50409L10.5039 1.00409' stroke='%23009FDD' stroke-opacity='1.000000' stroke-width='2.000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    display: flex;
    color: black;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(-50%, -50%);
}

.items-select {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.items-select__input {
    padding-right: 15px;
    border: 0;
    height: 21px;
    font-size: 18px;
    width: 100%;
}


.items-select__control {
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 21px;
    border: 0;
    background: 0;
}

.items-select__control:hover {
    cursor: pointer;
}