.custom-selectt {
    position: relative;
}

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

.custom-selectt .select-selected {
    color: #008E62;
    border-bottom: 1px dashed #038057;
    position: relative;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 0 20px 0 0;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    cursor: pointer;
    white-space: nowrap;
}

/*style the arrow inside the select element:*/
/*.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}*/
.custom-selectt:after{
    display: none;
}
.select-selected:after {
    position: absolute;
    top: -2px;
    right: 0px;
    background: url(/local/templates/apteka/assets/img/design/ico/header-city-arrow.svg) center center no-repeat;
    -webkit-background-size: 12px 7px;
    background-size: 12px 7px;
    content: "";
    width: 12px;
    height: 27px;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
}

/*style the items (options), including the selected item:*/
.select-items div{
    display: block;
    white-space: nowrap;
    color: #333;
    text-align: left;
    font-size: 18px;
    padding-bottom: 6px;
    font-weight: 300;
    cursor: pointer;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 15px 27px 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.25);
    max-height: 410px;
    min-width: 250px;
    overflow-y: auto;
}

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

.select-items div:hover, .same-as-selected {
    color: #008E62;
}

@media screen and (max-width: 500px) {
    .select-items{
        max-height: 355px;
    }

}