#menu {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: -100%;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-x: hidden;
  transition: left .5s ease;
  padding: 4rem 0;
  box-sizing: border-box;
  z-index: 99999;
}

#menu.active {
  left: 0;
}

.close-btn {
  cursor: pointer;
  color: red;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 20px;
}

.section-button {
  margin: 20px auto;
  cursor: pointer;
  padding: 15px;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-align: center;
  width: 80%;
}

.content-filter {
  margin-top: 20px;
}

.ui-search-sort-filter {
  position: relative;
}

.price-sort {
  background: transparent;
  border: none;
  padding: 10px;
  width: calc(100% - 20px);
  appearance: none;
  margin-right: 25px;
}

.arrow-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ui-search-sort-filter.active .arrow-icon svg {
  transform: rotate(180deg);
}

.price-sort option {
  background-color: white;
  padding: 10px;
}

/* Línea gris debajo de cada opción como separador */
.price-sort option:not(:last-child) {
  border-bottom: 1px solid rgba(200, 200, 200, 0.5);
}

#menu .close.close-btn,
#menu .close.close-btn:hover {
  background: none;
  color: #333;
  box-shadow: none;
  padding: 0;
  
}

.container {
  display: flex;
}

#menu .left-panel {
  width: 100%;
  max-width: 86px;
  padding: 0;
  background-color: #f4f4f4;
}

#menu .left-panel button {
  display: block;
  width: 100%;
  /*margin-bottom: 10px;*/
  padding: 10px;
  background-color: transparent;
  border: none;
  /*border-radius: 5px;*/
  cursor: pointer;
  text-align: left;
  background: no-repeat;
  color: black;
  font-size: 14px;
  text-align: left;
  text-transform: inherit;
  font-weight: revert;
  line-height: 1.2;
  padding: 10px;
  box-shadow: none;
  position: relative;
  height: 56px;
  border-bottom: 1px solid #e0e0e0;
}

#menu .left-panel button:hover {
  box-shadow: none;
}

#menu .left-panel .option.selected {
  background-color: #fff;
  box-shadow: none;
  color: #0056b3;
  font-weight: 600;
  transition: font-weight 0s;
}

#menu .right-panel {
  width: 100%;
  padding: 20px;
  position: relative;
  overflow-y: auto;
  height: 400px;
  font-size: 14px;
}

#menu .right-panel h3 {
  font-size: 1rem;
  padding-bottom: .5em;
  font-weight: 700
}

.content {
  display: block;
}

#ubicacion,
#salud,
#ordenar {
  padding-bottom: 15px;
  border-radius: 5px;
}

#menu .left-panel .option.selected:before {
  content: '';
  position: absolute;
  width: 2.25px;
  height: 49px;
  background-color: #0056b3;
  left: 1px;
  top: 27px;
  transform: translateY(-50%);
  border-radius: 3px;
}

.button-container {
  margin-top: 20px;
  text-align: center;
}

#menu .action-button {
  padding: 10px 20px;
  margin: 0 10px;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-transform: initial;
  font-weight: normal;
}

#menu .action-button:hover {
  background-color: #0056b3;
}

#menu .btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.price-sort-container {
  display: flex;
  flex-direction: column;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
  /* Ocultar checkbox real */
}

.checkbox-label {
  display: inline-block;
  padding: 8px 12px;
  background-color: #ccc;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox-label {
  background-color: #0056b3;
}

#menu #ver-resultados {
  background-color: #0056b3;
  color: #fff;
}

#menu #ver-resultados,
#menu #borrar-filtros:hover {
  background-color: #0056b3;
  color: #fff;
}

#menu #borrar-filtros {
  border: 1px solid #0056b3;
  color: #0056b3;
}

#menu .content-list {
  margin: 0;
}

#menu .ui-search-filter-container {
  margin: 0;
}

#filter-section-mobile li{
  list-style-type: none;
}

@media (max-width: 768px) {

  #menu {
    display: block!important;
  }

}