html.mlp-preloader-active,
html.mlp-preloader-active body {
    overflow: hidden !important;
    height: 100%;
}

.mlp-preloader {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    animation: mlp-overlay-out 0.85s ease forwards;
    animation-delay: 4.15s;
}

.mlp-preloader.mlp-is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mlp-stage {
    position: relative;
    width: min(78vw, 920px);
    aspect-ratio: 1964.44 / 449.78;
}

.mlp-logo-wrap,
.mlp-draw-wrap {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.mlp-logo-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.mlp-logo-svg #G0cNwh {
    opacity: 0;
    transform: translateX(0) scale(1);
    transform-box: fill-box;
    transform-origin: center;
    animation: mlp-symbol-fill 0.5s ease forwards 2.7s;
}

.mlp-logo-svg > path,
.mlp-logo-svg > g:not(#G0cNwh) {
    opacity: 0;
    transform: translateX(24px);
    transform-box: fill-box;
    transform-origin: center;
    animation: mlp-logo-reveal 0.85s ease forwards 2.45s;
}

.mlp-draw-wrap {
    inset: auto;
    top: 0;
    left: 0;
    width: 20.7%;
    height: 100%;
    transform: translateX(191.6%);
    opacity: 1;
    animation: mlp-draw-to-left 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.95s, mlp-draw-wrap-out 0.5s ease forwards 3.15s;
    will-change: transform, opacity;
}

.mlp-cross-draw {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.mlp-cross-draw path {
    fill: transparent;
    stroke: #b9902d;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    filter: drop-shadow(0 10px 18px rgba(185, 144, 45, 0.12));
    animation: mlp-cross-draw 1.28s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.mlp-cross-draw path:nth-child(2) { animation-delay: 0.08s; }
.mlp-cross-draw path:nth-child(3) { animation-delay: 0.16s; }
.mlp-cross-draw path:nth-child(4) { animation-delay: 0.24s; }
.mlp-cross-draw path:nth-child(5) { animation-delay: 0.32s; }
.mlp-cross-draw path:nth-child(6) { animation-delay: 0.40s; }
.mlp-cross-draw path:nth-child(7) { animation-delay: 0.48s; }
.mlp-cross-draw path:nth-child(8) { animation-delay: 0.56s; }

@keyframes mlp-cross-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes mlp-draw-wrap-out {
    to {
        opacity: 0;
    }
}

@keyframes mlp-symbol-fill {
    to {
        opacity: 1;
    }
}

@keyframes mlp-draw-to-left {
    to {
        transform: translateX(0);
    }
}

@keyframes mlp-logo-reveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mlp-overlay-out {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@media (max-width: 767px) {
    .mlp-stage {
        width: min(88vw, 520px);
    }

    .mlp-draw-wrap {
        width: 28%;
        transform: translateX(128.6%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mlp-preloader {
        animation-duration: 0.2s;
        animation-delay: 0.5s;
    }

    .mlp-logo-svg #G0cNwh,
    .mlp-logo-svg > path,
    .mlp-logo-svg > g:not(#G0cNwh),
    .mlp-cross-draw path,
    .mlp-draw-wrap {
        animation-duration: 0.01ms;
        animation-delay: 0s;
    }
}
