@charset "UTF-8";
/* Genera el "archivo articulo.css" que es necesario para el editor de texto de los artículos Prontus (debe quedar aparte)*/
/* agregar aquí todos los archivos sass parciales ej: "_archivo_parcial.sass" */
/* para revisar estilos desde el inspector del navegador, se debe generar un archivo .map
 * que ayuda a identificar en qué lineas de un archivo .sass están los estilos*/
blockquote, q {
  quotes: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption, tfoot, thead, th,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

a:focus {
  outline: 0px dotted !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  line-height: 1;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

ol, ul {
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Para utilizar las variables basta con reemplazar el atributo por el nombre de la variable en nuestro código ej: "color: $main_azul" */
/* al modificar el atributo de cualquier variable afectará a todos los selectores donde se utilizó */
@font-face {
  font-family: "Poppins-Regular";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
}
@font-face {
  font-family: "Poppins-ExtraBold";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff");
}
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @mixin nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar mixins variables llamar de la siguiente forma: @include nombre_mixin(variable1, variable2, ...) */
.btn__primary {
  font-size: 14px;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 3rem;
  background-color: #2E2E82;
  gap: 8px;
  text-align: center;
  transition: 0.3s all ease;
  line-height: 1.5;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Poppins-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .btn__primary {
    padding: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary {
    padding: 10px;
  }
}
.btn__primary--sm {
  padding: 12px 20px;
  font-size: 16px;
}
@media (max-width: 426px) {
  .btn__primary--sm {
    padding: 16px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary--sm {
    padding: 16px 20px;
  }
}
.btn__primary--lg {
  padding: 10px 20px;
  font-size: 18px;
}

.btn {
  padding: 30px 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .btn {
    padding: 30px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn {
    padding: 30px 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn {
    padding: 30px 20px;
  }
}
.btn a {
  -webkit-flex: 0 1 150px;
  flex: 0 1 150px;
}
@media (max-width: 426px) {
  .btn a {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn a {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.btn a.btn__primary--lg {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.btn a + a {
  margin-left: 20px;
}
@media (max-width: 426px) {
  .btn a + a {
    margin-left: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn a + a {
    margin-left: 10px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn a + a {
    margin-left: 10px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn a + a {
    margin-left: 10px;
  }
}
.btn__yellow-500 {
  background-color: #FCDB00;
  color: #2E2E82;
}
.btn__yellow-500:hover {
  background-color: #FDCD00;
  color: #2C3E5D;
}
.btn__yellow-500:active {
  background-color: #FFE55C;
  color: #1A53BA;
}
.btn__blue-1000 {
  background-color: #2E2E82;
}
.btn__blue-1000:hover {
  background-color: #1A53BA;
}
.btn__blue-1000:active {
  background-color: #4589FF;
}
.btn__blue-800 {
  background-color: #1A53BA;
}
.btn__blue-800:hover {
  background-color: #2E2E82;
}
.btn__disabled {
  background-color: #DCDFE4;
  color: #8590A2;
}
.btn__disabled:hover {
  color: #8590A2;
  background-color: #DCDFE4;
}
.btn__center {
  padding-bottom: 0;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.btn__right {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .btn__right {
    gap: 10px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__right {
    gap: 10px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.btn__justify {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .btn__justify {
    gap: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__justify {
    gap: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

.btn__primary:hover .icon__plus-circle {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  transform: rotate(360deg);
}

.btn__icon {
  font-size: 14px;
  color: #2E2E82;
  gap: 3px;
  transition: 0.3s all ease;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Poppins-SemiBold", sans-serif;
}
.btn__icon:hover {
  color: #1A53BA;
}
.btn__icon img {
  width: 24px;
  position: relative;
  bottom: 3px;
}
@media (max-width: 426px) {
  .btn__icon img {
    width: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__icon img {
    width: 20px;
  }
}

.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: 1;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  position: relative;
  bottom: 1px;
  display: inline-block;
  transition: 0.5s all ease;
}
.icon__plus-circle {
  background-image: url("../../imag/icon/ic-plus-circle.svg");
}
.icon__lipigas {
  background-image: url("../../imag/icon/ic-lipigas-blue.svg");
}
.icon__file {
  background-image: url("../../imag/icon/ic-document-blue.svg");
}
.icon__edit {
  background-image: url("../../imag/icon/ic-edit-blue.svg");
}
.icon__mail {
  background-image: url("../../imag/icon/ic-mail-blue.svg");
}
.icon__bag {
  background-image: url("../../imag/icon/ic-bag-blue.svg");
}
.icon__cash {
  background-image: url("../../imag/icon/ic-cash-blue.svg");
}
.icon__marker {
  background-image: url("../../imag/icon/ic-marker.svg");
}
.icon__user {
  background-image: url("../../imag/icon/ic-user.svg");
}
.icon__globe-single {
  background-image: url("../../imag/icon/ic-globe-single-blue.svg");
}
.icon__download {
  background-image: url("../../imag/icon/ic-download-blue-600.svg");
}
.icon__print {
  background-image: url("../../imag/icon/ic-print-blue-600.svg");
}

.tabs-nav {
  margin-bottom: 24px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.tabs-nav li {
  gap: 6px;
  padding: 15px 12px;
  background-color: #FCDB00;
  color: #2C3E5D;
  transition: 0.3s all ease;
  font-size: 12px;
  font-family: "Poppins-SemiBold", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tabs-nav li .icon {
  width: 18px;
  height: 18px;
}
.tabs-nav li .icon__bag {
  background-image: url("../../imag/icon/ic-bag-neutral-900.svg");
}
.tabs-nav li .icon__info {
  background-image: url("../../imag/icon/ic-info-blue-600.svg");
}
.tabs-nav li:first-child {
  border-top-left-radius: 10px;
}
.tabs-nav li:last-child {
  border-top-right-radius: 10px;
}
.tabs-nav li:not(.active) {
  cursor: pointer;
}
.tabs-nav li:hover {
  background-color: #FDCD00;
}
.tabs-nav li + li {
  border-left: 1px solid #2C3E5D;
}
.tabs-nav li.active {
  background: none;
  color: #1A53BA;
}
.tabs-nav li.active .icon__bag {
  background-image: url("../../imag/icon/ic-bag-blue-800.svg");
}

.tabs {
  margin-top: 30px;
}
.tabs__nav {
  border-bottom: 3px solid #F1F2F4;
  margin-bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.tabs__nav li {
  border-bottom: 3px solid transparent;
  font-family: "Poppins-SemiBold", sans-serif;
}
.tabs__nav li a {
  display: block;
  padding: 15px 20px;
  color: #626F86;
  gap: 8px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .tabs__nav li a {
    font-size: 13px;
    padding: 10px;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs__nav li a {
    font-size: 13px;
    padding: 10px;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.tabs__nav li.active {
  border-color: #2E2E82;
}
.tabs__nav li.active a {
  color: #2E2E82;
}
.tabs__nav li.active .icon__info {
  background-image: url("../../imag/icon/ic-info-blue-600.svg");
}
.tabs__nav .icon {
  width: 18px;
  height: 18px;
}
.tabs__nav .icon__info {
  background-image: url("../../imag/icon/ic-info-grey.svg");
}
.tabs__number {
  background-color: #DBE8FF;
  border-radius: 8px;
  padding: 5px 8px;
  color: #2E2E82;
  font-family: "Poppins-Bold", sans-serif;
}
@media (max-width: 426px) {
  .tabs__number {
    padding: 8px 5px 3px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs__number {
    padding: 8px 5px 3px;
  }
}

.breadcrumbs {
  gap: 4px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .breadcrumbs {
    padding: 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .breadcrumbs {
    padding: 0 10px;
  }
}
.breadcrumbs .breadcrumb {
  color: #2E2E82;
  font-size: 12px;
  line-height: 1.3;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "Poppins-Bold", sans-serif;
}
.breadcrumbs .breadcrumb a {
  background: none;
  text-decoration: none;
  font-family: "Poppins-Regular", sans-serif;
}
.breadcrumbs .breadcrumb + .breadcrumb {
  margin-left: 10px;
}
.breadcrumbs .breadcrumb + .breadcrumb:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: -11px;
  top: 2px;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  background-image: url("../../imag/icon/ic-chevron-right-blue-1000.svg");
}
.breadcrumbs .breadcrumb.active {
  background-color: #FDCD00;
  text-decoration: underline;
}

.block-head {
  width: 100%;
  padding: 40px 0;
}
@media (max-width: 426px) {
  .block-head {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head {
    padding: 20px 0;
  }
}
@media (max-width: 426px) {
  .block-head .auxi {
    padding: 0 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head .auxi {
    padding: 0 30px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-head .auxi {
    padding: 0 30px;
  }
}
.block-head__title {
  font-size: 32px;
  color: #2E2E82;
  line-height: 1.4;
  font-family: "Poppins-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .block-head__title {
    font-size: 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__title {
    font-size: 16px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-head__title {
    font-size: 24px;
  }
}
.step-bar {
  position: relative;
  padding: 0 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .step-bar {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar {
    padding: 0;
  }
}
.step-bar__subtit {
  font-size: 14px;
  color: #B3B9C4;
  text-align: center;
  max-width: 145px;
  line-height: 1.4;
  font-family: "Poppins-Bold", sans-serif;
}
@media (max-width: 426px) {
  .step-bar__subtit {
    font-size: 12px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar__subtit {
    font-size: 12px;
  }
}
.step-bar__number {
  border-radius: 50%;
  background-color: #B3B9C4;
  width: 30px;
  height: 30px;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Poppins-Bold", sans-serif;
}
.step-bar__number span {
  height: 13px;
}
.step-bar::before {
  content: "";
  width: 80%;
  height: 6px;
  background-color: #B3B9C4;
  position: absolute;
  left: auto;
  right: auto;
  top: 14%;
  z-index: -1;
}
@media (max-width: 426px) {
  .step-bar::before {
    top: 20%;
    width: 74%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar::before {
    top: 25%;
    width: 79%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .step-bar::before {
    width: 78%;
  }
}
.step-bar li {
  text-align: center;
  position: relative;
  z-index: -1;
  -webkit-flex: 0 0 33.33333333%;
  flex: 0 0 33.33333333%;
}
@media (max-width: 426px) {
  .step-bar li {
    padding: 10px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li {
    padding: 10px 0;
  }
}
.step-bar li:first-child {
  text-align: left;
}
.step-bar li:first-child .step-bar__number {
  margin-left: 56px;
}
@media (max-width: 426px) {
  .step-bar li:first-child .step-bar__number {
    margin-left: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li:first-child .step-bar__number {
    margin-left: 40px;
  }
}
@media (max-width: 426px) {
  .step-bar li:first-child .step-bar__subtit {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li:first-child .step-bar__subtit {
    margin-left: 0;
  }
}
.step-bar li:nth-child(2) .step-bar__subtit {
  margin: 0 auto;
}
.step-bar li:last-child {
  text-align: right;
}
.step-bar li:last-child .step-bar__number {
  margin-right: 56px;
}
@media (max-width: 426px) {
  .step-bar li:last-child .step-bar__number {
    margin-right: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li:last-child .step-bar__number {
    margin-right: 40px;
  }
}
.step-bar li:last-child .step-bar__subtit {
  margin-left: auto;
  margin-right: 0;
}
.step-bar li.active .step-bar__number {
  background-color: #2E2E82;
}
.step-bar li.active:first-child:before {
  width: 76%;
  left: 25%;
}
@media (max-width: 426px) {
  .step-bar li.active:first-child:before {
    width: 70%;
    left: 38%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li.active:first-child:before {
    width: 77%;
    left: 32%;
  }
}
.step-bar li.active:last-child:before {
  width: 76%;
  right: 30%;
  left: auto;
}
@media (max-width: 426px) {
  .step-bar li.active:last-child:before {
    right: 37%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li.active:last-child:before {
    width: 89%;
    right: 32%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .step-bar li.active:last-child:before {
    width: 80%;
    right: 27%;
  }
}
.step-bar li.active:before {
  content: "";
  width: 101%;
  height: 6px;
  background-color: #2E2E82;
  position: absolute;
  left: 0;
  right: 0;
  top: 14%;
  border-radius: 3rem;
  z-index: -1;
}
@media (max-width: 426px) {
  .step-bar li.active:before {
    top: 20%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .step-bar li.active:before {
    top: 25%;
  }
}
.step-bar li.active .step-bar__subtit {
  color: #2E2E82;
}

.card {
  margin: 0 auto;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 56px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  -moz-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
}
@media (max-width: 426px) {
  .card {
    max-width: 95%;
    padding: 28px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card {
    max-width: 95%;
    padding: 28px 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card {
    max-width: 95%;
    padding: 48px;
  }
}
.card__sm {
  padding: 30px;
}
.card__header {
  margin-bottom: 30px;
}
.card__header--center {
  text-align: center;
}
.card__header--center .card__title,
.card__header--center .card__description {
  text-align: center;
}
.card__header-row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .card__header-row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__header-row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.card__chip {
  margin-bottom: 10px;
  gap: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card__chip-txt {
  color: #2C3E5D;
  font-size: 16px;
}
.card__epig {
  font-size: 16px;
  color: #4589FF;
  margin-bottom: 10px;
  font-family: "Poppins-Bold", sans-serif;
}
.card__title {
  font-size: 20px;
  color: #2E2E82;
  line-height: 1.3;
  display: inline-block;
  margin-bottom: 5px;
  font-family: "Poppins-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .card__title {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__title {
    font-size: 18px;
    line-height: 1.3;
  }
}
.card__title--sm {
  font-size: 16px;
  font-family: "Poppins-Bold", sans-serif;
}
.card__title--blue-900 {
  color: #2B75AF;
}
.card__caption--sm {
  font-size: 13px;
  color: #44546F;
}
.card__logo {
  width: 245px;
  margin: 0 auto 10px;
}
.card__title-icon {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.card__title-icon img {
  bottom: 6px;
  position: relative;
  width: 32px;
}
.card__title-icon .card__title {
  text-align: left;
}
.card__subtitle {
  font-size: 16px;
  color: #626F86;
  line-height: 1.5;
  font-family: "Poppins-SemiBold", sans-serif;
}
@media (max-width: 426px) {
  .card__subtitle {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__subtitle {
    text-align: center;
  }
}
.card__description {
  font-size: 14px;
  line-height: 1.9;
  color: #2E2E82;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Poppins-SemiBold", sans-serif;
}
@media (max-width: 426px) {
  .card__description {
    font-size: 12px;
    line-height: 1.5;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__description {
    font-size: 12px;
    line-height: 1.5;
  }
}
.card__separator {
  font-size: 14px;
  color: #626F86;
  padding: 25px 0;
  gap: 15px;
  text-align: center;
  font-family: "Poppins-SemiBold", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.card__separator span {
  display: block;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__separator:before, .card__separator::after {
  content: "";
  height: 1px;
  background-color: #A8C7FF;
  display: inline-block;
  position: relative;
  -webkit-flex: 1 0 54px;
  flex: 1 0 54px;
}
.card__content {
  position: relative;
  width: 100%;
  text-align: left;
}
@media (max-width: 426px) {
  .card__content {
    padding: 0 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__content {
    padding: 30px;
  }
}
.card__info-label {
  color: #626F86;
  margin-bottom: 8px;
  font-family: "Poppins-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__info-label {
    font-size: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__info-label {
    font-size: 14px;
  }
}
.card__info-value {
  color: #626F86;
  font-size: 14px;
  line-height: 1.4;
  font-family: "Poppins-SemiBold", sans-serif;
}
@media (max-width: 426px) {
  .card__info-value {
    font-size: 12px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__info-value {
    font-size: 12px;
  }
}
.card__row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .card__row {
    gap: 15px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__row {
    gap: 15px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__row .btn__primary {
  max-width: 325px;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__row .btn__primary {
    max-width: 272px;
  }
}
.card__total {
  gap: 9px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .card__total {
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__total {
    width: 100%;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.card__total-txt {
  font-size: 20px;
  color: #2E2E82;
  font-family: "Poppins-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .card__total-txt {
    font-size: 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__total-txt {
    font-size: 16px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__total-txt {
    font-size: 18px;
  }
}
.card__total-number {
  font-size: 28px;
  color: #2E2E82;
  font-family: "Poppins-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .card__total-number {
    font-size: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__total-number {
    font-size: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__total-number {
    font-size: 24px;
  }
}
.card .row {
  gap: 25px 0;
}
.card .row__gap div + div {
  padding-left: 20px;
}
@media (max-width: 426px) {
  .card .row__gap div + div {
    padding-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .row__gap div + div {
    padding-left: 0;
  }
}
@media (max-width: 426px) {
  .card .row__gap div {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .row__gap div {
    max-width: 100%;
  }
}
.card .row__gap div:first-child .form__radio--boleta label {
  background-color: #F0F5FF;
}
.card__blue {
  margin-top: 20px;
  background-color: #2B75AF;
  padding: 20px 30px;
}
.card__blue .btn {
  padding: 0;
}
.card__blue .btn .btn__primary {
  max-width: 246px;
  width: 100%;
}
.card__blue-1000 {
  margin-top: 20px;
  background-color: #2E2E82;
  padding: 20px 30px;
}
.card__blue-1000 .btn {
  padding: 0;
}
.card__blue-1000 .btn .btn__primary {
  max-width: 246px;
  width: 100%;
}

.alert {
  padding: 16px;
  width: 100%;
}
.alert .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.alert__content {
  gap: 16px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.alert__box-txt {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: baseline;
  -moz-box-align: baseline;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
@media (max-width: 426px) {
  .alert__box-txt {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__box-txt {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.alert__text {
  color: #2C3E5D;
  font-size: 12px;
  line-height: 1.4;
  max-width: 915px;
  font-family: "Poppins-SemiBold", sans-serif;
}
.alert__icon {
  border-radius: 50%;
  padding: 5px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.alert__icon img {
  width: 36px;
}
.alert__close img {
  width: 24px;
}
.alert__highlight {
  font-family: "Poppins-ExtraBold", sans-serif;
}
.alert__error {
  background-color: #FFEBE6;
  border-bottom: 2px solid #FF624E;
}
.alert__error .alert__icon {
  background-color: #FF624E;
}
.alert__info {
  border-radius: 8px;
  background-color: #DBE8FF;
  border: 2px solid #4589FF;
}
.alert__info .alert__highlight, .alert__info .alert__text {
  color: #2E2E82;
}
.alert__info .alert__icon {
  padding: 0;
}
.alert__info .alert__icon img {
  width: 16px;
  position: relative;
  bottom: 2px;
}
.alert__valid {
  background-color: #E3FCEF;
  border-bottom: 2px solid #36B37E;
}
.alert__valid .alert__icon {
  background-color: #36B37E;
}
.alert__caution {
  background-color: #FFEBE6;
  border-bottom: 2px solid #FF8B00;
}
.alert__caution .alert__icon {
  padding: 10px;
  background-color: #FF8B00;
}
.alert__caution .alert__icon img {
  width: 25px;
}
.alert__fixed {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 108px;
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  .alert__fixed {
    top: 66px;
    z-index: 900;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__fixed {
    top: 66px;
    z-index: 900;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .alert__fixed {
    top: 64px;
  }
}

.fade-up {
  animation: fadeUp 0.5s ease, fadeOut 0.5s ease;
}

@keyframes fadeUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lipibolsa {
  border-radius: 8px;
  background-color: #F7F8F9;
  border: 1px solid #B3B9C4;
  overflow: hidden;
}
.lipibolsa__head {
  padding: 8px;
  text-align: center;
  background-color: #2B75AF;
}
.lipibolsa__head--grey {
  background-color: #626F86;
}
.lipibolsa__pref {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.lipibolsa__number {
  color: #ffffff;
  font-size: 24px;
  font-family: "Poppins-ExtraBold", sans-serif;
}
.lipibolsa__content {
  padding: 12px 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.lipibolsa__title {
  margin-top: 46px;
  font-size: 16px;
  color: #2B75AF;
  font-family: "Poppins-Bold", sans-serif;
}
.lipibolsa__img {
  position: relative;
}
.lipibolsa__img img {
  width: 105px;
}
.lipibolsa__quantity {
  position: absolute;
  left: calc(50% - 52px);
  width: 100%;
  bottom: 25px;
  font-size: 24px;
  text-align: center;
  color: #2B75AF;
  font-family: "Poppins-ExtraBold", sans-serif;
}
.lipibolsa__quantity sup {
  font-size: 12px;
}
.lipibolsa__disc {
  text-align: center;
  padding: 0 20px 6px;
}
.lipibolsa__disc p {
  font-size: 12px;
  color: #626F86;
}
.lipibolsa__disc p + p {
  margin-top: 5px;
}
.lipibolsa__disc p .bold {
  font-family: "Poppins-Bold", sans-serif;
}
.lipibolsa .btn {
  padding: 0 0 20px !important;
}
.lipibolsa .btn__primary {
  max-width: 180px !important;
}
.lipibolsa__sm .lipibolsa__img img {
  width: 70px;
}
.lipibolsa__sm .lipibolsa__number {
  font-size: 20px;
  font-family: "Poppins-Bold", sans-serif;
}
.lipibolsa__sm .lipibolsa__content {
  padding: 18px 14px 15px;
}
.lipibolsa__sm .lipibolsa__title {
  margin-top: 28px;
  font-size: 14px;
}
.lipibolsa__sm .lipibolsa__quantity {
  font-size: 16px;
  left: calc(50% - 35px);
  bottom: 17px;
}
.lipibolsa__sm .lipibolsa__quantity sup {
  font-size: 10px;
}
.lipibolsa__sm .lipibolsa__disc {
  padding: 0 10px 11px;
}
.lipibolsa__sm .lipibolsa__disc p {
  font-size: 10px;
}
.lipibolsa__sm .lipibolsa__disc .bold {
  font-size: 12px;
}
.lipibolsa__sm .btn__primary {
  font-size: 14px !important;
  max-width: 160px !important;
}

.logo {
  padding-left: 30px;
}
@media (max-width: 426px) {
  .logo {
    padding-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .logo {
    padding-left: 0;
  }
}
.logo__pref {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: "Poppins-Bold", sans-serif;
}
.logo img {
  width: 280px;
}

.amount-bar {
  border-radius: 8px;
  padding: 13px 18px;
  gap: 7px;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.amount-bar__blue {
  background-color: #2B75AF;
}
.amount-bar__blue .amount-bar__pref, .amount-bar__blue .amount-bar__number {
  color: #ffffff;
}
.amount-bar__icon {
  width: 24px;
  bottom: 3px;
  position: relative;
}
.amount-bar__pref {
  font-size: 16px;
  font-family: "Poppins-Bold", sans-serif;
}
.amount-bar__number {
  font-size: 18px;
  font-family: "Poppins-Bold", sans-serif;
}
.amount-bar .box-tooltip {
  position: relative;
}
.amount-bar .box-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.amount-bar .tooltip {
  background-color: #2C3E5D;
  padding: 8px;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: 0.3s all ease;
  bottom: 100%;
  right: -88px;
  min-width: 200px;
  margin-bottom: 15px;
  z-index: 1;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  -moz-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
}
@media (max-width: 426px) {
  .amount-bar .tooltip {
    top: -20px;
    bottom: auto;
    right: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .amount-bar .tooltip {
    top: -20px;
    bottom: auto;
    right: 30px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .amount-bar .tooltip {
    top: -20px;
    bottom: auto;
    right: 30px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .amount-bar .tooltip {
    top: -20px;
    bottom: auto;
    right: 30px;
  }
}
.amount-bar .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  margin-left: -5px;
  left: 48%;
  border-width: 7px;
  border-style: solid;
  border-color: #2C3E5D transparent transparent transparent;
}
@media (max-width: 426px) {
  .amount-bar .tooltip::after {
    top: 40%;
    left: auto;
    right: -14px;
    border-color: transparent transparent transparent #2C3E5D;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .amount-bar .tooltip::after {
    top: 40%;
    left: auto;
    right: -14px;
    border-color: transparent transparent transparent #2C3E5D;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .amount-bar .tooltip::after {
    top: 40%;
    left: auto;
    right: -14px;
    border-color: transparent transparent transparent #2C3E5D;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .amount-bar .tooltip::after {
    top: 40%;
    left: auto;
    right: -14px;
    border-color: transparent transparent transparent #2C3E5D;
  }
}
.amount-bar .tooltip p {
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
  font-family: "Poppins-SemiBold", sans-serif;
}

.highcharts-tooltip path {
  fill: #2C3E5D !important;
}
.highcharts-tooltip span {
  color: #ffffff !important;
}
.highcharts-tooltip .tooltip-grafico .title {
  display: block;
  text-align: center;
  font-family: "Poppins-Bold", sans-serif;
}
.highcharts-tooltip .tooltip-grafico .dato-m3 {
  display: block;
  margin-top: 2px;
  text-align: center;
}

.modal-campaign .screen {
  position: fixed;
}
.modal-campaign .lightbox {
  top: 50px !important;
  border-radius: 24px;
  padding: 35px;
}
@media (max-width: 426px) {
  .modal-campaign .lightbox {
    padding: 40px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .modal-campaign .lightbox {
    padding: 40px 10px;
  }
}
.modal-campaign .lightbox h3.text-regular {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "Poppins-Bold", sans-serif;
}
@media (max-width: 426px) {
  .modal-campaign .lightbox h3.text-regular {
    font-size: 24px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .modal-campaign .lightbox h3.text-regular {
    font-size: 24px;
  }
}
.modal-campaign .lightbox p {
  font-size: 15px;
  line-height: 1.7;
  font-family: "Poppins-Regular", sans-serif;
}
@media (max-width: 426px) {
  .modal-campaign .lightbox p {
    font-size: 13px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .modal-campaign .lightbox p {
    font-size: 13px;
  }
}
.modal-campaign .lightbox .separa {
  margin-bottom: 0 !important;
}
.modal-campaign .lightbox .btn-yellow {
  padding: 12px 20px;
  font-size: 16px;
  margin-top: 0;
  font-family: "Poppins-ExtraBold", sans-serif;
}
.modal-campaign .lightbox .cose-lightbox {
  top: 20px;
  right: 20px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: 1;
  width: 30px;
  height: 30px;
  background-image: url("../../imag/icon/ic-close.svg");
}
.modal-campaign .lightbox .content.align-right {
  padding-bottom: 0;
}

.table-responsive {
  margin-top: 20px;
  overflow: auto;
  width: 100%;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button {
  border: none !important;
  appearance: none;
  background: none;
  -webkit-appearance: none;
  font-size: 13px;
  border-radius: 5px;
  padding: 8px 13px;
  transition: 0.3s all ease;
  min-width: 30px;
  text-align: center;
  color: #2E2E82;
  margin-left: 3px;
  font-family: "Poppins-Bold", sans-serif;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  box-shadow: none;
  background: none;
  background-color: #F0F5FF;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
  padding: 8px;
  position: relative;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.previous::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../../imag/icon/ic-chevron-left-grey.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.next {
  padding: 8px;
  position: relative;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.next::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../../imag/icon/ic-chevron-right-grey.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: #FCDB00;
  color: #2E2E82 !important;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background-color: #2E2E82;
  color: #ffffff !important;
}
.table-responsive #pedidos_filter {
  display: none;
}

.table-custom {
  border-collapse: collapse;
  color: #000000;
  font-weight: normal;
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
  vertical-align: top;
  clear: both;
  margin: 20px auto;
  empty-cells: show;
  width: 1280px;
  font-style: normal;
  border-bottom: none;
  font-family: "Poppins-Regular", sans-serif;
}
@media (max-width: 426px) {
  .table-custom {
    font-size: 14px;
    width: 1000px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .table-custom {
    width: 1000px !important;
  }
}
.table-custom td {
  border-collapse: collapse;
  color: #626F86;
  font-weight: normal;
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
  padding: 12px 20px !important;
  vertical-align: middle;
  background-color: #ffffff !important;
  box-shadow: none !important;
  border-top: 1px solid #B3B9C4;
  font-family: "Poppins-SemiBold", sans-serif;
}
@media (max-width: 426px) {
  .table-custom td {
    font-size: 13px;
  }
}
.table-custom td .bold {
  color: #2E2E82;
  font-family: "Poppins-Bold", sans-serif;
}
.table-custom tr, .table-custom th {
  padding: 0;
}
.table-custom tr:last-child {
  border-bottom: 0;
}
.table-custom tr:last-child td {
  border-bottom: none;
}
.table-custom tr:first-child td {
  border-top: none;
}
.table-custom th {
  font-size: 12px;
  color: #ffffff;
  padding: 12px 26px 12px 20px !important;
  text-align: left;
  vertical-align: middle;
  font-style: normal;
  font-weight: initial !important;
  background-color: #2E2E82;
  border-bottom: 1px solid rgba(42, 72, 90, 0.03) !important;
  font-family: "Poppins-Bold", sans-serif;
}
.table-custom th span {
  display: block;
}
.table-custom th a {
  color: #ffffff;
}
.table-custom th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.table-custom th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.table-custom a:not(.btn__primary) {
  text-decoration: underline;
  color: #4589FF;
  font-size: 14px;
  font-family: "Poppins-Bold", sans-serif;
}
.table-custom tbody {
  padding: 20px;
}
.table-custom tr:first-child {
  border-top: none;
}
.table-custom tr:last-child {
  border-bottom: none;
}

.dataTables_length, .dataTables_info, .dataTables_paginate {
  display: none;
}

.dataTables_wrapper .dataTables_filter {
  padding-bottom: 15px;
  width: 100%;
}
.dataTables_wrapper .dataTables_filter label {
  color: #2C3E5D;
  font-size: 14px;
}
.dataTables_wrapper .dataTables_filter input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 6px 12px 5px;
  border: 1px solid #2E2E82;
  color: #2E2E82;
  background-color: #F0F5FF;
  border-radius: 8px;
  font-size: 13px;
  transition: 0.5s all ease;
  background-image: url("../../imag/icon/ic-search.svg");
  background-size: 20px;
  background-position: 95%;
  padding-right: 30px;
  background-repeat: no-repeat;
  margin-left: 10px;
  font-family: "Poppins-SemiBold", sans-serif;
}
.dataTables_wrapper .dataTables_filter input:focus, .dataTables_wrapper .dataTables_filter input:focus-visible {
  border: 1px solid #1A53BA;
  outline: none;
}
.dataTables_wrapper .dataTables_filter input::-webkit-input-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
.dataTables_wrapper .dataTables_filter input:-moz-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
.dataTables_wrapper .dataTables_filter input::-moz-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
.dataTables_wrapper .dataTables_filter input:-ms-input-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}

table.dataTable.no-footer {
  border-bottom: none;
}

.show-pagination .dataTables_paginate {
  padding-top: 20px !important;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.show-pagination .dataTables_wrapper {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

select {
  outline: none;
  background-image: url("../../imag/icon/chevron_down_g.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 18px;
  background-size: 18px;
}

textarea {
  resize: none;
}
textarea:focus {
  border: 1px solid #1A53BA;
}
button, input {
  border: none;
  background: none;
  outline: none;
}

input, select, .select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 9px 14px 5px;
  border: 1px solid #2E2E82;
  color: #2E2E82;
  background-color: #F0F5FF;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.5s all ease;
  font-family: "Poppins-SemiBold", sans-serif;
}
input:focus, input:focus-visible, select:focus, select:focus-visible, .select:focus, .select:focus-visible, textarea:focus, textarea:focus-visible {
  border: 1px solid #1A53BA;
  outline: none;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, .select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
input:-moz-placeholder, select:-moz-placeholder, .select:-moz-placeholder, textarea:-moz-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
input::-moz-placeholder, select::-moz-placeholder, .select::-moz-placeholder, textarea::-moz-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, .select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}

select {
  padding: 9px 14px 7px;
  background-image: url("../../imag/icon/ic-chevron-down-blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 9px) 10px;
  background-size: 24px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #2E2E82;
}

.form__control-label {
  display: block;
  position: absolute;
  top: 22px;
  transform: translateY(-50%);
  left: 16px;
  color: #2E2E82;
  transform-origin: left top;
  user-select: none;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), top 500ms;
  font-family: "Poppins-SemiBold", sans-serif;
}

input:focus + .form__control-label,
input.is-valid + .form__control-label,
textarea:focus + .form__control-label,
textarea.is-valid + .form__control-label {
  transform: translateY(-27px) scale(0.8);
}
input:focus + .form__control-label:before,
input.is-valid + .form__control-label:before,
textarea:focus + .form__control-label:before,
textarea.is-valid + .form__control-label:before {
  content: "";
  height: 6px;
  width: 104%;
  position: absolute;
  left: -2px;
  right: 0;
  background-color: #F0F5FF;
  z-index: -1;
  bottom: 5px;
}

.form__group--phone input:focus + .form__control-label,
.form__group--phone input.is-valid + .form__control-label {
  transform: translateY(-29px) translateX(-183px) scale(0.8);
}

input[type=password]:focus + .form__control-label,
.form__group--password .form__control:focus + .form__control-label,
input[type=password].is-valid + .form__control-label, .form__group--password .form__control.is-valid + .form__control-label {
  left: 16px;
}

.form {
  gap: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.form .card {
  width: 100%;
}
.form .card + .card {
  margin-top: 0;
}
.form__cards {
  gap: 16px;
}
.form__title {
  font-size: 14px;
  color: #2E2E82;
  margin-bottom: 15px;
  font-family: "Poppins-Bold", sans-serif;
}
.form__title--grey {
  color: #626F86;
  font-family: "Poppins-SemiBold", sans-serif;
}
.form__txt {
  width: 100%;
}
.form__group {
  position: relative;
}
.form__group--password .form__control {
  background-image: url("../../imag/icon/ic-lock.svg");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: 24px;
  padding-right: 42px;
  padding-left: 40px;
}
.form__group--password .form__control-label {
  left: 43px;
}
.form__group--phone input {
  padding-left: 50px;
}
.form__group--phone .pref {
  position: absolute;
  top: 16px;
  left: 14px;
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
.form__group--phone .form__control-label {
  left: 202px;
  top: 24px;
}
.form__group--marker .form__control {
  background-image: url("../../imag/icon/ic-marker-neutral-700.svg");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: 24px;
  padding-right: 42px;
  padding-left: 40px;
}
.form__group--mail .form__control {
  background-image: url("../../imag/icon/ic-mail-neutral-700.svg");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: 24px;
  padding-right: 42px;
  padding-left: 40px;
}
.form__group--mail .form__control + .form__control {
  margin-top: 15px;
}
.form__group .btn__link {
  margin-top: 10px;
  gap: 7px !important;
  font-family: "Poppins-SemiBold", sans-serif !important;
}
.form__group .btn__link img {
  bottom: 3px !important;
  display: block !important;
}
.form__radio {
  -webkit-flex: 1 0 100%;
  flex: 1 0 100%;
}
.form__radio .form__link {
  margin-top: 12px;
}
.form__radio .form__link--int {
  margin-top: 0;
  font-size: 12px;
  display: inline-block;
}
.form__radio label {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.form__radio--boleta {
  position: relative;
  padding: 20px;
  padding-top: 80px;
}
.form__radio--boleta label .card__description {
  line-height: 1.2;
  margin-bottom: 0;
}
.form__radio--boleta label .txt-red {
  color: #FF624E;
}
.form__radio--boleta [type=radio]:checked + label, .form__radio--boleta [type=radio]:not(:checked) + label {
  border: 1px solid #2E2E82;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  gap: 0;
  background: none;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.form__radio--boleta [type=radio]:checked + label {
  border-color: #36B37E;
}
.form__radio--boleta [type=radio]:checked + label + .box-info .btn {
  opacity: 1;
  visibility: visible;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.form__radio--boleta .box-info {
  position: relative;
}
.form__radio--boleta .btn {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
.form__radio--cilindro {
  position: relative;
  padding: 20px 0;
  padding-top: 70px;
}
.form__radio--cilindro [type=radio]:checked + label, .form__radio--cilindro [type=radio]:not(:checked) + label {
  border: 1px solid #2E2E82;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  gap: 0;
  background: none;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.form__radio--cilindro [type=radio]:checked + label {
  border-color: #36B37E;
}
.form__radio--cilindro [type=radio]:checked + label + .box-info .btn {
  opacity: 1;
  visibility: visible;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.form__radio--cilindro .box-info {
  position: relative;
  margin-right: 1px;
  margin-left: 1px;
}
.form__radio--cilindro .box-info .swiper {
  padding: 24px 0 !important;
}
.form__radio--cilindro .box-info .card__total {
  padding: 0 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.form__radio--cilindro select {
  width: 90%;
  display: block;
  margin: 0 auto;
  height: 44px;
}
.form__radio--repetir [type=radio]:checked + label, .form__radio--repetir [type=radio]:not(:checked) + label {
  background: none;
  border: none;
}
.form__radio--repetir [type=radio]:checked + label + .box-info {
  opacity: 1;
  visibility: visible;
}
.form__radio--repetir .box-info {
  background-color: #F1F2F4;
  padding: 15px;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.form__radio--repetir .box-info .box-producto {
  position: relative;
}
.form__radio--repetir .box-info .box-producto:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.form__radio--repetir .box-info .tooltip {
  background-color: #DBE8FF;
  padding: 16px;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: 0.3s all ease;
  bottom: 100%;
  min-width: 200px;
  margin-bottom: 15px;
  left: -5px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  -moz-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
}
.form__radio--repetir .box-info .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #DBE8FF transparent transparent transparent;
}
.form__radio--repetir .box-info .tooltip li {
  font-size: 13px;
  color: #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
.form__radio--repetir .box-info .tooltip li + li {
  margin-top: 12px;
}
.form__radio--repetir .box-info .txt {
  font-size: 14px;
  color: #626F86;
  cursor: pointer;
  line-height: 1.3;
  gap: 6px;
  font-family: "Poppins-Bold", sans-serif;
}
.form__radio--repetir .box-info .txt img {
  position: relative;
  bottom: 1px;
  width: 18px;
}
.form__radio--simple [type=checkbox]:checked + label, .form__radio--simple [type=checkbox]:not(:checked) + label {
  background: none;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 30px;
}
@media (max-width: 426px) {
  .form__radio--simple [type=checkbox]:checked + label, .form__radio--simple [type=checkbox]:not(:checked) + label {
    font-size: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form__radio--simple [type=checkbox]:checked + label, .form__radio--simple [type=checkbox]:not(:checked) + label {
    font-size: 14px;
  }
}
.form__radio--simple [type=checkbox]:checked + label:before, .form__radio--simple [type=checkbox]:not(:checked) + label:before {
  left: 0;
  top: -2px;
}
.form__radio--simple [type=checkbox]:checked + label:after, .form__radio--simple [type=checkbox]:not(:checked) + label:after {
  left: 3px;
  top: 1px;
}
.form__radio--sm [type=radio]:checked + label,
.form__radio--sm [type=radio]:not(:checked) + label,
.form__radio--sm [type=checkbox]:checked + label,
.form__radio--sm [type=checkbox]:not(:checked) + label {
  padding: 14px 15px 14px 45px;
}
@media (max-width: 426px) {
  .form__radio--sm [type=radio]:checked + label,
  .form__radio--sm [type=radio]:not(:checked) + label,
  .form__radio--sm [type=checkbox]:checked + label,
  .form__radio--sm [type=checkbox]:not(:checked) + label {
    padding-left: 50px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form__radio--sm [type=radio]:checked + label,
  .form__radio--sm [type=radio]:not(:checked) + label,
  .form__radio--sm [type=checkbox]:checked + label,
  .form__radio--sm [type=checkbox]:not(:checked) + label {
    padding-left: 50px;
  }
}
.form__radio--sm [type=radio]:checked + label:before,
.form__radio--sm [type=radio]:not(:checked) + label:before,
.form__radio--sm [type=checkbox]:checked + label:before,
.form__radio--sm [type=checkbox]:not(:checked) + label:before {
  top: 12px;
}
.form__radio--sm [type=radio]:checked + label:after,
.form__radio--sm [type=radio]:not(:checked) + label:after,
.form__radio--sm [type=checkbox]:checked + label:after,
.form__radio--sm [type=checkbox]:not(:checked) + label:after {
  top: 15px;
}
.form__radio--sm [type=checkbox]:checked + label,
.form__radio--sm [type=checkbox]:not(:checked) + label {
  padding: 13px 14px 13px 45px;
  gap: 5px;
  font-size: 12px;
}
.form__control:focus, .form__control:focus-visible {
  border-color: #4589FF;
}
.form__control:focus + label, .form__control:focus-visible + label {
  color: #4589FF;
}
.form__control--disabled {
  background-color: #F1F2F4;
  border: none;
  color: #626F86;
}
.form__control--disabled::-webkit-input-placeholder {
  color: #626F86;
}
.form__control--disabled:-moz-placeholder {
  color: #626F86;
}
.form__control--disabled::-moz-placeholder {
  color: #626F86;
}
.form__control--disabled:-ms-input-placeholder {
  color: #626F86;
}
.form__control--error {
  color: #FF624E;
  border-color: #FF624E;
}
.form__control--error::-webkit-input-placeholder {
  color: #FF624E;
}
.form__control--error:-moz-placeholder {
  color: #FF624E;
}
.form__control--error::-moz-placeholder {
  color: #FF624E;
}
.form__control--error:-ms-input-placeholder {
  color: #FF624E;
}
.form__control--error:focus, .form__control--error:focus-visible {
  border-color: #FF624E;
}
.form__control--error label, .form__control--error + label + .pref {
  color: #FF624E;
}
.form__control--error + .form__control-label {
  color: #FF624E;
}
.form__control--error + .form__control-label + .toggle-password {
  background-image: url("../../imag/icon/ic-eye-red.svg");
}
.form__control--error + .form__control-label + .toggle-password.eye-slashed {
  background-image: url("../../imag/icon/ic-eye-slashed-red.svg");
}
.form__control--error + .form__control-label + .input-icon {
  background-image: url("../../imag/icon/ic-close-circle.svg");
}
.form__control--valid {
  border-color: #36B37E;
  padding-right: 40px;
}
.form__control--valid:focus, .form__control--valid:focus-visible {
  border-color: #36B37E;
}
.form__control--valid label {
  color: #36B37E;
}
.form__control--valid + .form__control-label {
  color: #36B37E;
}
.form__control--valid + .form__control-label + .toggle-password {
  background-image: url("../../imag/icon/ic-check-circle.svg");
}
.form__control--valid + .form__control-label + .toggle-password.eye-slashed {
  background-image: url("../../imag/icon/ic-check-circle.svg");
}
.form__control--valid + .form__control-label + .input-icon {
  background-image: url("../../imag/icon/ic-check-circle.svg");
}
.form__caption {
  margin-top: 8px;
  font-size: 12px;
  color: #626F86;
  gap: 5px;
  line-height: 1.3;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.form__caption--error {
  color: #FF624E;
}
.form__caption--unit {
  display: block;
}
.form__caption--unit sup {
  font-size: 9px;
  margin-right: 3px;
}
.form__caption img {
  width: 16px;
  position: relative;
  bottom: 3px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.form__link {
  display: block;
  margin-top: 15px;
  color: #4589FF;
  font-size: 14px;
  transition: 0.2s all ease;
  gap: 5px;
  line-height: 1.3;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  font-family: "Poppins-SemiBold", sans-serif;
}
.form__link:hover {
  color: #1A53BA;
}
.form__link--center {
  text-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.form__link img {
  width: 16px;
  position: relative;
  bottom: 1px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.form .toggle-password {
  width: 24px;
  height: 24px;
  position: absolute;
  background-image: url("../../imag/icon/ic-eye.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  display: block;
  right: 10px;
  top: 9px;
  cursor: pointer;
}
.form .toggle-password.eye-slashed {
  background-image: url("../../imag/icon/ic-eye-slashed.svg");
}
.form .input-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  display: block;
  right: 10px;
  top: 9px;
  cursor: pointer;
}
.form .input-icon__mail {
  background-image: url("../../imag/icon/ic-mail.svg");
}
.form .r-slider {
  position: relative;
  padding: 40px 0 60px;
}
.form .r-slider__min-value, .form .r-slider__max-value {
  font-size: 12px;
  position: absolute;
  color: #626F86;
  bottom: 60px;
  font-family: "Poppins-Bold", sans-serif;
}
.form .r-slider__min-value sup, .form .r-slider__max-value sup {
  font-size: 8px;
}
.form .r-slider__min-value {
  left: 0;
}
.form .r-slider__max-value {
  right: 0;
}
.form .r-slider__current-value {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 46px;
  height: 1em;
  text-align: center;
  color: #2B75AF;
  white-space: nowrap;
  font-size: 14px;
  font-family: "Poppins-Bold", sans-serif;
}
.form .r-slider__current-value::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-image: url("../../imag/icon/ic-bag-blue-900.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.form .r-slider__current-value sup {
  font-size: 10px;
}
.form .r-slider__current-value .r-slider__unit {
  display: inline-block;
}
.form .r-slider__range {
  position: relative;
  float: left;
  width: 100%;
  padding: 0 0.9375rem;
}
.form .r-slider__unit {
  margin-left: 2px;
  display: none;
}
.form .r-slider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-height: 8px;
  min-height: auto;
  padding: 0;
  border-radius: 4px;
  background: #6c6d70;
  box-sizing: content-box;
  border: none;
  cursor: pointer;
}
.form .r-slider input[type=range]:focus {
  outline: none;
}
.form .r-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #2E2E82;
  border-radius: 50%;
  background: #2E2E82;
}
.form .r-slider input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #2E2E82;
  border-radius: 50%;
  background: #2E2E82;
}

.quantity {
  background-color: #F0F5FF;
  border: 1px solid #2E2E82;
  border-radius: 3rem;
  margin-top: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.quantity__input {
  width: 50px;
  font-size: 14px;
  text-align: center;
  color: #2E2E82;
  border: none;
  font-family: "Poppins-Bold", sans-serif;
}
.quantity__input::-webkit-outer-spin-button, .quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity__input:focus {
  border: none;
}
.quantity__input[type=number] {
  -moz-appearance: textfield;
}
.quantity__decrease, .quantity__increase {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}
.quantity__decrease {
  background-image: url("../../imag/icon/ic-minus-blue.svg");
}
.quantity__increase {
  background-image: url("../../imag/icon/ic-plus-blue.svg");
}

.radio-group {
  gap: 16px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.radio-group.row {
  gap: 26px;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .radio-group.row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .radio-group.row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .radio-group.row {
    gap: 12px;
  }
}
.radio-group.row .form__radio {
  -webkit-flex: 0 1 33.333333%;
  flex: 0 1 33.333333%;
}
.radio-group.row .form__radio label {
  min-height: 165px;
  gap: 5px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .radio-group.row .form__radio label {
    font-size: 13px;
    min-height: 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .radio-group.row .form__radio label {
    font-size: 13px;
    min-height: 100px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .radio-group.row .form__radio label {
    font-size: 13px;
    min-height: 115px;
  }
}
.radio-group.row .form__radio label img {
  max-width: 180px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .radio-group.row .form__radio label img {
    max-width: 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .radio-group.row .form__radio label img {
    max-width: 100px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .radio-group.row .form__radio label img {
    max-width: 100px;
  }
}
.radio-group + .alert {
  margin-top: 20px;
}

[type=radio]:checked,
[type=radio]:not(:checked),
[type=checkbox]:checked,
[type=checkbox]:not(:checked) {
  display: none;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label,
[type=checkbox]:checked + label,
[type=checkbox]:not(:checked) + label {
  position: relative;
  cursor: pointer;
  width: 100%;
  line-height: 20px;
  padding: 25px 15px 25px 45px;
  background-color: #F0F5FF;
  color: #2E2E82;
  border-radius: 12px;
  transition: 0.3s all ease;
  border: 1px solid #2E2E82;
  font-family: "Poppins-SemiBold", sans-serif;
}
@media (max-width: 426px) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label,
  [type=checkbox]:checked + label,
  [type=checkbox]:not(:checked) + label {
    padding: 15px 15px 15px 45px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label,
  [type=checkbox]:checked + label,
  [type=checkbox]:not(:checked) + label {
    padding: 15px 15px 15px 45px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label,
  [type=checkbox]:checked + label,
  [type=checkbox]:not(:checked) + label {
    padding: 15px 15px 15px 45px;
  }
}

[type=radio]:checked + label,
[type=checkbox]:checked + label {
  border-color: #36B37E;
}

[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before,
[type=checkbox]:checked + label:before,
[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 23px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid #2E2E82;
  background-color: #ffffff;
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  [type=radio]:checked + label:before,
  [type=radio]:not(:checked) + label:before,
  [type=checkbox]:checked + label:before,
  [type=checkbox]:not(:checked) + label:before {
    top: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  [type=radio]:checked + label:before,
  [type=radio]:not(:checked) + label:before,
  [type=checkbox]:checked + label:before,
  [type=checkbox]:not(:checked) + label:before {
    top: 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  [type=radio]:checked + label:before,
  [type=radio]:not(:checked) + label:before,
  [type=checkbox]:checked + label:before,
  [type=checkbox]:not(:checked) + label:before {
    top: 15px;
  }
}

[type=checkbox]:checked + label:before,
[type=checkbox]:not(:checked) + label:before {
  border-radius: 6px;
}

[type=radio]:checked + label:before,
[type=checkbox]:checked + label:before {
  border-color: #36B37E;
  background-color: #36B37E;
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after,
[type=checkbox]:checked + label:after,
[type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../../imag/icon/ic-check-white.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  position: absolute;
  top: 26px;
  left: 17px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 426px) {
  [type=radio]:checked + label:after,
  [type=radio]:not(:checked) + label:after,
  [type=checkbox]:checked + label:after,
  [type=checkbox]:not(:checked) + label:after {
    top: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  [type=radio]:checked + label:after,
  [type=radio]:not(:checked) + label:after,
  [type=checkbox]:checked + label:after,
  [type=checkbox]:not(:checked) + label:after {
    top: 18px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  [type=radio]:checked + label:after,
  [type=radio]:not(:checked) + label:after,
  [type=checkbox]:checked + label:after,
  [type=checkbox]:not(:checked) + label:after {
    top: 18px;
  }
}

[type=radio]:not(:checked) + label:after,
[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type=radio]:checked + label:after,
[type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.tanque-detail {
  gap: 6px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tanque-detail img {
  width: 24px;
  position: relative;
  bottom: 3px;
}

html {
  -webkit-text-size-adjust: none;
  font-size: 16px;
}

body {
  position: relative;
  font-size: 16px;
  background-color: #F1F2F4;
  font-family: "Poppins-Regular", sans-serif;
}

* {
  box-sizing: border-box;
  font-variant: none !important;
  font-family: "Poppins-Regular", sans-serif;
}
*:after, *:before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  outline: none;
  color: #2E2E82;
}

button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.img-wrap img {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

hr {
  height: 1px;
  border: none;
  margin: 0;
  background-color: #F1F5FF;
}

.media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}

.media iframe, .media object, .media embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.separa {
  width: 100%;
  clear: both;
  height: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.separator {
  margin: 20px 0;
  height: 1px;
  background-color: #B3B9C4;
}

.hide {
  display: none !important;
}

.aleft {
  float: left;
}

.text-center {
  text-align: center !important;
}

.container {
  width: 100%;
}

.main {
  z-index: 1;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  padding: 70px 0;
}
@media (max-width: 426px) {
  .main {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main {
    padding: 30px 0;
  }
}

.auxi {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .auxi {
    max-width: 1140px;
  }
}

.responsive {
  display: none;
}

.access1 {
  height: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0);
  overflow: hidden;
}

@media (max-width: 426px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 1399px) {
  .desktop {
    display: block;
  }
}

@media (max-width: 426px) {
  .mobile {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .mobile {
    display: block;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 1399px) {
  .mobile {
    display: none !important;
  }
}

.reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.bold {
  font-family: "Poppins-Bold", sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.art-row article {
  margin-bottom: 0;
}

.inv {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.bg-yellow {
  background-color: #FCDB00;
}

.bg-blue {
  background-color: #2E2E82;
}
.bg-blue .card__title, .bg-blue .card__description {
  color: #ffffff;
}

.mt-20 {
  margin-top: 20px;
}

.txt-green {
  color: #36B37E;
}

.txt-red {
  color: #FF624E;
}

.txt-blue {
  color: #2E2E82;
}

.swiper {
  padding: 24px 0;
}
@media (max-width: 426px) {
  .swiper {
    padding: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper {
    padding: 0 !important;
  }
}
.prod-content .swiper-slide {
  height: auto !important;
  margin-bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .prod-content .swiper-slide {
    width: 60%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content .swiper-slide {
    width: 60%;
  }
}
.prod-content .swiper-slide .card__art {
  margin-bottom: 0;
}

.swiper-wrapper {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: stretch !important;
  -moz-box-align: stretch !important;
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  align-items: stretch !important;
  height: auto !important;
}

.swiper-slide {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  height: auto !important;
}

.swiper-button-next, .swiper-button-prev {
  outline: none;
  margin-top: -40px !important;
}
@media (max-width: 426px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .swiper-pagination {
    bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-pagination {
    bottom: 0;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  border: 1px solid #2E2E82;
  height: 16px;
  width: 16px;
  margin: 0 7px !important;
  transition: 0.2s all ease;
  border-radius: 50%;
  opacity: 1;
}
@media (max-width: 426px) {
  .swiper-pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-pagination .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
  }
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #FDCD00;
}

.overlay {
  transition: 0.3s all ease;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
}
.overlay .animacion-loader {
  max-width: 900px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

tspan:not(.highcharts-br) {
  fill: #2B75AF !important;
  font-family: "Poppins-ExtraBold", sans-serif !important;
}

.highcharts-legend-item text {
  font-family: "Poppins-Bold", sans-serif !important;
  fill: #626F86 !important;
}

text:has(.highcharts-br) {
  fill: #626F86 !important;
  font-family: "Poppins-Bold", sans-serif !important;
}

.construccion .main {
  height: 100vh;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.construccion .row {
  gap: 40px;
  max-width: 85%;
  width: 100%;
  align-items: center;
  padding: 60px;
  border-radius: 30px;
  background: #ffffff;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  -moz-box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(15, 23, 42, 0.15);
}
@media (max-width: 426px) {
  .construccion .row {
    padding: 40px 20px;
    max-width: 90%;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .row {
    padding: 40px 20px;
    max-width: 90%;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .construccion .row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .construccion .row {
    padding: 50px;
    max-width: 95%;
  }
}
.construccion .logo {
  max-width: 250px;
  margin-bottom: 40px;
}
@media (max-width: 426px) {
  .construccion .logo {
    max-width: 220px;
    margin: 0 auto 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .logo {
    max-width: 220px;
    margin: 0 auto 40px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .construccion .logo {
    margin: 0 auto 40px;
  }
}
@media (max-width: 426px) {
  .construccion .content {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .content {
    text-align: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .construccion .content {
    text-align: center;
  }
}
.construccion .content__title {
  font-size: 60px;
  color: #2E2E82;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Poppins-Bold", sans-serif;
}
@media (max-width: 426px) {
  .construccion .content__title {
    font-size: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .content__title {
    font-size: 40px;
  }
}
.construccion .content__description {
  font-size: 22px;
  line-height: 1.5;
  color: #8590A2;
}
@media (max-width: 426px) {
  .construccion .content__description {
    font-size: 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .content__description {
    font-size: 16px;
  }
}
.construccion .img-wrap {
  -webkit-flex: 0 1 600px;
  flex: 0 1 600px;
}
@media (max-width: 426px) {
  .construccion .img-wrap {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .img-wrap {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .construccion .img-wrap {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 426px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .xs-1 {
    -webkit-flex: 0 1 8.3333333333%;
    flex: 0 1 8.3333333333%;
  }
  .xs-2 {
    -webkit-flex: 0 1 16.6666666667%;
    flex: 0 1 16.6666666667%;
  }
  .xs-25 {
    -webkit-flex: 0 1 20%;
    flex: 0 1 20%;
  }
  .xs-3 {
    -webkit-flex: 0 1 25%;
    flex: 0 1 25%;
  }
  .xs-4 {
    -webkit-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
  .xs-5 {
    -webkit-flex: 0 1 41.6666666667%;
    flex: 0 1 41.6666666667%;
  }
  .xs-6 {
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .xs-7 {
    -webkit-flex: 0 1 58.3333333333%;
    flex: 0 1 58.3333333333%;
  }
  .xs-8 {
    -webkit-flex: 0 1 66.6666666667%;
    flex: 0 1 66.6666666667%;
  }
  .xs-9 {
    -webkit-flex: 0 1 75%;
    flex: 0 1 75%;
  }
  .xs-10 {
    -webkit-flex: 0 1 83.3333333333%;
    flex: 0 1 83.3333333333%;
  }
  .xs-11 {
    -webkit-flex: 0 1 91.6666666667%;
    flex: 0 1 91.6666666667%;
  }
  .xs-12 {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .sm-1 {
    -webkit-flex: 0 1 8.3333333333%;
    flex: 0 1 8.3333333333%;
  }
  .sm-2 {
    -webkit-flex: 0 1 16.6666666667%;
    flex: 0 1 16.6666666667%;
  }
  .sm-25 {
    -webkit-flex: 0 1 20%;
    flex: 0 1 20%;
  }
  .sm-3 {
    -webkit-flex: 0 1 25%;
    flex: 0 1 25%;
  }
  .sm-4 {
    -webkit-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
  .sm-5 {
    -webkit-flex: 0 1 41.6666666667%;
    flex: 0 1 41.6666666667%;
  }
  .sm-6 {
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .sm-7 {
    -webkit-flex: 0 1 58.3333333333%;
    flex: 0 1 58.3333333333%;
  }
  .sm-8 {
    -webkit-flex: 0 1 66.6666666667%;
    flex: 0 1 66.6666666667%;
  }
  .sm-9 {
    -webkit-flex: 0 1 75%;
    flex: 0 1 75%;
  }
  .sm-10 {
    -webkit-flex: 0 1 83.3333333333%;
    flex: 0 1 83.3333333333%;
  }
  .sm-11 {
    -webkit-flex: 0 1 91.6666666667%;
    flex: 0 1 91.6666666667%;
  }
  .sm-12 {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media screen and (min-width: 991px) and (max-width: 1199px) {
  .md-1 {
    -webkit-flex: 0 1 8.3333333333%;
    flex: 0 1 8.3333333333%;
  }
  .md-2 {
    -webkit-flex: 0 1 16.6666666667%;
    flex: 0 1 16.6666666667%;
  }
  .md-25 {
    -webkit-flex: 0 1 20%;
    flex: 0 1 20%;
  }
  .md-3 {
    -webkit-flex: 0 1 25%;
    flex: 0 1 25%;
  }
  .md-4 {
    -webkit-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
  .md-5 {
    -webkit-flex: 0 1 41.6666666667%;
    flex: 0 1 41.6666666667%;
  }
  .md-6 {
    max-width: 50%;
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .md-7 {
    -webkit-flex: 0 1 58.3333333333%;
    flex: 0 1 58.3333333333%;
  }
  .md-8 {
    -webkit-flex: 0 1 66.6666666667%;
    flex: 0 1 66.6666666667%;
  }
  .md-9 {
    -webkit-flex: 0 1 75%;
    flex: 0 1 75%;
  }
  .md-10 {
    -webkit-flex: 0 1 83.3333333333%;
    flex: 0 1 83.3333333333%;
  }
  .md-11 {
    -webkit-flex: 0 1 91.6666666667%;
    flex: 0 1 91.6666666667%;
  }
  .md-12 {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media screen and (min-width: 1200px) {
  .lg-1 {
    -webkit-flex: 0 1 8.3333333333%;
    flex: 0 1 8.3333333333%;
  }
  .lg-2 {
    -webkit-flex: 0 1 16.6666666667%;
    flex: 0 1 16.6666666667%;
  }
  .lg-25 {
    -webkit-flex: 0 1 20%;
    flex: 0 1 20%;
  }
  .lg-3 {
    -webkit-flex: 0 1 25%;
    flex: 0 1 25%;
  }
  .lg-4 {
    -webkit-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
  }
  .lg-5 {
    -webkit-flex: 0 1 41.6666666667%;
    flex: 0 1 41.6666666667%;
  }
  .lg-6 {
    max-width: 50%;
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;
  }
  .lg-7 {
    -webkit-flex: 0 1 58.3333333333%;
    flex: 0 1 58.3333333333%;
  }
  .lg-8 {
    -webkit-flex: 0 1 66.6666666667%;
    flex: 0 1 66.6666666667%;
  }
  .lg-9 {
    -webkit-flex: 0 1 75%;
    flex: 0 1 75%;
  }
  .lg-10 {
    -webkit-flex: 0 1 83.3333333333%;
    flex: 0 1 83.3333333333%;
  }
  .lg-11 {
    -webkit-flex: 0 1 91.6666666667%;
    flex: 0 1 91.6666666667%;
  }
  .lg-12 {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.login .main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login .logo {
  margin-bottom: 30px;
}
.login .logo img {
  max-width: 380px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 426px) {
  .login .logo img {
    max-width: 270px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login .logo img {
    max-width: 270px;
  }
}
.login .card {
  max-width: 424px;
}
@media (max-width: 426px) {
  .login .card {
    max-width: 90%;
    width: 100%;
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login .card {
    max-width: 400px;
    width: 100%;
    padding: 30px;
  }
}
.login .card__header {
  margin-bottom: 27px;
  text-align: center;
}
@media (max-width: 426px) {
  .login .card__title {
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login .card__title {
    font-size: 18px;
  }
}
.login .btn__primary {
  width: 100%;
}
.login .form {
  margin-bottom: 20px;
}
.login .form__control {
  width: 100%;
}
.login .bar {
  display: block;
  position: relative;
  bottom: 0;
  height: 10px;
  width: 100%;
  background-image: url("../../imag/master/bar.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
@media (max-width: 426px) {
  .login .bar {
    background-image: url("../../imag/master/bar_m.svg");
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login .bar {
    background-image: url("../../imag/master/bar_m.svg");
  }
}
.login .notificacion.notificacion-verde {
  background-color: #E3FCEF;
  border: 2px solid #36B37E;
  margin-top: 15px;
  color: #2C3E5D;
  font-size: 13px;
  border-radius: 8px;
  padding: 14px;
  line-height: 1.4;
  margin-bottom: 0;
  font-family: "Poppins-SemiBold", sans-serif;
}

/*# sourceMappingURL=login.css.map */