@font-face {
  font-family: "santander-font";
  src: url("fonts/SantanderText-Light.woff") format("woff");
  src: url("fonts/SantanderText-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "santander-font";
  src: url("fonts/SantanderText-Regular.woff") format("woff");
  src: url("fonts/SantanderText-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "santander-font";
  src: url("fonts/SantanderText-Bold.woff") format("woff");
  src: url("fonts/SantanderText-Bold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "santander-font-h";
  src: url("fonts/SantanderHeadline-Regular.woff") format("woff");
  src: url("fonts/SantanderHeadline-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "santander-font-h";
  src: url("fonts/SantanderHeadline-Bold.woff") format("woff");
  src: url("fonts/SantanderHeadline-Bold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "santander-icons";
  src: url("fonts/santander.eot?9ky28y");
  src: url("fonts/santander.eot?9ky28y#iefix") format("embedded-opentype"), url("fonts/santander.ttf?9ky28y") format("truetype"), url("fonts/santander.woff?9ky28y") format("woff"), url("fonts/santander.svg?9ky28y#santander") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "santander-icons" !important;
  speak-as: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-check-simple:before {
  content: "\e907";
}

.icon-eye:before {
  content: "\e900";
}

.icon-doc:before {
  content: "\e901";
}

.icon-check:before {
  content: "\e902";
}

.icon-peticion:before {
  content: "\e903";
}

.icon-chevron-down:before {
  content: "\e904";
}

.icon-close:before {
  content: "\e905";
}

.icon-copy:before {
  content: "\e906";
}

.button {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  background-color: #7756db;
  border-radius: 4px;
  font-family: "santander-font-h", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  min-width: 130px;
  border: none;
  padding: 14px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.15s ease-in-out;
  line-height: 12px;
}
.button:hover:not(disabled) {
  background-color: #230243;
  transition: all 0.15s ease-in-out;
}
.button:disabled {
  background-color: #CCCCCC;
  pointer-events: none;
}
.button-icon {
  border: none;
  background-color: transparent;
  color: #1BB4BC;
  cursor: pointer;
}
.button-icon i[class^=icon-] {
  font-size: 24px;
}

.modal-open {
  overflow: hidden;
}
.modal-open .container .content .main {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
  --opacity:0;
  --pointer:none;
  opacity: var(--opacity);
  pointer-events: var(--pointer);
  transition: opacity 0.5s;
}
.modal:target, .modal.show {
  --opacity:1;
  --pointer: unset;
}
.modal:target .modal__dialog__content, .modal.show .modal__dialog__content {
  animation: show 0.8s 0.1s backwards;
}
@keyframes show {
  0% {
    transform: translateY(-100vh);
  }
}
.modal__dialog {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  margin: 100px 20px;
}
.modal__dialog__content {
  flex-grow: 2;
  -ms-flex-grow: 2;
  -webkit-flex-grow: 2;
  flex-shrink: 0;
  -ms-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  background-color: #FFFFFF;
  border: none;
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  width: 100%;
}
.modal__dialog__content .content__header {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  padding: 24px 24px 0px 24px;
}
.modal__dialog__content .content__header .button-icon {
  flex-shrink: 0;
  -ms-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  color: #444;
}
.modal__dialog__content .content__header .button-icon i[class^=icon-] {
  font-size: 24px;
  margin: 0;
}
.modal__dialog__content .content__body__section {
  padding: 0 40px 24px 40px;
}
.modal__dialog__content .content__body__section h2 {
  margin-bottom: 32px;
}
.modal__dialog__content .content__body__section p {
  color: #444;
  font-size: 16px;
  margin-bottom: 32px;
}
.modal__dialog__content .content__body__section .button {
  margin: 0 auto;
  width: 100%;
  max-width: 243px;
}

.input {
  display: block;
  width: 100%;
  font-family: "santander-font", sans-serif;
  background-color: #F5F9FC;
  border: 1px solid #DEEDF2;
  border-bottom: 1px solid #1BB4BC;
  background-clip: padding-box;
  color: #767676;
  padding: 8px 16px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  height: 48px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  resize: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.input:disabled {
  pointer-events: none;
  opacity: 0.8%;
}
.input::-moz-placeholder {
  color: #767676;
  opacity: 1;
}
.input::placeholder {
  color: #767676;
  opacity: 1;
}
.input:focus {
  outline: none;
  transition: box-shadow 0.15s ease-in-out;
}

.input-group {
  position: relative;
}
.input-group .input[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
  cursor: pointer;
}
.input-group .input[type=date] + i[class^=icon-] {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
}

.form-group {
  position: relative;
}
.form-group .input {
  display: block;
  width: 100%;
  color: #444;
  max-width: 440px;
}
.form-group .input:valid, .form-group .input:focus {
  outline: none;
  padding: 18px 16px 0 16px;
}
.form-group .input:valid + label,
.form-group .input:valid + label, .form-group .input:focus + label,
.form-group .input:focus + label {
  color: #767676;
  font-size: 12px;
  transform: translateY(2px);
}
.form-group label {
  position: absolute;
  top: 0;
  left: 17px;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.2s ease-in-out;
}
.form-group .button-icon {
  position: absolute;
  top: 12px;
  right: 12px;
}

.file-input-container input {
  opacity: 0;
}
.file-input-container span {
  width: 100%;
  display: block;
}

.checkbox {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #767676;
  white-space: nowrap;
  line-height: 20px;
  cursor: pointer;
}
.checkbox a {
  font-weight: 400;
  display: inline;
}
.checkbox__box {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  flex-shrink: 0;
  -ms-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #767676;
  padding: 0px;
  margin: 0;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
.checkbox__box:before {
  font-family: "santander-icons";
  content: "\e907";
  font-size: 25px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  color: #7756db;
}
.checkbox__box:checked {
  border-color: #7756db;
  background-color: transparent;
  transition: all 0.15s ease-in-out;
}
.checkbox__box:checked:before {
  transform: scale(1);
}
.checkbox label {
  cursor: pointer;
  white-space: normal;
  display: block;
  text-align: left;
}
.checkbox label a {
  font-weight: 600;
  color: #767676;
  text-decoration: underline;
}
.checkbox label a:hover {
  color: #767676;
}

.tile {
  border-radius: 16px;
  background-color: #FFF;
}
.tile__header {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #F0f0f0;
}
.tile__header__info {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  flex-grow: 2;
  -ms-flex-grow: 2;
  -webkit-flex-grow: 2;
  gap: 8px;
}
.tile__header__info .info__number {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  background-color: #F0F0F0;
  font-family: "santander-font-h", sans-serif;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
}
.tile__body {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
}
.tile__body .tile--gray {
  border-radius: 8px;
  background-color: #F0F0F0;
  padding: 24px 16px;
}
.tile__body .button {
  width: 100%;
}
.tile--gray {
  background-color: #F5F9FC;
  padding: 16px;
  font-size: 16px;
}

.tag {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  background: #DEEDF2;
  border-radius: 8px;
  padding: 8px;
  color: #1BB4BC;
  width: -moz-fit-content;
  width: fit-content;
}
.tag i[class^=icon-] {
  font-size: 20px;
}
.tag--gray {
  background-color: #F0F0F0;
}
.tag--gray i[class^=icon-] {
  color: #ccc;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes rotate-inline {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animation {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.15s ease-in-out;
}
.loader__load {
  animation: rotate 1.4s linear infinite;
  flex-shrink: 0;
}
.loader__load__circle {
  stroke-dasharray: 187px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: animation 1.4s ease-in-out infinite;
}
.loader.show {
  opacity: 1;
  visibility: visible;
  transition: all 0.15s ease-in-out;
}
.loader-inline {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
}
.loader-inline svg {
  animation: rotate-inline 1.4s linear infinite;
}

.item {
  background-color: #F0F0F0;
  font-size: 16px;
  border-radius: 8px;
}
.item__header {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  padding: 16px;
  gap: 16px;
}
.item__header__info {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  gap: 16px;
}
.item__header__info .tag {
  background-color: #FFFFFF;
  width: 32px;
  height: 32px;
}
.item__header__info .tag i[class^=icon-] {
  font-size: 24px;
}
.item__header a {
  color: #1BB4BC;
}
.item__header a:hover {
  color: #1BB4BC;
}
.item__body {
  padding: 0 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}
.item.active .item__body {
  max-height: 1000vh;
  opacity: 1;
  overflow: auto;
  padding: 0px 16px 16px 16px;
  transition: all 0.35s ease-in-out;
}

.code-group {
  position: relative;
}
.code-group .code {
  background-color: #444;
  padding: 24px 16px;
  border-radius: 8px;
  font-family: monospace;
  color: #B2DBA1;
  font-size: 14px;
}
.code-group .code pre {
  overflow: hidden;
  text-overflow: ellipsis;
}
.code-group .button-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background-color: #F0F0F0;
  border-radius: 6px;
  padding: 4px;
  width: 24px;
  height: 24px;
}
.code-group .button-icon i[class^=icon-] {
  font-size: 16px;
  color: #767676;
}

html {
  font-family: "santander-font", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: inherit;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html body {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  height: 100vh;
}
html body *,
html body *::before,
html body *::after {
  box-sizing: border-box;
}
html body h6, html body .h6,
html body h5, html body .h5,
html body h4, html body .h4,
html body h3, html body .h3,
html body h2, html body .h2,
html body h1, html body .h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "santander-font-h", sans-serif;
}
html body h1, html body .h1 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
html body h1.title-xl, html body .h1.title-xl {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
html body h2, html body .h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}
html body h3, html body .h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}
html body img {
  max-width: 100%;
}
html body a {
  display: inline-block;
  color: #444;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}
html body a:hover {
  color: #444;
  transition: color 0.15s ease-in-out;
}
html body .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1800px;
  padding: 100px 40px 40px 40px;
  margin-right: auto;
  margin-left: auto;
}
html body .header {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: flex-end;
  -ms-align-items: flex-end;
  -webkit-align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid #ccc;
  padding: 16px;
}
html body .header img + img {
  border-left: 1px solid #767676;
  padding-left: 12px;
}
html body .main {
  flex-grow: 2;
  -ms-flex-grow: 2;
  -webkit-flex-grow: 2;
  background-color: #F0F0F0;
}
html body .footer {
  border-top: 1px solid #ccc;
  background: rgba(245, 249, 252, 0.75);
  padding: 30px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
}

html body .main.main--login .container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  max-width: 555px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  padding-top: 64px;
  gap: 60px;
}
html body .main.main--login .container__text {
  font-size: 32px;
  text-align: center;
  font-family: "santander-font-h", sans-serif;
}
html body .main.main--login .container .form {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  gap: 40px;
  background-color: #FFFFFF;
  padding: 40px 56px;
  border-radius: 16px;
}
html body .main.main--login .container .form__intro {
  text-align: center;
  font-size: 24px;
}
html body .main.main--login .container .form .button {
  width: 100%;
}

@media (max-width: 992px) {
  html body .container {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    padding: 40px 24px;
  }
  html body .container .tile {
    max-width: 576px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  html body .header img {
    max-width: 180px;
  }
  html body .header img + img {
    max-width: 100px;
  }
  html body .main.main--login .container .form {
    padding: 24px;
  }
  html body .container {
    padding: 24px;
    gap: 24px;
  }
}/*# sourceMappingURL=main.css.map */