@import "https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700";

/* src/google-fonts.css */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/MaterialIcons-Regular-MMLCVC3Q.woff2") format("woff2"),
    url("./media/MaterialIcons-Regular-6TWP25BK.woff") format("woff"),
    url("./media/MaterialIcons-Regular-XCJQCGCR.otf") format("truetype"),
    url("./media/MaterialIcons-Regular-EOS45EEH.ttf") format("truetype");
}
.material-icons {
  font-family: "Material Icons";
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/MaterialIconsOutlined-Regular-R7NYSXH6.woff2") format("woff2"),
    url("./media/MaterialIconsOutlined-Regular-ED6CGP22.woff") format("woff"),
    url("./media/MaterialIconsOutlined-Regular-PEK2UURX.otf") format("truetype"),
    url("./media/MaterialIconsOutlined-Regular-W3F35M2R.ttf") format("truetype");
}
.material-icons-outlined {
  font-family: "Material Icons Outlined";
}
@font-face {
  font-family: "Material Icons Round";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/MaterialIconsRound-Regular-NGBUOYXH.woff2") format("woff2"),
    url("./media/MaterialIconsRound-Regular-EESBA5FO.woff") format("woff"),
    url("./media/MaterialIconsRound-Regular-FS2END5J.otf") format("truetype"),
    url("./media/MaterialIconsRound-Regular-VZ4YWX4O.ttf") format("truetype");
}
.material-icons-round {
  font-family: "Material Icons Round";
}
@font-face {
  font-family: "Material Icons Sharp";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/MaterialIconsSharp-Regular-MHHNUSDW.woff2") format("woff2"),
    url("./media/MaterialIconsSharp-Regular-DYTW47SX.woff") format("woff"),
    url("./media/MaterialIconsSharp-Regular-VWXI6NNN.otf") format("truetype"),
    url("./media/MaterialIconsSharp-Regular-IYGRF5DB.ttf") format("truetype");
}
.material-icons-sharp {
  font-family: "Material Icons Sharp";
}
@font-face {
  font-family: "Material Icons Two Tone";
  font-style: normal;
  font-weight: 400;
  src:
    url("./media/MaterialIconsTwoTone-Regular-STRC6FFE.woff2") format("woff2"),
    url("./media/MaterialIconsTwoTone-Regular-EWM3XZHG.woff") format("woff"),
    url("./media/MaterialIconsTwoTone-Regular-UDR7MKTJ.otf") format("truetype"),
    url("./media/MaterialIconsTwoTone-Regular-ZFFCA7RH.ttf") format("truetype");
}
.material-icons-two-tone {
  font-family: "Material Icons Two Tone";
}
.material-icons,
.material-icons-outlined,
.material-icons-round,
.material-icons-sharp,
.material-icons-two-tone {
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  vertical-align: top;
  -webkit-font-feature-settings: "liga";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* node_modules/@i4b/template/assets/css/general.css */
*:not(h1):not(h2):not(h3):not(h4):not(ul):not(ol):not(p) {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
html {
  height: 100%;
}
body,
app-root {
  position: relative;
  display: block;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.5em;
  background-color: whitesmoke;
}
h1,
h2,
h3,
h4 {
  line-height: 1.25;
}
label,
a,
h1,
h2,
h3,
h4,
button,
input[type=button],
a.button {
  -webkit-user-select: none;
  user-select: none;
}

/* node_modules/@i4b/template/assets/css/header.css */
#headerpage {
  position: sticky;
  top: 0;
  background-color: var(--dark-color);
  z-index: 2;
}
#headerpage > .menu {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  background-color: var(--dark-color);
}
#headerpage > .menu ul,
#headerpage > .menu ol {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
#headerpage > .menu > ul > li a,
#headerpage > .menu > ul > li label {
  display: block;
  text-decoration: none;
  min-width: 64px;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
}
#headerpage > .menu > ul > li > a,
#headerpage > .menu > ul > li > label {
  color: white;
}
#headerpage > .menu > ul li {
  position: relative;
}
#headerpage > .menu > ul > li > ul {
  display: none;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 8px solid #428fa8;
  width: 256px;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.16);
}
#headerpage > .menu > ul > li:hover > ul,
#headerpage > .menu > ul > li > ul:hover {
  display: block;
}
#headerpage > .menu > ul > li > ul li {
  border: 1px solid whitesmoke;
}
#headerpage > .menu > ul > li > ul > li a:hover {
  color: #428fa8;
}
#headerpage > .menu > ul > li > ul > li ul {
  position: absolute;
  display: none;
  top: 0;
  left: 100%;
  min-width: 256px;
  background-color: white;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.16);
}
#headerpage > .menu > ul > li > ul > li:hover ul {
  display: block;
}
#headerpage > .menu > ul > li .submenu-indicator::after {
  content: "\f054";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  right: 8px;
  line-height: 1.5;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#headerpage .sidebar-menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 4em;
  box-sizing: border-box;
  background-color: var(--dark-color);
}
#headerpage > .sidebar-menu ul,
#headerpage > .sidebar-menu ol {
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
#headerpage .sidebar-menu ul li {
  width: 100%;
}
.sidebar-menu-items,
.sidebar-menu-item-icon {
  width: 56px;
  display: flex;
  justify-content: center;
}
.sidebar-menu-item-icon > * {
  line-height: 1;
}
#collapse-sidebar-menu {
  display: none;
}
#headerpage .sidebar-menu ul li a,
#headerpage .sidebar-menu ul li label {
  position: relative;
  padding: 1em 0;
  width: 100%;
  display: flex;
  align-items: center;
  min-width: 56px;
  color: white;
}
#headerpage .sidebar-menu ul li a:hover,
#headerpage .sidebar-menu ul li label:hover {
  background-color: #555;
}
#headerpage .sidebar-menu ul li a:hover::before,
#headerpage .sidebar-menu ul li label:hover::before {
  position: absolute;
  left: 100%;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
#headerpage .sidebar-menu ul li a:hover::after,
#headerpage .sidebar-menu ul li label:hover::after {
  position: absolute;
  left: 100%;
  margin-left: 16px;
  padding: 1em;
  background-color: white;
  content: attr(data-label);
  color: var(--dark-color);
  text-transform: none;
  border-radius: 8px;
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 8%);
}
.sidebar-menu-label-item {
  line-height: 1;
  display: none;
}
#collapse-sidebar-menu:checked + .sidebar-menu-items {
  width: 256px;
}
#collapse-sidebar-menu:checked + .sidebar-menu-items > li a,
#collapse-sidebar-menu:checked + .sidebar-menu-items > li label,
#collapse-sidebar-menu:checked ~ .sidebar-menu-options > li a,
#collapse-sidebar-menu:checked ~ .sidebar-menu-options > li label {
  justify-content: flex-start;
}
#collapse-sidebar-menu:checked + .sidebar-menu-items .sidebar-menu-label-item,
#collapse-sidebar-menu:checked ~ .sidebar-menu-options .sidebar-menu-label-item {
  display: block;
}
#collapse-sidebar-menu:checked + .sidebar-menu-items li a:hover::after,
#collapse-sidebar-menu:checked + .sidebar-menu-items li label:hover::after,
#collapse-sidebar-menu:checked + .sidebar-menu-items li a:hover::before,
#collapse-sidebar-menu:checked + .sidebar-menu-items li label:hover::before,
#collapse-sidebar-menu:checked ~ .sidebar-menu-options li label:hover::after,
#collapse-sidebar-menu:checked ~ .sidebar-menu-options li label:hover::before {
  display: none;
  content: none;
}
@media only screen and (max-width: 480px) {
  #headerpage {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  #headerpage .sidebar-menu {
    position: relative;
    padding-top: 0;
    height: auto;
  }
  #headerpage .sidebar-menu .sidebar-menu-items {
    position: absolute;
    padding-top: 3.5em;
    height: 100vh;
    background-color: var(--dark-color);
    align-content: flex-start;
    width: 256px;
    display: none;
  }
  #headerpage .sidebar-menu .sidebar-menu-items .sidebar-menu-label-item {
    display: block;
  }
  #headerpage .sidebar-menu .sidebar-menu-items li a,
  #headerpage .sidebar-menu .sidebar-menu-items li label {
    justify-content: flex-start;
  }
}

/* node_modules/@i4b/template/assets/css/input-material.css */
.i4b-input {
  position: relative;
  min-width: 150px;
  display: flex;
  align-items: center;
  margin: 1em 0 1em 0;
}
.i4b-input > label {
  position: absolute;
  left: 12px;
  transition: all 0.32s ease;
  font-size: 14px;
  pointer-events: none;
  line-height: 1em;
  top: 0;
  padding: 8px 0;
}
.i4b-input > input[type=text]:placeholder-shown + label,
.i4b-input > input[type=password]:placeholder-shown + label,
.i4b-input > input[type=date]:placeholder-shown + label,
.i4b-input > input[type=file]:placeholder-shown + label,
.i4b-input > input[type=number]:placeholder-shown + label,
.i4b-input > textarea:placeholder-shown + label {
  top: 0;
  color: gray;
}
.i4b-input > input[type=text]:focus + label,
.i4b-input > input[type=password]:focus + label,
.i4b-input > input[type=date]:focus + label,
.i4b-input > input[type=file]:focus + label,
.i4b-input > input[type=number]:focus + label,
.i4b-input > select:focus + label,
.i4b-input > textarea:focus + label {
  top: -1em;
  left: 0;
  color: var(--primary-color);
  padding: 0;
}
.i4b-input > select:valid + label {
  top: auto;
  left: 0;
  bottom: 100%;
  padding: 0;
  font-size: 14px;
}
.i4b-input > input[type=text]:not(:placeholder-shown) + label,
.i4b-input > input[type=password]:not(:placeholder-shown) + label,
.i4b-input > input[type=date]:not(:placeholder-shown) + label,
.i4b-input > input[type=file]:not(:placeholder-shown) + label,
.i4b-input > input[type=number]:not(:placeholder-shown) + label,
.i4b-input > select + label,
.i4b-input > textarea:not(:placeholder-shown) + label {
  top: auto;
  left: 0;
  bottom: 100%;
  padding: 0;
  color: var(--primary-color);
}
.i4b-input > input,
.i4b-input > select {
  height: 32px;
}
.i4b-input > input[type=text],
.i4b-input > input[type=password],
.i4b-input > input[type=date],
.i4b-input > input[type=file],
.i4b-input > input[type=number],
.i4b-input > select,
.i4b-input > textarea {
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
  font-size: 14px;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 8px 0 8px 12px;
  caret-color: var(--primary-color);
  transition: border 0.32s ease;
  border-bottom: 2px solid gray;
  line-height: 1.5em;
  background-color: whitesmoke;
  border-radius: 4px 4px 0 0;
}
.i4b-input > input[type=text]:focus,
.i4b-input > input[type=password]:focus,
.i4b-input > input[type=number]:focus,
.i4b-input > input[type=date]:focus,
.i4b-input > input[type=file]:focus,
.i4b-input > select:focus,
.i4b-input > textarea:focus {
  background-color: #dceeff;
  border-bottom: 2px solid var(--primary-color);
}
.i4b-input > input[type=text]:not(:placeholder-shown),
.i4b-input > input[type=password]:not(:placeholder-shown),
.i4b-input > input[type=date]:not(:placeholder-shown),
.i4b-input > input[type=file]:not(:placeholder-shown),
.i4b-input > input[type=number]:not(:placeholder-shown),
.i4b-input > select,
.i4b-input > textarea:not(:placeholder-shown) {
  border-bottom: 2px solid var(--primary-color);
}
.i4b-input > input[type=text]:not(:valid):not(:required) {
  border-bottom: 2px solid var(--error-color);
}
.i4b-input > input[type=password]:not(:valid) {
  border-bottom: 2px solid var(--warning-color);
}
.i4b-input > input[type=text]:not(:valid):not(:required) + label {
  color: var(--error-color);
}
.i4b-input > input[type=password]:not(:valid) + label {
  color: var(--warning-color);
}
.i4b-input > input[type=radio],
.i4b-input > input[type=checkbox] {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid dimgray;
  width: 20px;
  height: 20px;
  margin: 0;
  position: relative;
}
.i4b-input > input[type=radio] {
  border-radius: 50%;
}
.i4b-input > input[type=checkbox] {
  border-radius: 2px;
}
.i4b-input > input[type=radio]:checked,
.i4b-input > input[type=checkbox]:checked {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 1em;
}
.i4b-input > input[type=radio]:checked::before,
.i4b-input > input[type=checkbox]:checked::before {
  content: "\2714";
  display: flex;
  color: white;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  left: -2px;
  top: -2px;
  position: absolute;
}
.i4b-input > .required:placeholder-shown + label::before,
.i4b-input > input[required]:placeholder-shown + label::before,
.i4b-input > select[required]:not(:valid) + label::before {
  position: absolute;
  content: "*";
  color: var(--error-color);
  right: -8px;
}
.i4b-input > input[type=checkbox]:focus,
.i4b-input > input[type=radio]:focus {
  border: 2px solid var(--primary-color);
}
.i4b-input > input[type=checkbox]:hover,
.i4b-input > input[type=radio]:hover {
  border: 2px solid var(--primary-color);
}
.i4b-input > input[type=checkbox]::after,
.i4b-input > input[type=radio]::after {
  position: absolute;
  content: "";
  display: block;
  background-color: var(--primary-color);
  border-radius: 100%;
  pointer-events: none;
  opacity: 0;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i4b-input > input[type=checkbox]:active::after,
.i4b-input > input[type=radio]:active::after {
  animation: burbujeo 0.32s infinite;
}
.i4b-input > input:disabled {
  border-bottom: 2px solid #d5d5d5 !important;
  cursor: not-allowed;
}
.i4b-input > input[type=checkbox]:disabled {
  border: 2px solid #d5d5d5 !important;
}
.i4b-input > input:disabled + label {
  color: #d5d5d5 !important;
}
.i4b-input > input[type=number] {
  text-align: right;
}
.i4b-input > input[type=checkbox] + label,
.i4b-input > input[type=radio] + label {
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  font-size: 14px;
  margin-top: 2px;
  margin-left: 8px;
}
.i4b-input > *[class^=icon-input] {
  position: absolute;
  top: 0;
  width: 16px;
  font-size: 14px;
  color: var(--dark-color);
  margin-top: 8px;
  line-height: 1.5em;
  text-align: center;
}
.icon-input-left + input:not(:placeholder-shown) + label,
.icon-input-left + input:focus + label,
.icon-input-left + select:valid + label,
.icon-input-left + select:focus + label,
.icon-input-left + textarea:not(:placeholder-shown) + label .icon-input-left + textarea:focus + label {
  margin: 0;
}
.icon-input-left {
  left: 8px;
}
.icon-input-left + input,
.icon-input-left + select {
  padding-left: 32px !important;
}
.icon-input-right {
  right: 8px;
}
.icon-input-right + input,
.icon-input-right + select {
  padding-right: 32px !important;
}
.i4b-input > .icon-input-left ~ label {
  margin-left: 32px;
  left: 0;
}
.i4b-input > .icon-input-left + select ~ label {
  margin-left: 0;
}
.i4b-button {
  font-size: 14px;
  width: auto;
  text-transform: uppercase;
  font-weight: bold;
  outline: none;
  background: var(--primary-color);
  border: none;
  border-radius: 4px;
  padding: 8px;
  line-height: 1em;
  color: white;
  transition: background-color 0.16s ease;
  min-height: 32px;
}
.i4b-button:hover {
  background-color: var(--primary-color);
}
.i4b-button:active,
.i4b-button:focus,
.i4b-button:hover {
  background-color: var(--ligth-primary-color);
}
.disabled,
.i4b-button:disabled {
  background-color: #d5d5d5 !important;
  cursor: not-allowed !important;
}
.i4b-button-square {
  min-width: 24px;
  min-height: 24px;
  border: none;
  border-radius: 4px;
  text-align: center;
  margin-left: 0.5rem;
}
.i4b-span-square {
  color: white;
  font-size: 20px;
  line-height: 20px;
}
.input-button {
  width: 40px;
  height: 32px;
  text-align: center;
}
.span-button {
  color: white;
  padding: 4px;
}
.i4b-button-icon {
  display: flex;
  align-items: center;
  color: white;
  padding: 4px !important;
}
@keyframes burbujeo {
  from {
    width: 40px;
    height: 40px;
    opacity: 0.25;
  }
  to {
    width: 20px;
    height: 20px;
    opacity: 0.25;
  }
}

/* node_modules/@i4b/template/assets/css/modal.css */
.modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.64);
  top: 0;
  left: 0;
  z-index: 2;
}
.modal-window {
  position: relative;
  background-color: white;
  width: auto;
  min-width: 480px;
  max-width: 90%;
  padding: 2em;
  width: 480px;
}
.modal-close {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25em;
  margin-bottom: 1.25em;
  border-bottom: 1px solid #ddd;
}
.modal-body {
  margin-bottom: 1.25em;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 1.25em;
}
.modal-footer {
  display: flex;
  justify-content: center;
  gap: 1.5em;
}

/* node_modules/@i4b/template/assets/css/tooltip.css */
*[class*=tooltip-] {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  z-index: 1;
}
*[class*=tooltip-]:hover::before {
  position: absolute;
  content: "";
  width: 0;
}
*[class*=tooltip-]:hover::after {
  position: absolute;
  content: attr(data-tooltip);
  font-size: 14px;
  padding: 8px;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  width: max-content;
  line-height: 1em;
  white-space: pre-line;
}
.tooltip-top:hover::before {
  border: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.8);
  border-bottom: 0;
  bottom: 100%;
}
.tooltip-top:hover::after {
  margin-bottom: 8px;
  bottom: 100%;
}
.tooltip-bottom:hover::before {
  border: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.8);
  border-top: 0;
  top: 100%;
}
.tooltip-bottom:hover::after {
  margin-top: 8px;
  top: 100%;
}
.tooltip-left:hover::before {
  border: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  border-right: 0;
  right: 100%;
}
.tooltip-left:hover::after {
  margin-right: 8px;
  right: 100%;
}
.tooltip-right:hover::before {
  border: 8px solid transparent;
  border-right: 8px solid rgba(0, 0, 0, 0.8);
  border-left: 0;
  left: 100%;
}
.tooltip-right:hover::after {
  margin-left: 8px;
  left: 100%;
}

/* node_modules/@i4b/template/assets/css/pagination.css */
.pagination,
.pagination > ul,
.pagination ul li a {
  display: flex;
  justify-content: center;
}
.pagination > ul {
  list-style: none;
}
.pagination ul li {
  height: 32px;
  width: 48px;
}
.pagination ul li a {
  width: 100%;
  height: 100%;
  align-items: center;
  background-color: white;
}
.pagination ul li a:hover {
  background-color: rgba(0, 0, 0, 4%);
}
.active-page,
.prev-page,
.next-page {
  background-color: var(--primary-color) !important;
  color: white;
  font-weight: bold;
}
.active-page:hover {
  background-color: var(--primary-color) !important;
}

/* node_modules/@i4b/template/assets/css/step-bar.css */
.step-bar {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
}
.step-bar::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: gray;
  position: absolute;
  top: 50%;
  left: 0;
  transform: traslateY(50%);
}
#complete-progress {
  display: block;
  height: 4px;
  background-color: var(--success-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: traslateY(50%);
  border-radius: 0;
  border: none;
}
.step-bar > li {
  width: 32px;
  height: 32px;
  border: 4px solid gray;
  border-radius: 50%;
  margin-right: 4em;
  background-color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.step-bar > li:last-child {
  margin: 0;
}
.step-bar > li > p {
  font-weight: bold;
  color: white;
}
.step-bar > li::before {
  position: absolute;
  content: attr(data-step);
  display: block;
  top: 125%;
  text-align: center;
}
.step-bar > .complete {
  background-color: var(--success-color);
  border: 4px solid #12ba3c;
}
.step-bar > .current {
  background-color: var(--primary-color);
  border: 4px solid whitesmoke;
  box-shadow: 0px 0px 0px 4px var(--primary-color);
}

/* node_modules/@i4b/template/assets/css/tabs.css */
.tabs {
  display: flex;
  list-style: none;
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 1.5em;
}
.tabs > li {
  border-top-left-radius: 8px;
  min-width: 160px;
  padding: 0.5em 1em;
  text-align: center;
  margin-bottom: -2px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(
      60deg,
      whitesmoke 89%,
      whitesmoke 0%,
      transparent 89%);
  border-bottom: 2px solid var(--primary-color);
}
.tabs > .active {
  border-bottom: 2px solid transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: white;
  background:
    linear-gradient(
      60deg,
      var(--primary-color) 89%,
      var(--primary-color) 0%,
      transparent 89%);
}
.tabs > li:hover:not(.active) {
  background:
    linear-gradient(
      60deg,
      var(--primary-color) 89%,
      var(--primary-color) 0%,
      transparent 89%);
  color: white;
}

/* node_modules/@i4b/template/assets/css/i4b-table.css */
.i4b-table-container {
  position: relative;
  width: 100%;
}
.i4b-table-container table {
  display: block;
  width: 100%;
  overflow-x: scroll;
}
.i4b-table-container table caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 8px;
  line-height: 1em;
  font-weight: bold;
  box-sizing: border-box;
  text-transform: uppercase;
  background-color: var(--primary-color);
}
.i4b-table-container table thead {
  background-color: var(--dark-color);
  color: white;
  position: sticky;
  top: 0;
  left: 0;
}
.i4b-table-container table tr {
  display: flex;
}
.i4b-table-container table td,
.i4b-table-container table th {
  padding: 8px;
  border-right: 1px solid lightgray;
  box-sizing: border-box;
}
.i4b-table-container table tbody {
  display: inline-block;
  margin-top: 2em;
}

/* node_modules/@i4b/template/assets/css/utils.css */
.t0l0 {
  top: 0;
  left: 0;
}
.posf {
  position: fixed;
}
.posr {
  position: relative;
}
.posa {
  position: absolute;
}
.poss {
  position: sticky;
}
.w12d5p {
  width: 12.5% !important;
  box-sizing: border-box;
}
.w25p {
  width: 25% !important;
  box-sizing: border-box;
}
.w30p {
  width: 30% !important;
  box-sizing: border-box;
}
.w37d5p {
  width: 37.5% !important;
  box-sizing: border-box;
}
.w50p {
  width: 50% !important;
  box-sizing: border-box;
}
.w60p {
  width: 60% !important;
  box-sizing: border-box;
}
.w62d5p {
  width: 62.5% !important;
  box-sizing: border-box;
}
.w75p {
  width: 75% !important;
  box-sizing: border-box;
}
.w87d5p {
  width: 87.5% !important;
  box-sizing: border-box;
}
.w100p {
  width: 100% !important;
  box-sizing: border-box;
}
.w64px {
  width: 64px !important;
  box-sizing: border-box;
}
.w128px {
  width: 128px !important;
  box-sizing: border-box;
}
.w256px {
  width: 256px !important;
  box-sizing: border-box;
}
.w320px {
  width: 320px !important;
  box-sizing: border-box;
}
.w480px {
  width: 480px !important;
  box-sizing: border-box;
}
.w512px {
  width: 512px !important;
  box-sizing: border-box;
}
.w640px {
  width: 640px !important;
  box-sizing: border-box;
}
.w720px {
  width: 720px !important;
  box-sizing: border-box;
}
.w768px {
  width: 768px !important;
  box-sizing: border-box;
}
.w960px {
  width: 960px !important;
  box-sizing: border-box;
}
.h100p {
  height: 100%;
  box-sizing: border-box;
}
.w100vw {
  width: 100vw;
  box-sizing: border-box;
}
.h100vh {
  height: 100vh;
  box-sizing: border-box;
}
.df {
  display: flex;
}
.fw {
  flex-wrap: wrap;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.jc-start {
  justify-content: flex-start;
}
.jc-center {
  justify-content: center;
}
.jc-between {
  justify-content: space-between;
}
.jc-around {
  justify-content: space-around;
}
.jc-end {
  justify-content: flex-end;
}
.align-stretch {
  align-items: stretch;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-baseline {
  align-items: baseline;
}
.align-end {
  align-items: flex-end;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-between {
  align-content: space-between;
}
.align-content-center {
  align-content: center;
}
.align-content-around {
  align-content: space-around;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-stretch {
  align-content: stretch;
}
.align-self-stretch {
  align-self: stretch;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-center {
  align-self: center;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-end {
  align-self: flex-end;
}
.primary,
.bc-primary {
  background-color: var(--primary-color) !important;
}
.info,
.bc-info {
  background-color: var(--info-color) !important;
}
.success,
.bc-success {
  background-color: var(--success-color) !important;
}
.warning,
.bc-warning {
  background-color: var(--warning-color) !important;
}
.error,
.bc-error {
  background-color: var(--error-color) !important;
}
.limegreen {
  background-color: #11bd3c !important;
}
.purple {
  background-color: #6f15ef !important;
}
.gray {
  background-color: #869fac !important;
}
.lightgray {
  background-color: #e1e7ea !important;
}
.transparent {
  background-color: transparent !important;
}
.hvbc:hover {
  background-color: rgba(0, 0, 0, 0.32);
}
.text-primary {
  color: var(--primary-color);
}
.text-info {
  color: var(--info-color);
}
.text-success {
  color: var(--success-color);
}
.text-warning {
  color: var(--warning-color);
}
.text-error {
  color: var(--error-color);
}
.text-limegreen {
  color: #11bd3c;
}
.text-purple {
  color: #6f15ef;
}
.text-white {
  color: white !important;
}
.text-black {
  color: var(--dark-color) !important;
}
.hvbold:hover {
  font-weight: bold;
}
.col-2 > * {
  width: 50%;
}
.col-3 > * {
  width: 33.333%;
}
.col-4 > * {
  width: 25%;
}
.col-6 > * {
  width: 16.666%;
}
.col-8 > * {
  width: 12.5%;
}
.p0 {
  padding: 0 !important;
}
.pvr {
  padding-top: 0;
  padding-bottom: 0;
}
.phr {
  padding-left: 0;
  padding-right: 0;
}
.p8px {
  padding: 8px;
}
.p1em {
  padding: 16px !important;
}
.p1d5em {
  padding: 1.5em;
}
.p2em {
  padding: 2em;
}
.p4em {
  padding: 4em;
}
.pv1em {
  padding: 1em 0;
}
.ph1em {
  padding: 0 1em;
}
.m0 {
  margin: 0 !important;
}
.mhr {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mvr {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.m1em {
  margin: 1em;
}
.m1d25em {
  margin: 1.25em;
}
.m1d5em {
  margin: 1.5em;
}
.m2em {
  margin: 2em;
}
.mb1em {
  margin-bottom: 1em;
}
.mb1d25em {
  margin-bottom: 1.25em;
}
.mb1d5em {
  margin-bottom: 1.5em;
}
.mt1em {
  margin-top: 1.25em;
}
.mt1d25em {
  margin-top: 1.25em;
}
.mt1d5em {
  margin-top: 1.5em;
}
.mr1em {
  margin-right: 1em !important;
}
.ml1em {
  margin-left: 1em !important;
}
.mv1em {
  margin: 1em 0;
}
.mh1em {
  margin: 0 1em;
}
.text-left {
  text-align: left;
}
.text-rigth {
  text-align: right;
}
.text-center {
  text-align: center;
}
.gapd5em {
  gap: 0.5em;
}
.i4b-button-reset {
  background: none;
  line-height: 1em;
  border: none;
  font-size: 16px;
}
.grid-columns-repeat-min160px-max1fr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.grid-columns-repeat-min240px-max1fr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.grid-columns-repeat-min320px-max1fr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}
.grid-columns-repeat-min360px-max1fr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1rem;
}
.grid-columns-repeat-min480px-max1fr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 1rem;
}
.grid-columns-repeat-min720px-max1fr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(720px, 1fr));
  gap: 1rem;
}
@media only screen and (max-width: 1920px) {
  .w12d5p-xxl {
    width: 12.5% !important;
  }
  .w25p-xxl {
    width: 25% !important;
  }
  .w30p-xxl {
    width: 30% !important;
  }
  .w37d5p-xxl {
    width: 37.5% !important;
  }
  .w50p-xxl {
    width: 50% !important;
  }
  .w60p-xxl {
    width: 60% !important;
  }
  .w62d5p-xxl {
    width: 62.5% !important;
  }
  .w75p-xxl {
    width: 75% !important;
  }
  .w87d5p-xxl {
    width: 87.5% !important;
  }
  .w100p-xxl {
    width: 100% !important;
  }
}
@media only screen and (max-width: 1200px) {
  .w12d5p-xl {
    width: 12.5% !important;
  }
  .w25p-xl {
    width: 25% !important;
  }
  .w30p-xl {
    width: 30% !important;
  }
  .w37d5p-xl {
    width: 37.5% !important;
  }
  .w50p-xl {
    width: 50% !important;
  }
  .w60p-xl {
    width: 60% !important;
  }
  .w62d5p-xl {
    width: 62.5% !important;
  }
  .w75p-xl {
    width: 75% !important;
  }
  .w87d5p-xl {
    width: 87.5% !important;
  }
  .w100p-xl {
    width: 100% !important;
  }
}
@media only screen and (max-width: 1024px) {
  .w12d5p-lg {
    width: 12.5% !important;
  }
  .w25p-lg {
    width: 25% !important;
  }
  .w30p-lg {
    width: 30% !important;
  }
  .w37d5p-lg {
    width: 37.5% !important;
  }
  .w50p-lg {
    width: 50% !important;
  }
  .w60p-lg {
    width: 60% !important;
  }
  .w62d5p-lg {
    width: 62.5% !important;
  }
  .w75p-lg {
    width: 75% !important;
  }
  .w87d5p-lg {
    width: 87.5% !important;
  }
  .w100p-lg {
    width: 100% !important;
  }
}
@media only screen and (max-width: 768px) {
  .w12d5p-md {
    width: 12.5% !important;
  }
  .w25p-md {
    width: 25% !important;
  }
  .w30p-md {
    width: 30% !important;
  }
  .w37d5p-md {
    width: 37.5% !important;
  }
  .w50p-md {
    width: 50% !important;
  }
  .w60p-md {
    width: 60% !important;
  }
  .w62d5p-md {
    width: 62.5% !important;
  }
  .w75p-md {
    width: 75% !important;
  }
  .w87d5p-md {
    width: 87.5% !important;
  }
  .w100p-md {
    width: 100% !important;
  }
  .cnt-form {
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .w12d5p-sm {
    width: 12.5% !important;
  }
  .w25p-sm {
    width: 25% !important;
  }
  .w30p-sm {
    width: 30% !important;
  }
  .w37d5p-sm {
    width: 37.5% !important;
  }
  .w50p-sm {
    width: 50% !important;
  }
  .w60p-sm {
    width: 60% !important;
  }
  .w62d5p-sm {
    width: 62.5% !important;
  }
  .w75p-sm {
    width: 75% !important;
  }
  .w87d5p-sm {
    width: 87.5% !important;
  }
  .w100p-sm {
    width: 100% !important;
  }
}

/* node_modules/@i4b/template/assets/css/style.css */
:root {
  --primary-color: #1e90ff;
  --success-color: #04d658;
  --info-color: var(--primary-color);
  --warning-color: #ffa205;
  --error-color: #e61405;
  --dark-color: #3b3b3b;
  --dark-primary-color: #166cbf;
  --ligth-primary-color: #56acff;
}
main.padding-dashboard {
  padding: 2em !important;
  padding-left: 6em !important;
}
footer {
  padding: 2em;
  background-color: var(--dark-color);
  width: 100%;
  color: white;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  color: var(--dark-color);
}
hr {
  margin: 1em 0;
  height: 4px;
  background-color: var(--primary-color);
  border: none;
}
table,
tr,
td,
th {
  border-collapse: collapse;
}
form span {
  display: inline-block;
  min-width: 128px;
  text-align: right;
}
router-outlet + * {
  display: flex;
  padding: 2em;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 82vh;
}
.list-style-none {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding: 2em;
  background-color: white;
  width: 80%;
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.16);
}
.block {
  box-sizing: border-box;
  display: block;
}
.shadow {
  box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.08);
}
.card,
.card-table {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  background-color: white;
  padding: 2em;
  box-shadow: 0px 8px 8px 0 rgba(128, 128, 128, 0.08);
}
.title-card {
  margin-bottom: 1em;
}
.card-table {
  width: auto;
  margin-top: 2em;
}
.hidden {
  display: none;
}
.card form {
  margin: 0;
  height: 0;
  overflow: hidden;
}
.login-card {
  background-color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 2em;
  width: 100%;
  max-width: 480px;
  box-shadow: 0px 8px 8px 0 rgba(128, 128, 128, 0.08);
  box-sizing: border-box;
}
.login-card h2 {
  margin-bottom: 0.25em;
}
.login-card > a {
  margin-top: 8px;
}
.hidden:checked ~ form {
  margin-top: 1em;
  height: auto;
}
.hidden:checked ~ h2 label i::before {
  content: "\f106";
}
.cnt-form {
  padding: 0 1em;
}
.inline {
  display: initial;
  width: auto !important;
}
.close {
  background-color: var(--error-color) !important;
  border-radius: 2px;
}
.error-tim {
  -webkit-animation: error-animation 2s;
}
.success-tim {
  -webkit-animation: success-animation 2s;
}
@keyframes error-animation {
  0% {
    background-color: var(--warning-color);
  }
  100% {
    background-color: var(--error-color);
  }
}
@keyframes success-animation {
  0% {
    background-color: var(--warning-color);
  }
  50% {
    background-color: var(--primary-color);
  }
  100% {
    background-color: transparent;
  }
}
.spinner {
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.list > li {
  margin-bottom: 1em;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}
.loading-tn {
  animation: rotating 2s linear infinite;
  margin-bottom: 1em;
}
button:disabled.loading {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: transparent;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 4px;
}
button:disabled.loading::before {
  content: "";
  font-size: 13px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-right: 3px solid white;
  margin: 0 0.25em;
  animation: rotating 0.64s infinite;
  animation-timing-function: linear;
  position: absolute;
  top: 8px;
  left: 8px;
}
button:disabled.loading::after {
  content: "Cargando...";
  font-size: 13px;
  display: block;
  color: white;
  position: absolute;
  top: 8px;
  left: 34px;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.toast-close-button {
  width: auto !important;
}
.transition-width {
  transition: width 0.32s ease-out;
}
.debug-btn {
  padding: 0 8px;
  font-size: 25px;
}
.debug-btn > i {
  margin: 0;
}
input[currencyMask] {
  text-align: right;
}
.icon-left {
  margin-right: 8px;
}
.icon-right {
  margin-left: 8px;
}
.moneyInput {
  text-align: right;
}

/* node_modules/ngx-toastr/toastr.css */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* src/styles.css */
:root {
  --first-color: #428FA8;
  --second-color: #3b3b3b;
  --third-color: #f5f5f5;
}
.material-icons-sharp {
  font-size: 20px;
}
app-login,
app-login-admin,
app-signin,
app-recovery,
app-completesignin {
  min-height: 100vh;
  background-image: url("./media/background-bn-5AP4TSLP.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
app-navbar {
  width: 100vw;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
}
button,
a,
input {
  border: none;
  outline: none;
}
#headerpage {
  background-color: var(--primary-color) !important;
}
#headerpage > .menu {
  background-color: var(--first-color);
}
#headerpage > .menu button {
  padding: 8px;
}
#headerpage > .menu > ul > li:hover {
  background-color: #5A9DB3;
}
.container {
  height: fit-content;
  width: 100%;
  box-sizing: border-box;
}
.menu-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-panel-list > li > a {
  padding: 1.5rem;
  margin: 1rem;
  width: 256px;
  text-align: center;
  color: white;
  background-color: var(--first-color);
  border-radius: 8px;
  box-shadow: 0px 8px 8px 0px rgb(0 0 0 / 16%);
}
.menu-panel-list > li > a:hover {
  background-color: var(--ligth-primary-color);
}
.menu-panel-list > li > a i.fa,
.menu-panel-list > li > a .material-icons {
  font-size: 4rem;
}
app-login,
app-signin,
app-recovery,
app-completesignin {
  min-height: 100vh;
  background-image: url("./media/background-bn-5AP4TSLP.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#btnShowNotifications,
#btnShowConfig {
  position: relative;
  min-width: auto;
  background-color: transparent;
}
#btnShowNotifications::after {
  content: attr(data-size);
  position: absolute;
  top: 0;
  left: 50%;
  color: white;
  background-color: red;
  border-radius: 1em;
  min-width: 1em;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em;
  pointer-events: none;
}
.notificaciones-container {
  position: absolute;
  width: 400px;
  top: 64px;
  right: 0;
  left: auto;
  background-color: white;
  padding: 1.5em;
  box-sizing: border-box;
  border-top: none;
  border: 1px solid lightgray;
  box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.16);
}
.notificaciones-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  right: 8px;
  border: 16px solid transparent;
  border-bottom: 16px solid white;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.16));
}
.notificaciones-list {
  overflow-y: scroll;
  max-height: 640px;
}
.notificaciones-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.16);
}
.list-steps-navigate {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-steps-navigate a {
  text-transform: none;
  padding: 0 8px;
}
.list-steps-navigate > li:not(:last-child)::after {
  content: "/";
}
#noticias-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#noticias-list > li {
  padding: 1.5em;
  margin: 1em 0;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0 4px 8px 0;
}
#noticias-list > li:not([class]) {
  background-color: ghostwhite;
  color: black;
}
.gap0d5em {
  gap: 0.5em;
}
.gap1em {
  gap: 1em;
}
.gap1d5em {
  gap: 1.5em;
}
.button-icon {
  padding: 0 !important;
  background-color: transparent;
}
.button-icon:hover {
  background-color: transparent;
}
main.padding-dashboard {
  width: 100%;
  padding-top: 0 !important;
}
#headerpage .sidebar-menu ul li a:hover::after,
#headerpage .sidebar-menu ul li label:hover::after,
#headerpage .sidebar-menu ul li button:hover::after {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
#headerpage .sidebar-menu ul li a:hover::before,
#headerpage .sidebar-menu ul li label:hover::before,
#headerpage .sidebar-menu ul li button:hover::before {
  filter: drop-shadow(-1px 0 0 rgba(0, 0, 0, 0.16));
}
#collapse-sidebar-menu:checked ~ .padding-dashboard {
  padding-left: 18em !important;
}
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-items {
  width: 256px;
}
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items > li a,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items > li label,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items > li button,
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options > li a,
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options > li label,
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options > li button {
  justify-content: flex-start;
}
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items .sidebar-menu-label-item,
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options .sidebar-menu-label-item {
  display: block;
}
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items li a:hover::after,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items li label:hover::after,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items li button:hover::after,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items li a:hover::before,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items li label:hover::before,
#collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items li button:hover::before,
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options li label:hover::after,
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options li label:hover::before {
  display: none;
  content: none;
}
#collapse-sidebar-menu ~ app-navbar header .sidebar-menu .sidebar-menu-options li label .material-icons-round {
  transform: rotate(180deg);
}
#collapse-sidebar-menu:checked ~ app-navbar header .sidebar-menu .sidebar-menu-options li label .material-icons-round {
  transform: rotate(0);
}
#toggle-dropdown-menu-user {
  display: none;
}
.dropdown-menu-user {
  position: absolute;
  left: auto !important;
  right: 0 !important;
  padding: 1.5em !important;
  top: 64px !important;
  border: 1px solid lightgray !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16) !important;
  font-size: 14px;
  background-color: white;
  min-width: 256px;
}
.dropdown-menu-user::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 100%;
  border: 16px solid transparent;
  border-bottom: 16px solid white;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.16));
}
#toggle-dropdown-menu-user:checked ~ .dropdown-menu-user {
  display: block !important;
}
.dropdown-menu-user ul {
  display: flex;
  flex-wrap: wrap;
}
.dropdown-menu-user ul li {
  width: 100%;
}
.dropdown-menu-user ul li:hover {
  background-color: whitesmoke;
  border-radius: 4px;
}
.dropdown-menu-user ul li a {
  text-align: left !important;
  padding: 8px 1.5em;
}
.botonera-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 1em;
  background-color: whitesmoke;
  border-bottom: 1px solid lightgray;
}
.botonera-form {
  margin-top: 30px;
  padding: 0 1.5rem;
}
.icon-button {
  background: none;
  background-color: transparent;
  padding: 0 !important;
  color: black;
}
.icon-button:hover,
.icon-button:active,
.icon-button:focus {
  background-color: transparent;
}
.link-icon {
  display: inline-flex;
  align-items: center;
}
.i4b-table {
  position: relative;
  padding: 1em;
  min-height: 606px;
  border: 1px solid lightgray;
  background-color: whitesmoke;
}
.i4b-spinner-table {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}
.i4b-table-body-item ~ div,
.i4b-table-header-row,
.i4b-table-body-row ~ div {
  padding: 1.5em;
  border-radius: 4px;
  border: 1px solid lightgray;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}
.i4b-table-header-row {
  display: grid;
  grid-template-columns: 100px auto 100px;
  grid-template-areas: "column-icon column-data column-actions";
  background-color: #1B4C5C;
  color: white;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.i4b-table-body {
  display: grid;
  gap: 1.5em;
}
.i4b-table-body.display-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
@media only screen and (max-width: 480px) {
  .i4b-table-body.display-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.i4b-table-body.display-table {
  grid-template-columns: 1fr;
}
.i4b-table-body-item ~ div,
.i4b-table-body-row ~ div {
  background-color: white;
}
.i4b-table-body-item ~ div {
  display: grid;
  grid-template-rows: 24px;
  grid-template-areas: "column-icon column-actions" "column-data column-data";
}
.i4b-table-body-row ~ div {
  display: grid;
  grid-template-columns: 100px auto 100px;
  grid-template-areas: "column-icon column-data column-actions";
}
.i4b-column-icon {
  grid-area: column-icon;
  display: grid;
  align-items: center;
}
.i4b-column-data {
  grid-area: column-data;
  display: grid;
  grid-auto-rows: max-content;
}
.i4b-column-actions {
  grid-area: column-actions;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.i4b-table-header-row .i4b-column-actions {
  justify-content: center;
}
.i4b-table-header-row .i4b-column-data,
.i4b-table-body-row ~ div .i4b-column-data {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}
.i4b-table-body-item ~ div .i4b-column-data {
  margin-top: 1.25em;
}
.i4b-table-body-item ~ div .i4b-column-data > div[data-label]::before {
  content: attr(data-label) " ";
  font-weight: bold;
  white-space: break-spaces;
  display: contents;
}
.i4b-table-body-item ~ div .i4b-column-data > .title {
  font-weight: bold;
}
.i4b-table-body-item ~ div .i4b-column-data > i4b-long-description {
  margin: 1em 0;
}
.more-description {
  overflow-y: auto;
  max-height: 8em;
  position: relative;
}
.more-description::before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.14) 0%,
      transparent);
  height: .75em;
  width: 100%;
}
.more-description::after {
  content: "";
  display: block;
  position: sticky;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.14) 0%,
      transparent);
  height: .75em;
  width: 100%;
}
.i4b-dropdown-actions {
  position: absolute;
  top: 2.5em;
  right: -8px;
  padding: 1em 0;
  border-radius: 4px;
  background-color: white;
  border: 1px solid lightgray;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.16);
}
.i4b-dropdown-actions::before {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 100%;
  border: 8px solid transparent;
  border-bottom: 8px solid white;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.16));
}
.i4b-dropdown-actions i4b-dropdown-option {
  display: flex;
  font-size: 16px;
  min-width: 192px;
}
.i4b-dropdown-actions i4b-dropdown-option > * {
  gap: 8px;
  font-size: 16px;
  padding: .5em 1.5em;
  background-color: transparent;
  width: 100%;
  color: black;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.i4b-dropdown-actions i4b-dropdown-option:hover {
  background-color: whitesmoke;
  border-radius: 4px;
}
.text-error {
  color: var(--error-color) !important;
}
.i4b-button {
  background-color: var(--first-color);
}
.card {
  position: relative;
}
@media only screen and (max-width: 480px) {
  #headerpage .sidebar-menu {
    position: absolute;
    padding-top: 0;
    height: auto;
  }
  #headerpage .sidebar-menu-options {
    display: none;
  }
  #collapse-sidebar-menu:checked + app-navbar header .sidebar-menu .sidebar-menu-items {
    display: block;
  }
  main.padding-dashboard {
    padding: 0 !important;
  }
  .menu {
    flex-wrap: wrap;
  }
  .menu ul {
    flex-grow: 1;
  }
  .i4b-table {
    padding: .5em;
  }
}
.tabs {
  padding: 0;
  overflow-x: overlay;
}
@media only screen and (max-width: 800px) {
  .tabs {
    max-width: 480px;
  }
}
.tabs > li {
  -webkit-user-select: none;
  user-select: none;
  background: whitesmoke;
  border: 1px solid lightgray;
  border-bottom: none;
  margin: 0 1px;
  border-radius: 8px 8px 0 0;
}
.tabs > li.active > *,
.tabs > li.active > *,
.tabs > li:hover:not(.disabled-tab) > * {
  color: white;
}
.tabs > li.active,
.tabs > li:hover:not(.active) {
  background: var(--primary-color);
}
.tabs > li.disabled-tab,
.tabs > li.disabled-tab:hover {
  background: whitesmoke;
  color: darkgray;
}
.list-container {
  padding: 1em;
  border: 1px solid lightgray;
  background-color: whitesmoke;
  display: grid;
  gap: 1.25em;
}
.list-container > .item-list {
  background-color: white;
  padding: 1.5em;
  border-radius: 4px;
  border: 1px solid lightgray;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%);
}
.sublist-container {
  padding: 0.5em;
  border: 1px solid lightgray;
  background-color: gainsboro;
  display: grid;
  gap: 0.5em;
}
.sublist-container > .item-sublist {
  background-color: white;
  padding: 1em;
  border-radius: 4px;
  border: 1px solid lightgray;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%);
}
.i4b-button {
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 640px) {
  .grid-columns-repeat-min240px-max1fr {
    gap: 0;
  }
}
i4b-ui-modal > .modal > .modal-window {
  width: auto !important;
  min-width: 480px;
}
.i4b-input-ghost > input {
  background-color: rgba(245, 245, 245, 0.48) !important;
}
.i4b-field-display {
  position: relative;
  margin: 1em 0 1em 0;
}
.i4b-field-display > label {
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 0;
  font-size: 14px;
  line-height: 1em;
  color: var(--primary-color);
}
.i4b-field-display > pre {
  font-weight: bold;
  font-size: 14px;
  line-height: 1em;
  padding: 8px 0 8px 12px;
  border-radius: 4px 4px 0 0;
  background-color: whitesmoke;
  border-bottom: 2px solid #d5d5d5;
  cursor: not-allowed;
}
.i4b-button {
  text-transform: none;
  font-weight: normal;
}
.loading {
  z-index: 4;
}
.i4b-input > input[type=text]:not(:valid):not(:required) {
  background-color: #FCE2E0;
}
.i4b-input-file {
  box-shadow: 0px 8px 8px -4px rgba(0, 0, 0, 0.16);
}
.i4b-input > input[type=file]#I4bChooseFile {
  display: none;
}
.i4b-input > input[type=file]#I4bChooseFile + label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 8px 1em;
  width: 256px;
  color: white;
  background-color: var(--primary-color);
  border-radius: 4px 0 0 4px;
  pointer-events: all;
}
.modal {
  z-index: 3;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1em;
  padding: 0;
}
.badges > li {
  color: forestgreen;
  background-color: honeydew;
  padding: 0 1em;
  font-size: 12px;
  border: 1px solid palegreen;
  border-radius: 1em;
  display: flex;
  gap: 0.25em;
  -webkit-user-select: none;
  user-select: none;
}
*[class*=tooltip-]:hover::after {
  font-family:
    Roboto,
    Arial,
    Helvetica,
    sans-serif,
    system-ui,
    ui-sans-serif;
}
*[class*=tooltip-] {
  vertical-align: top;
}
.news-container-p {
  padding-bottom: 1rem;
  width: 50%;
}
.content-news {
  padding: 1.2rem;
  color: #ffffff;
  border-radius: 5px;
}
.content-icon-type-date {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
}
.content-icon-type {
  display: flex;
  gap: 1rem;
}
.content-new {
  padding: 1rem;
  border-radius: 2.5px;
  background-color: white;
  color: #3b3b3b;
}
.new-button {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 1em;
}
.label-icon {
  font-size: 11pt;
  color: #1e90ff;
}
#radios label {
  cursor: pointer;
  position: relative;
}
#radios label + label {
  margin-left: 15px;
}
input[type=radio] {
  opacity: 0;
  position: absolute;
}
input[type=radio] + span {
  font-family: "Material Icons";
  font-size: 35px;
  color: #B3CEFB;
  border-radius: 50%;
  padding: 8px;
}
.close-button {
  background-color: #e61405;
  margin-bottom: 30px;
}
.open-button {
  background-color: #04d658;
  margin-bottom: 30px;
}
@media only screen and (max-width: 640px) {
  .news-container-p {
    width: 100%;
  }
  .content-icon-type-date {
    flex-direction: column;
  }
}
.material-icons {
  -webkit-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 480px) {
  .noprintdevice {
    display: none;
  }
}
#login-form {
  align-self: center;
  background-color: rgba(255, 255, 255, 0.88);
  max-width: 960px;
  display: grid;
  grid-template-columns: 50%;
  grid-template-areas: "about form";
  @media screen and (max-width: 640px) {
    margin: 2em;
    grid-template-columns: auto;
    grid-template-areas: "form" "about";
  }
}

/* angular:styles/global:styles */
