﻿body {
}


.loader {
    margin-top: 0rem !important;
    margin-bottom: auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 9999;
    opacity: 0.8;
    min-height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loader::before {
        content: "";
        width: 250px; /* Adjust size as needed */
        height: 250px; /* Adjust size as needed */
        background-image: url('../loader.gif'); /* Replace with your image path */
        background-size: cover;
        background-position: center;
    }