#custom-map-form {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Para pantallas más pequeñas, como móviles */
@media (max-width: 800px) {
  #custom-map-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  #svg-map-wrapper{
    display: none;
  }
  #branch-info-box{
    width: 100%;
  }
}


#custom-map-form > div {
  width: 90%;
  display: flex;
  flex-direction: column;
}

#custom-map-form :is(input, select) {
    border-radius: var(--cb-border-radius);
    box-shadow: var(--cb-box-shadow);
    border: none;
    padding: 0 1.1rem;
    background-color: #FFF;
    height: 60px;
}
#custom-map-form select {
    background: url('/wp-content/uploads/2025/03/arrow-bottom.svg') no-repeat right 10px center;
    background-size: 20px;
    appearance: none;
	transition: all 100ms ease-in-out;
}

#custom-map-form select.open {
    background: url(/wp-content/uploads/2025/03/arrow-top-svgrepo-com.svg) no-repeat right 10px center;
	background-size: 20px;
	transition: all 100ms ease-in-out;
}

#custom-map-form label {
  margin-bottom: 1rem;
}

.mensaje-dp {
  font-size: .8rem;
}

.location-header svg{
  width: 20px;
}