@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@font-face {
  src: url('../fonts/gotham/Gotham-Light.woff2') format('woff2');
  font-family: 'Gotham Light';
  font-weight: 200;
}

@font-face {
  src: url('../fonts/gotham/Gotham-Book.woff2') format('woff2');
  font-family: 'Gotham Book';
  font-weight: 300;
}

@font-face {
  src: url('../fonts/gotham/Gotham-Bold.woff2') format('woff2');
  font-family: 'Gotham Bold';
  font-weight: 900;
}

/*
Color principal del sitio
hex = #ff014a
rgb = 255, 1, 74
*/
:root {
  --bgBlack: #181818;
  --greyTxt: #62656d;
  --acento: #7a97ab;
  --acento2: #bbbbbb;
  --acentoRGB: 120, 150, 171;
  --gradienteAM: linear-gradient(173deg, rgba(122, 151, 171) 0%, rgba(199, 44, 245, 1) 100%);
  --gradienteNR: linear-gradient(148deg, rgba(122, 151, 171) 0%, rgba(245, 44, 153, 1) 100%);
  --gradienteAVM: linear-gradient(9deg, rgba(229, 248, 32, 1) 0%, rgba(141, 214, 165, 1) 50%, rgba(122, 151, 171) 100%);
}

/* Personalizar los colores de slección */
::selection {
  background-color: var(--acento);
  color: #fff;
}

/*
Tapetes Grid
*/
/* .tapete-container { max-width: 500px; width: 100%; margin: 0 auto; }
.tapete-row { display: flex; gap: 6px; margin-bottom: 6px; justify-content: center; flex-wrap: wrap; }
.tapete { flex: 1 1 120px;
max-width: 140px; height: 60px;
background-color: #ededed; border: 1px solid #e0e0e0; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; cursor: pointer; }
.tapete_OCUPADO { flex: 1 1 120px;
max-width: 140px; height: 60px;
background-color: rgba(252, 0, 0, 0.4); border: 1px solid #ededed; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; cursor: not-allowed; }
.tapete_NO_DISPONIBLE { flex: 1 1 120px; max-width: 140px; height: 60px; background-color: transparent; border: none; }
.coach { background-color: #7A97AB; color: #FFF; cursor: not-allowed; } */
.container-area {
  display: grid;
  gap: 6px;
  max-width: 800px;
  margin: auto;
  position: relative;
  border: 0px solid #ccc;
  padding: 20px;
}

.front-label {
  position: absolute;
  left: -10vw;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: bold;
  font-size: 3.5em;
  color: #333;
}

.zona {
  background: #a0c4ff;
  text-align: center;
  padding: 1em;
  font-weight: bold;
  border-radius: 6px;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.entrada {
  background: #7A97AB;
  color: #FFF;
}

.zona-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.zona-group-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.tapetes-24 {
  grid-area: tapetes;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tapetes-16 {
  grid-area: tapetes;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cell {
  background: #ddd;
  border-radius: 8px;
  padding: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  color: #333;
  min-height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  margin: 0 auto;
}

.img-pesas {
  max-width: 160px;
}

.coach {
  background-color: #7A97AB;
  color: #FFF;
  cursor: not-allowed;
}

.tapete_OCUPADO {
  background-color: rgba(252, 0, 0, 0.4);
  border: 1px solid #ededed;
}

.pelotas {
  grid-area: pelotas;
}

.rack {
  grid-area: rack;
}

.pesos {
  grid-area: pesos;
}

.lockers {
  grid-area: lockers;
  background: #bdb2ff;
}

.cajas {
  grid-area: cajas;
  background: #bdb2ff;
}

.bodega {
  grid-area: bodega;
  background: #bdb2ff;
}

@media (max-width: 1300px) {
  .front-label {
    font-size: 2em;
    left: -8vw;
  }
}

@media (max-width: 1060px) {
  .front-label {
    font-size: 2em;
    left: -2vw;
  }
}

@media (max-width: 942px) {
  .front-label {
    font-size: 2em;
    left: -18px;
  }
}

@media (max-width: 600px) {
  .container-area {
    grid-template-areas:
      "pelotas"
      "rack"
      "pesos"
      "tapetes"
      "lockers"
      "cajas"
      "bodega";
    grid-template-columns: 1fr;
  }

  .zona-group {
    grid-template-columns: repeat(3, 1fr);
    /* mantiene 3 columnas */
  }

  .zona-group-2 {
    grid-template-columns: repeat(4, 1fr);
    /* mantiene 3 columnas */
  }

  .zona {
    font-size: 10px;
  }

  .cell {
    font-size: 12px;
    max-width: 60px;
    min-height: 2.5em;
  }

  .img-pesas {
    max-width: 60px;
  }

  .tapetes-16 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tapetes-24 {
    grid-template-columns: repeat(4, 1fr);
  }

  .front-label {
    font-size: 1.25em;
    left: -5px;
  }

  .coach {
    font-size: 12px;
  }
}

/*
END - Tapetes Grid
*/

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 1em 1.6em .3em;
  padding: 0;
  overflow: auto;
  color: #545454;
  font-size: 1.1em !important;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: .8em 1em 0;
  color: #595959;
  font-size: 1.5em !important;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: var(--acento) !important;
  color: #fff;
  font-size: 1em;
}

.custom-excel-button {
  color: #fff !important;
  background-color: #198754 !important;
  border-color: #198754 !important;
}

.title-paquete {
  max-width: 80%;
  font-size: 22px;
  line-height: 24px;
  color: var(--acento);
}

.cancelar-btn {
  background: #F24359 !important;
}

.lugar- {
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 6px;
  background-color: rgba(98, 101, 109, .36);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: rgba(51, 51, 51, .7);
  font-size: 16px;
  letter-spacing: 1px;
  cursor: default;
  padding: 10px 6px;
}

.mensajeLugaresDisponibles {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.ImgShowMD {
  display: block;
}

.ImgShowSM {
  display: none;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #CCC;
  background-color: var(--bgBlack);
  border-color: #dee2e6 #dee2e6 #fff;
}

.app-card-body {
  color: var(--bgBlack);
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.nav {
  background: var(--bgBlack);
}

.bg-white {
  background-color: #FFF;
  background: #FFF;
}

.color-main {
  color: var(--acento) !important;
}

.color-secondary {
  color: var(--bgBlack) !important;
}

.color-text-secondary {
  color: var(--greyTxt) !important;
}

.color-white {
  color: #FFF;
}

.bg-black {
  background: var(--bgBlack);
}

.bg-pd {
  padding: 7rem 0;
}

.bg-pd-about-us {
  padding: 3rem 0 7rem;
}

.bg-pd-contact {
  padding: 3rem 0 3rem;
}

.quienes-somos-img {
  margin-top: -25vh;
  max-height: 560px;
}

a.app-link {
  color: #FFF;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(37, 41, 48, .3);
  text-decoration-color: rgba(37, 41, 48, .3);
}

a.app-link:hover {
  color: var(--acento);
  -webkit-text-decoration-color: var(--acento);
  text-decoration-color: var(--acento);
}

.form-check-input:checked {
  background-color: var(--acento);
  border-color: var(--acento);
}

.div-iniciar-sesion {
  max-width: 350px;
  margin: 0 auto;
  color: #CCCCCC;
  font-size: 17px;
  text-align: justify;
}

.input_beatride:focus {
  color: #FFF;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgb(207 89 98 / 50%);
  -moz-box-shadow: 0 0 0 0.2rem rgba(207, 89, 98, 0.5);
  box-shadow: 0 0 0 0.2rem rgb(207 89 98 / 50%);
}

.texto_gris {
  color: #CCCCCC;
}

.home-bg {
  background-image: url('../media/home/Athena-1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* transition: all 1s; */
}

.blur-home {
  background: rgba(0, 0, 0, 0.4);
}

.bannerHomeTitle {
  color: #fff;
  font-size: 4rem;
  transition: all 1s;
}

.Call-home {
  min-height: calc(100vh - 120px);
  padding: 60px 0 0;
  margin-bottom: 20px;
}

.Btn-reserve-home {
  min-height: calc(100vh - 250px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.section-pd {
  padding: 6vh 0;
}

.section-pd-t {
  padding: 6vh 0 0;
}

.col-padding-r-0 {
  padding-right: 0 !important;
}

.col-padding-l-0 {
  padding-left: 0 !important;
}

.section-title {
  font-size: 2.85rem;
}

.section-subtitle {
  font-size: 30px;
  line-height: 38px;
}

.Bootcamp-div-home {
  max-width: 500px;
  width: 100%;
  margin-left: 15px;
  text-align: left;
}

.Round-div-home {
  max-width: 500px;
  width: 100%;
  margin-right: 15px;
  text-align: right;
  float: right;
}

.mb-8-negative {
  margin-bottom: -8px;
}

.class-img-home {
  max-width: 490px;
  width: 100%;
}

/* .imagen-zoom img {
  transition: transform 0.3s ease; 
}
.imagen-zoom:hover img {
  transform: scale(1.095);
} */
.hero-video-player_backgroundOpacity__3ihHs {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  min-height: 39.0625rem;
}

.hero-video-player_playerShortDesktop__2Zczy {
  display: flex;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  align-items: center;
}

.hero-video-player_container__301ep {
  height: calc(100vh - 96px);
  position: relative;
  z-index: 2;
  background-color: var(--bgBlack);
  overflow: hidden;
  min-height: 39.0625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
}

.hero-video-player_contentContainer__1GFIl {
  z-index: 200;
  position: relative;
  max-width: 100%;
  width: 100%;
  color: #fff;
  overflow: hidden;
  height: 100%;
  grid-gap: 0.625rem;
  margin-bottom: 0;
  min-height: calc(100vh - 115px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.rojo {
  color: var(--acento) !important;
  transition: all ease 0.2s;
}

.rojo:hover {
  opacity: 0.85;
  color: var(--acento) !important;
}

.btn_beatride_red_sesion {
  border: none !important;
}

html,
body {
  overflow-x: hidden !important;
}

b {
  font-weight: 900 !important;
}

img {
  -moz-user-drag: none;
  -webkit-user-drag: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sucursal-path-show {
  font-family: 'Gotham Bold' !important;
  font-weight: 300;
}

p,
.btnBlackSquare,
.btnBlackRound,
.btnAccLightRound,
.btnAccLightSquare {
  font-family: 'Gotham Book';
  font-weight: normal !important;
}

.nav-width {
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 15px 20px !important;
}

.navbar-dark .navbar-toggler {
  color: var(--acento) !important;
  border-color: var(--acento) !important;
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--acento) !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #fff !important;
}

.leyenda {
  color: var(--acento);
}

.card-cobro-info {
  border-left-color: var(--acento);
}

.app-card .app-icon-holder {
  color: var(--acento) !important;
  background: rgba(var(--acentoRGB), 0.12);
}

.link:hover {
  color: var(--acento) !important;
}

.app-table-hover>tbody>tr:hover {
  background: rgba(var(--acentoRGB), 0.12);
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

#loader {
  width: 120px;
  height: 120px;
  position: absolute;
  opacity: 0.75;
  left: 50%;
  top: 50%;
  background: url('../media/inicio/loader.png') no-repeat center 0;
  background-repeat: no-repeat;
  background-size: contain;
  margin: -50px 0 0 -50px;
  animation: fade 0.7s infinite;
}

.centrarContenido {
  display: flex !important;
  align-items: center !important;
}

/* ------------------------------------------ Página de Inicio */
/* Menú */
.userItem:hover .dropdown-menu {
  display: block;
  z-index: 2;
}

.userItem .dropdown-menu .nav-item {
  border: none !important;
  background: #fff;
}

.userItem .dropdown-menu .nav-link {
  color: #000 !important;
  background: transparent !important;
}

.userItem .dropdown-menu {
  border-left: solid 2px var(--acento);
  border-radius: 0 !important;
  margin-top: -2px;
}

.userItem .dropdown-menu .nav-link:hover {
  color: var(--acento) !important;
}

.nav-item .nav-link,
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Gotham Book' !important;
}

/* Banner principal */
.mianBannerHome {
  display: flex;
  position: relative;
  padding: 33vw 12px 45px 12px;
  align-items: flex-end;
}

.bannerHomeCol {
  width: 50%;
  float: left;
  display: block;
  position: relative;
}

.overlay-1 {
  padding: 0 !important;
}

.accentColor {
  color: var(--acento);
}

.app-nav .submenu-item {
  max-width: 110px;
}

.leyenda,
#InstructoresTable,
.app-card-account,
#ComprasTable {
  font-family: 'Gotham Book', sans-serif;
}

.btnAccLightRound {
  color: var(--acento);
  border: solid 1px var(--acento);
  padding: 20px 32px;
  font-size: 18px;
  border-radius: 1000px;
  float: right;
  display: table;
  transition: all ease 0.2s;
  background: transparent;
}

.btnAccLightRound:hover {
  background-color: var(--acento);
  color: #fff !important;
}

.btnAccLightSquare {
  color: var(--acento);
  border: solid 1px var(--acento);
  padding: 10px 32px;
  font-size: 1.063rem;
  border-radius: 0px;
  transition: all ease 0.2s;
}

.btnAccLightSquare:hover {
  background-color: var(--acento);
  color: #fff;
}

.ol-12,
.col-md-12,
.col-lg-12 {
  display: table;
}

.home-header {
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
}

.section-home-1 {
  background: none !important;
  overflow: hidden;
  position: relative;
}

video.bannerHomeVideo {
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
}

.bCol {
  float: left;
  display: block;
  position: relative;
}

.cols2 .bCol {
  width: 50%;
}

.setMarginTopBottom {
  margin: 75px auto !important;
}

#tarjetas {
  margin-bottom: 75px;
}

.cols3 .bCol {
  width: 33.33%;
}

.tarjetaWrapper {
  position: relative;
  padding: 0 10px;
}

img.tarjetaImg {
  display: table;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 45px;
}

.tarjetaStickerWrapper {
  position: absolute;
  display: table;
  z-index: 1;
  bottom: -35px;
  right: -20px;
}

.Sticker1 {
  width: 33%;
}

.Sticker3 {
  width: 41%;
}

img.tarjetaStickerImg {
  width: 100%;
}

.btnBlackSquare {
  border: solid 1px #000;
  border-radius: 1000px;
  padding: 12px 24px;
  display: table;
  margin: 0 auto;
  transition: all ease 0.2s;
}

.btnBlackSquare:hover {
  background-color: #000;
  color: #fff;
}

.btnFilledSquare {
  border: solid 1px var(--acento);
  background-color: var(--acento);
  border-radius: 0px;
  padding: 12px 24px;
  display: table;
  margin: 0 auto;
  transition: all ease 0.2s;
  color: #fff;
  font-size: 14px;
}

.btnFilledSquare:hover {
  color: var(--acento);
  background-color: #fff;
}

.bannerHomeBtn.btnFilledRound {
  border: solid 1px var(--acento);
  background-color: var(--acento);
  border-radius: 30px;
  padding: 15px 24px;
  display: table;
  margin: 0 auto;
  transition: all ease 0.2s;
  color: #fff;
  font-size: 1.063rem;
  text-transform: uppercase;
}

.bannerHomeBtn.btnFilledRound:hover {
  opacity: 0.85;
}

.btnWhiteSquare {
  border: solid 1px #fff;
  border-radius: 0px;
  padding: 12px 24px;
  display: table;
  margin: 0 auto;
  transition: all ease 0.2s;
  color: #fff;
}

.btnWhiteSquare:hover {
  background-color: #fff;
  color: #000;
}

.bgImageBox {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
}

.bgImageBox.petFriendly {
  background-position: center 21%;
  background-attachment: fixed !important;
  padding: 25vw 0;
}

.bgImageBox.nosotrosSection {
  background-position: center;
  padding: 175px 20px;
}

.bgImageBox.franquiciasSection {
  background-position: center;
  padding: 175px 20px;
}

.bgImageBox.faqSection {
  background-position: center;
  padding: 175px 20px;
}

.bgImageBox.contactoSection {
  background-position: center;
  padding: 175px 20px;
}

.bgImageBox.refiereSection {
  background-position: center;
  padding: 175px 0 0;
}

.bgImageBox .centrarContenido {
  justify-content: center;
}

.bgImageBox h2 {
  color: #fff;
  font-size: 64px;
  text-align: center;
}

.bgImageBox p {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.gradienteNR {
  background: rgb(248, 137, 32);
  background: var(--gradienteNR);
}

.img-logo-responsive {
  max-height: 52px !important;
  max-width: initial !important;
  height: initial !important;
}

.gradienteNR {
  padding: 60px 20px;
  display: table;
  width: 100%;
}

.tituloGigante {
  font-size: 56px;
  text-align: center;
  color: #fff;
  margin: 0 !important;
}

.tituloNegroSection {
  text-align: center;
  font-size: 42px;
}

.tituloNegroSection-2 {
  font-size: 40px;
}

.tituloNegroSection-3 {
  font-size: 22px;
}

.entrenadores {
  width: 100%;
  display: table;
  padding: 75px 0;
}

.entrenadoresInfo {
  text-align: center;
  line-height: 1.2em;
  font-size: 1.063rem;
}

.fotoGridWrapper .fotoGridItem {
  width: 25%;
  float: left;
  background-color: lightgray;
  height: 380px;
  display: table;
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.overlay-1 {
  background: rgba(0, 0, 0, 0.33) !important;
}

/* ------------------------------------------ Nosotros */
.nosotrosCabeceraContent h2 {
  text-align: center;
}

.stickerNosotrosWrapper {
  width: 200px;
  position: absolute;
  left: 25%;
  transform: translate(-50%, 0);
  bottom: -100px;
}

.stickerNosotrosWrapper img {
  width: 100%;
}

.beatrideTitle {
  font-family: 'Anton' !important;
  font-size: 28px;
}

.nosotrosInfo {
  font-size: 18px;
}

.nosotrosInfoSection {
  padding: 120px 0px 90px;
}

.nosotrosInfoImg {
  width: 100%;
}

.nosotrosInfoSection .container {
  max-width: 1000px !important;
}

.gradienteAVM {
  padding: 45px 0;
  background: var(--gradienteAVM);
}

.gradienteAVM h2 {
  color: #fff;
  text-align: center;
  font-size: 42px;
}

.footerColR * {
  text-align: right !important;
}

.footer-text a {
  text-decoration: none !important;
}

.footer-text a:hover {
  color: var(--acento) !important;
}

.footer {
  border: none !important;
  padding: 0 !important;
  margin-top: 0;
}

.footer .container {
  /* border-top: solid 1px #000; */
  padding: 30px 20px;
}

.div-instructores {
  background-color: var(--acento) !important;
  padding-top: 95% !important;
  min-height: initial !important;
  border-radius: 50% !important;
  width: 100% !important;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.div-instructores-info,
.InstructorHover:hover {
  box-shadow: none !important;
}

.barraAcento a {
  margin-top: 20px;
}

.barraAcento {
  background-color: var(--acento);
}

.barraTitleSpacer {
  padding: 60px 20px;
}

.barraTitleSpacer-2 {
  padding: 10px 20px 4rem;
}

.barraAcento2 {
  background-color: var(--acento2);
}

.coachesTitle {
  text-align: center;
}

.nombre-instructor {
  font-family: 'Anton' !important;
  font-size: 30px !important;
  color: var(--acento) !important;
  font-weight: normal !important;
}

.perfil-instructor {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all ease 0.2s;
  text-align: center;
  background-color: var(--acento);
  width: 100%;
  height: 100%;
  margin: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfil-instructor:hover {
  opacity: 1;
  color: #fff !important;
}

.perfil-instructor svg {
  margin-right: 5px;
}

.perfil-instructor:hover * {
  color: #fff !important;
  opacity: 1;
}

.coachesSection {
  position: relative;
}

.marquesina-container {
  overflow: hidden;
  width: 100%;
  margin: 0 0 40px;
  padding: 8px 0;
  white-space: nowrap;
  background-color: var(--acento);
}

.marquesina-container span {
  color: #fff;
  font-size: 20px;
  font-family: 'Gotham Book';
}

.marquesina {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Ajusta el ancho y la altura según tus necesidades */
.marquesina span {
  width: 100px;
  /* Ancho de cada palabra */
  display: inline-block;
}

/* ------------------------------------------ Registro */
.registroTitleWrapper h1,
.registroTitleWrapper p {
  text-align: center;
}

.input_beatride {
  display: block;
  width: 100%;
  /* padding: 4px 0 !important; */
  font-size: 20px;
  line-height: 1.2em;
  color: #CCCCCC;
  background-color: transparent !important;
  background-clip: initial !important;
  border-bottom: solid 2px #bbbbbb !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  height: auto !important;
  transition: all ease 0.2s !important;
  text-transform: none !important;
}

.input_beatride:focus {
  border-bottom: solid 2px var(--acento) !important;
}

.form-floating>label {
  color: #959595 !important;
  /* padding: initial; */
}

.form-floating>label.color-secondary {
  color: var(--bgBlack) !important;
  /* padding: initial; */
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: .65;
  -webkit-transform: scale(0.85) translateY(-1.2rem) translateX(0rem) !important;
  transform: scale(0.85) translateY(-1.2rem) translateX(0rem) !important;
  /* opacity: 0 !important; */
}

.registrarseTitle {
  font-size: 48px;
}

.registroTitleWrapper {
  margin-bottom: 45px;
}

.section-iniciar-sesion {
  background-color: transparent !important;
}

.form-group {
  margin-bottom: 25px !important;
}

.iniciarSesion {
  width: 15px;
  height: auto;
}

.socialIgNav {
  width: 15px;
  height: auto;
}

.socialFbNav {
  width: 15px;
  height: auto;
}

ul.navbar-nav {
  margin: 0 auto;
  width: 100% !important;
  display: inline-flex;
}

ul.nav-bar {
  max-width: 890px;
  width: 100%;
  display: table;
  margin: 0 auto;
}

.nav-item {
  display: table-cell;
}

.nav-link {
  font-size: 1.063rem !important;
}

.nav-link.btnAccLightRound {
  color: var(--acento) !important;
  border: solid 1px var(--acento);
  padding: 12px 24px !important;
  border-radius: 1000px;
  float: right;
  display: table !important;
  transition: all ease 0.2s !important;
}

.nav-link.btnAccLightRound:hover {
  color: #fff !important;
}

.navIconsBlock {
  display: table;
  margin: 0 4vw;
}

.newsletterSection {
  margin-top: 45px;
}

.newsBtn {
  float: right;
  padding: 12px 20px;
  font-size: 16px;
}

.newsCampo {
  border: solid 1px #c7c7c7 !important;
  padding: 8px 12px !important;
  color: #c7c7c7 !important;
  border-radius: 0px !important;
  font-size: 16px !important;
  appearance: none;
  -webkit-appearance: none !important;
  max-width: 200px;
  float: right;
}

.newsletterForm input.newsCampo::placeholder {
  color: #c7c7c7;
}

.newsletterForm {
  display: inline-flex;
  flex-direction: column;
  align-items: end;
  float: right;
}

.promoWrapper {
  position: relative;
  margin-bottom: 45px;
}

img.promoImg {
  width: 100%;
  border-radius: 50%;
}

.promoInfoHolder {
  text-align: center;
  margin-top: 15px;
}

.sectionTitle {
  text-align: center;
  padding: 60px;
}

.promocionesSection .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: table !important;
}

/* ------------------------------------------ FAQs */
.faqsHolder {
  display: table;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 0;
}

.faqItem {
  margin-bottom: 45px;
}

.faqItemDesc {
  font-size: 18px;
}

.contactoHolder {
  display: table;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 75px 0;
}

/* ------------------------------------------ Refiere a un amigo */
.stickerRefiereWrapper {
  width: 245px;
  position: absolute;
  right: 25%;
  transform: translate(50%, 0);
  bottom: -100px;
}

.stickerRefiereWrapper img {
  width: 100%;
  transform: rotate(45deg);
}

.refiereContent {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 145px 0 75px;
}

.refiereTitle {
  text-align: center;
  margin: 0 auto 45px;
}

.refiereLista {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  counter-reset: contadorLista;
}

.refiereLista:marker {
  color: var(--acento) !important;
}

.refiereListaItem::before {
  font-family: 'Anton';
  content: "";
  color: var(--acento);
  display: inline-block;
  width: 1em;
  counter-increment: contadorLista;
  content: counter(contadorLista);
}

.refiereButtons {
  margin: 0 auto;
  width: auto;
  display: table;
}

.refiereButtons {
  margin: 45px auto 0;
  width: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  max-width: 350px;
}

/* ------------------------------------------ Franquicias */
.franquiciasHolder {
  width: 100%;
  margin: 75px auto;
  display: table;
  max-width: 940px;
}

.franquiciasHolder * {
  text-align: center;
}

.franquiciasFormWrapper {
  max-width: 300px;
  display: table;
  margin: 45px auto 0;
  width: 100%;
  position: relative;
}

.btn_beatride_red_sesion {
  background-color: var(--acento) !important;
}

/* -------------------------------------------------- Reserva */
.barraColorReserva {
  background: var(--gradienteAM);
  width: 100%;
  height: 120px;
}

.contenedor-calendario {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.calendario {
  padding: 0;
  margin: 0 0 75px;
  background-color: transparent;
  background-image: none;
  background-image: none;
  background-position: initial;
  background-size: initial;
  background-repeat: initial;
  color: initial;
}

.calendario h1 {
  text-align: center;
}

.contenedor-titulo-calendario {
  margin-top: 45px;
}

.col-calendario {
  border: none !important;
}

.dia-calendario {
  margin-bottom: 0;
  margin-right: 10px;
}

.dia-semana-calendario {
  background: var(--acento);
  display: flex;
  align-items: center;
  vertical-align: middle;
  flex-direction: row-reverse;
  justify-content: center;
  padding: 14px;
  margin-bottom: 10px;
}

.dia-semana-calendario h2,
.dia-semana-calendario h4 {
  color: #fff;
  margin-bottom: 0;
}

.dia-semana-calendario * {
  font-size: 16px;
  font-weight: normal;
}

.entrenador-calendario {
  color: #000 !important;
  text-align: left !important;
  padding: 14px 14px !important;
  border: none !important;
  background: #ededed !important;
}

.col-calendario:hover {
  background-color: transparent !important;
}

span.hora-calendario {
  font-size: 26px !important;
  font-weight: bold !important;
  margin: 18px 0 32px !important;
  font-family: 'Gotham Book' !important;
  transition: all ease 0.2s;
}

#franquicias_beatride input {
  text-align: left !important;
}

#infoPerfil select {
  padding: 0 20px;
}

.entrenador-calendario span {
  display: table !important;
  line-height: 100% !important;
}

.clase {
  transition: all ease 0.2s !important;
}

.clase:hover {
  background: var(--acento) !important;
}

span.instruc-calendario {
  color: #000 !important;
  font-size: 22px !important;
  text-transform: capitalize !important;
  transition: all ease 0.2s !important;
}

.clase:hover .playlist,
.clase:hover .hora-calendario,
.clase:hover .instruc-calendario {
  color: #fff !important;
}

span.playlist {
  color: var(--acento) !important;
  font-weight: bold !important;
  line-height: 100% !important;
  transition: all ease 0.2s !important;
  font-size: 16px;
  font-weight: normal !important;
}

.col-calendario {
  padding-left: 5px !important;
  padding-right: 5px !important;
  word-break: break-word;
}

/* -------------------------------------------------- Beatjuice */
.tiendaWrapper {
  display: block;
  width: 100%;
  margin-bottom: 90px;
}

.productoBtn {
  background: var(--acento);
  color: #fff;
  border: none;
  display: table;
  margin: 0 auto;
  padding: 9px 28px;
  font-size: 14px;
  font-family: 'Gotham Book';
  transition: all ease 0.17s;
  border: solid 1px #fff;
}

.productoBtn:hover {
  color: var(--acento);
  background: #fff;
  border: solid 1px var(--acento);
}

.tiendaCabecera {
  width: 100%;
  display: block;
  height: 30vw !important;
  background-position: center;
  background-size: cover;
  max-height: 300px;
}

.productoCabecera {
  width: 100%;
  display: block;
  height: 30vw !important;
  background-position: center;
  background-size: cover;
  max-height: 300px;
}

.productosWrapper {
  width: 100%;
  max-width: 960px;
  margin: 45px auto;
  display: table;
}

.productosGridCol {
  display: table;
  float: left;
  width: calc(33.33% - 20px);
  margin: 0 10px 35px;
}

.productoThumb {
  width: 100%;
  margin-bottom: 15px;
}

.productoTitle {
  font-size: 20px;
  margin-bottom: 0px;
  font-family: 'Gotham Book' !important;
  font-weight: 900 !important;
}

.productoDesc {
  font-size: 16px;
  margin: 0px;
  line-height: 1.2em;
  height: 40px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.tiendaWrapper .sectionTitle {
  font-size: 45px;
}

/* --------------------------------------------------------------- ES PRODUCTO --------- */
.contador {
  display: table;
  font-size: 18px;
  margin: 0;
}

.contador-inner {
  border: solid 1px var(--acento);
}

.decrementar,
.incrementar {
  padding: 5px 10px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  transition: all ease 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.decrementar:hover,
.isProduct .incrementar:hover {
  background-color: var(--acento);
  color: #fff;
}

.valor {
  margin: 0 10px;
  min-width: 30px;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gotham Book';
}

.isProduct .productoHolder {
  max-width: 960px !important;
  margin: 0 auto;
  display: table;
}

.isProduct .productoMainTitle {
  text-align: center;
  margin: 45px auto;
  display: table;
}

.isProduct .productoColumns {
  display: table;
  width: 100%;
  margin: 0 auto;
}

.isProduct .productoCol1 {
  margin-right: 20px;
}

.isProduct .productoCol2 {
  margin-left: 20px;
}

.isProduct .productoCol1,
.isProduct .productoCol2 {
  width: calc(50% - 20px);
  float: left;
  display: table;
}

.isProduct .agregar {
  appearance: none;
  -webkit-appearance: none;
  background: var(--acento);
  color: #fff;
  border: none;
  padding: 9px 28px;
  font-size: 15px;
  font-family: 'Gotham Book';
  transition: all ease 0.17s;
  border: solid 1px #fff;
}

.isProduct .agregar:hover {
  color: var(--acento);
  background: #fff;
  border: solid 1px var(--acento);
}

.isProduct .productoPrecio {
  font-size: 20px;
  margin-bottom: 0px;
  font-family: 'Gotham Book' !important;
  font-weight: 900 !important;
}

.isProduct .pagoTitle {
  font-size: 20px;
}

.isProduct .productoDatosPago span {
  display: block;
}

/* ------------------------------------------------------------- Dashboard */
.comprarClasesWrapper {
  max-width: 1200px;
  margin: 45px auto 90px;
}

.photoCouch-div {
  width: 200px;
  height: 200px;
  /* display: table; */
  background-size: cover;
  background-position: center top;
  border-radius: 50%;
  margin: 10px auto 10px;
}

#infoPerfil input,
#infoPass input {
  background: none;
  border: none;
  border-bottom: 2px solid var(--acento) !important;
  outline: none;
  border-radius: 0;
  box-shadow: none;
}

.dataTables_scroll .dataTable {
  width: 100% !important;
}

.dataTables_scroll .dataTables_scrollHeadInner {
  padding-right: 0 !important;
  width: 100% !important;
}

.dataTables_filter {
  margin-bottom: 20px;
}

.app-nav .submenu-link {
  color: #5d6778;
  font-size: .875rem;
  margin-left: 0;
  padding: 7px 0 7px 1rem;
  position: relative;
  display: block;
  margin-bottom: 0;
  color: #fff;
  margin-top: 4px;
}

.app-nav .submenu-link.active:before {
  background-color: #000;
}

.app-page-title {
  color: var(--acento);
}

.app-nav .submenu-link:hover {
  color: #fff;
}

.app-nav .submenu-arrow {
  position: absolute;
  right: 0;
  top: 25%;
  color: #fff !important;
  display: none;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--acento) !important;
}

.nav-btn-buy:hover {
  color: #FFF !important;
}

.instructoresWrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  display: block;
}

.nav-display {
  color: var(--acento);
}

.col-comprar-clase {
  border-radius: 1000px;
  width: 100%;
  min-height: 100%;
  height: 19vw;
  max-height: 235px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  max-width: 265px;
  min-height: 255px;
  margin: 0 auto;
}

.col-comprar-clase:hover {
  box-shadow: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background: var(--acento);
}

.precio-clase:after {
  content: "" !important;
}

.col-comprar-clase:hover *,
.col-comprar-clase:hover .precio-clase:before {
  color: #fff;
}

.col-comprar-clase.compra_clase * {
  padding: 0;
}

.cant-comp-clases,
.clase-clase,
.precio-clase,
.expira-dias {
  color: #000;
}

.precio-clase {
  margin: 8px;
}

.clase-clase {
  margin: 0;
}

.puntos {
  color: #000;
  padding: 10px 0 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  display: none;
}

.cant-comp-clases {
  font-size: 20px;
}

#ProductosContenido .col {
  margin-bottom: 35px;
}

.precio-clase::before {
  font-family: 'Gotham Bold' !important;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  content: '$ ';
  font-size: 18px;
  display: inline-block;
}

.py-3 {
  border: none !important;
}

#infoPerfil .form-select {
  border: solid 1px var(--acento);
}

.app-nav .submenu-link.active {
  color: #fff !important;
  font-weight: bold;
}

.swal-button--catch,
.swal-button.swal-button--confirm {
  background-color: var(--acento);
  border-radius: 0px;
  box-shadow: none !important;
  transition: all ease 0.2s;
}

.swal-button--catch:not([disabled]):hover,
.swal-button.swal-button--confirm {
  background-color: var(--acento);
  opacity: 0.7;
}

.swal-modal .swal-text {
  text-align: center !important;
  line-height: 1.7em !important;
}

.swal-button--cancel {
  border-radius: 0px;
  background-color: #fff;
  color: var(--acento);
  border: solid 2px var(--acento);
  box-shadow: none !important;
  transition: all ease 0.2s;
}

.swal-button--cancel:not([disabled]):hover {
  background-color: #fff;
  opacity: 0.7;
}

.swal-footer {
  text-align: center;
}

.swal-modal {
  border-radius: 0px;
}

.btn_beatride_pago {
  background-color: var(--acento);
  border: none;
}

.app-card-settings {
  margin: 0 auto;
}

.app-btn-secondary {
  background-color: var(--acento);
  color: #fff !important;
  border: none !important;
}

.app-btn-secondary:hover {
  opacity: 0.75;
  background-color: var(--acento);
  color: #fff !important;
  border: none !important;
}

.app-card-account .app-card-header {
  margin: 0;
}

.contenedor-calendario-detalle {
  background: none !important;
}

.disponibles-lugares {
  color: var(--acento);
}

.clase:hover .disponibles-lugares {
  color: #fff;
}

.hora-calendario {
  color: #000;
}

.clase:hover .hora-calendario {
  color: #fff;
}

.app-btn-primary {
  background: var(--acento);
  border: none !important;
}

.app-btn-primary:hover {
  background: var(--acento);
  opacity: 0.75;
}

.nav-tabs li button,
.nav-tabs li button:hover {
  color: var(--acento);
}

.nav-tabs button.nav-link.active {
  font-weight: bold;
}

.isLoggedIn {
  background: var(--acento);
}

.isLoggedIn .iniciarSesion {
  filter: invert(1) !important;
}

.isLoggedIn.nav-link {
  padding: 10px;
  margin-bottom: 15px;
}

.userItem ul li {
  display: table;
  /* background: red; */
}

.titulo-header-beatride,
.titulo-subheader-beatride {
  text-align: center;
}

.titulo-header-beatride {
  color: var(--acento);
}

.mensaje-exito {
  background: none;
  color: var(--acento);
  padding: 8px 12px;
  border: solid 2px var(--acento);
  margin: 20px 0;
}

.mensaje-error {
  background: rgba(var(--acentoRGB), 0.1);
  color: var(--acento);
  padding: 8px 12px;
  border: solid 2px var(--acento);
  margin: 20px 0;
}

.contactoInfo {
  text-align: center;
  margin-top: 60px;
}

a:hover {
  color: var(--acento);
}

.text-end-img {
  text-align: right !important;
}

/*
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
------------ Responsive ------------
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
+                                  +
*/
@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    max-width: calc(100% - 40px) !important;
  }
}

@media only screen and (max-width:1400px) {
  .home-bg {
    background-position: center;
  }

  .bannerHomeTitle {
    font-size: 3.6rem;
  }
}

@media only screen and (max-width:1280px) {
  .bannerHomeTitle {
    font-size: 3.2rem;
  }
}

@media only screen and (max-width:1180px) {
  .home-bg {
    background-position: center;
  }
}

@media only screen and (max-width:950px) {
  .bannerHomeTitle {
    font-size: 2.8rem;
  }

  .Call-home {
    padding: 30px 0 0;
  }

  .Btn-reserve-home {
    min-height: calc(100vh - 215px);
  }
}

@media only screen and (max-width:902px) {
  .home-bg {
    background-position: center;
  }
}

@media only screen and (max-width:842px) {
  .Call-home {
    min-height: calc(100vh - 160px);
  }

  .Btn-reserve-home {
    min-height: calc(100vh - 260px);
  }

  .photoCouch-div {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width:800px) {
  .home-bg {
    background-position: center;
  }
}

@media only screen and (max-width:768px) {
  .quienes-somos-img {
    margin-top: 0;
  }
}

@media only screen and (max-width:700px) {
  .Call-home {
    min-height: calc(100vh - 370px);
    margin-bottom: 20px;
  }

  .Btn-reserve-home {
    min-height: calc(100vh - 360px);
  }

  .ImgShowSM {
    display: block;
  }

  .ImgShowMD {
    display: none;
  }
}

@media only screen and (max-width:630px) {
  .bannerHomeTitle {
    font-size: 2rem !important;
  }

  .Btn-reserve-home {
    min-height: calc(100vh - 360px);
  }
}

@media only screen and (max-width:500px) {
  .Call-home {
    padding: 15px 0 0;
    min-height: calc(100vh - 100px);
  }

  .Btn-reserve-home {
    min-height: calc(100vh - 190px);
  }
}

@media only screen and (max-width:600px) {}

@media only screen and (max-width:767px) {
  .isLoggedIn+.dropdown-menu {
    border-left: solid 2px var(--acento);
    border-radius: 0 !important;
    margin-top: -2px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .isLoggedIn+ul li {
    display: table !important;
    width: 100%;
  }

  .isLoggedIn+ul li a {
    text-align: left !important;
  }

  .navIconsBlock .nav-item {
    margin: 0 7px !important;
    display: inline-block;
  }

  .isProduct .productoCol1 {
    margin-right: 0px;
  }

  .isProduct .productoCol2 {
    margin-left: 0px;
  }

  .isProduct .productoCol1,
  .isProduct .productoCol2 {
    width: 100%;
    padding: 0 20px;
  }

  .productosGridCol {
    display: table;
    float: left;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }

  .productoDesc {
    height: auto;
  }

  .productoBtn {
    margin: 0;
  }

  .stickerRefiereWrapper {
    width: 190px;
    position: absolute;
    right: 50%;
    transform: translate(50%, 0);
    bottom: -100px;
  }

  .bannerHomeBtn.btnFilledRound {
    margin: 0 auto !important;
    float: none !important;
    display: table !important;
    width: auto !important;
  }

  .newsletterFormTitle,
  .newsletterFormInfo {
    text-align: center;
  }

  .newsletterForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: initial;
  }

  /* .col-6 {
    width: 100% !important;
  } */
  .bannerHomeCol {
    width: 100% !important;
  }

  .mianBannerHome {
    display: table;
    padding: 80vw 0 25px 0;
  }

  .bannerHomeTitle {
    text-align: center;
    max-width: initial;
  }

  .btnAccLightRound {
    padding: 12px 24px;
  }

  .centrarContenido {
    display: table !important;
    margin: 0 auto !important;
  }

  .centrarContenido>div {
    width: 100%;
  }

  .bCol2 .bCol,
  .bCol3 .bCol {
    width: 100%;
  }

  .bCol {
    margin-bottom: 45px;
  }

  img.tarjetaImg {
    margin-bottom: 35px;
  }

  .container {
    padding: 0 20px !important;
  }

  .tarjetaStickerWrapper {
    right: -10px;
  }

  video.bannerHomeVideo {
    height: 100%;
    width: auto;
  }

  .bannerHomeBtn {
    margin: 0 auto;
    float: none;
  }

  .Sticker1 {
    width: 100px;
  }

  .Sticker3 {
    width: 133px;
  }

  .fotoGridWrapper .fotoGridItem {
    width: 100%;
    height: 280px;
    background-position: center 21%;
  }

  .bgImageBox.petFriendly {
    padding: 80px 0;
  }

  .footerColL {
    margin: 25px 0 !important;
  }

  .footerColR {
    margin-bottom: 25px !important;
  }

  .footerColL *,
  .footerColR * {
    text-align: center !important;
  }

  .div-instructores {
    padding-top: 100%;
  }

  .stickerNosotrosWrapper {
    width: 150px;
    position: absolute;
    left: 50%;
    bottom: -75px;
  }

  .bgImageBox.petFriendly {
    background-attachment: scroll;
    background-position: center center;
  }

  .bgImageBox.nosotrosSection {
    position: relative;
    background-attachment: fixed;
    background-position: center center;
  }

  .bgImageBox.faqSection {
    background-attachment: fixed;
    background-position: center center;
  }
}

@media only screen and (max-width: 600px) {
  .entrenador-calendario {
    padding: 25px 15px !important;
  }
}