﻿.xup-in {
    animation: ani-up-in .5s forwards;
}


@keyframes ani-up-in {
    from {
        top: 100%;
    }

    to {
        top: 0;
    }
}

#loading-zone, #pagemask {
    position: fixed;
    display:none;
    top: 0px;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 100vh;
    background-color: #758d71;
    z-index: 3000;
}

#pagemask {
    display: block;
    background-color: #fff;
    z-index: 2000;
}

/*#loading-zone .page-load-progress{
    position:absolute;

    top:0;
    border:solid 1px green;
}*/
#loading-zone .zone {
    position: absolute;
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-80%);
}
#loading-zone .footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    font-weight: bold;
    display: flex;
    /*width: 100%;*/
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    color: white;
}

#loading-zone .page-load-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    stroke-width: 2px;
    stroke: transparent; /*swiper-theme-color*/
    fill: none;
    /*stroke-dashoffset: calc(125.6px * (1 - var(--progress)));*/
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}



#loading-zone .page-load-progress {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: transparent; /*swiper-theme-color*/
    /* background-color: white;*/
}
