
/*** Wizard Register ***/
.wizard-register {
  color: #5F6367;
}

.wizard-register__header {
  display: flex;
  align-items: center;
  background-color: #001B48;
  height: 60px;
}

.wizard-register__logo {
  display: block;
  /* width: 160px; */
  width: 100%;
}

.wizard-register__subheader {
  background-color: #001B48;
}

.wizard-register__box-header {
  padding-top: 35px;
  padding-bottom: 35px;
  color: #FFF;
  background-image: url('../../img/update-css/bg-header-wizard.png');
  background-size: cover;
  background-position: bottom left;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.wizard-register__header-title {
  font-size: 1.325rem;
  font-weight: 400;
  margin-bottom: 0;
}

.wizard-register__box-header,
.wizard-register__box-body {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 880px;
  margin: 0 auto;
}

.wizard-register__box-body {
  background-color: #FFF;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-top: 20px;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .wizard-register__header {
    height: 100px;
  }

  .wizard-register__box-header {
    padding-top: 55px;
    padding-bottom: 55px;
    background-position: center;
  }

/*   .wizard-register__logo {
    width: 210px;
  } */

  .wizard-register__box-header,
  .wizard-register__box-body {
    padding-left: 70px;
    padding-right: 70px;
  }

  .wizard-register__header-title {
    font-size: 1.325rem;
  }
  .wizard-register__header-title strong {
    font-size: 1.6rem;
  }
}

/*** Wizard Steps ***/
.wizard-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* overflow: hidden; */
  padding-bottom: 0;
}

.wizard-steps__item {
  position: relative;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .wizard-steps__item:last-of-type .wizard-steps__number {
    right: -1px;
  }
}

.wizard-steps__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 250px;
  height: 2px;
  background-color: #E4E9F2;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.wizard-steps__item:last-of-type::before {
  display: none;
  /* border: 1px solid red; */
  /* background-color: #fff;   */
}

.wizard-steps__number {
  position: relative;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #5F6367;
  background-color: #F7F9FC;
  border: 1px solid #E4E9F2;
  transition: background 0.35s ease;
  z-index: 2;
}

.wizard-steps__number-node {
  transition: all 0.35s ease 0.15s;
}

.wizard-steps__number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 18px;
  height: 14px;
  background-image: url('../../img/v2/icon-tick.svg');
  background-size: cover;
  opacity: 0;
  transition: all 0.35s ease;
}

.wizard-steps__title {
  position: absolute;
  top: 100%;
  left: 55%;
  text-align: center;
  font-size: 0.725rem;
  color: #5F6367;
  margin-top: 10px;
  white-space: nowrap;
  line-height: 1.1;
  transform: translateX(-50%);
  transition: all 0.35s ease;
  display: none;
}

/* Active state */
.wizard-steps__item--active .wizard-steps__number {
  background-color: #6E78DA;
  border-color: #6E78DA;
  color: #FFF;
}

/* Complete state */
.wizard-steps__item--complete {
  cursor: pointer;
}

.wizard-steps__item--complete .wizard-steps__number {
  background-color: #3ecf8e;
  border-color: #3ecf8e;
  color: #FFF;
}

/* Complete hover state */
@media screen and (min-width: 992px) {
  .wizard-steps__item--complete:hover .wizard-steps__number {
    background-color: #6E78DA;
    border-color: #6E78DA;
  }

  .wizard-steps__item--complete:hover .wizard-steps__number-node {
    opacity: 1;
    transition-delay: .3s;
  }

  .wizard-steps__item--complete:hover .wizard-steps__number::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.5);
  }

  .wizard-steps__item--complete:hover .wizard-steps__title {
    opacity: 1;
  }

  .wizard-steps__title {
    display: block;
  }

  .wizard-steps {
    padding-bottom: 35px;
    padding-left: 1px;
    padding-right: 1px;
  }

  .wizard-steps__number {
    font-size: 1.25rem;
    /* width: 48px; */
    /* height: 48px; */
    border-radius: 50px;
  }
}

.wizard-steps__item--complete .wizard-steps__number-node {
  opacity: 0;
  transition-delay: 0s;
}

.wizard-steps__item--complete::before {
  background-color: #6E78DA;
}

.wizard-steps__item--complete-line::before {
  background-color: #0560C7;
}

.wizard-steps__item--complete .wizard-steps__title {
  opacity: .4;
}

.wizard-steps__item--complete .wizard-steps__number::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.15s;
}

/*** Tab radio switcher ***/
.tab-radio-switcher {
  display: inline-flex;
  /* background-color: #F7F9FC; */
  color: #5F6367;
  border-radius: 8px;
}

.tab-radio-switcher__item {
  position: relative;
  margin-right: 0.5rem;
}

.tab-radio-switcher__label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 37px;
  border-radius: 8px;
  cursor: pointer;
  padding: 0 15px;
  background-color: #F7F9FC;
  border-radius: 8px;
  transition: all 0.35s ease;
  font-size: 0.875rem;
  /* font-family: 'Roboto Condensed', sans-serif; */
}

.tab-radio-switcher__input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

.tab-radio-switcher__input:checked + .tab-radio-switcher__label {
  color: #FFF;
  background-color: #0560C7;
}

/*** Inputs ***/
.form-control.input {
  /* font-family: 'Roboto Condensed', sans-serif; */
  background-color: #F7F9FC;
  height: 40px;
  border: 1px solid #E4E9F2;
  border-radius: 4px;
  transition: all 0.35s ease;
}

.form-control.input:focus {
  background-color: #FFF!important;
  border-color: #6E78DA!important;
  border-width: 1px!important;
  box-shadow: none;
}

/*** Form messages ***/
.form-group,
.form-group__group {
  position: relative;
}

.form-group .form-control.input {
  padding-right: 45px;
}

/* .form-group {
  margin-bottom: 0;
}
 */
.form-group__error-msg {
  /* position: absolute; */
  position: relative;
  left: 0;
  top: 100%;
  width: 100%;
  /* font-family: 'Roboto Condensed', sans-serif; */
  color: #F03E3D;
  font-size: 0.8rem;
  margin-top: 5px;
  padding-left: 5px;
  opacity: 0;
  transition: all 0.35s ease;
  margin-bottom: 0rem;
  /* padding-bottom: 1rem; */
}

.form-group__error-msg.form-group {
  margin-bottom: 0;
}

/* Form group icons on input */
.form-group__group::after,
.form-group__group::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.35s ease;
}

.form-group__group::after {
  background-image: url('../../img/v2/icon-tick-blue.svg');
}

.form-group__group::before {
  background-image: url('../../img/v2/icon-warning.svg');
}

.form-group__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.35s ease;
}

.form-group__icon--actionable {
  cursor: pointer;
}

.form-group__icon--passeye {
  color: #CDCDCD;
}

.form-group__icon--active {
  color: #0560C7;
}

/* Error */
.form-group--error .abc-checkbox--custom label:before {
  border-color: red;
  border-width: 1px ;
}

.form-group--error .form-group__error-msg {
  opacity: 1;
}

.form-group--error .form-group__icon,
.form-group--error .form-control-icon {
  opacity: 0;
}


.form-group--error .form-control.input {
  background-color: #FFF;
  border-width: 1px;
  border-color: #F03E3D;
}

.form-group--error .input:focus {
  border-width: 1px!important;
  border-color: #F03E3D!important;
}

.form-group--error:not(.form-group--checkbox) .form-group__group::before {
  opacity: 1;
}

.form-group--success:not(.form-group--checkbox) .form-group__group::after {
  opacity: 1;
}

/* .form-group--success .input:focus {
  border-color: #08B07B!important;
} */

/*** Btns ***/
.btn-custom {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  border-radius: 6px;
  transition: all 0.35s ease;
  padding: 0 20px;
  line-height: 1.1;
}

.btn-custom--default {
  background-color: #F7F9FC;
  border: 1px solid #E4E9F2;
  color: #5F6367;
}

.btn-custom--default:hover {
  color: #555;
  background-color: #ededed;
  text-decoration: none;
}

.btn-custom--primary {
  /* font-family: 'Roboto Condensed', sans-serif; */
  padding: 0 45px;
  background-color: #6E78DA;
  color: #FFF;
  font-family: "gothammedium", sans-serif;
  
}

.btn-custom--primary:hover {
  color: #FFF;
  background-color: #5B66CD;
  text-decoration: none;
}

/*** Checkbox ***/
.abc-checkbox--custom {
  /* font-family: 'Roboto Condensed', sans-serif; */
  color: #838383;
  transition: all 0.35s ease;
  display: flex;
}

.abc-checkbox--custom label:before {
  transition: all 0.35s ease;
}

.abc-checkbox--custom .abc-checkbox__link {
  position: relative;
  color: #838383;
  text-decoration: none;
  display: inline;
}

.abc-checkbox--custom .abc-checkbox__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #838383;
  transform: translateX(-50%);
  transition: all 0.35s ease;
}

@media screen and (min-width: 992px) {
  .abc-checkbox--custom:hover {
    color: #4a4a4a;
  }

  .abc-checkbox--custom .abc-checkbox__link:hover::after {
    width: 0;
  }
}

/*** Tabla con datos personales ***/
.box-inline-table-data {
  border: 1px solid #E9E9E9;
  padding: 20px 10px;
  border-radius: 10px;
  line-height: 1.2;
}

.box-inline-table-data .form-control.input {
  height: 40px;
}

.box-inline-table-data__key {
  font-family: "gothammedium", sans-serif;
  font-size: 0.75rem;
  opacity: .6;
  margin-bottom: 3px;
}

.box-inline-table-data__value {
  font-size: 1rem;
}

@media screen and (min-width: 992px) {
  .box-inline-table-data__key {
    margin-bottom: 7px;
  }

  .box-inline-table-data__value {
    font-size: 1.125rem;
  }
}

/*** Form label ***/
.form-label {
  margin-bottom: 10px;
}

/*** Links ***/
.link-icon {
  display: inline-flex;
  align-items: center;
  color: #5F6367;
  text-decoration: none;
  opacity: 0.7;
}

.link-icon:hover {
  text-decoration: none;
  color: #4a4a4a;
}

.link-icon--left .link-icon__icon {
  display: block;
  margin-right: 10px;
}

.link-underlined {
  position: relative;
  display: inline-flex;
  font-size: 0.75rem;
  text-decoration: none!important;
  color: #5F6367;
}

.link-underlined:hover {
  color: #444;
}

.link-underlined::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #5F6367;
  transition: all 0.35s ease;
}

@media screen and (min-width: 992px) {
  .link-underlined:hover:after {
    width: 0;
  }
}

/*** Input group date ***/
.input-group--date .form-control-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/*** Password validation ***/
.password-validation {
  font-size: 0.875rem;
}

.password-validation__title {
  /* font-family: 'Roboto Condensed', sans-serif; */
  opacity: .6;
  margin-bottom: 5px;
}

.password-validation__item {
  position: relative;
  display: flex;
  align-items: center;
}

.password-validation__item::before {
  content: '';
  display: block;
  width: 16px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 10px;
  margin-right: 5px;
  background-image: url('../../img/v2/icon-chevron-right.svg');
}

.password-validation__item--error::before {
  background-image: url('../../img/v2/icon-warning.svg');
  background-size: auto 16px;
}

.password-validation__item--success::before {
  background-image: url('../../img/v2/icon-tick-green.svg');
  background-size: auto 12px;
}

/*** Notification alert ***/
.notification-alert {
  height: 36px;
  border-radius: 4px;
  background-color: #F7FBFF;
  border: 1px solid #0284FE;
  color: #0284FE;
  display: flex;
  align-items: center;
  max-width: 250px;
  padding: 0 10px;
}

.notification-alert__message {
  /* font-family: 'Roboto Condensed', sans-serif; */
  font-size: 0.75rem;
}

.notification-alert__icon {
  width: 21px;
  height: 21px;
  background-image: url('../../img/v2/icon-exclamation-blue.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 21px;
  margin-right: 10px;
}

.notification-alert__close {
  cursor: pointer;
  margin-left: auto;
  width: 10px;
  height: 10px;
  background-image: url('../../img/v2/icon-close.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 10px;
  opacity: .5;
  transition: all 0.35s ease;
}

@media screen and (min-width: 992px) {
  .notification-alert__close:hover {
    opacity: 1;
  }
}

/* States */
.notification-alert--warning {
  background-color: #FFFCF5;
  border-color: #FFAD0E;
  color: #5F6367;
}

.notification-alert--warning .notification-alert__icon {
  background-image: url('../../img/v2/icon-warning-yellow.svg');
}

.notification-alert--error {
  background-color: #FFF8F8;
  border-color: #DD2627;
  color: #DD2627;
}

.notification-alert--error .notification-alert__icon {
  background-image: url('../../img/v2/icon-warning.svg');
}

.notification-alert--success {
  background-color: #FFF8F8;
  border-color: #5FAB8C;
  color: #5FAB8C;
}

.notification-alert--success .notification-alert__icon {
  background-image: url('../../img/v2/icon-warning-green.svg');
}

/*** Card info account ***/
.card-info-account {
  background-color: #044478;
  color: #FFF;
  border-radius: 10px;
  max-width: 315px;
  text-align: left;
  padding: 25px 20px;
}

.card-info-account__logo {
  width: 120px;
  margin-bottom: 55px;
}

.card-info-account__name {
  font-weight: 500;
}

.card-info-account__data {
  font-size: 0.875rem;
  font-weight: 300;
}