.select_wrap{    
 float:right; width:90px; margin-left:0px; background-color:#23408e; font-size:16px;
  position: absolute;  right:65px; top:0px; 
}

.select_wrap .default_option{
  border-radius: 5px;color:#fff; height:80px;padding-top:25px;
  position: relative;
  cursor: pointer;
}

.select_wrap .default_option li{list-style: none;
    padding: 0px 22px; text-align:center;
}

.select_wrap .default_option:before{ display:none;
    content: "";transition:0.3s all;
    position: absolute;
    top: 34px;
    right: 16px;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
}

.select_wrap .select_ul{
  position: ;
  top: 80px; text-align:center; 
  left: 0%;
  width: 100%;
  background: #fff;
  border-radius: 0px;
  display: none;
}

.select_wrap .select_ul li{ color:#999;
  padding: 5px 10px ;
  cursor: pointer;font-size:14px; font-weight:500;
}
.select_wrap .select_ul li:first-child {border-bottom:1px solid #dfdfdf; border-left:1px solid #dfdfdf; border-right:1px solid #dfdfdf; }
.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: #f0f0f0; color:#000;
}

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


.select_wrap.active .select_ul{ list-style:none; overflow:hidden;
  display: block; background-color:#fff;
}

.select_wrap.active .default_option:before{
  top: 39px; transition:0.3s all;
  transform: rotate(-225deg);
}

/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/
@media (max-width: 1023px) {
.select_wrap .default_option{height:65px;padding-top:18px;}
.select_wrap .default_option:before{   top: 28px;}
.select_wrap .select_ul{  top: 30px; }
.select_wrap.active .default_option:before{  top: 33px; }
.select_wrap{  width:60px;   right:65px;}
.select_wrap .default_option li {padding:0 16px;}  
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
@media (max-width: 480px) {
}
@media (max-width: 320px) {
}
