@charset "UTF-8";
/*general*/
/*estilos generales*/
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-family: "CoreSansRegular";
  padding: 0px;
  overflow: hidden;
}

@font-face {
  font-family: "CoreSansRegular";
  src: url("../fonts/typography/CoreSansA45Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CoreSansLigth";
  src: url("../fonts/typography/CoreSansA35Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "CoreSansBold";
  src: url("../fonts/typography/CoreSansA65Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "CoreSansThin";
  src: url("../fonts/typography/CoreSansA15Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

:root {
  --color-text: #5b4a78;
  --color-button: #89bc24;
}
h1 {
  font-size: 18px;
  width: 100%;
  margin: 10px auto;
}

h3 {
  color: black;
  font-size: 12px;
}

.text-decoration-none {
  text-decoration: none;
}
.color-first {
  color: var(--color-text);
}
.color-second {
  color: var(--color-button);
}
.color-hover:hover {
  color: var(--color-button);
}
.font-weight-bold {
  font-weight: bold;
}
.text-justify {
  text-align: justify;
}
.cursor-pointer {
  cursor: pointer;
}
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.w83 {
  width: 83%;
}

.w90 {
  width: 90%;
}

.w83_tab {
  width: 100%;
}

.w50 {
  width: 50%;
}

.w33 {
  width: 33%;
}

.h-auto {
  height: auto;
}

.h100 {
  height: 100%;
}

.padding-0 {
  padding: 0 0 0 0;
}

.padding-5 {
  padding: 5px;
}

.padding-10 {
  padding: 10px;
}

.padding-15 {
  padding: 15px;
}

.padding-20 {
  padding: 20px;
}

.padding-t-0 {
  padding-top: 0 0 0 0;
}

.padding-t-3 {
  padding: 3px;
}

.padding-t-5 {
  padding: 5px;
}

.padding-t-10 {
  padding-top: 10px;
}

.padding-t-15 {
  padding-top: 15px;
}

.padding-t-20 {
  padding-top: 20px;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-b-0 {
  padding-bottom: 0 0 0 0;
}

.padding-b-5 {
  padding-bottom: 5px;
}

.padding-b-10 {
  padding-bottom: 10px;
}

.padding-b-15 {
  padding-bottom: 15px;
}

.padding-b-20 {
  padding-bottom: 20px;
}

.padding-b-30 {
  padding-bottom: 30px;
}

.paddings_global {
  padding: 0 0 0 0;
}

.text-center {
  text-align: center;
}

.margin_auto {
  margin: 0 auto;
}

.position-right {
  margin: 0 0 0 auto;
}

.margin-t-10 {
  margin-top: 10px;
}

.margin-t-15 {
  margin-top: 15px;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-t-30 {
  margin-top: 30px;
}

.margin-t-40 {
  margin-top: 40px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-b-0 {
  margin-bottom: 0px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

.margin-b-15 {
  margin-top: 15px;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.margin-b-30 {
  margin-bottom: 30px;
}

.margin-b-40 {
  margin-bottom: 40px;
}

.margin-b-50 {
  margin-bottom: 50px;
}

.bg-content-gray {
  background: #f2f2f2;
}

.centered-object {
  display: flex;
  align-items: center;
}

.centered-object_res {
  display: flex;
  align-items: center;
  flex-wrap: initial;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-initial {
  display: initial;
}

.d-block {
  display: block;
}

.scroll-auto {
  overflow: auto;
}

.justify-content-center {
  justify-content: center;
}

.text-right {
  text-align: right;
}

.bg-gray-component {
  background-color: #f2f2f2;
}
.bg-gray-component .bg-img-component {
  background-image: url(../img/bg-img.png);
  padding: 80px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.bg-gray-component .bg-img-component .bg-content-form {
  background-color: white;
  padding: 70px;
}

.h-titles {
  font-size: 1.5rem !important;
  font-family: "CoreSansBold";
}

/**/
/*scroll-bar*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: gainsboro;
  border-radius: 11px !important;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-text);
  border: 2px solid gainsboro;
  border-radius: 11px;
}

::-webkit-scrollbar-button {
  background-color: #ebebeb;
  height: 0px;
  width: 0px;
  border-radius: 11px !important;
}

::-webkit-scrollbar-corner {
  background-color: var(--color-text);
}

/*mozilla*/
::-moz-scrollbar {
  width: 8px;
  height: 8px;
  -moz-appearance: none !important;
}

::-moz-scrollbar-track {
  -moz-appearance: none !important;
  background-color: gainsboro;
  border-radius: 11px !important;
}

::-moz-scrollbar-thumb {
  -moz-appearance: none !important;
  background-color: #666767 !important;
  border: 1px solid gainsboro !important;
  border-radius: 11px !important;
}

::-moz-scrollbar-button {
  -moz-appearance: none !important;
  background-color: #ebebeb;
  height: 0px;
  width: 0px;
}

::-moz-scrollbar-corner {
  -moz-appearance: none !important;
  background-color: black;
}

header {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0px 2px 6px -3px #888888;
  z-index: 1;
  position: relative;
}
header a img {
  width: 200px;
  padding-block: 20px;
}

.img-form_bp {
  flex-direction: column;
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

.form-component_bp {
  height: 100%;
}
.form-component_bp .dis-form {
  width: 100%;
}
.form-component_bp .dis-form .form-content_bp {
  width: 100%;
  position: relative;
  padding: 0px 50px 50px 50px;
}
.form-component_bp .dis-form .form-content_bp .form-group {
  position: relative;
}
.form-component_bp .dis-form .form-content_bp .form-group .form-label {
  position: absolute;
  left: 10px;
  top: 8px;
  color: #999;
  background-color: #fff;
  z-index: 2;
  -webkit-transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out,
    -webkit-transform 150ms ease-out;
  font-size: 12px;
  /* z-index: -2; */
}
.form-component_bp .dis-form .form-content_bp .form-group .form-label.error {
  color: #e70000;
  -webkit-transform: translateY(-153%);
  transform: translateY(-153%);
  font-size: 10px;
  padding: 0px 5px;
  font-size: 10px;
  z-index: 2;
}
.form-component_bp .dis-form .form-content_bp .form-group .form-input {
  padding: 6px;
  border: 1px solid #bbbdc0;
  color: #bbbdc0;
  margin-bottom: 14px;
  display: block;
  width: 100%;
  border-radius: 6px;
  font-size: 13px;
  background: white;
}
.form-component_bp .dis-form .form-content_bp .form-group .form-input:focus {
  border: 1px solid var(--color-text);
  outline: 0;
}
.form-component_bp .dis-form .form-content_bp .form-group .form-input.filled {
  border: 1px solid var(--color-text);
}
.form-component_bp
  .dis-form
  .form-content_bp
  .form-group
  .form-input.filled
  ~ .form-label {
  color: var(--color-text);
}
.form-component_bp .dis-form .form-content_bp .form-group .form-input.error {
  border: 1px solid #cf0000 !important;
}
.form-component_bp .dis-form .form-content_bp .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-component_bp .dis-form .form-content_bp .form-group .error-text_bp {
  width: 100%;
  margin-top: -24px;
  font-size: 10px;
  color: #e70000;
  position: absolute;
  display: none;
}
.form-component_bp .dis-form .form-content_bp .focused .form-label {
  -webkit-transform: translateY(-153%);
  transform: translateY(-153%);
  font-size: 10px;
  padding: 0px 5px;
  font-size: 10px;
  z-index: 2;
  color: var(--color-text);
}
.form-component_bp .dis-form .form-content_bp .caja::after {
  content: "▾";
  display: block;
  text-align: right;
  pointer-events: none;
  font-size: 16px;
  color: var(--color-text);
  top: 20%;
  margin-right: 20px;
  width: 100%;
  padding-right: 9px;
  position: absolute;
}
.form-component_bp .dis-form .form-content_bp .col-form_bp {
  padding-left: 5px;
  padding-right: 5px;
}
.form-component_bp .dis-form .form-content_bp .text-question-process2_bp {
  font-size: 12px;
  margin: 0;
  margin-bottom: 20px;
}
.form-component_bp .dis-form .msg-required-fields_bp {
  padding: 20px 40px 0px 40px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.form-component_bp .dis-form .msg-required-fields_bp img {
  width: 20px;
}
.form-component_bp .dis-form .msg-required-fields_bp p {
  color: #7b7b7b;
  font-size: 12px;
  margin: 0;
  margin-left: 5px;
}
.form-component_bp .dis-form .recaptcha_fp {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 16px;
}
.form-component_bp .dis-form .recaptcha_fp img {
  max-width: 304px;
  width: 250px;
  height: 50px;
}
.form-component_bp .dis-form .title-form {
  color: var(--color-text);
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.form-group + .form-group {
  margin-top: 30px;
}

.terms_fp {
  position: relative;
  display: flex;
  width: max-content;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto 16px;
}
.terms_fp .check_fp {
  height: 19px;
}
.terms_fp .check_fp label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  height: 19px;
  left: 0;
  position: relative;
  top: 0;
  width: 19px;
  margin: 0;
  display: block;
}
.terms_fp .check_fp label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 5px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  width: 10px;
}
.terms_fp .check_fp input[type="checkbox"] {
  visibility: hidden;
  width: 26px;
  position: absolute;
}
.terms_fp .check_fp input[type="checkbox"]:checked + label {
  background-color: var(--color-button);
  border-color: var(--color-button);
}
.terms_fp .check_fp input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.terms_fp span {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 19px;
  color: #7b7b7b;
  height: 100%;
  padding-left: 9px;
}
.terms_fp span a {
  color: #ffa025;
  text-decoration: none;
  cursor: pointer;
}

/*btns*/
.btn-component_bp {
  text-align: center;
}
.btn-component_bp .btn-form {
  background: var(--color-button);
  color: white;
  border-radius: 3px;
  padding: 14px;
  font-size: 12px;
  width: auto;
  min-width: 146px;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0;
  border: none;
}
.btn-component_bp .btn-form.active {
  background: #11b719;
}

/*línea de tiempo*/
.line-progress_bp {
  width: 200px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.line-progress_bp .line_bp {
  background: #e9e9e9;
  height: 5px;
  position: absolute;
  width: 200px;
}
.line-progress_bp .number-state1_bp {
  width: 30px;
  height: 30px;
  background: #11b719;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
}
.line-progress_bp .number-state1_bp span {
  background: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11b719;
  font-size: 13px;
}
.line-progress_bp .number-state2_bp {
  width: 30px;
  height: 30px;
  background: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  margin: 0 0 0 auto;
  z-index: 1;
}
.line-progress_bp .number-state2_bp span {
  background: #c4c4c4;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
}
.line-progress_bp.active .line_bp .line-state_fp {
  background: #11b719;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 600ms ease-out;
  transition: 600ms ease-out;
  widows: 100%;
  height: 100%;
}
.line-progress_bp.active .number-state2_bp {
  background: #11b719;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 600ms ease-out;
  transition: 600ms ease-out;
}
.line-progress_bp.active .number-state2_bp span {
  background: white;
  color: #11b719;
}

/**/
select::-ms-expand {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  z-index: 2;
  overflow: hidden;
}
.modal.is-modal-active {
  display: block;
}
.modal .modal__dialog {
  position: relative;
  z-index: 22;
  max-width: 600px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 50px 15px;
  background-color: #fff;
  /* border-radius: 10px; */
  height: 600px;
  max-height: 100%;
  border-radius: 16px;
}
.modal .modal__dialog .modal__close {
  position: absolute;
  top: -7px;
  right: -32px;
  border: none;
  outline: none;
  background: none;
  font-size: 24px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal__dialog:focus {
  outline: 0;
}
.modal .modal__dialog .modal-content {
  overflow: auto;
  height: 100%;
  padding: 0px 20px;
}
.modal .modal__dialog .modal-content h2 {
  text-align: center;
  color: var(--color-text);
  font-family: "CoreSansBold";
}
.modal .modal__dialog .modal-content p {
  margin-bottom: 0;
  font-size: 15px;
  color: #666767;
}
.modal .modal__dialog .modal-content a {
  color: #009a48;
  text-decoration: none;
}
.modal .modal__dialog .modal-content ul {
  padding-left: 22px;
}
.modal .modal__dialog .modal-content ul li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #7b7b7b;
}
.modal .modal__dialog .modal-content ol {
  padding-left: 22px;
}
.modal .modal__dialog .modal-content ol li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #7b7b7b;
}
.modal .modal__confirmation,
.modal .modal__error {
  height: auto;
  max-height: auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.modal .modal__confirmation picture,
.modal .modal__error picture {
  display: block;
  text-align: center;
}
.modal .modal__confirmation picture img,
.modal .modal__error picture img {
  width: 100px;
}
.modal .modal__confirmation .modal-content,
.modal .modal__error .modal-content {
  height: auto;
}
.modal .modal__confirmation .modal-content h2,
.modal .modal__error .modal-content h2 {
  margin-top: 0;
  font-size: 2.4rem;
  color: var(--color-text);
}
.modal .modal__confirmation .modal-content p,
.modal .modal__error .modal-content p {
  text-align: center;
  font-size: 1.5rem;
}
.modal .modal__error picture img {
  width: 150px;
}
.modal .modal__error .modal-content h2 {
  color: #666767;
}
.tyc-forms {
  color: #7b7b7b;
  font-size: 10px;
  margin-bottom: 24px;
}

/* Animation */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 1024px) {
  body {
    overflow: auto;
  }
}
@media only screen and (max-width: 768px) {
  .bg-gray-component .bg-img-component {
    background-image: url(../img/bg-img-movil.png);
    padding: 45px 0px;
  }
  .bg-gray-component .bg-img-component .bg-content-form {
    background-color: white;
    padding: 40px;
  }

  .modal .modal__dialog {
    padding: 33px 15px;
    height: 90%;
  }
  .modal .modal__dialog .modal__close {
    top: -29px;
    right: -5px;
  }
  .modal .modal__dialog .modal-content h2 {
    margin-top: 0;
  }
  .modal .modal__confirmation {
    height: auto;
  }

  .btn-component_bp {
    text-align: center;
  }

  .justify-terms-center {
    justify-content: center;
  }
  .img-form_bp {
    object-fit: contain;
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  .modal .modal__dialog {
    padding: 20px 2px;
  }
}

/*# sourceMappingURL=styles.css.map */
