/*.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 }
}


/*==============================
DISEÑO PARA CARGA DE DOCUMENTOS
==============================*/

.document-item{
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .25s ease;
    position: relative;
}

.document-item:hover{
    border-color: #1e87f0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.document-item label{
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.document-desc{
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.document-item input[type="file"]{
    border: 1px dashed #dcdcdc;
    padding: 10px;
    border-radius: 6px;
    background: #fafafa;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
}

.document-item input[type="file"]:hover{
    background: #f3f7ff;
    border-color: #1e87f0;
}

.document-actions{
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.document-actions a{
    text-decoration: none !important;
}

.doc-view{
    font-size: 13px;
    color: #1e87f0;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}

.doc-view:hover{
    text-decoration: underline;
}