.c_custom-select {
    position: relative;
    font-family: inherit;
    text-transform: capitalize;
    /* margin: 0; */

    margin-right: 10px;

    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.c_custom-select * {
    margin: 0;
}

.c_custom-select select {
    display: none;
}

.select-selected {
    background-color: red;
    transition: inherit;
}

/* style the arrow inside the select elem */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 8px;
}

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


.select-items div,.select-selected {
    color: white;
    /* background-color: #267193; */
    background-color: #052851d4;
    padding: 4px 8px;
    /* border: 3px solid white; */
    border-top: 0;
    /* box-shadow: 0px 1px 0px grey; */

    cursor: pointer;
    font-size: 15px;
    color: white;
    font-weight: 500;

}

.select-selected {
    border-top: 3px solid white;
}

.select-selected:active {
    /* border-top: 3px solid white; */
    /* box-shadow: 0px 0px 0px grey; */
    /* transform: translate(0, 0.5px); */
}

/* Style items (options): */
.select-items {
    position: absolute;
    /* background-color: #5dc18a; */
    background-color: #052851d4;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    text-transform: capitalize;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected, .select-selected:hover {
    /* background-color: rgba(0, 0, 0, 0.1); */
    background-color: #1e646cbf;
}

.c_custom-select select:disabled ~ .select-selected {
    background-color: #f4f4f6;
    color: gray;
}

.c_custom-select select:disabled ~ .select-selected:after {
    display: none;
}
