/* HTML: <div class="loader"></div> */
.wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    background-color: #043D5E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.logo{
    width: 300px;
    height: 100px;
    background-image: url('../images/svg/logotipo-landeros-y-vargas-bc.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

  /* HTML: <div class="loader"></div> */
.loader {
    margin-top: 24px;
    width: 90px;
    height: 14px;
    --c:#fff 90deg,#0000 0;
    background: 
        conic-gradient(from 135deg at top   ,var(--c)) 0 0,
        conic-gradient(from -45deg at bottom,var(--c)) 0 100%;
    background-size: calc(100%/4) 50%;
    background-repeat: repeat-x;
    animation: l12 1s infinite;
}
@keyframes l12 {
    80%,100% {background-position: calc(100%/3) 0,calc(100%/-3) 100%}
}
