@font-face {
  font-family: "neusa_thin";
  src: url("../fonts/neusanextstd-widethin-webfont.woff2") format("woff2"),
    url("../fonts/neusanextstd-widethin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "neusa_regular";
  src: url("../fonts/neusanextstd-wideregular-webfont.woff2") format("woff2"),
    url("../fonts/neusanextstd-wideregular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "neusa_medium";
  src: url("../fonts/neusanextstd-widemedium-webfont.woff2") format("woff2"),
    url("../fonts/neusanextstd-widemedium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "neusa_bold";
  src: url("../fonts/neusanextstd-widebold-webfont.woff2") format("woff2"),
    url("../fonts/neusanextstd-widebold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  line-height: 125%;
  font-family: "neusa_regular";
}

:root {
  --red: #e4002b;
  --dark-blue: #33208c;
  --yellow: #f29a36;
  --light-blue: #0e41aa;
  --violet: #ab2782;
  --offset: 0px;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.txt-white {
  color: #ffffff;
}

body {
  background-color: #000000;
}

.header.header-mobile {
  display: none;
}

.btnMenu {
  width: 48px;
  height: 48px;
  padding: 8px 6px;
  border-radius: 4px;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btnMenu.ver {
  opacity: 1;
  pointer-events: all;
}

.btnMenu span {
  width: 100%;
  height: 2px;
  background-color: #000000;
  display: block;
  transition: 0.2s cubic-bezier(0, 0, 0, 1) all;
  transform-origin: center;
}

.btnMenu span:nth-child(2) {
  margin: 5px 0;
}

.btnMenu.on span:first-child {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.btnMenu.on span:nth-child(2) {
  opacity: 0;
}

.btnMenu.on span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

.menu-custom-mobile {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10;
  transform: translateY(-100%);
  transition: all ease 0.8s;
}

.menu-custom-mobile.mostrar {
  transform: translateY(0);
}

.menu-custom-mobile ul li a {
  color: #000000;
  font-size: 18px;
  opacity: 0.6;
  transition: all ease 0.2s;
  font-weight: 400;
  text-transform: uppercase;
}

.menu-custom-mobile ul li a.active {
  color: var(--red);
}

.menu-custom-mobile ul li.active a {
  opacity: 1;
}

.menu-custom-mobile ul li a:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}

.menu-custom-mobile .nav-mobile {
  padding: 40px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all ease 0.4s;
  transition-delay: 0.8s;
}

.menu-custom-mobile .nav-mobile.mostrar {
  opacity: 1;
}

.nav-mobile .subitem {
  font-size: 16px;
  margin-left: 15px;
  padding-top: 0;
  padding-bottom: 5px;
}

.header-mobile {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.header-mobile a {
  height: 35px;
}

.header-mobile a img {
  height: 100% !important;
}

.header-mobile.open {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.txt-white {
  color: #ffffff;
}

.nav-desktop {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  left: 0;
  right: 0;
  height: 100px;
  padding: 10px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 22;
}

.nav-desktop.shadow-none {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

.nav-desktop .nav-left {
  display: flex;
}

.nav-desktop .logo-header {
  height: 30px;
  width: 120px;
  margin-right: 1rem;
  display: flex;
}

.nav-desktop ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.nav-desktop ul li {
  height: 25px;
  display: flex;
  align-items: center;
}

.nav-desktop ul li .nav-link {
  text-transform: uppercase;
  color: #000000;
  font-size: 13px;
  line-height: 13px;
  transition: all ease 0.3s;
  position: relative;
}

.nav-desktop ul li .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-desktop ul li .nav-link.active::after,
.nav-desktop ul li .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-desktop ul li.br-0 {
  border-right: 0 !important;
}

.nav-cta,
.cta {
  width: 75px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.nav-cta p,
.cta p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 30px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.nav-cta:hover p,
.cta:hover p {
  color: var(--red);
  font-weight: 700;
}

.nav-cta::before,
.cta::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.nav-cta:hover::before,
.cta:hover::before {
  transform: scale(1);
}

section {
  min-height: 100vh !important;
  padding: 160px 80px 80px;
}

.scroll-downs {
  position: absolute;
  bottom: 120px;
  margin: 0 auto;
  width: 34px;
  height: 17px;
  z-index: 3;
}

.participar .scroll-downs {
  position: relative;
  bottom: 207px !important;
  left: -245px;
}

.hotel .scroll-downs {
  position: absolute;
  bottom: 238px;
  margin: 0 auto;
  width: 34px;
  height: 17px;
  z-index: 3;
  left: 23px;
}

.participar .scroll-downs {
  bottom: 0;
}

.hotel2.h-custom {
  min-height: auto !important;
}

.hotel2 .scroll-downs {
  bottom: 178px;
}

.scroll-downs.quitar {
  display: none;
}

.mousey {
  width: 3px;
  padding: 10px 10px;
  height: 17px;
  border: 2px solid rgba(227, 227, 227, 0.8);
  border-radius: 30px;
  opacity: 0.75;
  box-sizing: content-box;
  animation-duration: 3s;
  animation-name: inicio;
}

@keyframes inicio {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: rgba(227, 227, 227, 0.8);
  opacity: 0.75;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.agenda,
.participar,
.sobre-f5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.logo-fixed {
  width: 50px;
  position: relative;
  margin-right: 15px;
}

.footer-left {
  display: flex !important;
  align-items: flex-start !important;
}

.title {
  color: #ffffff;
  font-size: 35px;
  margin-bottom: 0;
  position: relative;
  z-index: 4;
  font-family: "neusa_bold";
}

.bg-modal {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.bg-modal .modalC {
  transition: all ease 1s;
  width: 100%;
  background-color: #ffffff;
  padding: 40px;
  height: 100%;
}

.bg-modal .modalC .btn-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.bg-modal .modalC .btn-close svg {
  width: 15px;
  height: 15px;
}

.bg-modal .arrow svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(167deg)
    brightness(106%) contrast(104%);
  height: 25px;
  width: 40px;
  opacity: 1;
}

.bg-modal .carousel {
  width: 70%;
  min-height: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-modal .carousel .carousel-inner {
  height: auto;
  display: flex;
  align-items: center;
}

.bg-modal.ver {
  display: flex;
  z-index: 1000;
  flex-direction: column;
}

.official {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 80px;
  background-color: var(--red);
  text-align: center;
  z-index: 4;
}

.official p {
  font-size: 13px !important;
  margin-bottom: 0;
}

.official p span {
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
}

.none {
  display: none;
}

.agenda {
  position: relative;
  overflow: hidden;
}

.logo-header.none {
  display: none;
}

/*Generales*/
.title-section-26 {
  color: #ffffff;
  font-size: 3rem;
  font-family: "neusa_bold";
}

.parrafo-26 {
  color: #ffffff;
  font-size: 17px;
  font-family: "neusa_regular";
}

.parrafo-bold-26 {
  color: #ffffff;
  font-size: 19px;
  font-family: "neusa_bold";
}

.btn-26 {
  border-radius: 8px;
  padding: 12px 20px;
  width: 170px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none !important;
  transition: all ease 0.3s;
}

.btn-red-26 {
  background-color: var(--red);
  border: solid 1px var(--red);
  color: #ffffff;
}

.btn-red-26:hover {
  color: var(--red);
  background-color: #ffffff;
}

.btn-white-26 {
  background-color: #ffffff;
  border: solid 1px #ffffff;
  color: var(--red);
}

.btn-white-26:hover {
  background-color: var(--red);
  color: #ffffff;
}

/*Home*/
.home {
  overflow: hidden;
  background: #000000 url(../images/2026/home/bg-home.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home .home-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.home .home-left hr {
  width: 1px;
  background-color: #ffffff;
  width: 100%;
}

.home .home-left p.fecha {
  font-size: 22px;
  margin-bottom: 0;
  color: #ffffff;
  font-family: "neusa_regular";
}

.home .home-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .home-right img {
  max-width: 250px;
}

.card-home {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px #ffffff;
}

.card-home .card-top.card-top-01 {
  background-image: url(../images/2026/home/img-card-01.png);
}

.card-home .card-top.card-top-02 {
  background-image: url(../images/2026/home/img-card-02.png);
}

.card-home .card-top.card-top-03 {
  background-image: url(../images/2026/home/img-card-03.png);
}

.card-home .card-top {
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: solid 1px #ffffff;
  height: 200px;
}

.card-home .card-top::before {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.card-home .card-top h4 {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-family: "neusa_bold";
  font-size: 22px;
}

.card-home .card-bottom {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

.card-home .card-bottom h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

.card-home .card-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}

.marquee {
  color: #ffffff;
  transition: all 0.6s;
  overflow: hidden;
  background-color: var(--red);
  line-height: 45px;
  height: 45px;
  display: flex;
  align-items: center;
}

.marquee.marquee-white {
  color: var(--red);
  background-color: #ffffff;
  text-transform: uppercase;
}

.marquee.marquee-white span {
  font-family: "neusa_regular";
}

.marquee.running .marquee-inner {
  animation-play-state: running;
}

.marquee:hover .marquee-inner {
  animation-play-state: running;
}

.marquee span {
  padding: 0 0.15em;
  white-space: nowrap;
  font-family: "neusa_bold";
}

.marquee-inner {
  width: fit-content;
  display: flex;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 30s linear infinite;
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(var(--move-initial));
  }

  100% {
    transform: translateX(var(--move-final));
  }
}

.countdown-home {
  background-color: #f5f5f5;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}

.p-custom-img-home {
  padding-left: 40% !important;
}

.countdown-home .circle-img {
  display: flex;
  align-items: center;
}

.countdown-home .circle-img .bg-img {
  position: absolute;
  height: 130%;
  width: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: url(../images/2026/home/bg-img-hotel.png);
  left: -400px;
  z-index: 2;
  top: -15%;
}

.countdown-home-top {
  padding: 80px 60px;
}

.countdown-home-top p.title {
  font-family: "neusa_bold";
  color: #000000;
  font-size: 17px;
  margin-bottom: 25px;
}

.countdown-home-top .countdown {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  align-items: center;
  font-family: "neusa_regular";
}

.countdown-home-top .time-box {
  text-align: center;
}

.countdown-home-top .circle-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}

.countdown-home-top .progress-ring {
  transform: rotate(-90deg);
}

.countdown-home-top .circle-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(0deg) translate(0, -50px);
  transition: transform 0.4s linear;
}

.countdown-home-top .progress-ring__bg {
  fill: none;
  stroke: #000;
  stroke-width: 2;
}

.countdown-home-top .progress-ring__value {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 0.4s linear;
}

.countdown-home-top .progress-ring__dot {
  fill: var(--red);
  transform-origin: 55px 55px;
  transform-box: fill-box;
  transform: rotate(0deg);
  transition: transform 0.4s linear;
}

.countdown-home-top .time-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-home-top .time-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.countdown-home-top .time-label {
  font-size: 12px;
  margin-top: 2px;
  color: #000000;
}

.countdown-home-bottom {
  background: #000000 url(../images/2026/home/bg-banner-circulos.png);
  background-position: center bottom;
  background-size: cover;
  padding: 60px;
}

.countdown-home-bottom p.parrafo {
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 30px;
}

.countdown-home-bottom .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  max-width: 370px;
}

.countdown-home-bottom .item img {
  width: 50px;
  margin-right: 20px;
}

.countdown-home-bottom .item p {
  color: #ffffff;
  margin-bottom: 0;
  max-width: calc(100% - 70px);
}

.bottom-cards-home {
  background-color: #f5f5f5;
  padding: 80px 60px;
  min-height: fit-content !important;
}

.bottom-cards-home .row {
  margin: 0 auto;
  max-width: 900px;
}

.bottom-cards-home h3 {
  margin-bottom: 45px;
  color: #000000;
  font-size: 24px;
  text-align: center;
  font-family: "neusa_bold";
}

.card-container-bottom {
  position: relative;
  width: 100%;
  height: 220px;
  z-index: 1;
  float: left;
  perspective: 1000px;
}

.card-bottom-home {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transform-style: preserve-3d;
  transition: all 0.8s linear;
}

.cbh01 {
  background-color: #62228b;
}

.cbh02 {
  background-color: #5e2168;
}

.cbh03 {
  background-color: #ab2782;
}

.card-bottom-home.cbh01 .face .icon .circle {
  border-color: #62228b;
}

.card-bottom-home.cbh02 .face .icon .circle {
  border-color: #5e2168;
}

.card-bottom-home.cbh03 .face .icon .circle {
  border-color: #ab2782;
}

.card-bottom-home.cbh01 .back {
  border-color: #62228b;
}

.card-bottom-home.cbh02 .back {
  border-color: #5e2168;
}

.card-bottom-home.cbh03 .back {
  border-color: #ab2782;
}

.card-bottom-home:hover {
  transform: rotateY(-180deg);
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}

.card-bottom-home .front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-bottom-home .face .icon {
  background-color: #f5f5f5;
  border-radius: 5px;
  height: 65px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.card-bottom-home .face .icon .circle {
  border: solid 1px;
  border-radius: 50%;
  padding: 10px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-bottom-home .face .icon .circle img {
  max-width: 100%;
}

.card-bottom-home .face .txt p {
  font-size: 22px;
  color: #ffffff;
  text-align: right;
  margin-bottom: 0;
}

.card-bottom-home .face {
  position: absolute;
  padding: 20px;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-bottom-home .back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border-left: solid 2px;
}

.card-bottom-home .back .icon {
  margin-bottom: 20px;
}

.card-bottom-home .back .text-back {
  color: #000000;
  font-size: 13px;
  text-align: center;
  line-height: 125%;
}

.banner-contact {
  background-color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: fit-content !important;
  padding: 30px 80px;
}

.banner-contact .icon {
  border-right: solid 1px #ffffff;
  padding-right: 10px;
  margin-right: 10px;
}

.banner-contact .icon img {
  width: 30px;
}
.banner-contact p {
  max-width: 550px;
}

.banner-contact p,
.banner-contact a {
  color: #ffffff;
  font-size: 15px;
  text-align: left;
  margin-bottom: 0;
}

.banner-contact a {
  text-decoration: underline;
  transition: all ease 0.3s;
}

.banner-contact a:hover {
  color: #000000;
}

/*Sección EVENTO*/
.event {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000000 url(../images/2026/about/bg-circles.png);
  background-position: center center;
  background-size: cover;
  min-height: fit-content !important;
}

.event .contenedor-video {
  margin: 70px auto 0;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event .contenedor-video h2 {
  color: #000000;
  font-size: 20px;
  font-family: "neusa_bold";
  margin-bottom: 40px;
}

.event .video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* ajustá si querés */
  margin: 0 auto;
  cursor: pointer;
}

.event video {
  width: 100%;
  display: block;
  border-radius: 6px; /* opcional */
}

.event .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: solid 4px #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.event .play-btn svg {
  fill: #ffffff;
  max-width: 100%;
}

.event .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.event .play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.event .event-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event .event-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.event .event-right img {
  max-width: 100%;
  width: 350px;
}

/*Sección AGENDA*/
.agenda {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.agenda .balls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 5;
}

.agenda .balls .ball {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
  cursor: pointer;
}

.agenda .balls .ball:hover,
.agenda .balls .ball.active {
  transform: scale(1.1);
}

.agenda .balls .ball:hover p,
.agenda .balls .ball.active p {
  font-weight: 700;
}

.agenda .balls .ball p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 25px;
  transition: all ease 0.2s;
}

.agenda .balls .ball.b01 {
  background-color: var(--red);
}

.agenda .balls .ball.b02 {
  background-color: var(--dark-blue);
}

.agenda .balls .ball.b03 {
  background-color: var(--yellow);
}

.agenda .balls .ball.b04 {
  background-color: var(--violet);
}

.agenda .modalC {
  background-color: rgba(30, 30, 30, 0.9);
  border-radius: 20px;
  border: solid 1px #e5dedf;
  padding-top: 15px;
  overflow: visible !important;
}

.agenda .modalC .text-center {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 50px;
}

.agenda .modalC .item-agenda {
  margin-bottom: 30px;
}

.agenda .modalC .item-agenda .hora {
  font-family: "neusa_bold";
  font-size: 18px;
  color: #ffffff;
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
  text-align: center;
}

.agenda .modalC .item-agenda .hora:before {
  content: "";
  width: 180px;
  height: 1px;
  background-color: var(--red);
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.agenda .modalC .item-agenda .presentation {
  font-size: 16px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}

.agenda .modalC::before {
  content: "";
  width: 80px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--red);
  top: -3px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.agenda .modalC.violet {
  max-height: 95vh !important;
}

.agenda .modalC.violet::before {
  background-color: var(--dark-blue) !important;
}

.agenda .modalC.violet .hora::before {
  display: none;
}

.agenda .modalC.violet .hora {
  border-bottom: solid 1px var(--dark-blue);
  text-align: left;
  font-size: 17px;
}

.agenda .modalC.violet .presentation {
  font-size: 15px;
  text-align: left;
}

.agenda .modalC.violet .presentation a {
  color: #ffffff;
  text-decoration: underline;
}

.agenda .modalC.violet .presentation a:hover {
  font-family: "neusa_bold";
}

.agenda .modalC.violet .row {
  overflow: auto !important;
  height: 75vh;
  position: relative;
}

.agenda .modalC.violet.yellow::before {
  background-color: var(--yellow) !important;
}

.agenda .modalC.violet.yellow .hora {
  border-bottom: solid 1px var(--yellow);
}

.agenda .modalC.violet2::before {
  background-color: var(--violet) !important;
}

.agenda .modalC.violet2 .hora {
  border-bottom: solid 1px var(--violet) !important;
}

.agenda .modalC.violet2 .item-agenda .hora:before {
  background-color: transparent !important;
}

.agenda .carousel-control-prev {
  left: -140px;
  height: 60px;
  top: 40%;
}

.agenda .carousel-control-next {
  right: -140px;
  height: 60px;
  top: 40%;
}

.agenda .btnCerrar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.agenda .btnCerrar a {
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #ffffff;
  transition: all ease 0.3s;
}

.agenda .btnCerrar a:hover {
  background-color: #ffffff;
}

.agenda .btnCerrar a:hover svg {
  fill: #000000;
}

.agenda .btnCerrar a svg {
  fill: #ffffff;
  max-width: 100%;
  max-height: 100%;
  transition: all ease 0.3s;
}

.agenda .modal-requirements {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.agenda .modal-requirements .content-req {
  background-color: var(--dark-blue);
  width: 450px;
  max-width: 90%;
  padding: 10px 30px 30px 30px;
}

.agenda .modal-requirements .content-req h4 {
  color: #ffffff;
  font-size: 20px;
}

.agenda .modal-requirements .content-req .txt {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 10px;
}

.agenda .modal-requirements.ver {
  display: flex;
}

.agenda .modal-requirements.ver .btnCerrarReq {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.agenda .modal-requirements.ver .btnCerrarReq a {
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #ffffff;
  transition: all ease 0.3s;
}

.agenda .modal-requirements.ver .btnCerrarReq a:hover {
  background-color: #ffffff;
}

.agenda .modal-requirements.ver .btnCerrarReq a:hover svg {
  fill: #000000;
}

.agenda .modal-requirements.ver .btnCerrarReq a svg {
  fill: #ffffff;
  max-width: 100%;
  max-height: 100%;
  transition: all ease 0.3s;
}

/*SecciÃ³n hotel*/
.hotel {
  position: relative;
}

.hotel .title {
  position: relative;
  top: -80px;
}

.hotel .contenedor {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -50px;
}

.hotel .img-bg-circulos {
  position: absolute;
  left: 0;
  right: 0;
}

.hotel p {
  font-size: 18px;
}

.hotel .carousel {
  position: relative;
  max-width: 330px;
  z-index: 2;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  max-height: 100% !important;
}

.hotel .carousel .carousel-item {
  width: auto;
  height: 100%;
  aspect-ratio: 1;
}

.hotel .carousel .carousel-item img {
  aspect-ratio: 1;
}
.hotel .icono {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.hotel .icono img {
  filter: invert(25%) sepia(95%) saturate(7330%) hue-rotate(347deg)
    brightness(98%) contrast(89%);
  width: 50px;
  max-height: 40px;
  margin-right: 20px;
}

.hotel .icono p {
  color: #ffffff;
  margin-bottom: 0;
}

.hotel .row.hero {
  margin: 0 0 70px 0 !important;
}

.hotel .row li {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
}

.hotel .row .b-custom {
  border-left: solid 1px #ffffff;
}

.hotel .cta-white {
  width: 180px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hotel .cta-white p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: var(--red);
}

.hotel .cta-white:hover p {
  color: white;
  font-weight: 700;
}

.hotel .cta-white::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.hotel .cta-white:hover::before {
  transform: scale(1);
}

.blink1 {
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

.blink3 {
  animation-name: blink;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: blink;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

.blink5 {
  animation-name: blink;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: blink;
  -webkit-animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*.hotel2*/
.hotel2 .hero {
  padding-bottom: 80px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
  margin-bottom: 80px;
}

.hotel2 .hero img {
  max-width: 100%;
}

.hotel2 .hero .col-lg-6 {
  display: flex;
  align-items: center;
}

.hotel2 .sello::before {
  position: absolute;
  content: url(../images/sello.png);
  width: 100px;
  height: 100px;
  top: -20px;
  right: -65px;
  transform: scale(0.8);
  z-index: 6;
}

.hotel2 .title-hab {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 22px;
}

.hotel2 .habs-left .carousel {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 220px;
  border-radius: 0 !important;
}

.hotel2 .habs-left .medidas {
  display: flex;
  align-items: top;
  margin-bottom: 15px;
}

.hotel2 .habs-left .medidas svg {
  fill: #ffffff;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  position: relative;
  bottom: 3px;
}

.hotel2 .habs-left .medidas p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
}

.hotel2 .habs-left a {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: underline;
  transition: all ease 0.3s;
}

.hotel2 .habs-left a:hover {
  color: #ffffff;
  text-decoration: none;
}

.hotel2 .habs-center .row {
  align-items: center !important;
  height: 100%;
}

.hotel2 .habs-center .precios .titular {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: solid 1px #ffffff;
  margin-right: 30px;
}

.hotel2 .habs-center .precios .titular h4 {
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
}

.hotel2 .habs-center .precios h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.hotel2 .habs-center .precios h3 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hotel2 .habs-center .precios p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
}

.hotel2 .habs-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel2 .habs-right .cta {
  width: 140px !important;
  height: 30px !important;
  margin-bottom: 20px;
  line-height: 18px;
}

.hotel2 .habs-right .cta p {
  font-size: 15px;
}

.hotel2 .habs-right .cta-blue {
  background-color: var(--light-blue);
}

.hotel2 .habs-right .cta-blue:hover p {
  color: var(--light-blue);
  font-weight: 700;
}

.hotel2 .habs-right .info {
  color: #ffffff;
  font-size: 10px;
}

.hotel2 .hab-custom {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: solid 1px #ffffff;
}

.banner-hotel2 {
  background-color: var(--dark-blue);
  padding: 40px 80px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}

.banner-hotel2 h4 {
  color: #ffffff;
  margin-right: 15px;
  margin-bottom: 0;
}

.banner-hotel2 svg {
  fill: #ffffff;
  height: 22px;
  padding-bottom: 3px;
}

.banner-hotel2 .chevron-banner {
  width: 20px;
  margin-left: 60px;
  transition: all ease 0.3s;
  filter: invert(100%) sepia(3%) saturate(0%) hue-rotate(177deg)
    brightness(104%) contrast(104%);
}

.banner-hotel2 .chevron-banner.rotate {
  transform: rotate(180deg);
}

.hotel2-bottom {
  display: none !important;
}

.hotel2-bottom.ver {
  display: flex !important;
  flex-direction: column;
}

.bg-modal-hab {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  z-index: 1000;
  display: none;
}

.bg-modal-hab.ver {
  display: flex;
}

.bg-modal-hab .modal-hab {
  background-color: #222222;
  border: solid 1px #ffffff;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  width: 40%;
  max-width: 670px;
  margin-top: 80px;
  height: fit-content;
}

.bg-modal-hab .modal-hab p {
  font-size: 14px;
  color: #ffffff;
}

.bg-modal-hab .modal-hab .btnCerrar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.bg-modal-hab .modal-hab .btnCerrar a {
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #ffffff;
  transition: all ease 0.3s;
}

.bg-modal-hab .modal-hab .btnCerrar a:hover {
  background-color: #ffffff;
}

.bg-modal-hab .modal-hab .btnCerrar a:hover svg {
  fill: #000000;
}

.bg-modal-hab .modal-hab .btnCerrar a svg {
  fill: #ffffff;
  max-width: 100%;
  max-height: 100%;
  transition: all ease 0.3s;
}

.bg-modal-hab .modal-hab .titular {
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: solid 1px #ffffff;
}

.bg-modal-hab .modal-hab .titular h3 {
  color: #ffffff;
  margin-bottom: 0;
}

/*Participar*/
.participar {
  overflow: hidden;
}

.participar h1,
.participar p,
.participar h5 {
  position: relative;
  z-index: 2;
}

.participar .bajada {
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 30px;
}

.participar .bajada a {
  color: #ffffff;
  text-decoration: underline;
  transition: all ease 0.3s;
}

.participar .bajada a:hover {
  color: var(--red);
}

.participar h3 {
  color: var(--red);
  font-size: 20px;
  margin-bottom: 20px !important;
  position: relative;
  z-index: 2;
}

.participar .divider {
  background-color: #727272;
  height: 2px;
  width: 60px;
  margin: 30px 0;
}

.participar .icon {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.participar .icon img {
  height: auto;
  max-height: 30px;
  margin-right: 20px;
  width: 30px;
  filter: invert(8%) sepia(85%) saturate(7499%) hue-rotate(343deg)
    brightness(110%) contrast(100%);
}

.participar h5 a {
  color: #ffffff;
  text-decoration: underline;
  transition: all ease 0.3s;
}

.participar h5 a:hover {
  color: var(--red);
}

.participar .contenedores {
  display: flex;
  align-items: center;
  z-index: 3;
  position: relative;
  margin-bottom: 60px;
}

.participar .contenedores .contenedor {
  display: flex;
  align-items: center;
  padding: 25px 60px 20px 20px;
  border-radius: 20px;
  border: solid 1px #ffffff;
  width: 350px;
  min-height: 190px;
  background-color: #000000;
}

.participar .contenedores .contenedor img {
  width: 65px;
  max-height: 45px;
  margin-right: 15px;
  height: auto;
}

.participar .contenedores .contenedor p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
  max-width: 100% !important;
}

.participar .contenedores .contenedor:nth-child(2) {
  position: relative;
  left: -50px;
}

.participar .contenedores .contenedor:nth-child(3) {
  position: relative;
  left: -100px;
}

.participar .contenedores .contenedor:nth-child(4) {
  position: relative;
  left: -150px;
}

.participar .recuadro {
  max-width: 550px;
  padding: 0;
  background-color: #000000;
  position: relative;
  z-index: 3;
}

.participar .recuadro .icon h5 {
  font-size: 16px;
  color: #727272;
}

.participar .recuadro p {
  font-size: 18px;
}

.participar .recuadro .cta-red {
  width: 180px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.participar .recuadro .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.participar .recuadro .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.participar .recuadro .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.participar .recuadro .cta-red:hover::before {
  transform: scale(1);
}

.participar .options {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  justify-content: center;
  max-width: 600px;
}

.participar .options .ball {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all ease 0.3s;
  margin: 0 20px;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.participar .options .ball:hover {
  transform: scale(1.1);
}

.participar .contentBalls {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 60px;
}

.participar .options .ball p {
  color: #ffffff;
  font-size: 20px;
  line-height: 115%;
  margin-bottom: 0;
  text-align: center;
}

.participar .options .ball.b01 {
  background-color: var(--red);
}

.participar .options .ball.b02 {
  background-color: #33208c;
}

.participar2 {
  overflow-y: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.participar2 .options {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 6;
}

.participar2 h1 {
  position: relative;
  z-index: 6;
  margin-bottom: 40px !important;
}

.participar2 .options .ball {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all ease 0.3s;
  margin: 0 20px;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.participar2 .options .ball:hover {
  transform: scale(1.2);
}

.participar2 .options .ball p {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
  text-align: center;
  font-family: "neusa_bold";
}

.participar2 .options .ball.b01 {
  background-color: var(--red);
}

.participar2 .options .ball.b02 {
  background-color: #33208c;
}

.pasos-group {
  overflow: hidden;
}

.pasos-group .pasos {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.pasos-group .pasos .paso {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.pasos-group .pasos .paso .paso-left {
  overflow: hidden;
  width: 70%;
}

.pasos-group .pasos .paso .paso-left .num {
  background-color: var(--red);
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.pasos-group .pasos .paso .paso-left .num:before {
  position: absolute;
  content: "";
  width: 800px;
  left: 40px;
  right: 0;
  top: 20px;
  height: 1px;
  background-color: #ffffff60;
}

.pasos-group .pasos .paso .paso-left p {
  margin-bottom: 0;
  font-family: "neusa_bold";
  font-size: 20px;
  color: #ffffff;
}

.pasos-group .pasos .paso .paso-left .title-paso {
  color: #ffffff;
  font-size: 28px;
  font-family: "neusa_bold";
}

.pasos-group .pasos .paso .paso-right {
  max-width: 30%;
  margin-left: 30px;
}

.pasos-group .pasos .paso .paso-right p {
  font-size: 16px;
  color: #ffffff;
}

.pasos-group .pasos .paso .paso-right .cta-red {
  width: 180px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.pasos-group .pasos .paso .paso-right .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.pasos-group .pasos .paso .paso-right .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.pasos-group .pasos .paso .paso-right .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.pasos-group .pasos .paso .paso-right .cta-red:hover::before {
  transform: scale(1);
}

.participar3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.participar3 h1,
.participar3 p {
  position: relative;
  z-index: 6;
}

/*Sponsors*/
.sponsors {
  overflow: hidden;
  position: relative;
}

.sponsors .img-bg-circulos svg {
  position: absolute;
  top: -600px;
  right: -700px;
  width: 1500px;
  height: 1500px;
}

.sponsors .row {
  position: relative;
  z-index: 6;
}

.sponsors .title {
  margin-bottom: 25px;
}

.sponsors ul {
  margin-bottom: 40px;
}

.sponsors ul li,
.sponsors p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

.sponsors li a {
  color: var(--red);
  text-decoration: underline;
  transition: all ease 0.3s;
}

.sponsors li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.sponsors .cta-red {
  width: 180px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.sponsors .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.sponsors .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.sponsors .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.sponsors .cta-red:hover::before {
  transform: scale(1);
}

.sponsors-infinity {
  margin-bottom: 50px !important;
}

.sponsors .sponsor {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 80px;
  overflow: hidden;
}

.sponsors .sponsor .titular-sponsor {
  margin-bottom: 20px;
}

.sponsors .sponsor .titular-sponsor h3 {
  color: #ffffff;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  background-color: #000000;
}

#sponsors {
  padding-top: 60px !important;
}

div:where(.swal2-container).swal2-backdrop-show,
div:where(.swal2-container).swal2-noanimation {
  background: rgba(0, 0, 0, 0.9);
}

/* .sponsors .sponsor .titular-sponsor h3:before {
    content: "";
    position: absolute;
    width: 1000px;
    right: 190px;
    height: 1px;
    top: 15px;
    background-color: #525252;
} */

.sponsors .sponsor .titular-sponsor h3:after {
  content: "";
  position: absolute;
  width: 1000px;
  left: 170px;
  height: 1px;
  top: 15px;
  background-color: #525252;
}

.sponsors .sponsor .recuadro {
  border: solid 1px #525252;
  border-radius: 15px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  cursor: pointer;
}

.sponsors .sponsor .recuadro img {
  max-width: 100%;
  max-height: 100%;
}

.sponsors .sponsors-infinity h3 {
  font-size: 30px;
}

.sponsors .sponsors-infinity .recuadro {
  width: 300px;
  height: 185px;
  margin: 10px;
}

.sponsors .sponsors-black h3 {
  font-size: 24px;
}

.sponsors .sponsors-black .recuadro {
  width: 220px;
  height: auto;
  margin: 10px;
}

.sponsors .sponsors-essential h3 {
  font-size: 18px;
}

.sponsors .sponsors-essential .recuadro {
  width: 130px;
  height: 80px;
  padding: 15px;
  margin: 10px;
}

.sponsors .sponsors-pro .recuadro {
  width: 180px !important;
  height: auto;
  margin: 5px 10px;
}

.sponsors .sponsors-pro h3 {
  font-size: 21px;
}

.sponsors .modal-hab {
  padding: 25px 40px 50px 40px;
}

.sponsors .modal-hab .txt {
  margin-bottom: 30px;
}

.sponsors .modal-hab .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.sponsors .modal-hab .logo img {
  width: 150px;
}

/*Sobre F5*/
.sobre-f5 {
  overflow: hidden;
}

.sobre-f5 .title {
  margin-bottom: 35px;
}

.sobre-f5 .f5-left {
  position: relative;
  z-index: 6;
}

.sobre-f5 .f5-left p {
  color: #ffffff;
}

.sobre-f5 .f5-left p span {
  color: var(--red);
  font-size: 55px;
  line-height: 13px;
  position: relative;
  top: 12px;
}

.sobre-f5 .f5-right {
  position: relative;
  z-index: 6;
}

.sobre-f5 .f5-right .item {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}

.sobre-f5 .f5-right .item img {
  width: 170px;
  margin-right: 20px;
  position: relative;
  bottom: -20px;
}

.sobre-f5 .f5-right .item p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
  width: calc(100% - 190px);
}

.sobre-f5 .f5-top {
  margin-bottom: 60px;
}

.sobre-f5 .f5-bottom {
  position: relative;
  z-index: 6;
}

.sobre-f5 .f5-bottom img {
  width: 80px;
  margin-bottom: 30px;
}

.sobre-f5 .f5-bottom h5 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
  min-height: 53px;
}

.sobre-f5 .f5-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 20px;
}

.sobre-f5 .f5-bottom .cta-red {
  width: 130px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.sobre-f5 .f5-bottom .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 30px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.sobre-f5 .f5-bottom .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.sobre-f5 .f5-bottom .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.sobre-f5 .f5-bottom .cta-red:hover::before {
  transform: scale(1);
}

/*Formulario*/
.hidden {
  display: none !important;
}

.formulario {
  background-color: #f5f5f5 !important;
  display: block !important;
}

.formulario .volver,
.section-term .volver {
  color: var(--red);
  text-decoration: underline;
  transition: all ease 0.3s;
}

.formulario .volver:hover,
.section-term .volver:hover {
  text-decoration: none;
}

.formulario h1 {
  font-size: 2.2rem !important;
  margin: 25px 0 15px 0;
}

.formulario .info {
  color: var(--red);
  font-family: "neusa_medium";
  max-width: 680px;
  margin-bottom: 30px;
}

.formulario .recuadro {
  background-color: #ffffff;
  padding: 50px 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 15px 1px rgba(164, 164, 164, 0.55);
  -webkit-box-shadow: 0px 0px 15px 1px rgba(164, 164, 164, 0.55);
  -moz-box-shadow: 0px 0px 15px 1px rgba(164, 164, 164, 0.55);
}

.formulario .recuadro .icon-chevron {
  display: none;
}

.formulario .recuadro .title-form {
  margin-bottom: 20px;
  font-family: "neusa_bold";
}

.formulario .recuadro .form-check {
  margin-bottom: 7px;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
}

.formulario .recuadro .form-check .form-check-input {
  margin-top: 0;
}

.formulario .recuadro .form-control {
  height: 100%;
}

.formulario .terminos {
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.formulario .terminos .form-check-input {
  margin-top: 0 !important;
}

.formulario .terminos a {
  color: var(--red);
  text-decoration: underline;
  transition: all ease 0.3s;
}

.formulario .terminos a:hover {
  text-decoration: none;
}

.formulario .cta {
  width: 150px !important;
  height: 30px !important;
  margin-bottom: 20px;
  margin-left: 50px;
  margin-top: 20px;
  border: solid 1px var(--red);
}

.formulario .cta-auto {
  width: 200px !important;
  margin-left: -10px !important;
}

.formulario .cta-auto p {
  font-size: 13px !important;
}

.formulario .cta p {
  font-size: 15px;
}

.formulario .alerts {
  padding-left: 50px;
  margin: 15px 0;
}

.contacto .alerts {
  margin: 15px 0;
}

.formulario .alerts .alert,
.contacto .alerts .alert {
  border: solid 2px var(--red);
  padding: 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  max-width: 450px;
}

.formulario .alerts .alert .alert-icon,
.contacto .alerts .alert .alert-icon {
  margin-right: 15px;
  width: 40px !important;
}

.formulario .alerts .alert .alert-icon img,
.contacto .alerts .alert .alert-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: invert(11%) sepia(86%) saturate(7287%) hue-rotate(345deg)
    brightness(88%) contrast(103%);
}

.formulario .alerts .alert .alert-text,
.contacto .alerts .alert .alert-text {
  max-width: calc(100% - 65px) !important;
}

.formulario .alerts .alert .alert-text p,
.contacto .alerts .alert .alert-text p {
  font-size: 14px !important;
  color: var(--red);
}

.formulario .form-right {
  position: relative;
}

.formulario .form-right .cuadro-fixed {
  position: sticky !important;
  top: 120px;
}

.formulario .form-right h3 {
  color: #727272;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.formulario .form-right .subtitle {
  text-transform: uppercase;
  color: #727272;
  text-align: right;
  width: 100%;
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.formulario .form-right .row .cantidad {
  background-color: var(--red);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 10px;
}

.formulario .form-right .row .cantidad span {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 17px;
  font-family: "neusa_bold";
}

.formulario .form-right .row .item h5 {
  font-size: 16px;
  margin-bottom: 0;
  font-family: "neusa_bold";
}

.formulario .form-right .row .item p {
  margin-bottom: 0;
  font-size: 13px;
}

.formulario .form-right .row .price {
  text-align: right;
}

.formulario .form-right .row .price h5 {
  font-size: 18px;
  /*font-family: 'neusa_bold' !important;*/
}

.formulario .form-right .row .price p {
  font-size: 11px;
}

.formulario .form-right .hotel-name {
  font-family: "neusa_bold";
  font-size: 19px;
}

.formulario .form-right .icono {
  display: flex;
  align-items: center;
}

.formulario .form-right .icono svg {
  fill: #727272;
  width: 13px;
  margin-right: 8px;
}

.formulario .form-right .icono p {
  font-size: 12px;
  margin-bottom: 0;
  color: #727272;
}

.formulario .form-right .row.line {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: solid 1px #c6c5c5;
}

.formulario .form-right .fechas {
  display: flex;
  justify-content: space-between;
}

.formulario .form-right .fechas .check {
  font-size: 15px;
  color: #727272;
  margin-bottom: 5px;
}

.formulario .form-right .fechas .icono svg {
  width: 20px;
}

.formulario .form-right .fechas .icono p {
  margin-bottom: 0;
  margin-top: 4px;
}

.formulario .form-right .total {
  margin: 40px 0;
  background-color: var(--red);
  padding: 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
  left: -40px;
  width: calc(100% + 80px);
}

.formulario .form-right .total p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 20px;
  font-family: "neusa_bold";
  text-transform: uppercase;
}

.formulario .form-right .total p:last-child {
  text-align: right;
}

.formulario .form-right .info {
  margin-bottom: 0;
}

.formulario .form-right .info p {
  font-size: 11px;
  color: #727272;
  margin-bottom: 0;
}

.formulario .select_wrap {
  width: 100%;
  position: relative;
  user-select: none;
}

.formulario .select_wrap .default_option {
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  background-color: transparent !important;
}

.formulario .select_wrap .default_option:before {
  content: url(../images/chevron-bottom.svg);
  position: absolute;
  width: 10px;
  height: 10px;
  right: -4px;
  top: 0px;
}

.formulario .select_wrap .select_ul {
  position: absolute;
  top: 55px;
  left: -20px;
  width: calc(100% + 240px);
  background: #fff;
  border-radius: 5px;
  display: none;
  border: solid 1px #727272;
  border-radius: 10px;
  overflow: hidden;
  z-index: 7;
}

.formulario .select_wrap .select_ul li {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: solid 1px #727272;
}

.formulario .select_wrap .select_ul li:first-child:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.formulario .select_wrap .select_ul li:last-child:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.formulario .select_wrap .select_ul li:hover {
  background: #f5f2f2;
}

.formulario .select_wrap .option {
  display: flex;
  align-items: center;
}

.formulario .select_wrap .option .option-left {
  display: flex;
  align-items: flex-start;
}

.formulario .select_wrap .option .option-left img {
  width: 80px;
  border: solid 1px #727272;
  border-radius: 5px;
  margin-right: 10px;
}

.formulario .select_wrap .option .option-left .description {
  padding-right: 10px;
  margin-right: 10px;
}

.formulario .select_wrap .option .option-left .description h4 {
  font-size: 12px;
  margin-bottom: 5px;
  font-family: "neusa_bold";
}

.formulario .select_wrap .option .option-left .description p {
  font-size: 11px;
  margin-bottom: 0;
  line-height: 115%;
}

.formulario .select_wrap .option .option-right {
  width: 110px;
}

.formulario .select_wrap .option .option-right h4 {
  font-family: "neusa_bold";
  font-size: 20px;
  margin-bottom: 0;
  line-height: 100%;
}

.formulario .select_wrap .option .option-right h4 sup {
  font-size: 10px !important;
}

.formulario .select_wrap .option .option-right h5 {
  font-size: 14px;
  margin-bottom: 0;
  font-family: "neusa_bold";
}

.formulario .select_wrap .option .option-right p {
  font-size: 9px;
  margin-bottom: 0;
}

.formulario .select_wrap .default_option .option .description p,
.formulario .select_wrap .default_option .option .option-right {
  display: none;
}

.formulario .select_wrap .default_option .option .option-left {
  align-items: center;
}

.formulario .select_wrap .default_option .option .option-left .description {
  border: none;
  padding-right: 0;
  margin-right: 0;
}

.formulario .select_wrap .default_option .option .option-left .description h4 {
  text-transform: uppercase;
  font-family: "neusa_bold";
  margin-bottom: 0;
}

.formulario .select_wrap .default_option .option img {
  width: 35px;
  border: solid 1px #727272;
  border-radius: 5px;
  margin-right: 10px;
}

.formulario .select_wrap.active .select_ul {
  display: block;
}

.formulario .select_wrap.active .default_option:before {
  top: 8px;
  transform: rotate(180deg);
}

.formulario .content-row {
  display: flex;
  align-items: center;
  position: relative;
}

.formulario .content-row .trash {
  height: 15px;
  position: relative;
  right: -35px;
  top: 12px;
  cursor: pointer;
}

.formulario .recuadro-estadia {
  background-color: #f5f2f2;
  border: solid 1px #a8a8a8;
  border-radius: 15px;
  padding: 10px;
  height: 100%;
}

.formulario .recuadro-estadia .title-estadia {
  color: #727272;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 9px;
  margin-bottom: 7px;
}

.formulario input.fechas {
  font-size: 13px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  border: solid 1px transparent;
  transition: all ease 0.3s;
  padding: 0 5px;
  border-radius: 2px;
}

.formulario input.fechas:hover {
  border-color: #727272;
  background-color: #ffffff;
  outline: solid 1px #727272;
}

.formulario .recuadro-estadia.personas {
  cursor: pointer;
}

.formulario .recuadro-estadia.personas svg {
  width: 12px;
  margin-right: 10px;
}

.formulario .rotatePersonas {
  width: 10px;
  position: relative;
  top: -3px;
}

.formulario .rotatePersonas.rotate {
  transform: rotate(180deg);
}

.formulario .recuadro-estadia.personas .persona {
  width: 40px;
}

.recuadro-estadia.personas span {
  font-family: "neusa_bold";
  font-size: 14px;
  margin-bottom: 0;
  padding-top: 4px;
}

.formulario .recuadro-estadia.price h5 {
  font-family: "neusa_bold";
  font-size: 22px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.formulario .recuadro-estadia.price h5 sup {
  font-size: 11px;
}

.formulario .recuadro-estadia.price p {
  margin-bottom: 0;
  font-size: 8px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker td.end-date.active {
  background-color: var(--red) !important;
}

.daterangepicker td.in-range {
  background-color: #e4002a1b !important;
}

.drp-buttons .btn-primary {
  background-color: var(--red) !important;
  border: none !important;
  transition: all ease 0.3s;
}

.drp-buttons .btn-primary:hover {
  background-color: #e4002aa8 !important;
}

.modal-preload {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-preload .form-right {
  position: relative !important;
  top: 0;
  width: 80%;
  border-radius: 20px;
}

.modal-preload-open {
  display: flex;
}

.btn-modal-preload {
  color: #ffffff;
  text-decoration: underline;
  text-transform: capitalize;
  font-size: 12px;
  display: none;
}

.btn-modal-preload:hover {
  text-decoration: none;
}

/*Footer*/
footer {
  background-color: #000000;
  border-top: solid 1px #525252;
  padding: 20px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: relative;
}

footer .copyright {
  display: flex;
  align-items: center;
}

footer .copyright p {
  color: #ffffff;
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 12px;
}

footer .copyright a {
  color: #ffffff;
  text-decoration: underline;
  transition: all ease 0.3s;
  font-size: 13px;
  margin-left: 10px;
}

footer .copyright a:hover {
  color: var(--red);
}

footer .copyright span {
  color: var(--red);
  font-weight: 700;
}

footer .footer-left p {
  font-size: 11px;
}

footer .links {
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px !important;
}

footer .links p {
  margin: 0 10px 0 0;
  color: #ffffff;
  line-height: 18px;
  font-size: 14px;
  position: relative;
  top: 3px;
}

footer .links .contenedor-links-footer {
  display: flex !important;
  align-items: flex-end;
  flex-wrap: wrap;
}

footer .links .contenedor-links-footer a {
  margin: 0 5px;
}

footer .links .contenedor-links-footer a svg {
  width: 15px;
  height: 15px;
  fill: #ffffff;
  transition: all ease 0.3s;
}

footer .links .contenedor-links-footer a svg:hover {
  fill: var(--red);
}

footer .link.link-faq {
  color: var(--red);
}

footer .link.link-faq:hover {
  color: #ffffff;
}

footer .footer-right a {
  color: #ffffff !important;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

footer .footer-right img {
  width: 90px;
}

/*Sobre Revolution*/
.sobre-rev {
  overflow: hidden;
  background-image: url(../images/bg-about-revolution.png);
  background-position: bottom left !important;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.sobre-rev h1 {
  margin-bottom: 30px;
}

.sobre-rev p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 550px;
}

.sobre-rev .recuadro {
  border: solid 1px #ffffff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 20px;
  width: 350px;
  margin-bottom: 30px;
}

.sobre-rev .recuadro img {
  width: 25px;
  margin-right: 15px;
  filter: invert(18%) sepia(85%) saturate(6836%) hue-rotate(342deg)
    brightness(86%) contrast(110%);
}

.sobre-rev .recuadro p {
  color: #ffffff;
  font-family: "neusa_bold";
  font-size: 17px;
  margin-bottom: 0;
  width: calc(100% - 40px);
}

.sobre-rev .cta-red {
  width: 280px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.sobre-rev .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.sobre-rev .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.sobre-rev .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.sobre-rev .cta-red:hover::before {
  transform: scale(1);
}

.sobre-rev .balls {
  position: relative;
}

.sobre-rev .ball {
  border-radius: 50%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  position: absolute;
}

.sobre-rev .ball h5 {
  font-family: "neusa_bold";
  font-size: 35px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
}

.sobre-rev .ball p {
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 0;
}

.sobre-rev .ball01 {
  background-color: var(--yellow);
  width: 130px;
  height: 130px;
  top: -50px;
}

.sobre-rev .ball02 {
  background-color: var(--violet);
  width: 145px;
  height: 145px;
  top: 43px;
  left: 263px;
}

.sobre-rev .ball03 {
  background-color: var(--red);
  width: 200px;
  height: 200px;
  right: 2px;
  top: 209px;
}

.sobre-rev .ball04 {
  background-color: #322588;
  width: 130px;
  height: 130px;
  left: 0px;
  top: 307px;
}

.sobre-rev .ball05 {
  background-color: var(--light-blue);
  width: 120px;
  height: 120px;
  left: 87px;
  top: 120px;
}

.sobre-rev .modal-hab {
  padding: 25px 40px 50px 40px;
}

.sobre-rev .modal-hab .txt {
  margin-bottom: 30px;
}

.sobre-rev .modal-hab {
  width: auto !important;
  max-width: 100% !important;
}

.sobre-rev .modal-hab iframe {
  max-width: 100% !important;
}

.sobre-rev .modal-rev.ver {
  display: flex;
}

/*Términos y condiciones*/
.section-term {
  background: #f5f5f5;
}

.section-term h1 {
  font-size: 23px;
  max-width: 700px;
  margin: 20px 0 40px 0;
}

.section-term .terms {
  max-width: 700px;
  background-color: #ffffff;
  padding: 50px 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 15px 1px rgba(164, 164, 164, 0.55);
  -webkit-box-shadow: 0px 0px 15px 1px rgba(164, 164, 164, 0.55);
  -moz-box-shadow: 0px 0px 15px 1px rgba(164, 164, 164, 0.55);
}

.section-term .terms span {
  font-family: "neusa_bold";
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-term .terms ul li {
  list-style: lower-latin;
  margin-left: 30px;
}

.section-term .terms ul li::marker {
  font-family: "neusa_bold";
  font-size: 14px;
}

.section-term .terms a {
  color: var(--red);
  text-decoration: underline;
  transition: all ease 0.3s;
}

.section-term .terms a:hover {
  color: #000000;
}

.section-term .term-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-term .term-right .ball-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--yellow);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 15px;
}

.section-term .term-right .ball-logo img {
  max-width: 100%;
  max-height: 100%;
}

/*Sección CONTACTO*/

.contacto {
  background-image: url(../images/bg-contacto.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50%;
}

.contacto .form-control {
  background-color: #262525;
  border: solid 1px #727272;
  color: #ffffff;
  outline: none;
  box-shadow: none !important;
}

.contacto .contact-left input[type="number"]::-webkit-inner-spin-button,
.contacto .contact-left input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contacto .contact-left input[type="number"] {
  -moz-appearance: textfield;
}

.contacto .contact-left .cta-red {
  width: 180px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.contacto .contact-left .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.contacto .contact-left .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.contacto .contact-left .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.contacto .contact-left .cta-red:hover::before {
  transform: scale(1);
}

/*404*/
.politicas .error404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
}

.politicas .error404 h4 {
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
  font-size: 30px;
  text-align: center;
  margin-bottom: 0;
}

.politicas .error404 h1 {
  -webkit-text-stroke: 2px var(--red);
  color: transparent !important;
  font-size: 220px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 95%;
}

.politicas .error404 p {
  color: #ffffff;
  position: relative;
  font-family: "Red Hat Display", sans-serif;
  font-size: 17px;
  text-align: center;
}

/*Section nueva*/
.appworld {
  height: calc(100vh - 140px);
  background-color: #ffffff !important;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.appworld img {
  max-width: 450px;
  margin-bottom: 30px;
}

.appworld h2 {
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 4px;
  font-size: 1.2rem;
  margin-bottom: 0;
  animation-name: parpadeo;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

#app {
  background-image: url(../images/bg-contacto.png);
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}

#app .title {
  width: 340px;
  display: flex;
  justify-content: flex-start;
}

#app .title h2 {
  font-size: 35px;
}

#download {
  width: 500px;
}

#app .btns-app {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
}

#app .txt {
  margin-bottom: 40px !important;
}

#app .btns-app a {
  width: 220px;
  height: auto;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 15px;
  text-decoration: none !important;
  transition: all ease 0.3s;
}

#app .btns-app a:hover {
  background-color: var(--yellow);
}

#app .btns-app a svg {
  height: 35px;
  max-width: 35px;
  fill: #ffffff;
}

#app .btns-app a p {
  color: #ffffff !important;
  /* text-transform: uppercase; */
  text-align: center;
  margin-bottom: 10px !important;
}

@-moz-keyframes parpadeo {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes parpadeo {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*Media Querys*/

@media (min-width: 1500px) {
  .hotel2 .habs-left .carousel {
    margin-bottom: 30px;
  }

  .participar {
    height: auto !important;
    min-height: auto !important;
  }

  .hotel {
    height: 500px !important;
    min-height: auto !important;
  }
}

@media (max-width: 1340px) {
  .nav-desktop ul li .nav-link {
    font-size: 11px;
    padding: 0.5rem 0.5rem;
  }

  .participar .contenedores {
    align-items: stretch;
  }

  .participar .contenedores .contenedor {
    padding: 20px 35px 20px 20px;
    width: 330px;
    min-height: 200px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .participar .contenedores .contenedor img {
    margin-bottom: 20px;
    margin-right: 0;
    width: auto;
  }
}

@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }

  .header.header-mobile {
    display: flex;
  }

  .menu-custom-mobile .nav-mobile {
    padding: 95px 40px 10px 40px;
  }

  .menu-custom-mobile {
    padding: 0;
    height: 100vh !important;
  }

  .menu-custom-mobile ul li a {
    opacity: 1;
  }

  .header-ext .btnMenu.on .line-burguer,
  .header-ext.change .line-burguer {
    background-color: #ffffff !important;
  }

  .header-ext .logo.on-logo {
    filter: invert(100%) sepia(29%) saturate(0%) hue-rotate(141deg)
      brightness(104%) contrast(105%) !important;
  }

  section {
    padding: 90px 40px 40px 40px;
  }

  .official {
    padding: 25px 20px;
  }

  footer {
    background-color: #000000;
    padding: 20px 40px;
  }

  .hotel2 .habs-left .carousel {
    height: 150px !important;
  }

  .hotel2 .habs-right .info {
    font-size: 9px;
  }

  .hotel2 .habs-center .precios .titular h4 {
    font-size: 15px;
  }

  .hotel2 .habs-left .medidas p {
    color: #ffffff;
    font-size: 12px;
  }

  .hotel2 .habs-left a {
    font-size: 12px;
  }

  .hotel2 .habs-center .precios h2 {
    font-size: 20px;
  }

  .hotel2 .habs-center .precios p {
    font-size: 12px;
  }

  .bg-modal-hab .modal-hab {
    background-color: #222222;
    border: solid 1px #ffffff;
    border-radius: 15px;
    overflow: hidden;
    padding: 30px;
    width: 525px;
    margin-top: 80px;
    height: fit-content;
  }
}

@media (max-width: 991.5px) {
  .modal-preload .form-right {
    top: 0 !important;
    max-height: 80vh;
    width: 80% !important;
  }

  .formulario .form-right {
    position: fixed;
    top: 60px;
    width: 300px;
    right: 0;
    overflow-y: auto;
    padding: 0;
  }

  .formulario .form-right .hotel-name {
    font-size: 14px;
  }

  .formulario .form-right .fechas {
    justify-content: flex-start;
  }

  .formulario .form-right .fechas .check {
    font-size: 13px;
    margin-right: 80px !important;
  }

  .formulario .form-right .fechas .check .icono svg {
    width: 12px;
  }

  .formulario .form-right .total {
    margin-bottom: 20px;
  }

  .formulario .form-right .row.mb-5.fixed-resume {
    margin-bottom: 20px !important;
  }

  .formulario .form-right .recuadro {
    padding: 20px 20px 0 20px;
    border: solid 1px #727272;
    overflow: hidden;
    box-shadow: none;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .formulario .form-right .recuadro h3 {
    color: #727272;
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .formulario .form-right .recuadro .total {
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 15px;
    left: -20px;
    width: calc(100% + 40px);
  }

  .formulario .form-right .recuadro .total p {
    font-size: 15px;
  }

  .formulario .form-right .btnCerrarPreload {
    width: 15px;
    cursor: pointer;
  }

  .formulario .form-right .btn-modal-preload {
    display: flex;
  }

  .formulario .form-right .icono.mb-5 {
    margin-bottom: 20px !important;
  }

  .formulario .form-right .row {
    margin-bottom: 0 !important;
  }

  .formulario .form-right .row .item h5 {
    font-size: 12px;
    margin-bottom: 0;
    font-family: "neusa_bold";
  }

  .formulario .form-right .row .cantidad span {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 13px;
    font-family: "neusa_bold";
  }

  .formulario .form-right .row.line {
    padding-bottom: 12px;
    margin-bottom: 12px !important;
  }

  .formulario .form-right .row .price h5 {
    font-size: 13px;
    font-family: "neusa_bold" !important;
  }

  .modal-preload .form-right .recuadro {
    padding-bottom: 20px !important;
  }

  .fixed-mobile,
  .fixed-resume {
    display: none !important;
  }

  .fixed-mobile-open,
  .fixed-resume-open {
    display: flex !important;
  }

  .icon-chevron {
    display: flex !important;
    width: 10px;
    position: relative;
    bottom: 10px;
    transition: all ease 0.2s;
  }

  .icon-chevron.rotate {
    transform: rotate(180deg);
  }

  footer .d-flex.align-items-center.justify-content-end {
    justify-content: flex-start !important;
    margin-top: 15px;
  }

  .agenda .balls .ball {
    width: 175px;
    height: 175px;
  }

  .agenda .carousel-control-next {
    right: -80px;
  }

  .agenda .carousel-control-prev {
    left: -80px;
  }

  .agenda .modalC.violet {
    max-height: 80vh !important;
    padding: 40px 20px !important;
  }

  .agenda .modalC.violet .row {
    overflow: auto !important;
    height: 50vh;
    position: relative;
  }

  .agenda .modalC .text-center {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
  }

  .hotel {
    overflow: hidden;
  }

  .hotel .carousel {
    max-width: 225px;
  }

  .hotel .title {
    position: relative;
    top: -20px;
    font-size: 35px;
  }

  .hotel .contenedor {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -50px;
  }

  .hotel .img-bg-circulos {
    position: absolute;
    left: -100px;
    right: -100px;
  }

  .hotel2 .row.hero svg {
    max-width: 100%;
  }

  .hotel2 {
    padding-top: 50px;
  }

  .hotel2 .row.hero h1,
  .participar2 h1 {
    font-size: 35px;
  }

  .participar .contenedores {
    flex-wrap: wrap;
  }

  .participar .contenedores .contenedor {
    margin-bottom: 20px;
  }

  .participar .contenedores .contenedor:nth-child(3) {
    position: relative;
    left: 0;
  }

  .participar .contenedores .contenedor:nth-child(4) {
    position: relative;
    left: -30px;
  }

  .sobre-rev .ball {
    transform: scale(0.8) translateY(-30px) translateX(-50px);
  }

  .sobre-rev .ball05 {
    left: 87px;
    top: 98px;
  }

  .sobre-f5 .f5-left {
    margin-bottom: 40px;
  }

  .sobre-f5 .f5-right .item img {
    width: 180px;
  }

  .sobre-f5 .f5-right .item p {
    font-size: 13px;
  }

  .home .home-left {
    position: relative;
    z-index: 6;
    justify-content: center;
  }

  .home .home-left p {
    text-align: center;
  }

  .home .home-left p {
    font-size: 15px;
  }

  .sponsors .img-bg-circulos svg {
    position: absolute;
    top: -300px;
    right: -400px;
    width: 1000px;
    height: 1000px;
  }

  .hidden-detail {
    display: none !important;
  }

  .scroll-downs {
    display: none;
  }

  #app {
    background-image: none;
  }
}

@media (max-width: 767.5px) {
  .btnMenu {
    width: 39px;
    height: 37px;
    padding: 0;
  }

  .formulario h1 {
    font-size: 1.5rem !important;
  }

  .formulario .recuadro .title-form {
    font-size: 17px;
  }

  .formulario .recuadro .form-control {
    font-size: 14px;
  }

  .formulario .estadia .row .col-lg-4 {
    margin-bottom: 15px;
  }

  .formulario .select_wrap .select_ul {
    top: 40px;
    left: -10px;
    width: calc(100% + 40px);
  }

  .terminos label {
    font-size: 12px;
  }

  .official p {
    font-size: 12px !important;
    margin-bottom: 0;
  }

  .agenda .balls {
    display: flex;
    flex-wrap: wrap;
  }

  .agenda .balls .ball {
    width: 120px;
    height: 120px;
    margin: 10px;
  }

  .agenda .balls .ball p {
    font-size: 18px;
  }

  .title {
    font-size: 30px;
  }

  .hotel2 .habs-left .carousel {
    height: 213px !important;
    overflow: hidden;
    width: 324px;
  }

  .hotel2 .habs-center .precios {
    margin-bottom: 20px;
  }

  .hotel2 .habs-center {
    margin: 30px 0;
  }

  .banner-hotel2 h4 {
    font-size: 18px;
  }

  .banner-hotel2 {
    padding: 40px;
  }

  .banner-hotel2 svg {
    display: none;
  }

  .participar .bajada {
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 40px;
  }

  .participar h5 {
    color: #ffffff;
    font-size: 16px;
  }

  .participar .contenedores .contenedor p {
    font-size: 12px;
    width: 100% !important;
  }

  .participar2 h1 {
    font-size: 25px;
  }

  .participar2 .options .ball {
    width: 150px;
    height: 150px;
  }

  .pasos-group h1 {
    font-size: 25px;
  }

  .pasos-group .pasos .paso .paso-right p {
    font-size: 14px;
  }

  .pasos-group .pasos .paso .paso-left .title-paso {
    font-size: 20px;
  }

  .pasos-group .pasos {
    margin-top: 30px;
  }

  .pasos-group .pasos .paso {
    flex-direction: column;
  }

  .pasos-group .pasos .paso .paso-left,
  .pasos-group .pasos .paso .paso-right {
    max-width: 100% !important;
    width: 100%;
  }

  .pasos-group .pasos .paso .paso-left {
    margin-bottom: 20px;
  }

  .pasos-group .pasos .paso .paso-right {
    margin-left: 0;
  }

  .sobre-rev {
    background-position: center !important;
  }

  .sobre-rev .rev-right {
    height: 400px;
  }

  .sobre-rev .ball {
    transform: scale(0.8) translateY(80px) translateX(50px);
  }

  .sobre-rev .ball04 {
    left: 160px;
    top: 225px;
  }

  .sobre-rev .ball03 {
    right: 77px;
    top: 93px;
  }

  .sobre-rev .ball02 {
    top: -181px;
    left: 373px;
  }

  .sobre-rev .ball05 {
    left: 87px;
    top: 84px;
  }

  .sponsors p,
  .sponsors ul li {
    font-size: 15px;
  }

  .sponsors .sponsor .recuadro {
    margin: 0;
  }

  .sponsors .sponsors-infinity h3 {
    font-size: 24px;
  }

  .sponsors .sponsors-infinity .recuadro {
    width: 230px;
    height: 160px;
    margin: 10px;
  }

  .sponsors .sponsors-black h3 {
    font-size: 21px;
  }

  .sponsors .sponsors-black .recuadro {
    width: 180px;
    height: auto;
    margin: 5px 10px;
  }

  .sponsors .sponsors-pro .recuadro {
    width: 140px !important;
    height: auto;
    margin: 5px 10px;
  }

  .sponsors .sponsors-essential h3 {
    font-size: 15px;
  }

  .sponsors .sponsors-essential .recuadro {
    width: 100px;
    padding: 15px;
    margin: 10px;
  }

  .section-term h1 {
    font-size: 20px;
    margin: 20px 0 30px 0;
  }

  .section-term .terms p,
  .section-term .terms ul li {
    font-size: 13px;
  }

  .section-term .terms p span {
    font-size: 14px;
  }

  .formulario .content-row {
    display: flex;
    align-items: flex-end;
    position: relative;
  }

  .formulario .content-row .trash {
    bottom: 5px;
  }

  .sobre-f5 .f5-bottom .col-lg-3 {
    margin-bottom: 50px;
  }

  .sobre-f5 .f5-bottom h5 {
    min-height: auto;
  }

  .sponsors .img-bg-circulos svg {
    position: absolute;
    top: -300px;
    right: -600px;
    width: 1000px;
    height: 1000px;
    opacity: 0.6;
  }

  .politicas .error404 h1 {
    font-size: 150px;
  }

  .politicas .error404 h4 {
    font-size: 26px;
  }

  footer .tickets p {
    font-size: 11px;
    margin-bottom: 15px !important;
  }

  footer
    .col-lg-5.col-md-5.col-sm-12.px-0.d-flex.align-items-end.justify-content-end {
    justify-content: flex-start !important;
  }

  .footer-left {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: column;
  }

  .logo-fixed {
    margin-bottom: 15px;
  }
}

@media (max-width: 720px) {
  .appworld img {
    margin-bottom: 15px;
  }

  .appworld {
    padding: 30px;
  }

  .appworld h2 {
    font-size: 0.8rem;
  }

  .hotel .img-bg-circulos {
    position: absolute;
    left: -150px;
    right: -150px;
  }

  .hotel p,
  .hotel .row li {
    font-size: 14px;
  }

  .bg-modal-hab .modal-hab {
    width: 90%;
  }

  .bg-modal-hab .modal-hab .titular h3 {
    font-size: 18px;
  }

  .bg-modal-hab .modal-hab p {
    font-size: 13px;
  }

  .bg-modal-hab .carousel-inner {
    height: 150px !important;
  }

  .bg-modal-hab .modal-hab {
    padding: 20px;
  }

  .participar .contenedores .contenedor {
    left: 0 !important;
    min-height: auto;
  }

  .sobre-rev {
    background-position: center !important;
  }

  .sobre-rev .ball01 {
    top: -40px;
    left: auto;
    right: 21px;
  }

  .sobre-rev .ball04,
  .sobre-rev .ball05 {
    transform: translateX(-100px);
  }

  .participar h3 {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 20px;
  }
}

@media (max-width: 576.5px) {
  .formulario .select_wrap .option {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  section {
    min-height: auto !important;
  }

  .formulario .select_wrap .option .option-left {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #727272;
  }

  .estadia .row .col-lg-2.col-md-2.col-sm-6.px-1 {
    margin-bottom: 15px;
  }

  .formulario .default_option .option-left {
    border: none !important;
  }

  .formulario .select_wrap .option .option-left .description {
    padding-right: 0;
    margin-right: 0;
    border: none;
  }

  .formulario .info {
    font-size: 12px;
  }

  .agenda .carousel-control-next {
    right: -40px;
  }

  .agenda .carousel-control-prev {
    left: -40px;
  }

  .agenda .btnCerrar {
    position: relative;
    top: 0px;
    margin-bottom: 15px;
  }

  .agenda .btnCerrar a {
    width: 25px;
    height: 25px;
  }

  .hotel .row .b-custom {
    border: none;
    padding-left: 0 !important;
    padding-top: 40px;
  }

  .hotel .row {
    margin: 21px 0 !important;
  }

  .hotel2 .row.hero .col-sm-12 {
    position: relative;
    top: -50px;
  }

  .hotel2 .row.hero .col-sm-12 h1 {
    font-size: 28px;
  }

  .hotel2 .row.hero .col-sm-12 h3 {
    font-size: 17px;
  }

  .sobre-rev {
    background-image: none;
    background-color: #000000;
  }

  .sobre-rev p {
    font-size: 14px;
  }

  .sobre-rev .recuadro {
    width: 320px;
  }

  .sobre-rev .recuadro p {
    font-size: 15px;
  }

  .sobre-rev .balls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
  }

  .sobre-rev .ball {
    transform: scale(1);
    position: relative;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    margin: 10px;
  }

  .sobre-rev .ball h5 {
    font-size: 21px;
  }

  .sobre-rev .ball p {
    font-size: 11px;
  }

  .sobre-rev .ball01 {
    width: 100px;
    height: 100px;
  }

  .sobre-rev .ball02 {
    width: 125px;
    height: 125px;
  }

  .sobre-rev .ball03 {
    width: 170px;
    height: 170px;
  }

  .sobre-rev .ball04 {
    width: 130px;
    height: 130px;
  }

  .sobre-rev .ball05 {
    width: 110px;
    height: 110px;
  }

  .sobre-rev .rev-right {
    height: 450px;
  }

  .sobre-f5 .f5-left p {
    font-size: 13px;
  }

  .sobre-f5 .f5-right .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-direction: column;
  }

  .sobre-f5 .f5-right .item p {
    width: 100%;
  }

  .sobre-f5 .f5-right .item img {
    position: relative;
    top: 0;
    bottom: 0;
    left: -20px;
    margin-bottom: 15px;
    width: 160px;
  }

  .home .home-left p {
    font-size: 12px !important;
  }

  .footer .copyright {
    margin-top: 30px !important;
  }

  .formulario .content-row .trash {
    bottom: 20px;
  }

  .sobre-f5 .f5-bottom .col-lg-3 {
    margin-bottom: 67px;
    max-width: 400px;
  }

  .participar .recuadro p {
    font-size: 16px;
  }

  footer .copyright {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  footer .copyright span {
    display: none;
  }

  footer .copyright p {
    margin-bottom: 10px;
  }

  footer .link {
    margin: 0 !important;
    margin-bottom: 5px !important;
  }
}

@media (max-width: 480px) {
  .participar .options .ball {
    width: 110px;
    height: 110px;
  }

  .participar .options .ball p {
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  .header-mobile a img {
    max-height: 35px;
  }

  .participar .options {
    flex-direction: column;
  }

  .participar .options .ball {
    margin-bottom: 15px;
  }

  .btnMenu {
    width: 30px;
    height: 20px;
  }

  .menu-custom-mobile ul li a {
    font-size: 15px;
  }

  .header-mobile {
    padding: 0 30px;
  }

  .hotel .title {
    font-size: 22px;
    top: 15px;
  }

  .hotel .img-bg-circulos {
    position: absolute;
    left: -200px;
    right: -200px;
  }

  .hotel .carousel {
    max-width: 195px;
    position: relative;
  }

  .official p {
    font-size: 10px !important;
  }

  .hotel2 .habs-left .carousel {
    width: 100%;
  }

  .hotel2 .row.hero .col-sm-12 h1 {
    font-size: 25px;
  }

  .hotel2 .row.hero .col-sm-12 h3 {
    font-size: 17px;
  }

  .participar2 .options .ball {
    width: 110px;
    height: 110px;
    margin: 0 10px;
  }

  .participar2 .options .ball p {
    font-size: 16px;
  }

  .politicas .error404 h1 {
    font-size: 120px;
  }

  .politicas .error404 h4 {
    font-size: 22px;
  }

  .politicas .error404 p {
    font-size: 14px;
  }
}

/* bootstrap select */
.dropdown-toggle {
  background-color: #fff;
  border: 1px solid #ced4da;
  padding-left: 1rem;
}

.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle:hover {
  background-color: #fff !important;
  outline: none !important;
}

.dropdown-toggle .filter-option-inner-inner {
  color: #495057;
}

.is-invalid.bootstrap-select {
  border: 1px solid --var(red);
}

.content .bootstrap-select .dropdown-menu {
  z-index: 999;
}

.was-validated .bs-searchbox .form-control:valid,
.was-validated .bs-searchbox .form-control:invalid,
.bs-searchbox .form-control.is-invalid,
.bs-searchbox .form-control.is-valid {
  border-color: inherit;
  background: none;
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: --var(red);
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #212529;
}

.disabled,
[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.dropdownPersonas.mostrar {
  display: flex;
}

.dropdownPersonas {
  display: none;
  position: absolute;
  background-color: #fff;
  border: solid 1px #a8a8a8;
  border-radius: 15px;
  padding: 15px;
  margin-top: 4px;
  z-index: 5;
}

.dropdownPersonas ul {
  margin-bottom: 0;
}

.dropdownPersonas ul li:first-of-type {
  margin-bottom: 20px;
}

.dropdownPersonas ul li .p-left h4 {
  font-size: 17px;
  margin-bottom: 0;
}

.dropdownPersonas ul li .p-right p {
  font-size: 11px;
  margin-bottom: 0;
}

.dropdownPersonas .quantity-selector {
  display: flex;
  align-items: center;
  height: 25px;
  border: solid 1px #525252;
  margin-bottom: 5px;
  width: 70px;
}

.dropdownPersonas .quantity-selector button {
  font-size: 15px;
  cursor: pointer;
  height: 100%;
  padding: 0 5px;
  line-height: 15px;
  border: none !important;
  font-family: "neusa_bold";
}

.dropdownPersonas .quantity-input {
  width: 32px;
  text-align: center;
  background-color: transparent;
  line-height: 25px;
  border-top: none !important;
  border-bottom: none !important;
}

.dropdownPersonas {
  flex-direction: column;
}

.dropdownPersonas .final {
  padding: 15px 0;
  border-top: solid 1px #727272;
  margin-top: 15px;
}

.dropdownPersonas .final .cta-red {
  width: 180px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
  border: solid 1px var(--red);
}

.dropdownPersonas .final .cta-red p {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}

.dropdownPersonas .final .cta-red:hover p {
  color: var(--red);
  font-weight: 700;
}

.dropdownPersonas .final .cta-red::before {
  content: "";
  display: block;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

.dropdownPersonas .final .cta-red:hover::before {
  transform: scale(1);
}

.loader {
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
  right: -50px;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.formulario .recuadro .form-control.bootstrap-select {
  height: auto !important;
}

/*Botón Whatsapp*/
.wsapp {
  position: fixed;
  bottom: 30px;
  z-index: 999;
  right: 16px;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  background-color: #00bb2d;
  display: flex;
  font-size: 14px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.wsapp img {
  width: 100%;
  height: 100%;
}

@media (max-width: 400px) {
  .wsapp {
    font-size: 12px;
    width: 40px;
    height: 40px;
  }
}

.fechas-disclaimer {
  color: #727272;
  font-size: 8px;
  margin-bottom: 0;
}

.nav-cta.nav-register {
  width: 100px;
  margin-bottom: 5px;
}

.nav-desktop .nav-right li:last-child {
  display: flex;
  flex-direction: column;
  height: 50px;
  align-items: center;
  margin-left: 0.5rem;
}

.nav-desktop .nav-right li:last-child a.small {
  font-size: 12px;
  color: #000000;
}

.link-mobile.nav-cta {
  width: 140px;
  margin: 0 0 15px 1rem;
}

.link-mobile.nav-cta:hover {
  color: #fff;
  font-weight: 700;
}

.link-mobile.nav-cta::before {
  background: transparent;
  position: absolute;
  transform: scale(0);
  transition: 0.5s;
}

/*Páginas de sponsors*/

.nav-sponsors {
  display: flex;
  position: fixed;
  z-index: 20;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 0 60px 10px;
  height: 80px;
  background-color: #000000;
}

.nav-sponsors .logo-f5 {
  width: 150px;
  height: 45px;
}

.nav-sponsors .logo-f5 img {
  max-height: 100%;
}

.nav-sponsors .logo-rev {
  width: 150px;
}

.nav-sponsors ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.nav-sponsors ul li a {
  color: var(--red);
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.nav-sponsors ul li:not(:last-child) {
  border-right: solid 2px var(--red);
}

.out-sponsors {
  background: #000000 url(../../assets/images/sponsors/bg.png);
  background-size: contain;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.out-sponsors h1 {
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-size: 23px;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

.out-sponsors .circle {
  background-color: var(--dark-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  padding: 60px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.circle-red {
  position: relative;
  display: block;
}

.out-sponsors .circle-red::before {
  content: "";
  background-color: var(--red);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  right: -90px;
  top: 30px;
  display: flex;
  -webkit-animation: vibrate-2 5s linear infinite both;
  animation: vibrate-2 5s linear infinite both;
}

.out-sponsors .circle::after {
  content: "";
  background-color: var(--yellow);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  bottom: 20px;
  -webkit-animation: vibrate-1 4s linear infinite both;
  animation: vibrate-1 4s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes vibrate-2 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-4px, 4px);
    transform: translate(-4px, 4px);
  }
  40% {
    -webkit-transform: translate(-4px, -4px);
    transform: translate(-4px, -4px);
  }
  60% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  80% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes vibrate-2 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-4px, 4px);
    transform: translate(-4px, 4px);
  }
  40% {
    -webkit-transform: translate(-4px, -4px);
    transform: translate(-4px, -4px);
  }
  60% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  80% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.out-sponsors .circle .circleIn {
  height: 80px;
  width: 80px;
  background-color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 10px;
  padding: 12px;
}

.out-sponsors .circle .circleIn img {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 0;
}

.out-sponsors .circle img {
  max-width: 100%;
  margin-bottom: 30px;
}

.out-sponsors .circle .links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.out-sponsors .circle .links a {
  width: 20px;
  margin: 0 10px;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}

.out-sponsors .circle .links a svg {
  fill: var(--dark-blue);
  max-height: 100%;
  transition: all ease 0.3s;
}

.out-sponsors .circle .links a:hover {
  background-color: var(--yellow);
}

.out-sponsors .circle .links a:hover svg {
  fill: #ffffff;
}

.out-sponsors .txt h2 {
  font-size: 25px;
  color: #ffffff;
  font-family: "neusa_bold";
  text-align: center;
  margin-bottom: 20px;
}

.out-sponsors .txt p {
  font-size: 16px;
  color: #ffffff;
  max-width: 600px;
  font-family: "neusa_thin";
  margin: 0 auto 40px auto;
  text-align: center;
}

.out-sponsors .download {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.out-sponsors .download .doc {
  width: 220px;
  height: 120px;
  background-color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  border-radius: 15px;
  margin: 15px;
  transition: all ease 0.3s;
}

.out-sponsors .download .doc:hover {
  background-color: var(--light-blue);
  text-decoration: none;
  transform: scale(1.1);
}

.out-sponsors .download .doc img {
  width: 20px;
  margin-bottom: 15px;
  filter: invert(100%) sepia(45%) saturate(244%) hue-rotate(148deg)
    brightness(117%) contrast(100%);
}

.out-sponsors .download .doc p {
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
}

.data {
  background-color: var(--dark-blue);
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: fit-content !important;
}

.data .row {
  display: flex;
  align-items: center;
}
.data .links a:hover {
  transition: all ease 0.3s;
}

.data .links a:hover svg {
  fill: var(--violet);
}

.data p a {
  transition: all ease 0.3s;
}

.data p a:hover {
  color: var(--violet);
}

.data p span {
  text-transform: initial;
}

.data svg {
  width: 16px;
  fill: #ffffff;
  position: relative;
  bottom: 3px;
  transition: all ease 0.3s;
}

.data .col-lg-3,
.data .col-lg-9 {
  padding: 0 !important;
  display: flex;
}

.data h3 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 0;
}

.data p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
}

.data p a {
  text-transform: lowercase;
  color: #ffffff;
}

.data .col-md-7 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.line {
  height: 10px;
  background-image: url(../../assets/images/sponsors/line.png);
  background-size: contain;
  background-repeat: repeat-x;
  padding: 0 !important;
  min-height: 10px !important;
  border-bottom: none;
}

footer.footer-sponsors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  border-top: 0;
  padding: 30px 60px;
}

footer.footer-sponsors p {
  color: #ffffff;
}

footer.footer-sponsors p.txt-white {
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

footer.footer-sponsors .links {
  margin-bottom: 15px;
  border-bottom: 0;
}

footer.footer-sponsors .links a {
  margin: 0 5px;
}

footer.footer-sponsors .links a:hover svg {
  fill: var(--red) !important;
}

footer.footer-sponsors .links a svg {
  fill: #ffffff !important;
  height: 20px;
  transition: all ease 0.3s;
}

.m-991 {
  display: none;
}

@media (max-width: 1100px) {
  .out-sponsors {
    padding: 180px 80px 80px !important;
  }
}

@media (max-width: 991.5px) {
  .logo-f5,
  .logo-rev {
    display: none;
  }

  .nav-sponsors {
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  .m-991 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 25px 0;
  }

  .m-991 .logo-f52 {
    width: 50px;
  }

  .m-991 .logo-rev2 {
    width: 120px;
  }

  .m-991 .logo-f52 img,
  .m-991 .logo-rev2 img {
    max-width: 100%;
    max-height: 100%;
  }
}

@media (max-width: 850px) {
  .data .d-flex {
    flex-direction: column;
  }

  .data .d-flex .barra {
    display: none;
  }

  .data p {
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .out-sponsors .circle {
    width: 290px;
    height: 290px;
    padding: 60px;
  }

  .data {
    padding: 40px 50px;
  }

  .out-sponsors .circle-red::before {
    width: 150px;
    height: 150px;
    right: -50px;
  }

  .out-sponsors .circle .circleIn {
    height: 60px;
    width: 60px;
    left: 0px;
    padding: 8px;
  }

  .out-sponsors {
    padding: 180px 50px 50px !important;
  }
}

@media (max-width: 576.5px) {
  .data .col-lg-3,
  .data .col-lg-9 {
    justify-content: center;
  }

  .out-sponsors .download .doc {
    width: 190px;
    height: 130px;
  }

  .data p {
    text-align: center;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }

  .data .links {
    margin-top: 20px !important;
  }

  .data h3 {
    margin-bottom: 15px;
  }

  .data .col-lg-9 {
    flex-direction: column;
  }

  .data .col-lg-9 p {
    margin-bottom: 15px;
  }

  .nav-sponsors ul li a {
    font-size: 15px;
  }

  .nav-sponsors ul li a {
    padding: 0 10px;
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .out-sponsors .circle {
    width: 260px;
    height: 260px;
    padding: 60px;
  }

  .nav-sponsors {
    padding: 0 30px 10px;
  }

  .out-sponsors .circle-red::before {
    width: 120px;
    height: 120px;
    right: -30px;
  }

  .out-sponsors .circle::after {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }

  .out-sponsors .txt h2 {
    font-size: 20px;
  }

  .out-sponsors .txt p {
    font-size: 15px;
  }

  .out-sponsors .download .doc p {
    font-size: 12px;
  }

  .out-sponsors .download .doc {
    width: 100%;
    height: 95px;
  }

  .nav-sponsors ul li a {
    font-size: 14px;
  }

  .m-991 .logo-f52 {
    width: 35px;
  }

  .m-991 .logo-rev2 {
    width: 100px;
  }

  .out-sponsors {
    padding: 140px 30px 50px !important;
  }

  .out-sponsors h1 {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .data p {
    font-size: 13px;
  }

  .data p span {
    font-size: 12px;
  }

  footer.footer-sponsors p {
    font-size: 13px;
  }

  footer.footer-sponsors p.txt-white {
    font-size: 12px;
    line-height: 120%;
  }

  footer.footer-sponsors .links a svg {
    height: 18px;
  }

  footer.footer-sponsors {
    padding: 30px;
  }

  .data {
    padding: 30px;
  }
}

.sorteo {
  overflow: hidden;
}

.sorteo .container-mask .nombres.animar {
  animation-name: sorteo;
  animation-duration: 10s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.sorteo .container-button {
  position: relative;
  top: 100px;
  text-align: center;
}

@keyframes sorteo {
  from {
    top: -25px;
  }
  to {
    top: -13025px;
  }
}

.sorteo .general-container {
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.633473457742472) 0%,
    rgba(0, 0, 0, 0) 48%
  );
}

.sorteo .iframe-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.sorteo .iframe-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sorteo .container-mask {
  position: absolute;
  top: 50%;
  clip-path: inset(0% 0% 0% 0%);
  height: 140px;
  background-color: #000;
  padding: 0;
  width: 1140px;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border: solid 2px #ffffff !important;
}

.sorteo .container-mask .nombres div {
  padding: 26px 0 0;
  height: 140px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.sorteo .container-mask .nombres div p {
  font-size: 55px;
  color: #ec1b34;
  line-height: 100%;
  margin: 0;
  height: 55px;
  overflow: hidden;
}

.sorteo .container-mask .nombres div small {
  color: #aeaeae;
  font-size: 35px;
  line-height: 100%;
  height: 36px;
  overflow: hidden;
  display: block;
}

.sorteo .container-button a {
  font-size: 38px;
  padding: 0 20px;
  border-radius: 100%;
  width: 170px;
  height: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sorteo .container-button a.btn-info {
  background-color: #33208c;
  border: 0;
  font-size: 30px;
}

.sorteo .container-mask .nombres {
  position: relative;
  top: 0;
}

.sorteo .logo-container {
  width: 100%;
  text-align: center;
}

.sorteo .logo {
  width: 300px;
  margin: 30px auto;
}

.sorteo .ganadores {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #fff;
  width: 250px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  overflow: auto;
}

.sorteo .ganadores div {
  margin-bottom: 30px;
}

.sorteo .ganadores p {
  font-size: 30px;
  color: #ec1b34;
  line-height: 100%;
  margin: 0;
}

.sorteo .ganadores small {
  color: #aeaeae;
  font-size: 18px;
  display: block;
}

/*RECAP*/

.recap-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.recap-home .logo,
.recap-home h1,
.recap-home .circlesContent,
.recap-home .cta-red {
  position: relative;
  z-index: 2;
}

.recap-home .logo {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.recap-home h1 {
  font-weight: 400;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  max-width: 630px;
  margin: 0 auto 35px;
}

.recap-home h1 strong {
  color: var(--red);
}

.recap-home h1 span {
  font-size: 50px;
}

.recap-home .circlesContent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.recap-home .circle {
  transition: all ease 0.4s;
  width: 220px !important;
  height: 220px !important;
  border-radius: 50%;
  margin: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: solid 12px transparent;
  box-shadow: 0px 0px 0px 1px rgba(228, 0, 43, 0);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(228, 0, 43, 0);
  -moz-box-shadow: 0px 0px 0px 1px rgba(228, 0, 43, 0);
}

.recap-home .circle:hover,
.recap-home .circle:focus {
  border: solid 12px #000000;
  transform: scale(1.2);
  text-decoration: none !important;
}

.recap-home .circle:hover:nth-child(1),
.recap-home .circle:focus:nth-child(1) {
  box-shadow: 0px 0px 0px 1px rgba(228, 0, 43, 1);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(228, 0, 43, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(228, 0, 43, 1);
}

.recap-home .circle:hover:nth-child(2),
.recap-home .circle:focus:nth-child(2) {
  box-shadow: 0px 0px 0px 1px rgba(14, 65, 170, 1);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(14, 65, 170, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(14, 65, 170, 1);
}

.recap-home .circle:hover:nth-child(3),
.recap-home .circle:focus:nth-child(3) {
  box-shadow: 0px 0px 0px 1px rgba(171, 39, 130, 1);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(171, 39, 130, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(171, 39, 130, 1);
}

.recap-home .circle:nth-child(1) {
  background-color: var(--red);
}

.recap-home .circle:nth-child(2) {
  background-color: var(--light-blue);
}

.recap-home .circle:nth-child(3) {
  background-color: var(--violet);
}

.recap-home .circle p {
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 18px;
}

.recap-home .col-sm-12 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.recap-home .col-sm-12 .title,
.recap-home .cuadro-sorteo .title {
  padding: 30px 10px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  border: solid 2px var(--red);
  border-radius: 15px;
  width: 70%;
  max-width: 260px;
  margin: 0 auto;
  position: relative;
  top: -18px;
  z-index: 1;
}

.recap-home .col-sm-12 .title p,
.recap-home .cuadro-sorteo .title p {
  font-size: 16px;
  margin-bottom: 0;
  text-align: center;
}

.recap-home .videos-box {
  transition: all ease 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: solid 2px var(--red);
  border-radius: 15px;
  height: 200px;
  max-width: 350px;
  width: 100%;
  position: relative;
  overflow: hidden !important;
  background-position: center;
  background-size: cover;
  z-index: 3;
}

/*.recap-home .videos-box:nth-child(1){
    background-image: url(../images/bg-video01.png);
}*/

.recap-home .cta-red p {
  margin-bottom: 0;
  position: relative;
  top: 1.5px;
}

.recap-home .cta-red {
  width: 160px;
  height: fit-content;
  padding: 10px 0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #ffffff;
  transition: all ease 0.3s;
  text-decoration: none !important;
  line-height: 30px;
}

.recap-home .cta-red:hover {
  background-color: #ffffff;
  color: var(--red);
}

.recap-home .cta-red:hover svg {
  fill: var(--red) !important;
  transform: translate(-20px);
}

.recap-home .cta-red svg {
  fill: #ffffff;
  width: 15px;
  margin-right: 10px;
  transition: all ease 0.3s;
}

.videos-box img,
.videos-box svg {
  width: 67px;
  transition: all ease 0.3s;
  opacity: 0.7;
  filter: invert(93%) sepia(100%) saturate(0%) hue-rotate(246deg)
    brightness(102%) contrast(102%);
}

.videos-box svg {
  width: 25px;
}

.videos-box:hover img {
  transform: scale(1.5);
  opacity: 0.9;
}

.videos-box:hover svg {
  transform: scale(1.2);
  opacity: 0.9;
}

.videos-box:before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto;
  border-radius: 50%;
  transition: all ease 0.5s;
}

.videos-box:hover:before {
  transform: scale(20);
  background-color: rgba(255, 255, 255, 0.2);
}

#gallery {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 20px;
  margin-top: 25px;
  width: 100%;
  border: solid 1px var(--red);
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.oneItem {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px !important;
}

.nGY2GallerySub {
  width: 100% !important;
  height: 914px;
  display: flex !important;
  flex-wrap: wrap;
}

.nGY2GThumbnailTitle.nGY2GThumbnailAlbumTitle {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  text-shadow: none !important;
  background-color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 17px !important;
}

@media (max-width: 991.5px) {
  .recap-home h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .recap-home h1 span {
    font-size: 40px;
  }

  .recap-home .circle {
    width: 180px !important;
    height: 180px !important;
    margin: 15px;
    padding: 10px;
  }

  .recap-home .circle p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .recap-home .col-sm-12 {
    margin-bottom: 20px;
  }

  .recap-docs .videos-box p {
    font-size: 15px;
  }
}

@media (max-width: 650px) {
  .recap-home h1 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .recap-home h1 span {
    font-size: 30px;
  }

  .recap-home .cta-red p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .recap-home h1 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .recap-home .logo {
    width: 50px;
  }

  .recap-home h1 span {
    font-size: 22px;
  }
}

.swal2-html-container iframe {
  width: 700px;
  height: 394px;
}

@media (max-width: 850px) {
  .swal2-html-container iframe {
    width: 500px;
    height: 281px;
  }
}

@media (max-width: 600px) {
  .swal2-html-container iframe {
    width: 400px;
    height: 225;
  }
}

@media (max-width: 500px) {
  .swal2-html-container iframe {
    width: 300px;
    height: 169px;
  }
}

@media (max-width: 470px) {
  .swal2-html-container iframe {
    width: 100%;
    height: auto;
  }
}

.recap-home .cuadro-sorteo .videos-box {
  max-width: 100% !important;
  width: 100% !important;
  height: 400px;
}

.recap-home .cuadro-sorteo {
  margin: 0 auto 45px;
  width: 600px;
  height: 390px;
}

.recap-home.sorteo-recap .cuadro-sorteo .videos-box {
  background-image: url(../images/bg-sorteo.png);
}

.recap-home.sorteo-recap .cuadro-sorteo .videos-box:hover:before {
  transform: scale(40);
}

.recap-home .cuadro-sorteo .title p {
  font-size: 22px !important;
  margin-bottom: 0 !important;
  line-height: 85%;
}

.recap-home .cuadro-sorteo .title p span {
  font-size: 13px;
}

.recap-home .cuadro-sorteo .title h4 {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .recap-home .cuadro-sorteo {
    margin: 0 auto 45px;
    width: 100%;
    height: 390px;
  }

  .recap-home .cuadro-sorteo .title p {
    font-size: 20px !important;
  }

  .recap-home .cuadro-sorteo .title h4 {
    font-size: 12px;
  }
}

.btn-sorteo {
  border: solid 2px #ffffff;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all ease 0.3s;
  border-radius: 5px;
  padding: 10px 15px;
  text-align: center;
  z-index: 1;
}

.btn-sorteo:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

/*Coming soon 2026*/

.screen-cs .header {
  background-color: #ffffff;
  z-index: 2;
  position: fixed;
  left: 0;
  right: 0;
}

.screen-cs .header .container {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
}

.screen-cs .header img {
  width: 340px;
}

.screen-cs .countdown {
  display: flex;
  gap: 30px;
  justify-content: center;
  width: 280px;
}

.screen-cs .time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-value {
  position: relative;
}

.screen-cs .number {
  font-size: 35px;
  font-weight: bold;
  color: #000000;
  font-family: "neusa_bold";
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  line-height: 105%;
}

.screen-cs .label {
  font-size: 15px;
  color: #000000;
  letter-spacing: 2px;
  font-family: "neusa_regular";
}

.screen-cs .video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.screen-cs .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.screen-cs .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.screen-cs .logo {
  width: 240px;
  margin-bottom: 30px;
}

.screen-cs h1 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 10px;
}

.screen-cs .event-info {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 30px;
}

.screen-cs .register-btn {
  background-color: #e4002b;
  border: solid 1px #e4002b;
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.screen-cs .register-btn:hover {
  background-color: #ffffff;
  color: #e4002b;
  text-decoration: none;
}

@media (max-width: 991.5px) {
  .screen-cs .header .container {
    max-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 820px) {
  .pantalla-coming-soon iframe {
    width: 500px;
    height: 400px;
  }

  .pantalla-coming-soon.video-recap {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .screen-cs h1 {
    font-size: 36px;
  }

  .screen-cs .event-info {
    font-size: 14px;
  }

  .screen-cs .register-btn {
    font-size: 14px;
  }

  .screen-cs .header img {
    width: 240px;
  }

  .screen-cs .number {
    font-size: 25px;
  }

  .screen-cs .countdown {
    gap: 20px;
    width: 255px;
  }

  .pantalla-coming-soon.video-recap iframe {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .screen-cs .header .container {
    flex-direction: column;
  }

  .screen-cs .header img {
    margin-bottom: 30px;
  }

  .screen-cs .logo {
    width: 190px;
  }
}

.screen-cs .pantalla-coming-soon {
  height: calc(100vh - 115.5px) !important;
}

.pantalla-coming-soon iframe {
  height: 400px;
  width: 700px;
}
