@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /*Brand colors*/
  --primary-color: var(--mega-blue);
  --secondary-color: var(--mega-pink);
  --heading-color: var(--dark-blue);
  --text-color: var(--dark-blue);
  --border-color: var(--gray-blue);
  --alternativa-bg-color: var(--mega-white);
  --soft-shadow: rgba(169, 208, 255, 0.25);

  --footer-background: var(--mega-white);
  --copyright-background: var(--dark-blue);

  --mega-blue: rgba(23, 143, 217, 1);
  --mega-pink: rgba(209, 15, 137, 1);
  --dark-blue: #1b4981;
  --dark-blue-50: #617d9f;
  --dark-blue-70: #617d9f;
  --gray-blue: #c4d2e4;
  --mega-blue-30: #cee4fe;
  --mega-white: #f7faff;

  /*Screen Breakpoints*/
  --mobile: 560px;
  --tablet: 768px;
  --desktop: 1024px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  background-color: var(--body-bg);
  color: var(--text-color);
}

a {
  text-decoration: none;
}

.featured-gradient {
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.container-global {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-spacing {
  padding: 20px 0 30px 0;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 50px 0 80px 0;
  }
}

.section-spacing-small {
  padding: 10px 0 20px 0;
}

.two-column-responsive {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 767px) {
  .two-column-responsive {
    flex-direction: row;
    gap: 50px;
  }
}

.reverse-order {
  flex-direction: column-reverse;
}

.reverse-order-mobile {
  flex-direction: column-reverse;
}

@media (min-width: 767px) {
  .reverse-order-mobile {
    flex-direction: row;
  }
}

@media (min-width: 767px) {
  .reverse-order {
    flex-direction: row-reverse;
  }
}

.column-60,
.column-40,
.column-50,
.column-66,
.column-33 {
  width: 100%;
}

@media (min-width: 768px) {
  .column-40 {
    width: 40%;
  }

  .column-60 {
    width: 60%;
  }

  .column-50 {
    width: 50%;
  }

  .column-66 {
    width: 66%;
  }

  .column-33 {
    width: 33%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-weight: 600;
}

.text-xl {
  font-size: 24px;
}

@media (min-width: 767px) {
  .text-xl {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .text-xl {
    font-size: 36px;
  }
}

.text-l {
  font-size: 22px;
}

@media (min-width: 767px) {
  .text-l {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .text-l {
    font-size: 32px;
  }
}

.text-medium {
  font-size: 18px;
}

@media (min-width: 767px) {
  .text-medium {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .text-medium {
    font-size: 22px;
  }
}

.text-smaller {
  font-size: 14px;
}

@media (min-width: 767px) {
  .text-smaller {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .text-smaller {
    font-size: 15px;
  }
}

.text-xxs {
  font-size: 12px;
}

@media (min-width: 767px) {
  .text-xxs {
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .text-xxs {
    font-size: 14px;
  }
}

.hide-on-mobile {
  display: none;
}

@media (min-width: 767px) {
  .hide-on-mobile {
    display: block;
  }
}

.section-title-container {
  padding: 30px 0 20px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.main-title-spacing {
  padding: 50px 0 50px 0;
}

.title-center {
  text-align: center;
}

.title-left {
  text-align: left;
}

.title-plus-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

@media (min-width: 768px) {
  .title-plus-btn {
    flex-direction: row;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.listing-cards-section {
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .listing-cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .listing-cards-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bottom-spacer {
  display: block;
  padding-bottom: 30px;
}

.bottom-spacer-s {
  width: 100%;
  height: 10px;
}

@media (min-width: 768px) {
  .bottom-spacer {
    padding-bottom: 50px;
  }
}

/* Header */
.header {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  background-color: #fff;
  position: relative;
  z-index: 9999;
}

.header-fixed {
  position: fixed;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
}

.header-container .logo {
  display: block;
  float: left;
  font-size: 2em;
  text-decoration: none;
  width: 150px;
  height: 60px;
  background: url("../../assets/img/global/logo-megaforce.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header-cta-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#toggle {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99999999;
}

#toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-color);;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#toggle span:nth-child(1) {
  top: 0px;
}

#toggle span:nth-child(2),
#toggle span:nth-child(3) {
  top: 8px;
}

#toggle span:nth-child(4) {
  top: 16px;
}

#toggle.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#toggle.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

header .overlay {
  position: fixed;
  background: #1b498163;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 9;
  padding-top: 50px;
}
header .overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
header .overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
header .overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
header .overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
header .overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
header .overlay nav {
  position: relative;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
header .overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
}

header .overlay ul li a {
  display: block;
  position: relative;
  color: var(--dark-blue);
  text-decoration: none;
  overflow: hidden;
}
header .overlay ul li a:hover:after,
header .overlay ul li a:focus:after,
header .overlay ul li a:active:after {
  width: 100%;
}
header .overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateY(-50%);
  height: 3px;
  background: var(--dark-blue);
  transition: 0.35s;
}

header .overlay-menu {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  background-color: var(--mega-white);
  height: 100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  right: 0;
  padding-top: 80px;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/*BOTONES*/

button.btn-reset {
  width: 100%;
  max-width: 700px;
  border: none;
  cursor: pointer;
}

.btn-blue {
  display: block;
  max-width: 300px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  padding: 12px 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn-blue:hover {
  filter: brightness(1.1);
}

.btn-pink {
  display: block;
  max-width: 300px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 10px;
  padding: 12px 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn-pink:hover {
  filter: brightness(1.1);
}

.btn-gray {
  display: block;
  max-width: 300px;
  background-color: var(--dark-blue-50);
  color: #fff;
  border-radius: 10px;
  padding: 12px 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn-gray:hover {
  filter: brightness(1.1);
}

.btn-ghost {
  display: block;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 12px 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-featured,
.featured-single-plan .btn-blue {
  display: block;
  width: 100%;
  max-width: 400px;
  background: var(--primary-color);
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #fff;
  border-radius: 10px;
  padding: 12px 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn-featured:hover,
.featured-single-plan .btn-blue:hover {
  filter: brightness(1.1);
}

a.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 10px;
  font-size: 14px;
  max-width: 350px;
}

a.btn-more::after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAXCAYAAABqBU3hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEiSURBVHgBxdQ9agJREAfwmTUJrGkWNBDIl0cQTIosBJITxCMkjQZSxBvE3CCWVnoErcROG7FwwRtYuK1gpY3LuA/Ej0bfwIz+i4VZ9vH/sQ8mAYJJPxdKyftc6/I2dz0Lg7bNGQcEg4g/8dMjxFLKL9ZszogCIqLKGgPwYYNIgGDmYdBP3jyZ9tcVIuvePWbm46AJxwCYzMJBl4MQB3ARKgAOQg1gi1AF2CAw9VLIOxF5oBwCJ94RkN3MUJ/0qp945RdH8ZCBk4TKoouIHUTvjAgahKB+BQiUN2t669Vwce7+IRwhaf+rHP/u353yC/dt2vmfqgP2lZtBFXCoXBVgU64GsC1XAXDKxQHcchPZRYT0zimXB0TY4JSrxPO/HzjfLwFAKZoKpDp1uwAAAABJRU5ErkJggg==');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}

a.btn-more:hover {
  background-color: var(--mega-white);
}

@media(min-width: 768px) {
  .btn-more {
    font-size: 18px;
  }
}

.btn-text {
  display: block;
  border: none;
  padding: 0;
  background: none;
  text-decoration: underline;
}

/* SECCIONES INFORMATIVAS (TWO COLUMN SECTION) */

.info-section {
  width: 100%;
  padding: 50px 0;
}

.info-section--wrapper div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-section--wrapper--cover-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}

.info-section--content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fancy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fancy-list li {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}

.fancy-list--content {
  display: flex;
}

.fancy-list--pink-icon {
  min-width: 22px;
  height: 22px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAARCAYAAAAyhueAAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADZSURBVHgBrc4xCsIwFMbxL7GKmwER3OwRvII30UVwqyfoEcRBugj1Jj2CHqGji+BcMfEZRVJb26T1D4FHePx4DH9IDaM5wDc0XtGVsw5a9gZjGvv0BO4QHC0yQLMTQ8PKQXZgl+WiEVoF6gmO1YHOqA3ohNqC+leJWMDLAkgM0JNbdl6lBXC0m0J6RxvwGQfPQiiEdHOAG0/UOPJLwMQWfKH5fBM2QGEL6g0lCOA8oUt94z+lt6YXu4J6S19UDn+vWoEftB62B3Pob9gNLKBF2B2sTIn9BA17AHJIZoXI9zJKAAAAAElFTkSuQmCC");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--footer-background);
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 20px;
}

@media (min-width: 1024px) {
  .footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    
    flex-shrink: 1;
    flex-wrap: wrap;
  }
}

.footer-menu-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media(min-width: 768px) {
  .footer-menu-container {
    flex-direction: row;
    width: 100%;
    max-width: 900px;
  }
}

.footer-menu-column {
  width: 100%;
  padding: 20px;
}

.footer-menu-column h5 {
  font-size: 15px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .footer-menu-column h5 {
    font-size: 16px;
    font-weight: 600;
  }
}

.footer-logo-wrapper {
  min-width: 250px;
  width: 25%;
}

.footer-logo-wrapper img {
  width: 100%;
  max-width: 200px;
}

.copyright-container {
  display: block;
  text-align: center;
  background-color: var(--copyright-background);
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
}

.footer-menu-items-wrapper {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu-column h5 {
  margin-bottom: 15px;
}

.footer-menu-items-wrapper li a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}

.claim-book-wrapper {
  margin-top: 20px;
}

.social-icon-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: block;
  width: 25px;
  height: 25px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.facebook-icon {
  background-image: url(../../assets/img/global/facebook-icon.png);
}

.instagram-icon {
  background-image: url(../../assets/img/global/instagram-icon.png);
}

.tiktok-icon {
  background-image: url(../../assets/img/global/tiktok-icon.png);
}

.whatsapp-icon {
  background-image: url(../../assets/img/global/whatsapp-icon.png);
}

.whatsapp-cta-wrapper {
  display: block;
  border: 1px solid #226C37;
  border-radius: 10px;
  padding: 10px;
  color: #226C37;
  min-width: 240px;
  max-width: 300px;
}

.whatsapp-cta-wrapper .wsp-title {
  font-weight: 500;
}

.whatsapp-cta-wrapper > span {
  display: block;
  width: 100%;
  text-align: left;
}

/* GALLERIES */
.container-slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container-slider {
    padding: 0 0 0 20px;
  }
}

.sede-container-slider {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .sede-container-slider {
    padding: 0 0 0 20px;
  }
}

img.slider-item-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  border-radius: 10px;
}

.slider-item-image::before {
  position: absolute;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.slider-item-block {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1.2;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .slider-item-block  {
    aspect-ratio: 4/2.5;
  }
}

.slider-item-block::before {
  position: absolute;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.slider-sede-block {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  border-radius: 10px;
}

.slider-sede-block::before {
  position: absolute;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.splide__slide figcaption {
  position: absolute;
  width: 90%;
  color: #fff;
  bottom: 30px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 5px;
}

/* POLITICAS */
.section-content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 80px;
}

.section-content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 10px;
}
 
.section-content-wrapper h3,
.section-content-wrapper h4,
.section-content-wrapper h5,
.section-content-wrapper h6 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.section-content-wrapper p {
  margin-bottom: 10px;
  font-size: 15px;
}


/*FORMS + CHECKOUT*/
.checkout {
  background-color: var(--alternativa-bg-color);
}
.checkout-stepper-wrapper {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  list-style: none;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
}

.checkout-stepper-wrapper li {
  padding: 10px;
  font-size: 14px;
}

.checkout-stepper-wrapper li.stepper-active {
  background-color: var(--secondary-color);
  border-radius: 10px;
  color: #fff;
}

.checkout-content-block {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.checkout-content-block h2 {
  margin-bottom: 20px;
}
.checkout-plan-features--wrapper {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.checkout-plan-features--item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

.checkout-plan-features--wrapper > .included-feature::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAoCAYAAABjPNNTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANVSURBVHgB3VhLTttAGP7GNqy6yA2anqB0hyhI7gkKJyhelodITkA4AUgFdVMp4QSkJ8AoUHVX9wbpDbKousBOpv8Y44yfGT8Sq/0kK7ZnxvPln//xzQD/ABhqwOZn3jY8tOljLXC0OMNYvDdewLEtNkFFlCJp9nnL+4MP4pZImRDksuEQaYfNcH1/zGyUQCGSPrnf6NCokwXEUuFbmKH3cMCui4xTJrn9iffKkotDkCXLWqqWXUjSJH/zpuiLW9QNjjMi2lvULZekIDid4ZZztLEsMAyNR1h2NzvAtKyGlRAU4Nj11nCT1yWV5MoISlPuXPLzrMZUkkTwdIUEfXCg8/aSd9LaEj65c8X3iWAfzWBiuHgV9880S56iObS8dT/NRRAhGVixjSbB0THPeSQXR0gSwRM0j4Q1Q5IioulnA0sA/fkx02D6F38SH/kDooUjJOnN8B7LAMdk6uHd6IDdiUtUGYVRprzk8nKbWAIofVjfu2yM+YyvVca5a3OjzUkuI2BI8YyO2fD5ceuKb4h8qDSUzfnIlmyjRpAFL+4PWbi0wud15Jc/GRzpJJUkGE0+EAFAH+nmdHNGRyxsFzq0Spk1UBCui7PAx+4or07i1UlEMgXKnvyOVHy/ijvJllTai2jrc4uPDtmAfMcKG4NIlgPFF8ukdFABIUnKX0okablvNp9yaoJoPJJ9wcDKlVn61jhBku5spcG0bDr5V5zozMWbeCTTROcoCZrHmVMLQIHgFPhAgui3LgvHF43kNJDv/0ScpKHhKwogjahPsGIkB3BktwlJ2h/9lzYKII2oiOSqSopW9UJ+jqYg2hTFi/siPBPdvuIDfyyvXl6nLu4ic8gPoqhPDfzgrDlNSVYcPBwxS34X0ZOBbO+iIfiFwE2qpMT2IUgjNpoACZKIYgqQulukzdCekjitEUKQ0DJfZ7Slg/yzTf55uxL/5BjSccteVnPmCQb551inOrxsiwpVRWeb1oI++RAWDY5Bat//iCWWJV1OPzVQHjylZemhBogo1nTs+3seBRQ7RBV+ukZHMMA+ykAoLS2q2FVQ7jhaJH0du1ynzdKMKgzLVvW+T4tKpmGoarlaSMax9YW/1B8pC8zQEof7ZOnJlOHX+iPGeeeO/xX+AvqZbMuJT4GjAAAAAElFTkSuQmCC");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.checkout-plan-features--wrapper > .non-included-feature::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAlCAYAAADFniADAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAALiSURBVHgBxVjbkdowFJW1zPBLCeST4WHcAVQQqGA3FSSpAFNBSAXZEnYriFMB7+Ez7iB888w5XtnDGttIxgtnRki2Jfvo6t5zhSxhiPF4XHl4eOihaVuW1UGpHI/Havgc1z6uWSb7/f7VcRxPGMLS7TifzzuoBigdYQCSROVhIsNareZrjbnUYbVaVXe73S9TMkk4HA5DlBGstxZ5SU2n029Syh+iQCjL9RuNxiStj0x7MJvNnosmRND/UMaccFqfREvBf8ao2uKDweW0bduN35cJhEa3IBR8XMrBYrF4jN+3YoRc8RZht8S6VCo5p5EZWYpRdgdCREVFd4SIFB4U7tQG6Jw6fkBKCWNP3BH0r6jNH2jHo8F4Ct+LZj9P6KOyXC4/B6ToS9CNJ51RzGlY5k/NZrOPiTjqw0mYqH5dtLtCE5CIYAnldrvtCH14YYqgIoNYN4EYCXXDfiDmCX20mfC5fLbuCJDoQVciDUsg9o4QoWRGFxUSk3ipiVBym/I7hZiXQshIZqBZtoWB/xRDE6xJJCup5hViTHokcxAizixWBKHw3VLkRwXRcia4KjN8FVfgGlLc7vbjN5nDUqJSn5TadBkTijs1QzlsZ8jFRZCP5AZfmCEx7BE1fy/IhREpX3eAUvS0sE+UC1R9YQCI+ZTL92owxrugQ2fEMAntleCk8f6JVGlAy8RUdBVdWWEfEGNypZ9hWV2hDy/4Dn/wggHC2xV3BqzqBJbixWaz+SmuCOGCQNcIljogRT/BJmsk7ghY6UvYjsST1jKJxCLBfAfD+CJOSlnLKHwLIuQjMwxP771LM9QVOPx3cSMoQt342cJZ7sM/1hEs5orbEfLjzxITcr1eHyqLfUhEZhFKJUXQYtSNop2fTg1CThohQuvQDCcwT6gGUPSqyA8PhNxWq/XnUkftkzyC5NR/xI7mkDWIPKN+0SGTi1QI5rRyuWxjGdrqvPN0S01poTJPs/bwWfgPboK9kr0Y6lEAAAAASUVORK5CYII=");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.checkout-plan {
  margin-top: 10px;
}

.checkout-plan summary {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--mega-blue);
}

.checkout-plan summary:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

.checkout-form-fullwidth {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}


.global-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.input-100 {
  width: 100%;
}

.input-50 {
  width: 100%;
}

@media (min-width: 768px) {
  .input-50 {
    width: calc(50% - 10px);
  }
}

.input-33 {
  width: 100%;
}

@media (min-width: 768px) {
  .input-33 {
    width: calc(33% - 10px);
  }
}

.form-control {
  margin-bottom: 10px;
  /* width: 100%; */
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
    outline: 1px solid var(--primary-color);
}

#formBeneficiaryContainer,
#formInvoicingContainer
{
  display: none;
  opacity: 0;
  transition: opacity .3s ease, display .3s ease allow-discrete;
}

#switchBeneficiaryContainer:has(input[type="checkbox"]:checked) + #formBeneficiaryContainer,
#switchInvoicingContainer:has(input[type="checkbox"]:checked) + #formInvoicingContainer
{
  display: flex;
  opacity: 1;
}

#switchBeneficiaryContainer,
#switchInvoicingContainer
{
  display: flex;
  flex-direction: row;
  align-items: center;
}

#switchBeneficiaryContainer span,
#switchInvoicingContainer span
{
  display: inline-block;
  margin-left: 10px;
  font-weight: 500;
  line-height: 130%;
}

.purchase-datails {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

.purchase-datails ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.purchase-datails ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: var(--dark-blue-70);
}

.purchase-datails ul li:last-child{
  color: var(--dark-blue);
  font-weight: 500;
}

.checkout-secure {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap:wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  padding: 15px 5px;
  border: 1px solid var(--mega-blue-30);
  border-radius: 10px;
}

.checkout-secure--child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

@media(min-width: 768px) {
  .checkout-secure {
    justify-content: space-between;
    padding: 15px;
  }
  .checkout-secure--child {
    font-size: 15px;
  }
}

.checkout-secure strong {
  font-weight: 500;
}

.secure-icon {
  background-image: url(../../assets/img/global/secure-icon.png);
}

.mercadopago-logo {
  display: inline-block;
  width: 100px;
  height: 40px;
  background-image: url(../../assets/img/global/mercadopago-logo.png);
  object-fit: contain;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.card-logos {
  display: inline-block;
  width: 180px;
  height: 35px;
  background-image: url(../../assets/img/global/cards-logos.png);
  object-fit: contain;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.payment-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/*STEP 3*/
.single-plan--container {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.single-plan--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.single-plan--title {
  width: 50%;
}

.checkmark-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.single-plan-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.single-plan-pricing span {
  display: block;
  text-align: right;
}

.single-plan--cost-breakdown {
  display: none;
}

@media (min-width: 768px) {
  .single-plan--cost-breakdown {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    list-style: none;
    margin-bottom: 10px;
  }
}

.single-plan--cost-breakdown li {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  left: 0px;
  top: 0;
  bottom: 0;
  border: 1px dotted;
  border-width: 0 0 0 1px;
  padding-left: 15px;
}

.single-plan--cost-breakdown li:first-child {
  border: none;
  padding-left: 0;
}

.single-plan--cost-breakdown li > span {
  display: block;
}

.single-plan--description {
  color: var(--dark-blue-70)
}

.plans-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cupon-wrapper--input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .cupon-wrapper--input {
    flex-direction: row;
  }
}

.cupon-wrapper > input {
  width: 60%;
}

.coupon-true {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}

.coupon-false {
  color: red;
}

.pricing-details--table {
  list-style: none;
  overflow-y: scroll;
  max-height: 300px;
}

li.pricing-details-payment {
  margin-bottom: 20px;
}

.pricing-details-payment .pricing-details-payment--header,
.pricing-details-payment-breakdown li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 20px;
}

.pricing-details-payment-breakdown li {
  font-size: 12px;
  color: var(--dark-blue-50);
}

.text-featured {
  color: var(--secondary-color);
  background-color: white;
  font-weight: 500;
}

.checkout-btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.checkout-btn-wrapper button:first-child {
  width: 100%;
}

@media (min-width: 768px) {
  .checkout-btn-wrapper button:first-child {
    width: 40%;
  }
  .checkout-btn-wrapper {
    flex-direction: row;
  }
}

.checkout-title-container h2 {
  margin-bottom: 10px;
}

/*CUSTOM SWITCH */

input.switch[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

label.switch-label {
	cursor: pointer;
	text-indent: -9999px;
	width: 50px;
	height: 28px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}

label.switch-label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

input.switch:checked + label.switch-label {
	background: var(--mega-blue);
}

input.switch:checked + label.switch-label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

label.switch-label:active:after {
	width: 50px;
}

/*CUSTOM RADIO BUTTON*/
.checkmark-wrapper {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkmark-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

.checkmark-wrapper:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkmark-wrapper input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkmark-wrapper input:checked ~ .checkmark:after {
  display: block;
}

.checkmark-wrapper .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.single-plan--container:has(input[type="radio"]:checked) {
  border: 1px solid var(--primary-color);
  background-color: var(--alternativa-bg-color);
}

.stepper {
  border-radius: 10px;
}

.active {
  color: #fff;
  background-color: var(--mega-blue);
}

.completed {
  color: #fff;
  background-color: var(--dark-blue);
}

.policy-acceptance {
  display: inline-block;
  width: 30px;
}

/* CONTACTO */
.contact-container {
  padding: 50px 0 80px;
}

.contact-info-wrapper {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-info-wrapper li {
  display: flex;
  flex-direction: column;
}

.contact-info-wrapper li div {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.pin-icon {
  background-image: url(../../assets/img/global/pin-icon.png);
}

.phone-icon {
  background-image: url(../../assets/img/global/phone-icon.png);
}

/*THANK YOU PAGE*/

.thank-you-container {
  width: 100%;
  height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-wrapper {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(white, white) padding-box,
  linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    )
    border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media(min-width: 768px) {
  .thank-you-wrapper {
    padding: 50px;
  }
}

.check-icon {
  background-image: url(../../assets/img/global/check.png);
}

.error-icon {
  background-image: url(../../assets/img/global/error.png);
}

.thank-you-container a.btn-blue {
  max-width: 100%;
}

.error-alert-message {
  display: flex;
  width: 100%;
  background-color: red;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 10px 0 30px 0;
}

.error-alert-icon {
  display: flex;
  width: 30px;
  height: 30px;
  background-color: white;
  color: rgba(255, 0, 0, 0.756);
  border-radius: 50%;
  font-weight: 600;
  font-size: 20px;
  justify-content:center;
  align-items: center;
  flex-shrink: 0;
}