html, body{
	overscroll-behavior-y:contain;
	-webkit-user-select : none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}
.lista_asociados {
  list-style-type: "→ ";
  list-style-position: inside;
}

main {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 23%;    /* Footer height */
}

footer {
    bottom: 0;
    position: absolute;
    width: 100%;
}

.loading-dots {
  text-align: center;
  z-index: 5;
  font-size: 2.5rem
}
.loading-dots .dot {
  margin-left: 0.2em;
  margin-right: 0.2em;
  opacity: 0;
  -webkit-animation: showHideDot 1.5s ease-in-out infinite;
  animation: showHideDot 1.5s ease-in-out infinite;
}
.loading-dots .dot.one {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading-dots .dot.two {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading-dots .dot.three {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#mensajeEspera{
  position: absolute;
  top: 40%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
}
.disable-dbl-tap-zoom {
  touch-action: manipulation;
}

option[disabled]{
  display:none;
}