.range-select-buttons .dropdown-toggle{
    
    background-color:  white !important;
}

.range-select-buttons .btn {
    padding: 10px 15px;
    margin: 0; /* Quitamos el margen para que se peguen */
    border: 1px solid rgb(255,201,7);
    font-weight: bold;
    background-color: white;
    color: rgb(14,43,87);
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-in-out;
  }
  
  .range-select-buttons .btn.active {
    background-color: rgb(255,201,7);
    color: rgb(14,43,87);
    z-index: 2;
    font-weight: bold;
  }
  
  .range-select-buttons .btn:focus {
    outline: none !important;
}
  /* Eliminamos el borde entre botones unidos */
  .range-select-buttons .btn.united {
    border-radius: 0;
    margin-left: -1px; /* Para unir visualmente los bordes */
  }
  
  /* Bordes redondeados en los extremos */
  .range-select-buttons .btn.first-united {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  
  .range-select-buttons .btn.last-united {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  /* Ajustamos el grupo de botones */
  .range-select-buttons .btn-group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    border-radius: 5px; /* Para evitar esquinas raras */
  }
  
  .range-select-buttons .btn-group .btn:not(.active) {
    z-index: 0;
  }
  

  .range-select-buttons .dropdown-menu.range-select-buttons-menu {

    padding: 13px !important;
}

.range-select-buttons-title{
color:  #0e2b57;
font-weight: bold;
font-size: 14px;
}

.range-select-buttons-subtitle{
color: rgb(189, 189, 189);
font-size: 11px;
}
.range-select-buttons .apply{
    background-color: rgb(255,201,7);
}