
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-size: 1.1vw;
}

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

.select-selected {
  background-color: #00AB4E;;
  padding: 0px 0px;
}

/*style the arrow inside the select element: top: 14px;*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 5px;
  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):  top: 7px;*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
 
}

/*style the items (options), including the selected item: padding: 8px 16px;*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 0px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options): top: 100%; #034EA2*/
.select-items {
  position: absolute;
  background-color: #034EA2;
  
  left: 0;
  right: 0;
  z-index: 99;
  font-size: 1vw;
}

/*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);
}

#linkd{
    float:right;
    height: 18px;
    position: absolute;
}




/*the container must be positioned relative:
.custom-select {
  position: relative;
  font-size: 0.8vw;
}

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

.select-selected {
  background-color: #00AB4E;
  width: 100%;
  height: 15px;
  
}

/*style the arrow inside the select element:
.select-selected:after {
  position: absolute;
  content: "";
  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;
}

/*style the items (options), including the selected item:
.select-items div,.select-selected {
  color: #ffffff;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options) DodgerBlue; : #00AB4E; 
.select-items {
  position: absolute;
  background-color: #034EA2;
  left: 0;
  right: 0;
  z-index: 99;
  font-size: 1.2vw;
}

/*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);
}
#linkd{
    width: 100%;
    float:left;
    z-index: 200;
    position: absolute;
    background-color: red;
}
*/