@charset "UTF-8";

.auditoria-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease !important;
}

/* Establece el estilo cuando la auditoría está visible */
.auditoria-collapse.show {
  max-height: 1000px;
  opacity: 1 !important;
  visibility: visible !important;
}

.animation-l {
  animation: fadeInF 0.5s;
}

@keyframes fadeInF {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10%);
  }
}

.dataTables_filter {
  display: flex;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
}

@media screen and (max-width: 600px) {
  .dataTables_filter {
    flex-direction: column-reverse !important;
  }
}

.form-control:focus {
  box-shadow: none !important;
  /* Eliminar la sombra cuando el input tiene foco */
}

.input-group {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* SWAL */
/* Animacion Text Swal */
.slide-vertical {
  overflow: hidden;
}

.slide-vertical ul,
.slide-vertical li {
  list-style: none;
  font-size: 1.3rem !important;
  margin: 0 0 0 0 !important;
  padding: 0 0 0 0 !important;
}

.slide-vertical ul {
  width: 100%;
  height: 40px;
  position: relative;
  text-align: center;
}

.elements-2 ul {
  animation: slide2 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.elements-3 ul {
  animation: slide3 6s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.slide-vertical li {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 200%;
  line-height: 40px;
  font-size: 20px;
}

.slide-vertical li:first-child {
  top: 100%;
}

.elements-2 li:last-child {
  top: 200%;
}

.elements-3 li:last-child {
  top: 300%;
}

@keyframes slide2 {
  0% {
    transform: translateY(0%);
  }

  5%,
  45% {
    transform: translateY(-100%);
  }

  55%,
  90% {
    transform: translateY(-200%);
  }

  100% {
    transform: translateY(-300%);
  }
}

@keyframes slide3 {
  0% {
    transform: translateY(0%);
  }

  6%,
  30% {
    transform: translateY(-100%);
  }

  40%,
  60% {
    transform: translateY(-200%);
  }

  70%,
  90% {
    transform: translateY(-300%);
  }

  100% {
    transform: translateY(-400%);
  }
}

.spinner-container {
  padding-top: 1rem !important;
}

/* SPINNER */


#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  height: 100%;
  width: 100%;
  display: flex
}

.loader {
  opacity: .8;
  margin: auto;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative
}

.loader:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: "#00000";
  border-radius: 50%;
  opacity: 0;
  animation: popin 1.5s linear infinite 0s
}

.loader:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: "#00000";
  border-radius: 50%;
  opacity: 0;
  animation: popin 1.5s linear infinite 0.5s
}

@keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0)
  }

  1% {
    opacity: 0.1;
    transform: scale(0)
  }

  99% {
    opacity: 0;
    transform: scale(2)
  }

  100% {
    opacity: 0;
    transform: scale(0)
  }
}

div.dt-buttons {
  gap: .8rem !important;
}

.content-datatable {
  padding: 1.375rem !important;
}

.cursor-blocked-icon {
  cursor: not-allowed !important;
}


.email-compose-form .form-control:disabled,
.email-compose-form .form-select:disabled {
  background-color: var(--bs-gray-25) !important;
}

.email-compose-form .select2:disabled,
.email-compose-form select:disabled {
  background-color: var(--bs-gray-50) !important;
}


.dataTables_wrapper {
  margin: 0px 10px;
}


/* // activar scroll a todas las tablas en pantallas pequeñas */
@media screen and (max-width: 600px) {
  .dataTables_wrapper {
    overflow-x: auto;
  }

  .dataTables_wrapper table thead th,
  .dataTables_wrapper table tbody td {
    display: table-cell !important;
  }

  .nav.nav-tabs.nav-fill {
    display: flex;
    flex-direction: column;
  }

  .dataTables_filter {
    display: flex;
    width: 100%;
  }

  .dataTables_filter div {
    width: 100%;
    padding: 0px 1rem;
  }

  .dataTables_filter label {
    display: block !important;
    width: 92.9% !important;
  }

  .dataTables_filter label input {
    width: 100% !important;
    margin-left: 0px !important;
  }

  .dt-buttons {
    display: flex;
    flex-direction: column;
  }

  .dt-buttons button span {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}


/* movil  */
@media screen and (max-width: 600px) {
  .app-email-compose.modal {
    margin: 0px !important;
  }

  .app-email-compose.modal .modal-dialog {
    margin: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}


.btn-primary {
  background-color: #FF8C00 !important;
  color: #fff !important;
  border-color: #FF8C00 !important;
}

.btn-primary:hover, .btn-primary[data-trigger=hover].show.dropdown-toggle:hover,
.btn-primary:focus, .btn-primary[data-trigger=hover].show.dropdown-toggle:focus
{
  /* // poner mas claro el color del boton */
  background-color: #FFA500 !important;
  color: #fff !important;
  border-color: #FFA500 !important;
}

.palote {
    border-left-width: 5px;
    border-left-style: solid;
    padding-left: 1rem;
    color: #ff6c17ff;
    font-size: 1.1rem;
    font-weight: 600;
}

.palote span {
    color: #434344;
    font-size: 1.1rem;
    font-weight: 600;
}
