html {
  height: 100%;
}

body {
  background-image: url('img/kicker/fondo_web.jpg');
  height: 100%;
}

.nav_direccion_y_redes {
  padding: 1rem 1rem 1rem 3rem;
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_direccion_y_redes .direccion {
  width: 60%;
  height: auto;
}

.nav_direccion_y_redes .registrate {
  text-align: right;
}

.bg_green_kicker {
  background: #8ad000;
  color: #fff;
}

.btn_registrate {
  height: 80%;
  width: 140px;
  border: 0.15px solid #fff;
  border-radius: 8%;
}

.seccion_botones {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.seccion_botones img {
  width: 7rem;
  height: auto;
}

.seccion_botones_mobile img {
  width: 5.5rem;
  height: auto;
}

.logo_kicker > img {
  width: min(600px, 52vh);
  max-width: 100%;
  height: auto;
}

.seccion_boton_reserva > div:last-child {
  min-width: 0;
}

.seccion_boton_reserva > div:last-child img {
  display: block;
  width: 100%;
  height: auto;
}

.img_on {
  display: none;
}

.img_active {
  width: 12rem !important;
}

.fade-in {
  animation: fadeInSwap 0.8s ease;
}

@keyframes fadeInSwap {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 576px) {
  .redes_mobile,
  .mobile_none {
    display: none !important;
  }

  body {
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 576px) {
  .direccion_desktop,
  .redes_desktop,
  .desktop_none {
    display: none !important;
  }

  .mobile_none {
    display: flex !important;
  }
}

@media (max-width: 375px) {
  body {
    height: 100% !important;
  }

  .div_3_secciones {
    height: 100% !important;
  }

  .seccion_botones_mobile img {
    width: 5em;
  }

  .direccion_mobile {
    margin-bottom: 1rem;
  }
}

@media (min-width: 375px) {
  .div_3_secciones {
    height: calc(100% - 120px);
  }
}

@media (min-width: 576px) {
  body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  body > nav {
    flex: 0 0 auto;
  }

  body > .desktop_none.div_3_secciones {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
  }
}
