.custom-select-container ul {
    max-height: 213px;
    overflow: auto;
}

.custom-select-container li,
.custom-select-container ul {
    margin: 0 !important;
    padding: 0;
    list-style-type: none;
}

.custom-select-container label {
    margin-bottom: 0;
}

.custom-select-container {
    width: 100%;
}

.custom-select-container .radio {
    display: none !important;
}

.custom-select-title .radio ~ label {
    border-radius: 4px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-title .active-select ~ label {
    border-radius: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.custom-select-title .radio ~ label > .arrow {
    transition: .4s;
    background-image: url('img/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
}

.custom-select-title .active-select-arrow ~ label > .arrow {
    transform: rotate(180deg);
}

.radio ~ label {
    padding: 10px 15px;
    border: 1px solid #e5e5e5;
    display: block;
    cursor: pointer;
}

.custom-select-items {
    display: none;
}

.custom-select-items .radio:checked ~ label,
.custom-select-items label:hover {
    background: var(--tree-poppy) !important;
    color: #fff;
}

.custom-select-items .radio ~ label {
    background: #fff;
}

.custom-select-items li:last-child label {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.custom-select-items li label {
    border-top: none;
}

.custom-select-items input[disabled] ~ label {
    cursor: default !important;
    background: #fafafa !important;
    color: #444 !important;
}

.custom-select-items .radio:checked ~ label, .custom-select-items label:hover {
    background: var(--tree-poppy) !important;
    color: #fff;
}
