#smartcomp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    transition: opacity .4s ease;
}

#smartcomp-preloader-logo {
    width: 230px;
    max-width: 80%;
    animation: pulse 1.6s infinite ease-in-out;
    image-rendering: auto;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1); opacity: .85; }
}

body.smartcomp-loaded #smartcomp-preloader {
    opacity: 0;
    pointer-events: none;
}
