.ithivecustomselect {
    font-family: "Open Sans", serif;
    overflow: visible !important;
    width: 100% !important;
    position: inherit;
}

.ithivecustomselect select {
    display: none; /*hide original SELECT element: */
}

.ithivecustomselect .select-selected {
    background-color: white;
    font-family: 'OpenSans', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #5C5C73;
    border-top: 0! important;
    position: relative;
}

/* Style the arrow inside the select element: */
.ithivecustomselect .select-selected:after {
    position: absolute;
    content: " ";
    top: 16px;
    right: 16px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #5c5c73 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.ithivecustomselect .select-selected.select-arrow-active:after {
    border-color: transparent transparent #5c5c73 transparent;
    top: 10px;
    right: 10px;
}

/* style the items (options), including the selected item: */
.ithivecustomselect .select-items div,.select-selected {
    color: #5C5C73;
    padding: 10px;
    cursor: pointer;
    border-top: 1px solid #d8dde4;
}

/* Style items (options): */
.ithivecustomselect .select-items {
    position: absolute;
    background-color: white;
    /*top: 100%;
    left: 0;
    right: 0;*/
    width: calc(100% - 80px);
    z-index: 99;
    border:1px solid #d8dde4 !important;
}

/* Hide the items when the select box is closed: */
.ithivecustomselect .select-hide {
    display: none;
}

.ithivecustomselect .select-items div:hover, .same-as-selected {
    background-color: #d8dde4;
}
