/* Estilos para el filtro de rango de precios */
#hora .noUi-connect,
#precio .noUi-connect {
    background-color: #0093d1;
}
#hora .noUi-handle,
#precio .noUi-handle {
    border-radius: 50%;
    background-color: #ff9a00;
    box-shadow: 0 0 0 2px #ff9a00;
    border: none;
}
#hora .noUi-target,
#precio .noUi-target {
    width: 95%!important;
}
.noUi-horizontal .noUi-origin {
    height: 0;
    /*transform: translate(-5%, 0px)!important;*/
}
#hora .noUi-handle:before,
#hora .noUi-handle:after,
#precio .noUi-handle:before,
#precio .noUi-handle:after {
    display: none;
}
#hora .noUi-target,
#precio .noUi-target {
    border-radius: 4px;
    border: none;
    box-shadow: none;
    background-color: #e9ecef;
    height: 8px;
    margin: 20px 0;
}
#hora .noUi-handle,
#precio .noUi-handle {
    width: 20px;
    height: 20px;
    /*right: -10px;*/
    /*top: -7px;*/
    cursor: pointer;
    transition: transform 0.1s ease;
}
#hora .noUi-handle:hover,
#hora .noUi-handle:active,
#precio .noUi-handle:hover,
#precio .noUi-handle:active {
    transform: scale(1.2);
}
#hora .price-inputs,
#precio .price-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
#hora .price-inputs .price-input,
#precio .price-inputs .price-input {
    width: 45%;
}
#hora .price-inputs .price-separator,
#precio .price-inputs .price-separator {
    width: 10%;
    text-align: center;
    font-weight: bold;
    color: #adb5bd;
}
.gyg-input {
    position: relative;
}
.gyg-input .gyg-input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.gyg-input .gyg-input-field {
    padding-left: 28px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 38px;
}
.price-no-results {
    animation: fadeIn 0.5s ease-in-out;
    border-left: 5px solid var(--bs-primary);
}
.price-wrapper {
  position: relative;
  display: inline-block;
}
.currency-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.price-input {
  padding-right: 25px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-control {
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus {
  outline: 0px solid var(--color-focus);
  z-index: 1;
}
.input-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}
.input-with-hour::after {
  content: "h";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  pointer-events: none;
}