@charset "UTF-8";


.hover\:bg-primary:hover,
.hover\:bg_primary:hover {
	background-color: var(--primary)!important;
}

.hover\:bg-secondary:hover,
.hover\:bg_secondary:hover {
	background-color: var(--secondary)!important;
}


.c-branded {
    border:none;
    border-left: 4px solid var(--secondary);
    position: fixed;
    height: 100vh;
}

@media only screen and (max-width: 40em){
    
    .c-branded {
        border:none;
        border-top: 4px solid var(--secondary);
        width: 100vw;
        height: 4px;
        position: absolute;
    }
}

/* -------------------------------------------------- */
/* Estilo del precargador */
#loading_content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: #fff;
    z-index: 9999;
  }
  #loading_content .spinner {
    animation: rotate 1s linear infinite;
    width: 50px;
    height: 50px;
  }
  #loading_content .path {
    stroke: var(--secondary);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
  }
  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes dash {
    0% {
      stroke-dasharray: 1, 150;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -35;
    }
    100% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -124;
    }
  }
  #loading_content.loaded {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    height: 0;
    width: 0;
  }

  

/* Loader aplicado directamente al img */
img.lazy-preloader {
    background: #f0f0f0;
    position: relative;
}

/* Spinner centrado */
img.lazy-preloader::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}