/* select drop down */


/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    width: 250px;
    margin: 25px auto 35px;
}

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

.select-selected {
    color: #08183f;
    font-size: 12px;
    font-weight: 400;
    background-color: #fff;
    text-transform: capitalize;
}

.select-selected.select-arrow-active {
    font-weight: 700;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 19px;
    margin-left: 6px;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-color: #000000 transparent transparent transparent;
}

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

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    font-size: 12px;
    letter-spacing: 1.4px;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    text-align: left;
}

.select-items div {
    font-weight: 300;
    padding: 8px 16px;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    color: #000000;
    box-shadow: 0px 20px 20px rgba(0,0,0,0.06);
    border-radius: 0 0 5px 5px;
    padding-bottom: 10px;
}

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



.select-items div:hover span,
.same-as-selected span {
    border-bottom: 2px solid #1f67f3;
}

@media (max-width: 1100px) {
    .select-selected:after {
        right: 10px;
    }
}

@media (max-width: 767px){
    .custom-select {
        position: relative;
        font-family: 'Poppins';
        width: 95%;
        margin: 0 auto 30px;
    }
}