
.custom-select {
    display: none;
}

.custom-select-style {
    margin-bottom: 16px;
    height: 48px;
    width: 100%;
    top: 0px;
    gap: 8px;
    border-radius: 5px;
    border: 1px solid #E6E8EC;
    padding: 12px 18px;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/content/redesign/img/select-arrow.svg') 96% / 14px no-repeat #fff;
    font-family: 'Lexend', sans-serif;
}

.custom-select-placeholder {
    color: #838E9E;
    font-weight: 300;
}

.custom-select-selected {
    color: rgba(66, 82, 107, 1);
    font-weight: 300;
}


.custom-select-style:active::after {
    color: #616060;
}

/* =========== */

.custom-list {
    width: 100%;
    max-height: 200px;
    position: absolute;
    overflow-y: scroll;
    top: 100%;
    left: 0;
    display: none;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    border-radius: 5px;
    overflow-x: hidden;
    cursor: pointer;
    z-index: 2;
}

.custom-list-visible {
    display: block;
}

.custom-list-element {
    width: auto;
    height: 40px;
    background-color: #fff;
    border-bottom: 1px solid #c9c9c9;
    display: flex;
    padding-left: 1em;
    justify-content: left;
    align-items: center;
    color: rgba(66, 82, 107, 1);
    font-weight: 300;
}

.custom-list-element:hover {
    background-color: #F1F1F1;
}

/* scroll bar */
.custom-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(241, 241, 241, 0.3);
    background-color: #F5F5F5;
    margin: 7px 0;
    border-radius: 10px;
}

.custom-list::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f500;
    border-radius: 10px;
}

.custom-list::-webkit-scrollbar-thumb {
    background-color: #F1F1F1;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 10px;
}

.custom-list::-webkit-scrollbar-corner {
    background-color: transparent;
}
