/**-----------------------------------------*
 * Custom Select Element
 *------------------------------------------*/
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: 'Nunito', sans-serif;
  width:100%;
}
.custom-select select {
  display: none !important; /*hide original SELECT element:*/
}
.select-selected {
  background-color: #000;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 22px;
  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: 15px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  font-size: 16px;
  padding: 15px 20px;
  color: #fff;
  background: #000;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.select-items div:hover,
.select-selected:hover,
.select-items:hover {
  /*background: #9D45AB;*/
  background:#F7F7F7;
  color:#000;
}
/*style items (options):*/
.select-items {
  max-height: 240px;
  overflow-y: scroll;
  position: absolute;
  background-color: #000;
  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:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*-- Scrollbar Customizations --*/
/* width */
.custom-select ::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.custom-select ::-webkit-scrollbar-track {
    background: #000; 
}

/* Handle */
.custom-select ::-webkit-scrollbar-thumb {
    background: #ffffff33; 
}

/* Handle on hover */
.custom-select ::-webkit-scrollbar-thumb:hover {
    background: #ffffff88; 
}
