:root {
  --primary-color: #ffffff;
  --secondary-color: #f28b00;
  --accent-color: #ff8f19ad;

  --ff-primary: Myriad Pro, Semibold, Arial, sans-serif;
  --h1: normal 28px/40px var(--ff-primary);
  --h2: normal 25px/34px var(--ff-primary);
  --h3: normal 20px/28px var(--ff-primary);
  --h4: normal 16px/22px var(--ff-primary);
  --h5: normal 15px/18px var(--ff-primary);
  --transition: 0.3s ease-in-out;
  --bg-primary-color: #1b1c1e;
  --bg-secondary-color: #4e4e4e;

  --info-card-bg: #efefef 0% 0% no-repeat padding-box;
  --info-card-border-color: #969696;
  --info-card-selected-border-color: #ff8c00;
  --info-card-overlay: rgba(0,0,0,0.1);
}
* {
  margin: 0;
}
a{
  text-decoration: none !important;
}
.title {
  font: var(--title);
  color: var(--primary-color);
}

h1 {
  font: var(--h1);
  margin-top: 8px;
  color: var(--primary-color);
}

h2 {
  font: var(--h2);
  margin-top: 8px;
  color: var(--primary-color);
}

h2.regular {
  font: var(--h2-regular);
  margin-top: 8px;
  color: var(--primary-color);
}

h3 {
  font: var(--h3);
  margin-top: 8px;
  color: var(--primary-color);
}

h4 {
  font: var(--h4);
  margin-top: 8px;
}

h5 {
  font: var(--h5);
  margin-top: 8px;
}

p {
  font: var(--p);
  color: var(--primary-color);
}
input[type="checkbox"] {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 20px;
  margin-right: 6px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: white;
  border: 1.5px solid #f28b00;
  color: white;
  border-radius: 3px;
  vertical-align: bottom;
}
input[type="checkbox"]:checked {
  background: #f28b00;
  color: white;
}
input[type="checkbox"]:checked:after {
  display: block;
}
input[type="checkbox"]:after {
  content: ' ';
  position: relative;
  left: 28%;
  top: 5%;
  width: 30%;
  height: 55%;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(40deg);
  display: none;
}
.checkedBox{
  border: 1.5px solid #b67433;
  background: #362e29;
}
.text-accent {
  color: var(--secondary-color);
  font: var(--h3);
}

.link {
  color: var(--secondary-color);
  font: var(--links);
}

.super-title {
  font: var(--super-title);
  color: var(--primary-color);
  letter-spacing: 2.1px;
}

body {
  padding: 0px;
  font: var(--h5);
}

.content {
  width: 100%;
  padding: 10px 0;
}
#contrato .content,#cierre .content{
  padding: 0 !important;
}

.subtitle-card {
  /*font: var(--title);*/
  font-size: 20px;
  margin-top: 4px;
  color: var(--primary-color);
}

.links {
  font: var(--links);
  margin-top: 0px;
}

.subtext {
  font: var(--subtext);
  margin-top: -8px;
}
body{
  margin: 0;
  margin-bottom: 35px;
  padding: 0;
  font-family: var(--ff-primary);
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  /*min-height: 100vh;*/
}
.bg1{
  background: linear-gradient(to bottom,#616161,#252525);
}
.bg2{
  background: linear-gradient(to bottom,#4e4e4e,#1b1c1e);
  min-height: 100vh;
  /*margin-bottom: 50px;*/
}
.bg3{
  background: linear-gradient(to bottom, var(--bg-secondary-color), #1a1a1d);
  min-height: 100vh;
}
header {
  width: 100%;
  padding: 20px;
  background-color: #1b1c1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding-top: 30px;
}
header img {
  height: 40px;
}
header .actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .actions button {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}
.orng-shadow{
  filter: drop-shadow(1rem 1rem 1rem rgba(255, 140, 0, 0.2));
}
.main-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.intro-section {
  width: 80vw;
  margin-top: 15px;
  padding: 20px;
  margin-bottom: 30px;
  margin-left: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.intro-section .text {
  text-align: center;
  width: 40vw;
}
.intro-section h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #ffffff;
}
.intro-section .text-two-lines-primary {
  font-size: 30px;
}
.intro-section p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}
.btn_thin{
  padding: 11px 100px !important
}
.intro-section .btn-primary{
  background-color: #ff8c00;
  color: white;
  padding: 14px 75px;
  font-size: 17px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}
.intro-section .circle {
  width: 40%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(230,168,75,0.747), rgba(117,91,47,0) 70%);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-section .circle img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.cta-intro-section {
  text-align: center;
}
.cta-intro-section .btn-primary {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}
.graytxt{
  color: #C9C9C9 !important;
}
.benefits-section {
  padding: 0 20px;
  margin: 30px auto;
  margin-bottom: 120px;
}
.benefits-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 1000;
}
.benefits-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.benefit-card {
  flex: 0 0 calc(23% - 20px);
  scroll-snap-align: start;
  background-color: #4e4e4e;
  padding: 20px;
  border-radius: 10px;
  color: #ffffff;
  border: 1px solid #656565;
  aspect-ratio: 1 / 1;
}
.benefits-grid::-webkit-scrollbar {
  display: none;
}
.benefit-card h3 {
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #f6f3ef;
}
.benefit-card p {
  font-size: 20px;
  color: #ccc;
}
.benefit-card img {
  height: 30px;
}
b {
  font-size: var(--p);
}
.rates-section {
  background-color: #525151;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.rates-text {
  max-width: 100%;
  margin: 40px 0;
}
.rates-text h2 {
  font-weight: bolder;
  font-size: 35px;
  margin-bottom: 20px;
  color: #ffffff;
}
.btn_large{
  padding: 11px 125px !important;
}
.rates-text h3 {
  font-size: 26px !important;
}
.rates-text h3 span{
  font-size: 22px;
}
.rates-text p {
  font-size: 1em;
  margin-bottom: 10px;
  color: #ffffff;
}
.camara_txt{
  font-size: 18px !important;
  line-height: 22px;
  text-align: center;
}
.rates-section img {
  max-width: 60%;
  height: auto;
}
.cta-section {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}
.cta-section h2 {
  font-size: 31px;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 150px;
  height: 100%;
  background: radial-gradient(circle at left, rgba(250,151,29,0.7), transparent);
  filter: blur(30px);
  z-index: 0;
}
.cta-section .btn-primary {
  position: relative;
  z-index: 1;
  background-color: #ff8c00;
  color: white;
  padding: 10px 50px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
}
.text-centered {
  text-align: start;
  margin-top: 0;
}
.text-two-lines-primary {
  text-align: start;
  width: 100%;
  word-wrap: break-word;
}
.text-two-lines {
  text-align: start;
  max-width: 310px;
  word-wrap: break-word;
  line-height: 30px;
}
.owl-carousel .owl-item img {
  display: block;
  width: 20%;
}
.item {
  display: block;
  width: auto;
  background-color: #4e4e4e;
  height: 12rem;
  border-radius: 32px;
  color: #ffffff;
  border: 1px solid #656565;
  margin: 10px;
  padding: 20px;
  margin-left: 0;
}
.owl-theme .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  margin: 5px;
}
.owl-theme .owl-dots .owl-dot span {
  background: #484849;
  border: 1px solid #595a5d;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #484849;
  border: 1px solid #595a5d;
  margin: 0%;
}
.header {
  width: 100%;
  padding: 20px;
  background-color: var(--bg-primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.header img {
  height: 40px;
}
.header button {
  background-color: #333;
  color: white;
  border: none;
  padding: 8px 35px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Stepper */
.steps-container {
  display: flex;
  justify-content: center;
  margin: 20px;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.step {
  text-align: center;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 14px;
}
.step.active {
  color: var(--primary-color);
}
.step .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /*display: flex;*/
  display: inline-block;
  vertical-align: middle;
  line-height: 34px !important;
  align-items: center;
  justify-content: center;
  font: var(--h5);
  color: var(--secondary-color);
  font: var(--h5);
  margin-right: 10px;
  border: 2px solid var(--secondary-color);
  opacity: 0.5;
  font: var(--h5);
}
.step.active .circle {
  background-color: var(--secondary-color);
  color: white;
  opacity: 1;
}
.line {
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  /*background-color: #666;*/
  margin: 0 10px;
  flex: 1;
  opacity: 0.5;
}
.line.second {
  background: linear-gradient(to right, var(--secondary-color) 50%, transparent 50%);
}
/* Líneas pintadas */
.step.active+.line {
  background-color: var(--secondary-color);
  opacity: 1;
}
.container {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: center;
}
.container h1 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 20px;
}
.icon-container {
  background-color: #4c4c4e;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 30px;
  display: inline-block;
  max-width: 300px;
  width: 100%;
  border: 1px solid #6d6e71;
}
.icon-container img {
  width: 100px;
  height: auto;
}
.icon-container p {
  margin-top: 20px;
  font-size: 20px;
}
.btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: auto;
}
.btn:hover {
  background-color: #ff7a00;
}
.line.no-active {
  background-color: rgb(192,187,187);
  opacity: 0.5;
}
.line-extra {
  width: 100%;
  height: 2px;
  background-color: rgb(192,187,187);
  flex: 1;
  opacity: 0.5;
  display: none;
}

.content-container, .content-container-sub {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
}
.content-container{
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 25px auto;
}
.content-container-sub{
  flex-direction: row;
  align-items: start;
  text-align: start;
}
.text-container {
  max-width: 600px;
}
.text-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.text-container p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.instructions {
  list-style: none;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 0;
  text-align: left;
}
.instructions li {
  margin-bottom: 0px;
}
.instructions li:before {
  content: "\2022";
  color: #ff8c00;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  -webkit-text-stroke: 2.5px #ff8c00;
}
.image-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.image-container img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}
.buttons-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 800px;
  gap: 20px;
  margin-top: 20px;
}
.btn-regresar {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  margin-right: auto;
  float: left;
}
.btn-regresar:hover {
  background-color: var(--secondary-color);
  color: white;
}
.highlighted-text {
  color: #ff7a00;
  text-decoration: underline;
}
.line.no-active, .step.no-active {
  opacity: 0.2;
}
.btn.btn-regresar i.fas {
  margin-right: 10px;
}
.btn.btn-right i.fas {
  margin-left: 10px;
}
.btn-right {
  float: right;
}
.section {
  display: flex;
  margin: 80px auto 0px auto;
  width: 50vw;
}
/*.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
  max-width: 800px;
  margin-top: 20px;
  margin: 25px;
}*/
.text-left-container {
  text-align: left;
  width: 100%;
  max-width: 800px;
}
.card-container {
  border-radius: 10px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  overflow: hidden;
  position: relative;
}
.card-container img {
  width: 100%;
  max-width: 575px;
  border-radius: 10px;
  margin-left: 80px;
}
.radio-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90%;
}
.radio-option {
  background-color: #444;
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid #8f8f8f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 575px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
}
.radio-option input[type="radio"] {
  appearance: none;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #737373;
  margin-right: 10px;
  position: relative;
  margin-left: auto;
  margin-bottom: 0;
  padding: 0;
}
.radio-option input[type="radio"]:checked {
  background-color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  box-shadow: 0 0 10px var(--secondary-color) !important;
}
.radio-option input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}
.radio-option input[type="radio"]:checked~.radio-option {
  opacity: 2;
  background-color: var(--secondary-color);
}
.radio-option input[type="radio"]:checked+label {
  background-color: var(--secondary-color);
  color: white;
  opacity: 1;
}
.radio-option:hover {
  opacity: 1;
}
.radio-option input[type="radio"]:checked:hover {
  background-color: #ff7a00;
  box-shadow: 0 0 10px var(--secondary-color);
}
.nota_mini{
  margin: 20px auto;
  padding: 20px 45px;
  text-align: left;
}
.card_section{
  margin-top: 40px;
}
.card-container .name-overlay {
  position: absolute;
  color: #2c2c2e;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  text-align: start;
  top: 195px;
  left: 135px;
}
.holder-name-section,.card-container .name-overlay{
  text-transform: uppercase;
  -webkit-text-stroke: .1px #000;
}
.front-card-anim {
  z-index: 1;
  left: 350px;
  animation: slide-in 1.3s linear forwards;
  animation-delay: 2.5s;
}
.name-anim {
  opacity: 0;
  animation: fade-in .7s ease-in forwards;
  animation-delay: 3.7s;
}
.benefits-section .item h3{
  font-size: 22px;
}


/*MEDIA QUERIES*/
@media (max-width: 830px) {
  .line {
    /*display: none;*/
  }
}
@media (max-width: 700px) {
  .step div:nth-child(2) {
    display: none;
  }
  .step .circle {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .header img {
    height: 50px;
    height: 40px;
  }
  .content-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .text-container {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .buttons-container {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
  }
  .content-container-sub {
    flex-direction: column;
    align-items: center;
  }
  .image-container img {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .header img {
    height: 40px;
  }
  .header button {
    padding: 8px 20px;
    font-size: 14px;
  }
  .text-container h1 {
    font-size: 24px;
  }
  .text-container p, .instructions {
    font-size: 14px;
  }
  .image-container img {
    width: 150px;
  }
  .header .actions button span {
    visibility: hidden;
  }
  .header .actions button {
    padding: 8px;
  }
  .header .actions button i {
    margin: 0;
  }
  .intro-section {
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
  }
  .intro-section .circle {
    order: 1;
    width: 80%;
    margin-top: 20px;
  }
  .intro-section .text {
    order: 2;
    text-align: center;
    width: 100%;
  }
  .intro-section .text-two-lines-primary {
    text-align: center;
  }
  .intro-section .text .text-two-lines {
    min-width: 80vw;
    text-align: center;
  }
  .benefits-section {
    margin-left: 20px;
    padding-bottom: 100px;
  }
  .benefit-card {
    flex: 0 0 calc(100% - 40px);
  }
  .rates-section {
    flex-direction: column;
    text-align: center;
  }
  .rates-section img {
    order: -1;
    margin-top: -100px;
    margin-right: -66px;
    max-width: 80%;
  }
  header .actions button {
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    font-size: 1.1em;
    text-indent: -200%;
    white-space: nowrap;
    overflow: hidden;
  }
  .header {
    padding: 15px;
  }
  .step {
    font-size: 12px;
  }
  .step .circle {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .content-container, .content-container-sub {
    width: 90%;
  }
  .buttons-container {
    display: flex;
    justify-content: space-around;
    width: 60%;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .item {
    height: auto;
  }
  .benefits-section {
    max-width: 341px;
  }
  #card-name{
    font-size: 9px;
    top: 87px;
    left: 90px;
  }
  .header {
    padding: 15px;
  }
  .header img {
    height: 30px;
  }
  .header button {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    text-indent: -250%;
    white-space: nowrap;
  }
  .steps-container {
    padding: 10px;
  }
  .step {
    font-size: 12px;
  }
  .step .circle {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .content-container {
    width: 90%;
  }
  .text-container h1 {
    font-size: 20px;
  }
  .text-container p, .instructions {
    font-size: 12px;
  }
  .buttons-container {
    width: 100%;
  }
  .image-container img {
    width: 120px;
  }
  .icon-container {
    padding: 40px;
    width: 200px;
    height: 150px;
  }
  .icon-container img {
    width: 80px;
  }
  .icon-container p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .intro-section {
    flex-direction: row;
  }
  header img {
    height: 50px;
    margin-left: 20px;
  }
  .intro-section .text {
    text-align: left;
    max-width: 50%;
  }
  .benefits-grid {
    grid-template-columns: repeat(4,1fr);
  }
  .rates-section {
    flex-direction: row;
    text-align: left;
  }
  .rates-text {
    max-width: 60%;
  }
  .rates-section img {
    max-width: 35%;
  }
  .cta-section .btn-primary {
    padding: 15px 100px;
  }
}
@media (max-width: 680px) {
  .no-active{
    opacity: .5 !important;
  }
  .buttons-container {
    display: flex;
    width: 100%;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .ok_img {
    max-width: 50px !important;
  }
  .confetti {
    right: 30px !important;
  }
  .line {
    margin: 0;
  }
  .step .circle {
    display: none;
  }

  .line {
    height: 2px;
    background-color: var(--secondary-color);
    flex: 1;
    opacity: 1;
    margin: 0;
  }

  .steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    /* Ajuste del espacio */
  }

  .steps-container {
    padding: 0 10px;
  }

  .step div {
    display: none;
  }

  .line-extra {
    display: block;
  }

  .steps-container {
    display: flex;
    justify-content: center;
    margin: 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-primary-color);
  }

}
@media (max-width: 640px) {
  .buttons-section{
    width: 90%;
  }
  .header button {
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    text-indent: -250%;
    white-space: nowrap;
    padding: 8px 15px;
    font-size: 14px;
  }
  .buttons-container {
    justify-content: space-around;
    gap: 20px;
  }
  .btn.btn-regresar i.fas{
    margin: 0 !important;
  }
  .btn-regresar {
    padding: 10px !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
    font-size: 1.5em !important;
    font-weight: bold;
    text-indent: 240%;
    overflow: hidden;

    cursor: pointer;
    white-space: nowrap !important;
  }
  .section {
    width: 90vw;
  }
  .header {
    padding: 15px;
  }
  .header img {
    height: 40px;
  }
  .step {
    font-size: 12px;
  }
  .content-container, .content-container-sub {
    width: 90%;
  }
  .text-container h1 {
    font-size: 20px;
  }
  .text-container p, .instructions {
    font-size: 12px;
  }
  .image-container img {
    width: 135px;
  }
}
@keyframes slide-in {
  0% {
    z-index: 1;
    left: 350px;
  }
  50% {
    left: 600px;
  }
  100% {
    left: 100px;
    z-index: initial;
  }
}
@keyframes fade-in {
  0% {
    left: 250px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
.orng_highlighted_radio{
  border-color: #ff8c00;
  background-color: #ff8f1936;
  /*color: rgba(255,255,255,.7);*/
}
section{
  position: relative;
}
.confetti {
  position: absolute;
  right: 0;
  top: 0;
}
.confetti_img {
  position: absolute;
  max-width: 200px;
  mix-blend-mode: multiply;
  top: -85px;
  left: -60px;
}
.ok_img {
  max-width: 80px;
}
.banner_cierre h1{
  letter-spacing: 0px;
  font-size: 30px;
  line-height: 30px;
  font-weight: 650;
}
.banner_cierre h2{
  font-size: 21px;
}
.banner_cierre .img-center{
  width: 42%;
}
.holder-name{
  font-weight: bold !important;
  font-size: 13px !important;
}

/*REPETIMOS*/
.preloader{
  display: none;
  position: fixed;
  z-index: 99;
  background: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100vh;
  top: 0;
}
img.preload_gif {
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 25vh auto 0;
}
.preloader p {
  color: #f28b00;
  text-align: center;
  max-width: 320px;
  line-height: 19px;
  margin: 10px auto;
  font-size: 18px;
}
.btn_sv:not(.init_request_account, .init_type_account, .more_info) {
  border: solid 1px #f28b00;
}
.btn_sv{
  max-width: 320px;
  width: 75%;
  padding: 15px;
  background: #f28b00;
  color: #fff;
  border-radius: 35px;
  display: block;
  margin: 45px auto;
  text-align: center;
  cursor: pointer;
}
.btn_sv:hover {
  background: white;
  color: #f28b00;
  font-weight: bold;
  border: solid 1px #f28b00;
}
.content_modal h2{
  font-size: 1.5em;
}
.content_modal h2,.content_modal p{
  color: black !important;
  font: revert;
}
.content_modal {
  max-height: 390px;
  overflow: auto;
  margin: 30px 30px 0 30px;
  text-align: center;
  padding: 25px 35px;
}
.obc_close_popup {
  display: flow-root;
}
.content-container section{
  max-width: 800px;
}
strong{
  font-weight: bolder;
}
.clr-e{
  color: #EEEEEE !important;
  margin-top: 12px;
}
.confirm_modal .btn_sv, .confirm_modal .salir_btn {
  margin: 20px;
}
.confirm_modal a {
  display: inline-block;
  max-width: 130px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.flt-lft {
  float: left;
}
.obc_popup_white_padding {
  background: #fff;
  /* padding: 0 0 0 20px; */
}
.obc_close_popup {
  display: flow-root;
}
.content_modal {
  max-height: 390px;
  overflow: visible;
  margin: 30px 30px 0 30px;
  text-align: center;
  padding: 25px 35px;
}
.confirm_modal .content_modal {
  margin-top: 0;
  padding-top: 0;
}
#obc_popup_exit .obc_popup_white{ /*#obc_popup_errores .obc_popup_white*/
  padding: 40px 50px 15px;
}
.confirm_modal .obc_popup_white {
  width: 35% !important;
}
.confirm_modal h2, .confirm_modal p {
  text-align: center;
}
.confirm_modal h2 {
  color: #000;
  font-weight: 600;
}
.confirm_modal .btn_sv, .confirm_modal .salir_btn {
  margin: 20px;
}
.confirm_modal a {
  display: inline-block;
  max-width: 130px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.flt-rgt{
  float: right;
}
