.custom-select-area p {
    margin-bottom: 0;
}

.custom-select-area {
    position: relative;
}

.selected-option {
    border-radius: 5px;
    cursor: pointer;
    background: hsl(var(--form-bg));
    border: 1px solid hsl(var(--white)/.1);
    padding: 14px;
}


.custom-select-list {
    border: 1px solid hsl(var(--white)/.2);
    border-radius: 5px;
    position: absolute;
    width: 100%;
    top: 50px;
    height: auto;
    z-index: 9;
    background: hsl(var(--form-bg));
    max-height: 300px;
    overflow: auto;
}


.custom-select-list::-webkit-scrollbar {
    background-color: hsl(var(--white)/.2);
    width: 5px;
}

.custom-select-list::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 15px;
}

.single-select-option {
    padding: 0.625rem 1.25rem;
    border-bottom: 1px solid hsl(var(--white)/.2);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.selected-option .option-thumb, .single-select-option .option-thumb {
    width: 28px;
    height: 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    margin-right: 7px;
}

.single-select-option:hover {
    background: hsl(var(--white) / .2);
}

.single-select-option:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.custom-select-title {
    font-size: 14px;
}

.single-select-option .custom-select-sub-title {
    font-size: 12px;
}

.custom-select {
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
}

.search-enabled {
    padding: 0;
    border-color: #65646473
}

.search-enabled .custom-select-filter {
    width: 100%;
    padding: 0.625rem 1.25rem;
    border-radius: 5px;
    background-color: transparent;
    color:#fff;
    border: none !important;
}

.search-enabled .custom-select-filter:focus,
.search-enabled .custom-select-filter:active {
    box-shadow: 0;
    outline: 0;
    border: 1px solid hsl(var(--base)) !important;
}
.selected-option:focus{
    border: 1px solid hsl(var(--base)) !important;
}

.custom-select-area.focus {
    border: 1px solid hsl(var(--base)) !important;
    border-radius: 5px;
}