.icon_select_mate {
    position: absolute;
    top: 10px;
    right: 2%;
    font-size: 16px;
    height: 22px;
    transition: all 275ms;
  }
  
  .select_mate {
    position: absolute;
    /* float: right; */
    min-width: 226px;
    width: 173px;
    min-height: 42px;
    font-family: 'Roboto';
    color: #000;
    font-weight: 300;
    background-color: #fff;
    /* box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.3); */
    border-radius: 3px;
    transition: all 375ms ease-in-out;
    /* Oculto el elemento select */
    margin-right:  25px;
    top: 22px;
    font-weight: 400;
    right: 0;
    border: 1px solid #e4e4e4;
  }
  .select_mate select {
    position: absolute;
    overflow: hidden;
    height: 0px;
    opacity: 0;
    z-index: -1;
  }
  
  .cont_list_select_mate {
    position: relative;
    float: left;
    width: 100%;
  }
  
  .cont_select_int {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 999;
    overflow: hidden;
    height: 0px;
    width: 100%;
    background-color: #fff;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0px 0px 3px 3px;
    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;
    background-color: #F5F5F5;
    list-style-type: none;
    padding: 10px 2%;
    margin: 0px;
    transition: all 275ms ease-in-out;
    display: block;
    cursor: pointer;
  }
  .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;
  }
  
  /* etiqueta <p> con la opcion selecionada  */
  .selecionado_opcion {
    padding: 10px 2%;
    width: 200px;
    display: block;
    margin: 0px;
    cursor: pointer;
  }
  


  /*styled checkboxes*/

  .styled-checkbox {
    position: absolute;
    opacity: 0;
  }
  .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
  }
  .styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #f3f0f0;
    border: 2px solid #d6d0d0;
  }
  .styled-checkbox:hover + label:before {
    background: #f35429;
  }
  .styled-checkbox:focus + label:before {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  }
  .styled-checkbox:checked + label:before {
    background: #f35429;
  }
  .styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
  }
  .styled-checkbox:disabled + label:before {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #ddd;
  }
  .styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
            box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }


  /*styled radio button*/

  .styled-radio {
    position: absolute;
    opacity: 0;
  }
  .styled-radio + label {
    position: relative;
    cursor: pointer;
    padding: 0;
  }
  .styled-radio + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #f3f0f0;
    border-radius: 10px;
    border: 2px solid #d6d0d0;
  }
  .styled-radio:hover + label:before {
    background: #f35429;
  }
  .styled-radio:focus + label:before {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  }
  .styled-radio:checked + label:before {
    background: #f35429;
  }
  .styled-radio:disabled + label {
    color: #b8b8b8;
    cursor: auto;
  }
  .styled-radio:disabled + label:before {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #ddd;
  }
  .styled-radio:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
            box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  