#tc-preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tc-logo-wrap {
    position: relative;
}

.tc-logo-wrap img {
    width: 100%;
    display: block;
}

.tc-logo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: rgba(255, 255, 255, 0.6);
    animation: tc-wipe 1.2s ease-in-out infinite;
}

@keyframes tc-wipe {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
}

body.tc-loaded #tc-preloader {
    opacity: 0;
    visibility: hidden;
}
