.input-select {
    position: relative
}

.input-select__wrap {
    display: none;
    position: absolute;
    border-radius: 28px;
    max-height: 320px;
    background: #fff;
    box-shadow: 0 0 30px #2a30471a;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    padding: 4px;
    z-index: 30;
    overflow: hidden
}

.input-select__wrap:has(.input-select__button-wrap) .input-select__list {
    padding-bottom: 60px
}

@media (max-width: 767px) {
    .input-select__wrap {
        top:calc(100% + 8px)
    }
}

.input-select__title {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px 28px;
    border: 1px solid #E2E3E7;
    border-radius: 999px;
    outline: 0;
    transition: all .3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.input-select__title:hover {
    border: 1px solid #8D8BA2
}

.input-select__title-text {
    flex: 1 1 auto;
    display: block;
    color: #2d2c38;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.input-select__title-text.placeholder {
    color: #8d8ba2
}

.input-select__title-counter {
    flex: 0 0 auto;
    display: block;
    color: #00b0e9;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 4px
}

.input-select__title svg {
    flex: 0 0 20px;
    height: 20px
}

.input-select__search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%)
}

.input-select__search-wrap {
    position: relative
}

.input-select__search-wrap input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 12px 16px 12px 40px;
    border: 1px solid #E2E3E7;
    border-radius: 999px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    outline: 0;
    color: #2d2c38;
    transition: all .3s ease
}

.input-select__search-wrap input::-moz-placeholder {
    color: #8d8ba2
}

.input-select__search-wrap input::placeholder {
    color: #8d8ba2
}

.input-select .checkbox i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none
}

.input-select__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    max-height: 262px;
    padding: 10px 15px;
}

.input-select__list::-webkit-scrollbar {
    width: 2px;
    background: #f5f8fa
}

.input-select__list::-webkit-scrollbar-thumb {
    width: 2px;
    border-radius: 99px;
    background: #bec0c9
}

.input-select__button-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 4px;
    background-color: var(--dark-10)
}

.input-select__button-wrap .btn {
    width: 100%
}

.input-select .checkbox.input-select__item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease
}

@media (min-width: 1366px) {
    .input-select .checkbox.input-select__item:hover {
        background:#f5f8fa
    }
}

.input-select .checkbox.input-select__item label {
    flex: 1 1 auto;
    color: #2d2c38;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    padding: 6px 16px 6px 44px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.input-select .checkbox.input-select__item input {
    display: none
}

.input-select__no-results {
    text-align: center;
    color: #8d8ba2;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 6px 16px
}

.input-select__title--active {
    border-color: #8d8ba2
}

.input-select__title--active svg {
    transform: rotate(180deg);
    transition: transform .3s ease
}