.app-input-select {
    position: relative;
}
.app-input-select__comparison {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    border: 1px solid #E8E8EE;
    border-top: none;
    border-radius: 0 0 12px 12px;
    isolation: isolate;
    z-index: 3;
    background: #FFF;
    transform: translateY(-12px);
    max-height: 800px;
    overflow-y: auto;
}
.app-input-select__comparison::-webkit-scrollbar-thumb {
    background-color: #E8E8EE;
    border-radius: 0.25rem;
}
.app-input-select__comparison::-webkit-scrollbar {
    background-color: #fff;
    width: 8px;
    height: 32px;
}
.app-input-select__list {
    padding: 16px 0;
    margin: 0;
    list-style: none;
}
.app-input-select__list_columns {
    columns: 3;
}
.app-input-select__list-item {
    padding: 8px 16px;
    text-align: left;
    cursor: pointer;
}
.app-input-select__list-item:hover {
    background: #F4F4F5;
}
.app-input-select__action_open {
    transform: rotateZ(180deg);
}
