html {
  overflow-y: auto !important;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 3px #00193A; */
  border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00193A;
  border-radius: 8px;
}

a {
  transition: all .3s ease-in-out;
}

.button {
  font-family: 'Poppins Medium', sans-serif;
  color: #fff;
  background-color: #00193A;
  border-radius: 5px;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button:focus {
  color: #fff;
}

.button:disabled,
.button[disabled],
.button[disabled]:hover {
  background-color: #eee;
  border: 1px solid grey;
  color: #000;
}

.button.inner {
  min-width: 110px;
  padding: 12px 16px !important;
  height: -webkit-min-content !important;
  height: -moz-min-content !important;
  height: min-content !important;
  margin-left: 2rem;
}

.button.inner.off {
  background-color: #E7E8EC;
  color: #707070;
  cursor: not-allowed;
}

.button.inner.active:hover {
  color: #ffffff !important;
  box-shadow: 1px 1px 8px 2px #80808363;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.texto {
  color: #707070;
}

.button:hover {
  color: #fff;
}

.cerrar-sesion {
  font-size: 12px;
  min-width: 110px;
  padding: 6px 10px !important;
  height: -webkit-min-content !important;
  height: -moz-min-content !important;
  height: min-content !important;
  margin-left: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #00193A;
  border-radius: 5px;
  border: 1px solid #00193A;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cerrar-sesion:hover {
  color: #fff;
  background-color: #00193A;
}

@media (min-width: 768px) {
  section {
    width: 100%;
    min-height: 90vh;
  }

  .main-container {
    padding: 36px 36px 46px 36px;
    min-width: 675px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 675px;
    -webkit-box-shadow: 0px 5px 20px 0px rgb(200 207 227);
    box-shadow: 0px 5px 20px 0px rgb(200 207 227);
    margin-top: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .main-container.user-lobby {
    min-width: 325px;
    max-width: 325px;
  }

  .boton-l .button {
    border: 1px solid #050330;
  }

  .boton-r .button {
    border: 1px solid #050330;
  }

  .boton-l .button:hover,
  .boton-r .button:hover {
    border: 1px solid #979797;
  }
}

.tab-header {
  border: 2px solid black;
}

@media (max-width: 1024px) {
  body {
    pointer-events: none;
  }
}