.reachu-select {
}

.reachu-select ul {
  padding: 0;
  list-style: none;
}

.reachu-select .title{
  font-weight: 700;
  font-size: 1.3em;
}

.select_wrap{
  width: 225px;
  margin: 15px auto;
  position: relative;
  user-select: none;
  border: 1px solid black;
}

.select_wrap .default_option{
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.select_wrap .default_option li{
    padding: 10px 20px;
    margin: 0;
    height: 18px;
}

.select_wrap .default_option:before{
    content: "";
    position: absolute;
    top: 10px;
    right: 18px;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent #555555 #555555;
    transform: rotate(-45deg);
}

.select_wrap .select_ul{
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  display: none;
  margin: 0;
  border: solid 1px black;
  height: 220px;
  overflow-y: scroll;
}

.select_wrap .select_ul li{
  padding: 10px 20px;
  cursor: pointer;
  margin: 0px;
}

.select_wrap .select_ul li:first-child:hover{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover{
  background: #fff4dd;
}

.select_wrap .option{
  display: flex;
  align-items: center;
}

.select_wrap.active .select_ul{
  display: block;
}

.select_wrap.active .default_option:before{
  top: 16px;
  transform: rotate(-225deg);
}

#reachu-export-currency-btn:disabled {
  opacity: 0.7;
}