/* Custom select */

/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-family: "Roboto-Regular";
    background: none;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: #FFF;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "\f107";
    font-family: FontAwesome;
    top: 0px;
    right: 0px;
    width: 25px;
    height: 100%;
    border: 1px solid #d3d3d3;
    background-color: #FFF;
    text-align: center;
    border: none;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #1b1f21;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #FFF;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div, .same-as-selected { transition: all 0.5s ease-in-out; }

.select-items div:hover, .same-as-selected {
    background-color: #19b596;
    color: #FFF;
}