.select-wrapper * { 
    transition: none !important; 
    transform: none !important; 
  }
  .section-select-hours {
    margin-left: 0;
    position: relative;
    margin-bottom: 20px;
    width: 293px;
    height: 50px;
    border: 1.5px solid;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--background-color-secondary);
    border-color: rgba(174, 181, 189, 0.7);
    display: flex;
  }
  .icon-time {
    position: absolute !important;
    left: -16px !important;
    top: 10px !important;
    font-size: 24px !important;
    width: 45px !important;
    height: 24px !important;
  }
  
  .icon-select {
    right: -31px !important;
    font-size: 36px !important;
    top: 3px !important;
    position: absolute !important;
  }
  .select-dropdown {
    border: 0 !important;
    margin-left: 0 !important;
    color: #0E0E0E !important;
  }
  
  .prefix ~ .select-wrapper {
    margin-left: 0 !important;
    width: calc(100%) !important;
  }
  
  .section-select-hours .input-field {
    margin: 2px !important;
    margin-left: 22px !important;
    padding: 0 21px !important;
    display: flex;
    position: relative !important; /*MIRAR AQUI*/
  }
  
  .section-select-hours input {
    width: 194px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    left: 7px !important;
  }
  .section-select-hours .select-wrapper .caret {
    display: none !important;
  }
  
  .input-field.suffix i {
    position: absolute;
    width: 3rem;
    font-size: 2rem;
    transition: color .2s;
    top: 0px;
    right: 0px;
  }
  
  .input-field.suffix i.active {
    color: #26a69a;
  }
  
  .input-field.suffix input,
  .input-field.suffix textarea {
    margin-right: 3rem;
    width: 92%;
    width: calc(100% - 3rem);
  }
  
  .input-field.suffix textarea {
    padding-top: .8rem;
  }
  
  .input-field.suffix label {
    margin-right: 3rem;
  }
  .section-select-hours ul {
    width: 293px !important;
    height: 178px !important;
    position: absolute !important;
    left: -45px !important;
    top: 49.5px !important;
    margin-left: 0 !important;
    border-radius: 8px !important;
    border-color: rgba(174, 181, 189, 0.7) !important;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 16%) !important;
  }
  .section-select-hours ul span {
    color: #0E0E0E !important;
    border-bottom: solid 1px rgba(174, 181, 189, 0.7) !important;
    margin: 0 10px !important;
    text-align: center !important;
  }
  
  .section-select-hours .selected {
    background-color: #fff !important;
  }
  .section-select-hours .selected span {
    color: var(--color-primary-calendar) !important;
    font-weight: bold;
  }
  @media only screen and (max-width: 1190px) {
    .icon-select {
      right: -28px !important;
    }
  }
  @media only screen and (max-width: 900px) {
    .icon-select {
      right: -26px !important;
    }
  }
  @media only screen and (max-width: 992px) {
    .input-field.suffix input {
      width: 86%;
      width: calc(100% - 3rem);
    }
  }
  
  @media only screen and (max-width: 600px) {
    .input-field.suffix input {
      width: 80%;
      width: calc(100% - 3rem);
    }
  }
  
  