
    /* _______________________ loader start */
    .loader_div {
        display: none;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: fixed;
        z-index: 2000;
        background-color: aliceblue;
        opacity: 1;
        transition: opacity 0.5s ease; /* Smooth fade-out transition */
    }

    .loader_div.hide {
        opacity: 0; /* Fully transparent */
        pointer-events: none; /* Disable interaction */
    }

    .loader {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: white;
        background-color: var(--primery-color);
        color: aliceblue;
        padding: 10px;
    }

    .loader span {
        font-size: 30px;
        letter-spacing: 5px;
        line-height: 100%;
        position: relative;
        mix-blend-mode: difference;
        font-weight: 700;
        font-family: "Courier New", Courier, monospace !important;
    }

    .loader::before {
        background-color: aliceblue;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100%;
        animation: move 3s linear infinite;
        z-index: -1;
    }

    @keyframes move {
        0%, 100% {
            left: 0;
        }
        50% {
            left: calc(100% - 100px);
        }
    }
    /* _______________________ loader end */
