#loader_wrapper {
    background-color: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-logo {
    width: 100px; /* Adjust the size of the logo */
    height: auto;
    animation: pulse 1.5s infinite ease-in-out; /* Add the pulse animation */
}

@keyframes pulse {
    0% {
        transform: scale(1); /* Normal size */
    }

    50% {
        transform: scale(1.1); /* Slightly larger */
    }

    100% {
        transform: scale(1); /* Back to normal size */
    }
}

.loader {
    font-size: 48px;
    color: #FFF;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    position: relative;
}

    .loader:after {
        content: 'Loading';
        position: relative;
        z-index: 5;
    }

    .loader:before {
        content: '';
        height: 6px;
        border: 1px solid;
        border-radius: 10px;
        width: 100%;
        position: absolute;
        bottom: 0px;
        background: linear-gradient(#FF3D00 100%, transparent 0) no-repeat;
        background-size: 0% auto;
        animation: 10s lineGrow linear infinite;
    }

@keyframes lineGrow {
    to {
        background-size: 100% auto;
    }
}
