.custom-select {
    position: relative;
    border-radius: 5px;
    height: 34px;
    background-color: white;
    color: #073c5e;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    cursor: pointer;
}

.custom-select select {
    display: none;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid;
    border-color: #073c5e transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #073c5e transparent;
    top: 7px;
}

.select-selected {
    padding: 8px 30px 8px 15px;
    font-weight: 500;
    letter-spacing: 0.03rem;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    text-align: left;
    border-radius: 4px;
    border: 1px solid #91afa2;
}

.select-selected.select-arrow-active {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-items {
    position: absolute;
    background-color: white;
    z-index: 99;
    min-height: 0;
    max-height: 200px;
    height: auto;
    width: 100%;
    text-align: left;
    border-left: 1px solid #91afa2;
    border-right: 1px solid #91afa2;
    border-bottom: 1px solid #91afa2;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 3px 7px 8px -4px rgba(0, 0, 0, 0.8);
}

.select-selected.select-arrow-active .select-items {
    border-top: 0;
}

.simplebar-content > div {
    padding: 6px 24px 6px 15px;
}

.select-hide {
    display: none;
}

.custom-scrollbar .simplebar-scrollbar:before {
    background: black;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
    opacity: 0.45;
}

.select-items .simplebar-content > div:hover {
    background-color: #073c5e;
    color: #fbfbfb;
}

.select-selected:hover {
    background-color: #073c5e;
    color: #fbfbfb;
}

.select-selected:hover:after {
    border-color: #fbfbfb transparent transparent transparent;
}

.select-selected.select-arrow-active:hover:after {
    border-color: transparent transparent #fbfbfb transparent;
    top: 7px;
}