#wpcustom-loader {
    position: fixed;
    width:100%;
    height:100%;
    background:#ffffff;
    top:0;
    left:0;
    z-index:999999;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:25px;
    transition:opacity .5s ease;
}

.loader-logo {
    width:220px;
    height:auto;
}

.loader-circle {
    width:45px;
    height:45px;
    border:5px solid #ddd;
    border-top-color:#111;
    border-radius:50%;
    animation:wpcustom-spin 1s linear infinite;
}

@keyframes wpcustom-spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#wpcustom-loader.hide {
    opacity:0;
    pointer-events:none;
}
