/*.uk-tab > * > a{*/
/*    background: #f6f6f6;*/
/*    border-radius: 20px;*/
/*    padding: 8px 20px;*/
/*    text-decoration: none;*/
/*    color: #787878;*/
/*}*/
/*.uk-tab > .uk-active > a{*/
/*    background: var(--mi-color);*/
/*    color: #fff;*/
/*}*/
/*.uk-tab::before{*/
/*    content: none;*/
/*}*/

.elv-uldelineas{
    
}
.elv-uldelineas > li{
    border: solid 1px #e7e7e7;
    border-radius: 6px;
    color: var(--mi-color);
    font-weight: 500;
    padding: 13px 0px 0px 15px;
}
.elv-uldelineas > li > ul{
    color: #444;
    font-weight: 400;
    padding: 0px 20px 13px 20px;
}
.elv-uldelineas > li > ul > li{
    font-size: 14px;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s; /*ease-out Incrementa el tiempo de transición */
}
#loading-screen > div{
    display: flex; 
    justify-content: center;
    flex-direction: column;
}
/* Efecto de fade in/out en la imagen */
#loading-screen img {
    width: 250px; /* Ajusta el tamaño según sea necesario */
    opacity: 0;
    animation: fadeInOut 2s infinite;
}

#loading-screen > div > p{
    display: flex;
    justify-content: center;
    margin-top: 0px;
}

/* Animación de fade in/out */
@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.loader-xyz, .loader-xyz:before, .loader-xyz:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader-xyz {
  color: var(--mi-color);
  font-size: 6px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader-xyz:before,
.loader-xyz:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader-xyz:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader-xyz:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}
    