/* Loader */
@-webkit-keyframes wpcz-spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes wpcz-spin {
    to {
        transform: rotate(360deg);
    }
}

.wpcz .wpcz-loader {
    -webkit-transition: opacity 1s ease, visibility 0s linear 1s;
    transition: opacity 1s ease, visibility 0s linear 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: var(--wpcz-loader-bg-color);
}

.wpcz .wpcz-loader__progress {
    inline-size: 6em;
    block-size: 6em;
    border: 0.625em solid var(--wpcz-loader-fill-color);
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    -webkit-animation: wpcz-spin 0.6s linear infinite;
    animation: wpcz-spin 0.6s linear infinite;
}
