/* Geolocation input toggle */
.geo-unit-switch-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content:center;
}
.geo-unit-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  margin-bottom:0;
}
.geo-unit-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.geo-unit-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.2s;
  border-radius: 24px;
}
.geo-unit-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}
.geo-unit-switch input:checked + .geo-unit-slider {
  background-color: #9c542e;
}
.geo-unit-switch input:checked + .geo-unit-slider::before {
  transform: translateX(20px);
}
.geo-unit-switch-label {
font-weight:500;
}

/* Geolocation input toggle */
#block-custom-selectunits {
text-align:center;
margin-bottom:1.5rem;
}
#block-custom-selectunits h2 {
font-size:2.2rem;
margin-bottom:0.5rem;
}