:root {
  --primary-color: #c10230;
  --primary-dark-color: #c10230;
  --secondary-color: #101820;
  --third-color: #c4c4c4;
}
html {
  min-height: 100%;
  position: relative;
}

body,
html {
  font-family:
    Source Sans Pro,
    sans-serif;
  margin: 0;
  padding: 0;
  font-style: normal;
  background-color: var(--jvm-background-primary);
  color: var(--jvm-color-text-primary);
}

html {
  position: relative;
}

body a,
a:link {
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  color: var(--jvm-background-dark-red);
  transition: 0.5s;
}

body a:hover {
  text-decoration: none;
  color: var(--jvm-background-dark-red);
}

h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 42px;
  letter-spacing: -1px;
}

h2 {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  line-height: 22px !important;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: var(--jvm-color-text-primary);
}

ul li {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: var(--jvm-color-text-primary);
}

ol li {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: var(--jvm-color-text-primary);
}

.classH1 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  /* 116.667% */
  letter-spacing: -0.5px;
}

.visibleMobile {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Fondo semitransparente negro */
  z-index: 999;
  display: none;
  /* Inicialmente oculto */
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  /* Asegúrate de que esté por encima de la capa de fondo */
  display: none;
  /* Inicialmente oculto */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.thankYouText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin: 5rem 0;
}

.thankYouText img {
  width: 50px;
  height: 50px;
}

.botones_contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.thank-you-page .containerThankYou {
  max-width: 550px;
}

.thank-you-page .containerThankYou h2,
.thank-you-page .containerThankYou .tkH1 {
  font-size: 64px;
  line-height: 120%;
  margin-bottom: 24px;
  color: var(--jvm-color-text-primary);
}

.thank-you-page .containerThankYou p {
  font-size: 24px;
  font-weight: bold;
}

.flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.flex-container .flex-body {
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .marginTop54 {
    margin: 0;
  }

  .thank-you-page .containerThankYou h2 {
    font-size: 36px;
  }

  .containerThankYou .btn_btn_form .cta {
    max-width: 100% !important;
  }
}

#response_whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.boton2 {
  background-color: rgb(0, 103, 177);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 35px;
  border-radius: 10px;
}

.boton2 a {
  color: rgb(255, 255, 255);
}

.btn-primary {
  color: var(--jvm-color-text-white);
  background-color: transparent;
  border-color: transparent;
}

.btn:hover {
  color: initial;
  background-color: inherit;
  border-color: transparent;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  transition: 0.5s;
}

.btn-update-progress button.boton_siguiente {
  background-color: transparent;
  border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 934px;
}

/* --------------- FIN SELECTORES --------------- */
/* --------------- OTROS ESTILOS GENERALES --------------- */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 934px;
  }
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.btn-check:active + .btn:focus,
.btn-check:checked + .btn:focus,
.btn.active:focus,
.btn.show:focus,
.btn:active:focus,
.btn:focus,
.input:active:focus,
.input:focus {
  box-shadow: none;
}

.form-group {
  margin-bottom: 1rem;
}

.form-check-input[type="checkbox"],
.form-check-input[type="radio"] {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

textarea {
  width: 100% !important;
  background-color: transparent !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  border: 1px solid var(--jvm-color-line) !important;
  border-radius: 6px !important;
}

label {
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0.3rem;
}

::placeholder {
  font-weight: 400;
  font-size: 1rem;
  color: var(--jvm-color-text-gray);
  padding: 0.2rem;
  text-align: left;
}

input:disabled {
  background: rgba(214, 214, 214, 0.5) !important;
}

.form-check-input:checked[type="checkbox"] {
  background-color: var(--jvm-background-secondary);
  border-color: var(--jvm-background-secondary);
}

.titleCenter {
  text-align: center;
}

.wdthH2Center {
  width: 100%;
  max-width: 712px;
  margin: auto;
}

.lineOne {
  width: 100%;
  height: 1px;
  background-color: var(--jvm-color-line);
  display: block;
  margin: 1rem 0;
}

.bgGray {
  background-color: var(--jvm-background-gray);
  padding: 4rem 0;
}

.hideComponent {
  display: none;
}

.borderRadius50 {
  border-radius: 50% !important;
}

.btnClubes {
  margin-top: 1.5rem;
}

.btnClubes .cta {
  width: 100%;
  max-width: fit-content;
  height: 48px;
  background-color: rgb(0, 103, 177);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 18px;
  letter-spacing: -0.25px;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  padding-inline: 2rem;
}

.btnClubes .cta:is(:hover, :active, :focus) {
  background-color: rgb(0, 54, 92);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 54, 92);
  --bs-btn-focus-box-shadow: 0 0 0 0rgba (var(--bs-btn-focus-shadow-rgb), 0);
  text-decoration: none;
}

/* --------------- FIN OTROS ESTILOS GENERALES --------------- */
/* --------------- SEPARADORES --------------- */
.separadorProOne {
  padding: 5px;
}

.separadorProOneL {
  padding: 6px;
}

.separadorProOneXl {
  padding: 8px;
}

.separadorProTwo {
  padding: 10px;
}

.separadorProTwoXl {
  padding: 12px;
}

.separadorProThree {
  padding: 15px;
}

.separadorProThreeL {
  padding: 16px;
}

.separadorProFour {
  padding: 20px;
}

.separadorProFourL {
  padding: 21px;
}

.separadorProFive {
  padding: 25px;
}

.separadorProSix {
  padding: 30px;
}

.separadorProSixL {
  padding: 32px;
}

.separadorProSeven {
  padding: 35px;
}

.separadorProSevenL {
  padding: 36px;
}

.separadorProEight {
  padding: 40px;
}

.separadorProNine {
  padding: 45px;
}

.separadorProTen {
  padding: 50px;
}

/* --------------- FIN SEPARADORES --------------- */

/* --------------- MARGENES --------------- */
.marginTop54 {
  margin-top: 54px;
}

@media screen and (max-width: 768px) {
  .marginTop54 {
    margin-top: 0 !important;
  }
}

/* --------------- FIN MARGENES --------------- */

/*.contentSuperHeading .superheadingXl {
    width: 1000px !important;
  }*/

/* --------------- DIVISORES --------------- */
.dividerProOne {
  height: 1px;
  width: 100%;
  opacity: 0.1;
  border-bottom: 1px solid #333333;
  background: #fff;
}

/* --------------- FIN DIVISORES --------------- */
.visibleMobile {
  display: none;
}

.visibleMobileTwo {
  display: none !important;
}

.twoColumn {
  width: var(--jvm--width);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.twoColumnTwo {
  width: var(--jvm--width);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.twoColumnThree {
  width: var(--jvm--width);
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.twoColumnFour {
  width: var(--jvm--width);
  display: grid;
  grid-template-columns: 40% 60%;
}

.threeColumn {
  width: var(--jvm--width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.fourColumn {
  width: var(--jvm--width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.fiveColumn {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

.fiveColumnActivities {
  display: flex;
  gap: 37px;
  /* align-items: center; */
  flex-wrap: wrap;
  justify-content: center;
}

.moduloHU47 .bubbles-component {
  display: flex;
  gap: 30px;
  /* align-items: center; */
  flex-wrap: wrap;
  justify-content: center;
}

.moduloHU47 .bubbles-component .bubble-item {
  width: 158px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.moduloHU47 .bubbles-component .bubble-item img {
  max-width: 60px;
}

.moduloHU47 .bubbles-component .bubble-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 156.25% */
}

.moduloHU47 .bubbles-component .bubble-item .bubble {
  width: 100%;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 50%;
  filter: drop-shadow(0px 4px 4px #e2e8ee);
}

.fiveColumnActivities .item {
  width: 152px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}

.fiveColumnActivities .item img {
  height: 60px;
}

.fiveColumn .item h3,
.fiveColumnActivities .item h3 {
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 25px !important;
}

.threeColumn.dividerBetween .column:not(:last-child)::after,
.fourColumn.dividerBetween .column:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #fff;
  opacity: 0.1;
  top: 0;
  right: -1rem;
}

.twoColumnGP0,
.columnGap0 {
  gap: 0;
}

.twoColumnGP0-5,
.columnGap0-5 {
  gap: 0.5rem;
}

.twoColumnGP1 {
  gap: 1rem;
}

.columnGap1 {
  gap: 1rem !important;
}

.twoColumnGP2 {
  gap: 2rem;
}

.columnGap2 {
  gap: 2rem !important;
}

.twoColumnGP3 {
  gap: 3rem;
}

.columnGap3 {
  gap: 3rem !important;
}

.twoColumnGP4 {
  gap: 4rem;
}

.twoColumnGP5 {
  gap: 5rem;
}

.twoColumnGP6 {
  gap: 6rem;
}

.marginTOP2-5 {
  margin-top: var(--jvm--mrgt2-5);
}

.positionRelative {
  position: relative !important;
}

.alignCenter {
  align-items: center;
}

.textCenter {
  text-align: center;
}

.textWhite {
  color: var(--jvm-background-white) !important;
}

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

.titleLight h3 {
  font-weight: 400 !important;
}

/* ------------------------------ */

.banner.noImage h1 {
  font-weight: 700;
  font-size: 2.25rem;
  font-family: "Source Sans Pro";
}

.banner.noImage p {
  font-size: 1.25rem;
  font-family: "Source Sans Pro";
}

.bannerClubes,
.bannerColsubsidio,
.bannerSecondaryCET {
  position: relative;
}

.bannerClubes .captionContent,
.bannerColsubsidio .captionContent {
  width: min(100%, 485px);
  position: absolute;
  top: 50%;
  left: 5%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bannerClubes .captionContent.captionContentL,
.bannerColsubsidio .captionContent.captionContentL {
  width: min(95%, 530px);
}

.bannerClubes .captionContent.captionContentXL,
.bannerColsubsidio .captionContent.captionContentXL {
  width: min(95%, 620px);
}

.bannerClubes .captionContent h1,
.bbannerColsubsidio .captionContent h1 {
  margin-bottom: 0.75rem;
  padding: 0;
}

.bannerClubes .captionContent p,
.bbannerColsubsidio .captionContent p {
  margin-bottom: 1rem;
}

.bannerClubes .bannerDesktop,
.bannerColsubsidio .bannerDesktop {
  object-fit: cover;
  object-position: right;
  background-position: 100% 1% !important;
  height: 400px;
  width: 100%;
}

.btnBanner .cta {
  width: 100%;
  max-width: fit-content;
  background-color: var(--jvm-background-white);
  border-radius: 30px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 2rem;
  color: var(--jvm-color-text-secondary);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.25px;
}

.btnBanner .cta.btnBannerSecondary {
  padding-inline: 4rem;
  border: 1px solid rgba(0, 103, 177, 1);
}

.btnBannerBlue .cta {
  width: 100%;
  max-width: fit-content;
  height: 48px;
  background-color: rgb(0, 103, 177);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  padding-inline: 4rem;
}

.btnBlue .cta {
  width: 100%;
  max-width: fit-content;
  height: 48px;
  background-color: rgb(0, 103, 177);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  padding-inline: 73px;
}

.btnBanner .cta:is(:hover, :active, :focus),
.btnBannerBlue .cta:is(:hover, :active, :focus),
.btnBlue .cta:is(:hover, :active, :focus) {
  background-color: rgb(0, 54, 92);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 54, 92);
  --bs-btn-focus-box-shadow: 0 0 0 0rgba (var(--bs-btn-focus-shadow-rgb), 0);
  text-decoration: none;
}

/* --------------- BANNER SECUNDARIO PARA CET --------------- */

.bannerSecondaryCET {
  min-height: 250px;
  background-image: url(https://image.info.colsubsidio.com/lib/fe2711737164047a7d1178/m/1/ebe26e8d-2774-43a9-8de3-6bf60bf41494.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 1% !important;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 60% 40%;
}

.bannerSecondaryCET .textInfo {
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.bannerSecondaryCET .textInfo h2 {
  margin-bottom: 12px;
}

.bannerSecondaryCET .image {
  position: absolute;
  bottom: 0;
  right: 30px;
}

.bannerSecondaryCET .btnBanner .btn {
  border: 1px solid rgba(0, 103, 177, 1);
}

/* --------------- FIN BANNER SECUNDARIO PARA CET --------------- */

/* ------------------------------ */
.contentSticky {
  gap: 0.2rem;
  width: 100%;
  border-bottom: 2px solid rgb(239, 239, 239);
  padding: 1rem 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: rgb(255, 255, 255);
}

.contentSearch {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 3rem;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.contentSearch a {
  text-decoration: none;
  padding: 10px 10px 16px 10px;
  display: block;
  border-bottom: 2px solid transparent;
}

.contentSearch a.active {
  border-bottom: 4px solid var(--jvm-background-yellow);
  text-decoration: none;
}

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

.barra_amarilla {
  width: 160px;
  height: 5px;
  background-color: var(--jvm-background-yellow);
}

.contentSearch a {
  color: var(--jvm-color-text-textlink);
  text-decoration: none;
  font-size: 1.25rem;
}

.contentSearch a:hover {
  text-decoration: underline;
}

.moduloA1 .textInformations .ico-info .item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: 1rem;
}

.moduloA1 .textInformations .ico-info .item:last-child {
  margin-bottom: 0;
}

.textInformations a:hover {
  text-decoration: underline;
}

.moduloA1 .textInformations .ico-info .item img {
  width: 24px;
}

.moduloA1 .textInformations .ico-info .item p {
  margin-bottom: 0;
}

.banner_contador {
  width: var(--jvm--width);
  min-height: 250px;
  .logo-supersalud {
    float: right;
  }

  .logo-supersalud img {
    height: 21px;
    margin-top: -8px;
    width: 156px !important;
  }

  .logo-supersubsidio {
    float: right;
  }

  .logo-supersubsidio img {
    height: 21px;
    width: 156px !important;
  }

  .follow {
    border-bottom: 0px !important;
    box-sizing: border-box;
    display: block;
    padding: 30px 20px;
    position: relative;
    width: 100%;
  }

  .follow .up {
    cursor: pointer;
    display: table;
    position: absolute;
    right: 10%;
    top: -27px;
  }

  .follow .up img {
    background: #0067b1;
    border-radius: 50%;
    padding: 18px;
    width: 54px;
  }

  .follow .up:hover {
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  }

  .follow h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .follow .items a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-right: 15px;
    text-decoration: none;
  }

  .follow .items a img {
    margin-right: 5px;
    width: 18px;
  }

  .follow .items a img,
  .follow .items a span {
    vertical-align: middle;
  }

  .follow .items a span:hover {
    text-decoration: underline;
  }

  @media (max-width: 769px) {
    .content .items {
      display: flex;
      flex-flow: column nowrap;
    }

    .follow .up {
      right: 16px;
    }

    .logo-supersalud,
    .logo-supersubsidio {
      margin-top: 20px;
    }

    .logo-supersalud {
      margin-left: -22px;
    }
  }
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(https://image.info.colsubsidio.com/lib/fe2711737164047a7d1178/m/1/9984ec27-f590-4756-8bc0-393b43331d34.jpg)
    no-repeat center;
  background-size: cover;
  padding: 2rem 0;
  gap: 1.5rem;
}

.contador_numeros {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-right: 2rem;
}

.contador_numeros:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  background-color: var(--jvm-background-white);
}

.contador_numeros:last-child > .contador_numeros::after {
  background-color: transparent;
}

.titulo_contador {
  font-size: 26px !important;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.5px;
}

.contador_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.contador_dias {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.contador_valor {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

/* Formulario */
.container-forms {
  width: 758px;
  margin: auto;
  padding: 1rem 0 1rem;
  position: relative;
}

.container-forms label,
.container-forms legend {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  color: rgb(51, 51, 51);
  margin-bottom: 0.313rem;
}

.container-forms .check_legal {
  display: block;
}

.ter_ms_agencia .form-check {
  display: flex;
}

.ter_ms_agencia .form-check .form-check-input {
  min-width: 24px;
  min-height: 24px;
}

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

.font-size-14 {
  font-size: 14px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.container-forms .check_legal a:hover {
  text-decoration: underline;
}

.container-forms select {
  background-image: url(https://image.info.colsubsidio.com/lib/fe2711737164047a7d1178/m/1/4e7213ae-7e67-4489-aede-ea7dc585ca9b.png) !important;
  background-repeat: no-repeat !important;
  background-position: 94% center !important;
  background-size: 11.26px !important;
  appearance: none;
  margin-top: 0;
}

.container-forms input[type="text"],
.container-forms input[type="date"],
.container-forms input[type="email"],
.container-forms select,
.container-forms .select2-selection {
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  height: 48px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(226, 232, 238);
  border-radius: 8px;
  font-weight: 400;
  font-size: 1rem;
  color: rgb(117, 117, 117);
}

.container-forms input[type="text"],
.container-forms input[type="date"],
.container-forms input[type="email"],
.container-forms input[type="number"],
.container-forms select,
.container-forms .select2-selection {
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  height: 48px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(226, 232, 238);
  border-radius: 8px;
  font-weight: 400;
  font-size: 1rem;
  color: rgb(117, 117, 117);
}

.container-forms .style-disabled {
  background-color: #e9ecef !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  height: 100%;
  display: flex;
  align-items: center;
  color: rgb(117, 117, 117);
  background-image: url(https://image.info.colsubsidio.com/lib/fe2711737164047a7d1178/m/1/4e7213ae-7e67-4489-aede-ea7dc585ca9b.png) !important;
  background-repeat: no-repeat !important;
  background-position: 94% center !important;
  background-size: 11.26px !important;
  appearance: none;
  margin-top: 0;
  padding-left: 12px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}

.container-forms .form-group {
  /* margin-bottom: 2.5rem; */
  margin-bottom: 1.5rem;
}

.btn_btn_form {
  width: 100%;
  text-align: center;
}

.btn_btn_form .cta {
  width: 100%;
  max-width: 204.13px;
  height: 48px;
  background-color: #c10230;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  letter-spacing: -0.25px;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  margin: auto;
  padding-inline: 2rem;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  border-color: rgba(179, 62, 102, 1) !important;
  opacity: var(--bs-btn-disabled-opacity);
}
.btn_btn_form.btn-square {
  width: auto;
}

.btn_btn_form.btn-square .cta {
  font-size: 1.25rem;
  padding-inline: 4rem;
  border-radius: 12px;
}

.btn_btn_form .cta:is(:hover, :active, :focus) {
  background-color: #fff !important;
  color: #c10230 !important;
  border: 1px solid #c10230 !important;
  --bs-btn-focus-box-shadow: 0 0 0 0rgba (var(--bs-btn-focus-shadow-rgb), 0);
  text-decoration: none;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url(https://image.info.colsubsidio.com/lib/fe2711737164047a7d1178/m/1/bb96272c-bb76-4fd8-bfa8-697909cb95ed.png);
  background-size: 15px;
  background-color: var(--jvm-background-dark-red);
  text-decoration: none;
}

span.required {
  color: #d32f2f;
}

.infoGeneral strong {
  font-weight: 600;
}

.custom-input-file {
  color: #0067b1;
  cursor: pointer;
  font-weight: 400;
  margin: 0 auto 0;
  min-height: 15px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  text-align: center;
  border: 1px dashed #e2e8ee;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.custom-input-file span {
  font-size: 0.875rem;
}

.custom-input-file .input-file {
  border: 10000px solid transparent;
  cursor: pointer;
  font-size: 10000px;
  margin: 0;
  opacity: 0;
  outline: 0 none;
  padding: 0;
  position: absolute;
  right: -1000px;
  top: -1000px;
}

.aviso_final {
  width: var(--jvm--width);
  min-height: 61px;
  background-color: rgb(215, 230, 246);
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 25px;
}

.aviso_final p {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 18px;
}

.helpSection {
  gap: 2rem;
}

.helpSection .column h3 {
  font-weight: 400 !important;
  font-size: 1rem !important;
}

.helpSection .column p {
  font-size: 0.75rem;
  line-height: 18px;
}

.helpSection a:hover {
  text-decoration: underline;
}

/* --------------- CUSTOM FOOTER --------------- */

.customFooter {
  background-color: #fff;
}

.customFooterWrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 12px;
  /* margin-bottom: 8px; */
}

.customFooter .customFooterWrapper p {
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 16.8px;
  letter-spacing: 0.4px;
  margin-top: 0.25rem;
  color: rgb(112, 112, 112);
  text-align: right;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .customFooterWrapper {
    flex-direction: row;
    padding: 0 50px;
  }

  .customFooter {
    height: 51px;
  }
}

/* --------------- FIN FOOTER --------------- */

.footer_edit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.redes_sociales {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.redes_sociales p {
  font-size: 18px;
  font-weight: 600;
}

.redes_sociales img {
  width: 20px;
  height: 20px;
}

.aviso_final ul {
  margin: 0;
}

.aviso_final img {
  width: 25px;
  height: 25px;
}

.imgCardText {
  width: 95%;
  margin: 12px auto;
  border-radius: 6px 6px 0px 0px;
}

.imgCardText img {
  min-height: 195px;
  object-fit: cover;
}

.imgCardText .infoText {
  padding: 0rem 0 0;
}

.imgCardText .infoText h3 {
  color: var(--jvm-color-text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.25px;
  margin-bottom: 0;
}

.imgCardText .infoText p {
  color: var(--jvm-color-text-primary);
  font-weight: 600;
  margin-bottom: 0;
}

.experiencias_pro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 620px);
  margin: 2.5rem auto 0;
}

.experiencias_pro .circle {
  width: 133px;
  height: 133px;
  background-color: rgb(246, 247, 252);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.experiencias_pro .circle .ico {
  width: 63.692px;
}

.experiencias_pro .circle p {
  text-align: center;
  line-height: normal;
  margin-bottom: 0;
}

.experiencias_pro .circle p:nth-child(2) {
  width: min(100%, 50%);
}

.textLink:hover {
  text-decoration: underline;
}

/* Logo absoluto en Banner */
.absolutLogo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 160px;
}

.absolutLogo.hide {
  display: none;
}

/* Fin Logo absoluto en Banner */

.dirigidoA .imageInformations img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .visibleMobile {
    display: block;
  }

  .visibleDesktop {
    display: none;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  .twoColumn {
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    gap: 40px;
  }

  .twoColumnTwo {
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    gap: 40px;
  }

  .twoColumnThree,
  .twoColumnFour {
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    row-gap: 20px;
  }

  .threeColumn,
  .fourColumn {
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    gap: 40px;
  }

  .threeColumn.noGapMobile {
    gap: 0 !important;
  }

  .orderMobile1 {
    order: 2;
  }

  .orderMobile2 {
    order: 1;
  }

  .btnClubes .cta {
    max-width: 100%;
  }

  .titulo_contador {
    font-size: 15px;
  }

  .contador_content {
    gap: 0.8rem;
  }

  .banner.noImage h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    color: rgb(51, 51, 51);
  }

  .banner.noImage p {
    font-size: 1rem;
  }

  .bannerClubes .carousel-control-next-icon,
  .bannerClubes .carousel-control-prev-icon,
  .bannerColsubsidio .carousel-control-next-icon,
  .bannerColsubsidio .carousel-control-prev-icon {
    display: none;
  }

  .bannerClubes .carousel-indicators,
  .bannerColsubsidio .carousel-indicators {
    bottom: -2rem;
  }

  .bannerClubes .bannerDesktop,
  .bannerColsubsidio .bannerDesktop {
    object-fit: cover;
    object-position: right;
    width: 100%;
    background-position: 100% 1% !important;
  }

  .bannerSecondaryCET {
    background-image: url(https://image.info.colsubsidio.com/lib/fe2711737164047a7d1178/m/1/dbb8908d-f13e-4ebb-b6f6-06fb8a54ff86.png);
    grid-template-columns: 1fr;
    min-height: 570px;
    background-position: bottom !important;
  }

  .bannerSecondaryCET .textInfo {
    padding: 36px 18px;
    justify-content: flex-start;
  }

  .bannerSecondaryCET .image {
    right: 0;
  }

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

  .contenido_artistas_cards {
    width: 100%;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 32px;
    color: rgb(51, 51, 51);
    font-weight: 400;
  }

  .contentSticky {
    margin-top: 1rem;
    padding: 1rem;
    display: none;
  }

  .contentSearch {
    flex-direction: row;
    gap: 0.5rem;
  }

  .form-check form-check-inline {
    margin-top: 1rem;
  }

  .contenido_informacion_content {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .contenido_informacion {
    width: 100%;
    padding: 1rem;
  }

  .contenido_informacion_img {
    width: 100%;
    padding: 1rem;
  }

  .contenido_artistas_invitados {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bannerClubes .captionContent,
  .bannerColsubsidio .captionContent {
    background-color: var(--jvm-background-white);
    /*box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);*/
    position: relative;
    top: 0;
    left: 0%;
    width: 95%;
    -ms-transform: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    margin: -2rem auto 0;
    padding: 1.5rem 2rem 1.2rem;
  }

  .btnBanner .cta:not(.btnBannerSecondary),
  .btnBannerBlue .cta {
    max-width: 100%;
    background-color: var(--jvm-background-secondary);
    color: var(--jvm-color-text-white);
  }

  .btnBanner .btnBannerSecondary {
    max-width: 100%;
  }

  .bannerClubes .captionContent::before,
  .bannerColsubsidio .captionContent::before {
    content: "";
    width: 100%;
    height: 6px;
    background-color: var(--jvm-background-yellow);
    position: absolute;
    top: 0;
    left: 0;
  }

  .contentSearch a {
    font-size: 0.75rem;
  }

  .bannerClubes .captionContent h1,
  .bannerColsubsidio .captionContent h1 {
    font-weight: 600;
  }

  .bannerClubes .captionContent h1,
  .bannerClubes .captionContent p,
  .bannerColsubsidio .captionContent h1,
  .bannerColsubsidio .captionContent p {
    color: var(--jvm-color-text-primary) !important;
  }

  .bannerClubes h1,
  .bannerColsubsidio h1 {
    font-size: 1.625rem;
    line-height: 32px;
  }

  .container-forms {
    width: 90%;
  }

  .container-forms input[type="text"],
  .container-forms input[type="date"],
  .container-forms input[type="email"],
  .container-forms select {
    margin-bottom: 1.5rem;
  }

  .btn_btn_form .cta {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .btn_btn_form2 .cta {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .btnBlue .cta {
    max-width: none;
  }

  .contador_numeros {
    padding-right: 1rem;
  }

  .experiencias_pro {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }

  #response_whatsapp {
    text-align: center;
  }

  .aviso_final {
    align-items: flex-start;
    padding: 21px;
  }

  /* Logo absoluto en Banner Mobile */
  .absolutLogo {
    top: 5px;
    right: 5px;
    width: 130px;
  }

  /* Fin Logo absoluto en Banner */

  /* Card dirigido a única versión */
  .adjustCardMobile {
    height: 360px;
    object-fit: cover;
  }

  .sliderThreeItems {
    max-width: 345px;
  }

  .slick-slide img {
    width: 100%;
  }

  .tabs .tabsCambio .nav-link {
    width: 100%;
  }

  .tabs .tabsCambio .nav-item {
    width: 50% !important;
  }

  .tabs .tabsCambio .tab-pane .row {
    gap: 24px;
  }

  .thank-you-page .containerThankYou {
    padding-top: 20px;
  }

  .thank-you-page .containerThankYou .tkH1 {
    font-size: 32px;
  }

  .thank-you-page .containerThankYou p {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 46px;
  }
}

/* --------------- TABS --------------- */

.tabs .tabContent {
  border: 1px solid rgba(226, 232, 238, 1);
  min-height: 528px;
}

.tabs .nav {
  justify-content: space-between;
  position: relative;
}

.tabs .nav::before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: #e2e8ee;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.tabs .nav-link {
  width: min(100%, 100%);
  height: 100%;
  appearance: none;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  color: rgba(0, 103, 177);
  border-bottom: 6px solid transparent;
  padding: inherit;
}

.tabs .nav-link.active {
  border-bottom: 6px solid rgba(0, 103, 177, 1);
}

.tabs .nav-item {
  width: min(100%, 16%);
  height: 71px;
  z-index: 1;
}

.tabs .tab-pane {
  padding: 90px 100px 60px;
}

.tabs .threeItems {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tabs .threeItems .item {
  min-width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs .threeItems .item svg {
  height: 50px;
  margin-bottom: 12px;
}

.tabs .threeItems .item p {
  text-align: center;
  line-height: 26px;
  font-size: 20px;
  margin-bottom: 6px;
}

.tabs .threeItems .item span {
  text-align: center;
  line-height: 25px;
  font-size: 16px;
}

.tabs .bordered {
  border: 1px solid #e2e8ee;
}

.tabs .tabsCambio .tab-pane {
  padding: 60px 30px;
}

.tabs .tabsCambio .nav-link {
  padding-inline: 30px;
}

.tabs .tabsCambio .nav-item {
  width: fit-content;
}

.tabs .tabsCambio .nav {
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .tabs .nav-link {
    width: 110px;
  }

  .tabs .tab-pane {
    padding: 60px 40px;
  }

  .tabs .threeItems {
    row-gap: 40px;
  }

  .tabs .threeItems .item {
    min-width: 100%;
  }

  .tabs .threeItems {
    margin-bottom: 60px;
  }
}

/* --------------- FIN TABS --------------- */

.logo-supersalud {
  float: right;
}

.logo-supersalud img {
  height: 21px;
  margin-top: -8px;
  width: 156px !important;
}

.logo-supersubsidio {
  float: right;
}

.logo-supersubsidio img {
  height: 21px;
  width: 156px !important;
}

.follow {
  border-bottom: 0px solid #000000;
  box-sizing: border-box;
  display: block;
  padding: 30px 20px;
  position: relative;
  width: 100%;
}

.follow .up {
  cursor: pointer;
  display: table;
  position: absolute;
  right: 10%;
  top: -27px;
}

.follow .up img {
  background: #c10230;
  border-radius: 50%;
  padding: 18px;
  width: 54px;
}

.follow .up:hover {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.follow h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.follow .items a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-right: 15px;
  text-decoration: none;
}

.follow .items a img {
  margin-right: 5px;
  width: 18px;
}

.follow .items a img,
.follow .items a span {
  vertical-align: middle;
}

.follow .items a span:hover {
  text-decoration: underline;
}

@media (max-width: 769px) {
  .content .items {
    display: flex;
    flex-flow: column nowrap;
  }

  .follow .up {
    right: 16px;
  }

  .logo-supersalud,
  .logo-supersubsidio {
    margin-top: 20px;
  }

  .logo-supersalud {
    margin-left: -22px;
  }
}
/* xxxxxxxxxxxxxxxxxxxxxxx about */
.about {
  padding: 20px 20px 40px;
  background-color: #19222a !important;
  box-sizing: border-box;
}

.about,
.about .content {
  display: block;
  width: 100%;
}

.about .content {
  max-width: 1024px;
  margin: 0 auto;
}

.about h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}
.base-btn.primary,
.base-btn.secondary:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}
.base-btn.primary,
.base-btn.secondary:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}
.base-btn {
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 54px;
  justify-content: center;
  padding: 0 30px;
  position: relative;
  text-decoration: none !important;
  transition: all 0.1s ease;
  width: fit-content;
}

.about .nav_about a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-right: 15px;
  margin-bottom: 1rem;
}

.about .nav_about a:hover {
  text-decoration: underline;
}

@media (max-width: 769px) {
  .nav_about {
    display: flex;
    flex-flow: column nowrap;
  }
}

.footer_link .content .left a {
  text-decoration: none;
  margin-right: 5px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 400;
}

.footer_link .content .right {
  float: right;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 400;
}
header .headerColsubsidio img {
  width: 255px !important;
}
button#confirm_dialog {
  background-color: var(--jvm-background-dark-red);
  color: white;
  border-radius: 50px;
}
button.cta {
  background-color: var(--jvm-background-dark-red);
  color: white;
}

main .content-dialog button:is(:hover, :active, :focus) {
  background-color: #fff !important;
  color: #c10230 !important;
  border: 1px solid #c10230;
  --bs-btn-focus-box-shadow: 0 0 0 0rgba (var(--bs-btn-focus-shadow-rgb), 0);
  text-decoration: none;
}
