.custom-select {
    position: relative !important;
    font-family: Arial !important;
}

.custom-select select {
    display: none !important;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: transparent !important;
}


/*style the arrow inside the select element:*/

.select-selected:after {
    position: absolute !important;
    content: "" !important;
    top: 25px !important;
    right: 10px !important;
    width: 0 !important;
    height: 0 !important;
    border: 4px solid transparent !important;
    border-color: rgb(0, 0, 0) transparent transparent transparent !important;
}


/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent !important;
    top: 7px !important;
}


/*style the items (options), including the selected item:*/

.select-selected {
    color: #000000 !important;
    padding: 14px 16px !important;
    cursor: pointer !important;
    user-select: none !important;
    border: 1px solid #3545674F !important;
    border-radius: 12px !important;
    height: 56px !important;
}

.select-items div {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

.select-items div:last-child {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: none;
    cursor: pointer;
    user-select: none;
}


/*style items (options):*/

.select-items {
    position: absolute !important;
    background-color: white !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99 !important;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0px 0px 22px 0px rgba(213, 213, 213, 0.52);
    max-height: 200px;
    overflow-y: scroll;
}


/*hide the items when the select box is closed:*/

.select-hide {
    display: none !important;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1) !important;
}