:root {
  --main-color: #002E62;
  --second-color: #008CCA;
  --third-color: #7DB804;
  --body-color: #646E78;
  --background-color: #E3ECFA;
  --warning-color: #E4B931;
  --danger-color: #FD493F;
  --background-color-hover-primary: #68BFF5;
  --primary-color-background: #e4ecfa;
  --selected-item: rgb(194, 128, 222);
  --disable-day: #f8f9fa;
  --light-gray: #d6d9e6;
  --white: #f8f9fa;
  --body-color: #28292a;
  --disable-color: #a7acb2;
  --font-sans-serif: "Myriad Pro", sans-serif;
  --root-font-size: 16px;
  --body-font-family: var(--font-sans-serif);
  --body-font-size: 0.9375rem;
  --body-font-weight: 400;
  --body-line-height: 1.375;
  --btn-color: #6FA500;
}


@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Regular.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/MyriadPro-Regular.woff') format('woff'),
    /* Pretty Modern Browsers */
    url('../fonts/MyriadPro-Regular.ttf') format('truetype');
  /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'myriad_problack';
  src: url('../fonts/myriad_pro_black-webfont.woff2') format('woff2'),
    url('../fonts/myriad_pro_black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/**
* Estilos principales 
**/
body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
.fw-bolder,
b {
  font-family: 'myriad_problack', sans-serif;
}

.loader23 {
  position: relative;
  margin: 0 auto;
  width: 100px;
}

.loader23:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular23 {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path23 {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {

  100%,
  0% {
    stroke: #d62d20;
  }

  40% {
    stroke: #0057e7;
  }

  66% {
    stroke: #008744;
  }

  80%,
  90% {
    stroke: #ffa700;
  }
}

.showbox23 {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 5%;
  background-color: #e0e2eb4b;
}



.bgColor {
  background-color: var(--background-color);
}

.colorMain {
  color: var(--main-color);
}

.bgMain {
  background-color: var(--main-color);
}

.bgBtn {
  background-color: var(--btn-color);
}

.secondColor {
  color: var(--second-color);
}

.btnPrimary {
  background-color: var(--btn-color);
  color: var(--white);
  height: 56px;
}

.btnPrimary:hover {
  background-color: var(--white);
  color: var(--main-color);
  border: solid 2px var(--main-color);
}

.btnSecond {
  background-color: white;
  color: var(--body-color);
  border: solid 2px var(--body-color);
}

.btnSecond:hover {
  background-color: var(--body-color);
  color: var(--white);
  border: solid 2px var(--body-color);
}

.link {
  color: var(--btn-color);
}


/**
* Componentes
.input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.input-wrapper label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--body-color);
  display: flex;
  justify-content: space-between;
}**/
.btn-tertiary {
  color: white;
  background-color: #41638A;
  height: 58px;
  width: 100%;
}

.btn-tertiary svg {
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.4;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
  color: #426389;
  border-color: #426389;
}

.btn-tertiary:hover svg,
.btn-tertiary:focus svg {
  fill: #426389;
  stroke: #426389;
}

/* input file style */
.input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.input-file+.js-labelFile {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
  cursor: pointer;
}

.input-file+.js-labelFile.has-file {
  color: #41638A;
  background-color: white;
  border: #41638A solid;
}

.input-file+.js-labelFile.has-file h5,

.input-file+.js-labelFile.has-file p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 270px;
}

.btn-tertiary.js-labelFile.has-file svg {
  fill: #426389;
  stroke: #426389;
}

.btn-tertiary.js-labelFile svg:nth-child(2),
.text-add {
  display: none;
}

.btn-tertiary.js-labelFile.has-file svg:first-child {
  display: none;
}

.btn-tertiary.js-labelFile.has-file svg:nth-child(2),
.has-file .text-add {
  display: block;
}






.input-wrapper {
  width: 100%;
}

.input-wrapper label.field-validation-error>.text-danger span:last-child {
  color: #dc3545;
  text-align: end;
}

.input-wrapper input {
  border: solid 0.125rem var(--light-gray);
}

.input-wrapper input:focus-within {
  border-color: var(--second-color);
  outline: none;
}

.input-wrapper input.input-validation-error {
  border-color: #dc3545 !important;
}

.input-wrapper input:disabled {
  cursor: not-allowed;
}

.input-wrapper select {
  border: solid 0.125rem var(--light-gray);
}

.input-wrapper select.input-validation-error {
  border-color: #dc3545 !important;
}

.input-wrapper select:disabled {
  cursor: not-allowed;
}

.button-primary {
  background-color: var(--main-color);
  font-size: 17px;
  color: var(--white);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-weight: bold;
  padding: 0 16px;
  line-height: 48px;
  width: 100% !important;
}

.button-primary:hover {
  color: var(--white);
  background-color: var(--second-color);
}

.button-secondary {
  background-color: var(--third-color);
  font-size: 17px;
  color: var(--white);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-weight: bold;
  padding: 0 16px;
  line-height: 48px;
}

.button-secondary:hover {
  color: var(--white);
  background-color: var(--third-color);
}

input[type=radio]:focus {
  background-color: var(--main-color) !important;
}

.main-body {
  min-height: 400px;
  height: auto;
  padding-left: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
}

/**
* Footer
*/
.footer {
  min-height: 90px;
  width: 100%;
  background-color: #E4ECFA;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid gray;
  display: flex;
  flex-direction: column;
}

.footer-top {
  background-color: var(--main-color);
  padding: 43px 0 83px;
}

.footer-top .title-footer {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 5px 5px 5px 5px;
}

.footer-top a {
  color: var(--white);
}

.footer-top a:link {
  text-decoration: none;
}

.footer-top i {
  color: var(--white);
}

.footer-top .icon-name {
  color: var(--white);
  font-size: 14px;
  padding: 0 0 0 5px;
}

.footer-top .link-item {
  margin-bottom: 5px;
  margin-top: 15px;
}

.footer-top .logo-footer {
  position: relative;
}

.footer-top .logo-footer:after {
  background-color: var(--white);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 90px;
  top: 0;
  width: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  color: var(--main-color);
}

.footer-bottom .text-footer {
  font-weight: 600;
  font-size: 14px;
  color: var(--main-color);
  margin-right: 20px;
}

.footer-bottom .social-icons {
  list-style: none !important;
  display: grid;
  grid-column-gap: 10px;
}

.footer-bottom .social-icons a {
  color: #003670;
}

.footer-bottom .copyright {
  font-weight: 400 !important;
}

.tab-custom {
  color: black;
  opacity: 50%;
  max-height: max-content;
  width: 100%;
  cursor: pointer;
}

.tab-custom:hover {
  color: black;
  background: #ffffff;
  opacity: 1;
}

.tab-custom.active {
  opacity: 1;
  background-color: white !important;
  color: black !important;
  padding: 1rem 0;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.tab-custom div.rounded-circle {
  height: 34px;
  width: 34px;
}

.tab-custom.captured div.rounded-circle {
  background: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.tab-custom.captured div.rounded-circle h6 {
  content: url('../img/menu/correct.svg');
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .selectLanguage {
    color: transparent;
    text-overflow: ellipsis;
    width: 86px;
  }

  #flag-default {
    left: 54px !important;
  }
}

@media (max-width: 991px) {
  .tab-custom .col h5 {
    font-size: 12px;
  }

  .stepper-header {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8f9fa;
    box-shadow: -2px 5px 14px 20px #f8f9fa;
    padding: 18px 0;
  }
}

@media (min-width: 992px) {
  .stepper-header {
    max-width: 265px;
    position: sticky;
    top: 0;
    height: fit-content;
    padding: 1rem 0;
  }
}

.stepper-content {
  height: fit-content;
}


/**
* Stepper

.stepper {
  display: flex;
  min-inline-size: 18rem;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.375rem;
}
.stepper-header {
  min-inline-size: 18rem; 
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
}
.stepper .step-item {
  flex-wrap: nowrap;
  font-weight: 500;
  gap: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5;
  color: #6c757d;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border: none;
  border-radius: 0.25rem;
  padding-block: 0.63rem;
}*/
.stepper .stepper-content {
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  font-size: 0.875rem;
}

.stepper .buttons-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.stepper .buttons-footer button {
  width: 50% !important;
}

.buttons-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.buttons-bottom .bb-primary {
  width: 50% !important;
}

.boxShadow {
  box-shadow: RGB(0 0 0/7%) 0px 2px 8px;
}

small,
.small {
  font-size: 0.8125rem;
}

/*# sourceMappingURL=site.css.map */
thead tr th {
  padding: 16px !important;
}

tr {
  vertical-align: middle;
}

th {
  min-width: 112px;
}

#stepperContent td,
.tableContent td {
  min-width: 225px;
}

#stepperContent td:first-child,
.tableContent td:first-child {
  min-width: 145px;
}

.the-datepicker__main td {
  min-width: auto !important;
}

.Calendar-Zeitek {
  position: relative;
}

.the-datepicker__deselect .the-datepicker__deselect-button {
  right: -103px !important;
  top: -40px;
  left: inherit !important;
}


.the-datepicker__main {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  background: #55555569 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999;
}

.the-datepicker__main .the-datepicker__header {
  width: clamp(250px, 697px, 85.5vw) !important;
  margin: auto !important;
  height: auto !important;
  margin-top: 27vh !important;
  background-color: white !important;
}

.the-datepicker__main .the-datepicker__body {
  width: max-content;
  margin: auto;
  margin-top: 0px !important;
  height: auto;
  background-color: white;
}

.the-datepicker__container .the-datepicker__main {
  border-top-left-radius: auto !important;
}

.the-datepicker__main th.the-datepicker__week-day {
  padding: 0.5em 0;
  text-align: center;
  font-weight: bold !important;
  text-transform: uppercase;
  color: var(--main-color) !important;
  min-width: clamp(5px, 12vw, 98px) !important;
}

.the-datepicker__main tbody.the-datepicker__years-body td.the-datepicker__cell {
    padding: 0.5em 0;
    text-align: center;
    font-weight: bold !important;
    text-transform: uppercase;
    color: var(--main-color) !important;
    min-width: clamp(9px, 21vw, 171px) !important;
}

label.error {
  color: #dc3545 !important;
  margin-top: .5rem !important;
  order: 2;
}

.form-select.error,
.form-control.error {
  border-color: #dc3545 !important;
}

.dropdown-item,
.form-select {
  cursor: pointer;
}

#subtitle {
  font-size: 1.25rem;
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

tr td button {
  width: clamp(85px, 12vw, 100px);
}

.minHeight-50vh {
  min-height: 50vh;
}

#flag-default {
  top: 10px;
  left: 45px;
  width: 38px;
  height: 24px;
}

#flag-default img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-6 {
  padding-left: 3.8rem !important;
}

.dropdownEnd {
  left: inherit !important;
  right: 0 !important;
  transform: translate3d(0px, 46px, 0px) !important;
}


.table-responsive-card thead.item-card {
  display: none;
  /* Oculta el encabezado de la tabla en móviles */
}

.tdable-responsive-car tbody.item-card,
.table-responsive-card tr.item-card {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 12px;
  border: solid #d2d2d2;
  margin-bottom: 12px;
  border-radius: 4px;
  padding: 12px;
}

@media (min-width: 768px) {

  .table-responsive-card tbody.item-card,
  .table-responsive-card tr.item-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {

  .table-responsive-card tbody.item-card,
  .table-responsive-card tr.item-card {
    grid-template-columns: repeat(3, 1fr);
  }
}

.table-responsive-card td.item-card {
  display: flex;
  justify-content: center;
  align-items: end;
  border: none;
}

/*.input-group:has(input:not([type="radio"])[required]) label:first-child::after,
.col-12:has(input:not([type="radio"])[required]) label:first-child::after,
.input-group:has(select[required]) label:first-child::after,
.col-12:has(select[required]) label:first-child::after 
*/
.Obligatorioclass::after
{
    content: "*";
    margin-left: 0.3rem;
    font-family: var(--body-font-family);
    opacity: 75%;
    color: red;
    padding: 4px 10px 3px;
    font-size: 12px;
    line-height: 1.6;
}

.ErrorInput {
    margin-left: 0.3rem;
    border: 1px solid #ff000045;
    outline: 0;
    box-shadow: 0 0 0 .25rem #ff000045
}

.radio-option::after{
  display: none;
}

.alertNotification {
  top: -2px;
  left: 2px;
  background: #6fa500;
  color: white;
  font-weight: bolder;
  border-radius: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}