*, *::before, *::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
html {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

body {
  margin: 0;
  background-color: #111827;
  background-image: url("/assets/images/icons/rueda-dentada.png");
  background-size: 150px;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
  font-family: "Inter", sans-serif;
  color: #fff;
}

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
}

input.form-control, textarea.form-control {
  transition: all 0.3s ease-in-out 0s;
  border-radius: 10px;
  outline: 0;
  border: 4px solid #fff;
  padding: 10px 20px;
  background-color: #fff;
  color: #111827;
  font-size: 1rem;
}
input.form-control:focus, textarea.form-control:focus {
  box-shadow: 0 0 2pt 3pt #111827;
}
input.form-control.inp_form_val, textarea.form-control.inp_form_val {
  border: 4px solid #fff;
}
input.form-control.inp_form_val.invalid, textarea.form-control.inp_form_val.invalid {
  border: 4px solid #f30808;
  outline: 1px solid #fff;
}

button {
  border: 0;
  background: transparent;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-error {
  transition: all 0.3s ease-in-out 0s;
  background: #EF4444;
  font-weight: 800;
  color: #fff;
}
.btn-error:hover {
  background: #1E3A8A;
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
}
.form-group .doc-group #doc-type {
  width: 100%;
  max-width: fit-content;
}

.form-label {
  margin-bottom: 5px;
}

select.form-select {
  border-radius: 10px;
  border: 4px solid #fff;
  outline: 0;
  padding: 10px 20px;
  background-color: #fff;
}

.input-group select.form-select {
  border-radius: 10px;
  border: 4px solid #fff;
  outline: 0;
  padding: 10px 20px;
  background-color: #111827;
  color: #fff;
}

.cont-btn-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
}
.cont-btn-form .btn-form {
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  background-color: #fff;
  border-radius: 0px;
  border: 0;
  outline: 0;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111827;
}
.cont-btn-form .btn-form:disabled {
  background-color: #111827;
  opacity: 0.5;
  color: #fff;
  cursor: not-allowed;
}
.cont-btn-form .btn-form:hover {
  background-color: #111827;
  color: #fff;
}

.standar-modal .modal-header {
  border-bottom: 0px;
}
.standar-modal .modal-header .modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
}
.standar-modal .modal-body p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #111827;
  font-style: italic;
}
.standar-modal .modal-footer {
  border-top: 0px;
}

.pointer {
  cursor: pointer;
}

.white-space-nowrap {
  white-space: nowrap;
}

.badge {
  border-radius: 5px;
}
.badge.bg-success {
  background-color: #10B981 !important;
  color: #fff;
}
.badge.bg-error {
  background-color: #EF4444 !important;
  color: #fff;
}

.color-success {
  color: #10B981 !important;
}

.color-error {
  color: #EF4444 !important;
}

.cont-number-input span {
  transition: all 0.3s ease-in-out 0s;
  background-color: #111827;
  border-radius: 0px;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.cont-number-input span.minus:hover, .cont-number-input span.minus:focus {
  background-color: #EF4444;
  color: #111827;
}
.cont-number-input span.plus:hover, .cont-number-input span.plus:focus {
  background-color: #10B981;
  color: #111827;
}
.cont-number-input .number-input {
  text-align: end;
  user-select: none;
}

.cont-msg {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  overflow: hidden;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
}
.cont-msg.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
}
.cont-msg.error {
  background-color: #EF4444;
}
.cont-msg.pass {
  background-color: #0077ff;
}
.cont-msg.success {
  background-color: #10B981;
}

.loader-container {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-container.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
  width: 100%;
  overflow: unset;
}
.loader-container .loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

.main-title {
  padding: 30px 10px 0px 10px;
}
.main-title h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 2px 5px rgba(59, 130, 246, 0.4);
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
}

.balance {
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: 13rem;
  height: 3.75rem;
  background-color: #fff;
  opacity: 0.8;
  border-top: 4px solid #1E3A8A;
  border-left: 4px solid #1E3A8A;
  border-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 10px;
  color: #111827;
  text-align: center;
}
.balance:hover, .balance:focus {
  opacity: 1;
}
.balance b {
  font-weight: 800;
  text-transform: uppercase;
}

#dashboard-iframe {
  width: 100vw;
  height: 100vh;
  border: 0;
  z-index: 1000;
  cursor: default;
}

.to-top {
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 100;
  opacity: 0.8;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #3B82F6;
  border: 4px solid #3B82F6;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
}
.to-top:hover, .to-top:focus {
  border: 4px solid #3B82F6;
  opacity: 1;
  cursor: pointer;
}

.cont-bills-history {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
}

.table-responsive {
  height: 100%;
  overflow-y: auto;
  min-height: 500px;
  max-height: 2000px;
}
.table-responsive.register-table {
  max-height: 500px;
}
.table-responsive::-webkit-scrollbar {
  width: 8px;
}
.table-responsive::-webkit-scrollbar-track {
  background: #F3F4F6;
  border-radius: 10px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #3B82F6;
  border-radius: 10px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #1E3A8A;
}
.table-responsive .btn-edit {
  transition: all 0.3s ease-in-out 0s;
  background-color: #3B82F6;
  margin-bottom: 5px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .table-responsive .btn-edit {
    margin-bottom: 0px;
  }
}
.table-responsive .btn-edit:hover {
  background-color: #1E3A8A;
  color: #fff;
}
.table-responsive .btn-pay {
  transition: all 0.3s ease-in-out 0s;
  background-color: #10B981;
  margin-bottom: 5px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .table-responsive .btn-pay {
    margin-bottom: 0px;
  }
}
.table-responsive .btn-pay:hover {
  background-color: #1E3A8A;
  color: #fff;
}
.table-responsive .btn-delete {
  transition: all 0.3s ease-in-out 0s;
  background-color: #EF4444;
  margin-bottom: 5px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .table-responsive .btn-delete {
    margin-bottom: 0px;
  }
}
.table-responsive .btn-delete:hover {
  background-color: #1E3A8A;
  color: #fff;
}

.cont-bills-history-header {
  margin-bottom: 25px;
}
.cont-bills-history-header .form-label {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  font-style: italic;
  font-size: 1.2rem;
}
.cont-bills-history-header .form-control, .cont-bills-history-header .form-select {
  font-weight: 600;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #fff, -20px 0 #1E3A8A;
    background: #fff;
  }
  33% {
    box-shadow: 20px 0 #fff, -20px 0 #1E3A8A;
    background: #1E3A8A;
  }
  66% {
    box-shadow: 20px 0 #1E3A8A, -20px 0 #fff;
    background: #1E3A8A;
  }
  100% {
    box-shadow: 20px 0 #1E3A8A, -20px 0 #fff;
    background: #fff;
  }
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(30, 58, 138, 0.4);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  transition: all 0.3s ease-in-out 0.2s;
}
header .navbar.scroll-top {
  background-color: rgba(255, 255, 255, 0);
}
header .navbar .logo {
  max-width: 150px;
  width: 100%;
  margin-right: 5px;
}
@media screen and (min-width: 768px) and (max-width: 880px) {
  header .navbar .logo {
    max-width: 180px;
  }
}
@media screen and (min-width: 1200px) {
  header .navbar .logo {
    max-width: 300px;
  }
}
header .navbar .navbar-toggler {
  transition: all 0.3s ease-in-out 0s;
  border: 2px solid transparent;
  border-radius: 50%;
  height: 58px;
  width: 58px;
  min-width: 58px;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233B82F6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header .navbar .navbar-toggler:hover {
  background-color: rgba(30, 58, 138, 0.5);
  border-color: #fff;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-toggler {
    display: none;
  }
}
header .navbar .navbar-collapse {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  transition: all 0.4s ease-in 0s;
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse {
    opacity: 1;
    visibility: visible;
    height: auto;
    width: 100%;
    overflow: unset;
    position: relative;
    z-index: 1;
  }
}
header .navbar .navbar-collapse:not(.collapse) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  height: 100vh;
  width: 100%;
  overflow: unset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.95);
}
header .navbar .navbar-collapse:not(.collapse) .nav-items {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul {
  width: 100%;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse:not(.collapse) .nav-items ul li {
    border-bottom: 1px solid #111827;
  }
  header .navbar .navbar-collapse:not(.collapse) .nav-items ul li:first-child {
    border-top: 1px solid #111827;
  }
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul li.active a {
  color: #1E3A8A;
  text-shadow: unset;
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul li.active a:hover {
  color: #3B82F6;
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul li a {
  font-size: 1.5rem;
  color: #111827;
}
header .navbar .navbar-collapse:not(.collapse) .nav-items ul li a:hover {
  color: #3B82F6;
}
header .navbar .navbar-collapse .nav-items {
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items .icons {
    margin-left: 10px;
  }
}
header .navbar .navbar-collapse .nav-items .icons button {
  transition: all 0.3s ease-in-out 0s;
  background: transparent;
  border: 0;
  outline: 0;
}
header .navbar .navbar-collapse .nav-items .icons button i {
  font-size: 1.25rem;
}
header .navbar .navbar-collapse .nav-items .icons button i:hover {
  color: #1E3A8A;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items ul {
    flex-direction: row;
  }
}
header .navbar .navbar-collapse .nav-items ul li {
  position: relative;
  display: inline-block;
}
header .navbar .navbar-collapse .nav-items ul li:not(:last-child) {
  margin-right: 0px;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items ul li:not(:last-child) {
    margin-right: 50px;
  }
}
header .navbar .navbar-collapse .nav-items ul li::after {
  transition: all 0.3s ease-in-out 0s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: unset;
  left: 50%;
  width: 0%;
  opacity: 0;
  height: 4px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .nav-items ul li::after {
    content: "";
  }
}
header .navbar .navbar-collapse .nav-items ul li a {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}
header .navbar .navbar-collapse .nav-items ul li a:hover {
  color: #3B82F6;
}
header .navbar .navbar-collapse .nav-items ul li.active a {
  color: #3B82F6;
  text-shadow: 2px 2px 1px rgba(17, 24, 39, 0.8);
}
header .navbar .navbar-collapse .nav-items ul li.active a:hover {
  color: #fff;
}
header .navbar .navbar-collapse .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff1616;
  font-size: 1.875rem;
  cursor: pointer;
}
header .navbar .navbar-collapse .close-btn:hover {
  color: #ff6262;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  header .navbar .navbar-collapse .close-btn {
    display: none;
  }
}

footer {
  position: relative;
  background-color: #1E3A8A;
  padding: 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  font-size: 1.125rem;
  color: #fff;
}
footer .copyright {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
}

main {
  margin-top: var(--navbar-height);
  color: #fff;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

section.bills-register {
  padding-top: 0px;
}
section.bills-register .cont-bills-register-header {
  padding-top: 20px;
  background-color: #111827;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.2) 0%, #111827 20%);
  margin-bottom: 60px;
  overflow: hidden;
}
section.bills-register .cont-bills-register-header .bills-register-form {
  padding-top: 20px;
}
section.bills-register .cont-bills-register-header .bills-register-form .form-label {
  width: 100%;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  font-size: 1.2rem;
}
section.bills-register .cont-bills-register-header .bills-register-form .form-control, section.bills-register .cont-bills-register-header .bills-register-form .form-select {
  font-weight: 600;
  font-size: 1.1rem;
}
section.bills-register .cont-bills-register-header .bills-register-form .btn-clear {
  width: 80px;
  background-color: #3B82F6;
  color: #fff;
}
section.bills-register .cont-bills-register-header .bills-register-form .btn-clear:hover {
  background-color: #1E3A8A;
  color: #fff;
}
section.bills-register .cont-bills-register-header .bills-register-form .btn-register {
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  background-color: #10B981;
  border-radius: 0px;
  border: 0;
  outline: 0;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}
section.bills-register .cont-bills-register-header .bills-register-form .btn-register i {
  margin-left: 10px;
}
section.bills-register .cont-bills-register-header .bills-register-form .btn-register:hover {
  background-color: #1E3A8A;
  color: #fff;
}
section.bills-register .cont-bills-register-header .bills-register-form .cont-btn-loan {
  position: relative;
}
section.bills-register .cont-bills-register-header .bills-register-form .cont-btn-loan.hide .btn-loan {
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
}
section.bills-register .cont-bills-register-header .bills-register-form .cont-btn-loan .btn-loan {
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
  visibility: visible;
  height: 45px;
  width: 45px;
  overflow: unset;
  position: absolute;
  top: 10px;
  right: -10px;
  z-index: 100;
  background-color: #3B82F6;
  border-radius: 50%;
  padding: 0px;
  color: #fff;
}
section.bills-register .cont-bills-register-header .bills-register-form .cont-btn-loan .btn-loan:hover {
  background-color: #1E3A8A;
  color: #fff;
}

section.message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  section.message {
    min-height: 100vh;
  }
}
section.message .cont-message {
  background-color: #1E3A8A;
  padding: 30px 40px;
  border: 4px solid #fff;
}
@media screen and (min-width: 768px) {
  section.message .cont-message {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 300px;
  }
}
section.message .cont-message h1 {
  font-size: 2rem;
  font-weight: 700;
}

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