/* ///  DECORATION CSS ///  */
.cont_select_center {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -30px;
  margin-left: -150px;
}

.cont_heg_50 {
  position: absolute;
  height: 50%;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fd7b52;
}





/* ///  END DECORATION CSS  ///  */
.icon_select_mate {
  position: absolute;
  top: 20px;
  right: 2%;
  font-size: 16px;
  height: 22px;
  transition: all 275ms;
}

.select_mate {
  position: relative;
  width: 100%;
  min-height: 32px;
  color: #777;
  font-weight: 300;
  background-color: #fff;
    /*  padding: 0 0 0 10px; */
    border: 1px solid #d6d4d4;
  transition: all 375ms ease-in-out;
  /* Oculto el elemento select */
}

/******HIDDE SELECT******/
.select_mate .selector {}
.select_mate select {
  display:none;
  position: absolute;
  overflow: hidden;
  height: 0px;
  opacity: 0;
}

.cont_list_select_mate {
  position: relative;
  float: left;
  width: 100%;
}

.cont_select_int {
  position: absolute;
  left: 0px;
  top: 1px;
  z-index: 999;
  overflow: hidden;
  height: 0px;
  width: 100%;
  background-color: #fff;
  padding: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
      margin-left: -1px;
    border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
  box-shadow: 1px 4px 10px -2px rgba(0, 0, 0, 0.2);
  transition: all 375ms ease-in-out;
}
.cont_select_int li {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: 1px solid #E0E0E0;
  font-size:12px;
  list-style-type: none;
  padding: 6px 2%;
  margin: 0px;
  transition: all 275ms ease-in-out;
  display: block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: 10px 5px;
}
.cont_select_int li:last-child {
  border-radius: 3px;
  /*border-bottom: 0px; */
}
.cont_select_int li:hover {
  background-color: #EEEEEE;
}
.cont_select_int .active {
  background-color: #EEEEEE;
}

.select_option {
  padding: 0 0 0 10px; 
  font-size:12px;
  width: 100%;
     height: 30px;
    line-height: 30px;
  display: block;
  margin: 0px!important;
  cursor: pointer;
    background-repeat: no-repeat;
    background-position: 10px 5px;
}

.select_option:after {
    content: '\f0d7';
    font-family: "FontAwesome";
    position: absolute;
    right: 1px;
    top: 4px;
    border: none;
    text-align: center;
    height: 23px;
    width: 23px;
    font-size: 19px;
    line-height: 21px;
    color: #676565;
    background: #ffffff;
}
.select_option.down:after {
    content: '\f0d9';
    }


.select_mate .selector {display:none;}
