﻿body {
}


#divLoadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(10px); 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#divLoadingContent {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    background-color: rgba(255,255,255, 0);
    text-align: center;
}

#imgLogo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}


#divHeader {
    opacity: 1 !important;
    transition: opacity 2s ease-out;
}

#divHeader.fade-out {
    opacity: 0 !important;

}

a, li {
    color: saddlebrown !important;
}

@media (max-width: 920px) {


    #divDisplay {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin-left: 0;
        margin-bottom: 1rem;
        margin-top: 0rem !important;
        padding: 0rem;
    }

    #divUserInfoDisplay,
    #divMenuDisplay,
    #divReceiptDisplay,
    #divCustomerCard {
        width: 100% !important;
        margin: 0 !important;
        padding: 10px;
        margin-bottom: 1rem !important;
        margin-top: 0rem !important;
    }
}