/*
*************
PRELODER
*************
*/
.uca-preloader {
    position: fixed;
    background-color: #ddd;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999;
    overflow: hidden;
    left: 0
}

.animate-svg path {
    animation: draw ease-in-out forwards;
    stroke: #000;
}

.animate-svg {
    animation: fillopacity 2s ease-in-out forwards, zoom-in-zoom-out 2s infinite;
}

@keyframes draw {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes fillopacity {

    0%,
    70% {
        fill-opacity: 0;
        stroke-width: 0.5%
    }

    100% {
        fill-opacity: 1;
        stroke-width: 0
    }
}
