:root {
  --bg-color-gradient: linear-gradient(#1f8aff, #1c2249);
}

#parte1 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 0.5s; /* agrega una pausa de 2 segundos */
}
#parte2 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 1s; /* agrega una pausa de 2 segundos */
}
#parte3 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 1.5s; /* agrega una pausa de 2 segundos */
}
#parte4 {
  animation: cambio-de-color 2s infinite;
  animation-fill-mode: forwards;
  animation-delay: 0.2s; /* agrega una pausa de 2 segundos */
}

@keyframes cambio-de-color {
  0% {
    fill: #edf2f9;
  }
  90% {
    fill: #14a1fd;
  }
  100% {
    fill: #edf2f9;
    animation-direction: alternate;
  }
}

#content {
  background: #edf2f9;
  min-height: 100vh;
}

.sticky-top {
  top: 70px;
}

div#tableFilterDropdown {
  min-width: 300px;
}

.btn_custom_site {
  background: #ffffff;
  color: #1f8aff;
  box-shadow: 4px 3px 1px #7dc4fd;
  border: 1.5px solid #1f8aff;
  border-radius: 10px;
  text-transform: uppercase;
}

.btn_custom_site.primary {
  background: #1f8aff;
  color: white;
  box-shadow: 5px 4px 1px #7dc4fd;
  border: 1.5px solid #1f8aff;
  border-radius: 10px;
  text-transform: uppercase;
}

.navbar .nav-link:hover h5 {
  color: #1f8aff !important;
}

.navbar-nav .nav-item:hover {
  background: #1d224a33;
}

.navbar .nav-link:hover img {
  filter: invert(23%) sepia(82%) saturate(7094%) hue-rotate(218deg) brightness(96%) contrast(100%);
}

.btn_custom_site:hover {
  background: #1f8aff;
  color: white;
  text-transform: uppercase;
}

.btn_custom_site_danger {
  background: #ffffff;
  color: #ed4c78;
  box-shadow: 5px 4px 1px #f784a4;
  border: 1.5px solid #ed4c78;
  border-radius: 10px;

  text-transform: uppercase;
}

.btn_custom_site_danger.danger {
  background: #ed4c78;
  color: white;
  box-shadow: 5px 4px 1px #f784a4;
  border: 1.5px solid #ed4c78;
  border-radius: 10px;

  text-transform: uppercase;
}

.btn_custom_site_danger:hover {
  background: #ed4c78;
  color: white;
  text-transform: uppercase;
}

/* HTMX INDICATOR */

.htmx-indicator {
  opacity: 0;
  transition: opacity 500ms ease-in;
  display: inline-block;
}
.htmx-request .htmx-indicator {
  opacity: 1;
}
.htmx-request.htmx-indicator {
  opacity: 1;
}

.min-w-auto {
  min-width: auto !important;
}

.custom_paginator {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.container_loading {
  width: 300px;
  height: 300px;
}

.loading_request {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 99999999;
  height: auto;
}

.load_request {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: load 2s linear infinite;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 3px 2px #1f8aff;
  }
  50% {
    transform: rotate(180deg);
    box-shadow: 1px 3px 2px #1d224a;
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 1px 3px 2px #6ab3fe;
  }
}

.load_request:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgb(15 94 233 / 30%);
}

.loading_request span {
  color: black;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 120px;
  animation: text 3s ease-in-out infinite;
}

#modal-loading {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.footer_menu {
  height: 4.54rem;
}

.navbar-vertical-aside-mini-mode .navbar-vertical-aside .navbar-vertical-content {
  height: calc(100% - 4.8rem);
}

.navbar-vertical-aside-show-xl.navbar-vertical-aside-mini-mode .navbar-vertical-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.modal_reset_password {
  background-color: rgba(0, 0, 0, 0.9) !important;
  background-image: url("../img/hero_cel.jpg");
}

.card_form_login {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.card_form_login > form {
}

.container_login {
  position: absolute;
  top: 5%;
}

.container_customer_login:before {
  background-image: url("../img/hero_cel.jpg");
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  border-radius: inherit;
}

.dz-error-message {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes text {
  50% {
    color: black;
  }
}

@media ((min-width: 991px) and ( max-width: 1300px)) {
  .card_date {
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .buttons_payment {
    display: flex !important;
  }
  .pagination_inactive {
    display: none;
  }
}
