.custom-select-area p {
    margin-bottom: 0;
}

.custom-select-area {
    position: relative;
}

.custom-select-list {
    border-radius: 5px;
    position: absolute;
    width: max-content;
    top: 50px;
    height: auto;
    z-index: 9;
    background: -webkit-linear-gradient(-90deg, #124656 0%, #063a4a 45%, #063b46 100%);
    max-height: 350px;
    overflow-y: auto;
}

.custom-select-list::-webkit-scrollbar {
    background-color: #ced4da;
    width: 5px;
}

.custom-select-list::-webkit-scrollbar-thumb {
    background: #706f6f73;
    border-radius: 15px;
}

.single-select-option {
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: -webkit-linear-gradient(-90deg, #124656 0%, #063a4a 45%, #063b46 100%);
}

.icon-area {
    color: #fff;
    margin-left: 8px;
    font-size: 14px;
}

.selected-option {
    cursor: pointer;
}

.selected-option .option-thumb,
.single-select-option .option-thumb {
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-right: 7px;
    flex-shrink: 0;
}

.single-select-option:hover {
    background: #acef63;
}

.single-select-option:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.custom-select-title {
    font-size: 16px;
    color: #fff;
}

.single-select-option .custom-select-sub-title {
    font-size: 12px;
}

.custom-select {
    height: 0;
    width: 0;
    visibility: hidden;
}

.search-enabled {
    padding: 0;
    border-color: #65646473
}

.search-enabled .custom-select-filter {
    padding: 0.625rem 1.25rem;
    border: 0;
    border-radius: 5px;
}

.search-enabled .custom-select-filter:focus,
.search-enabled .custom-select-filter:active {
    border: 0;
    box-shadow: 0;
    outline: 0;
}