html, body {
    height: 100%;
    margin: 0;
}
body:has(app-root:empty) {
    background-color: #dedede;
    background-image: url('/shared-application-resources/V1/images/svg-src/tools/loading.svg');
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;
}
body:has(app-root:empty) #akc-app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
main {
    min-height: calc(100vh - 91px - 91px);
}

#akc-app-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: #003594;
    color: white;
    font-family: Lato;

   
    box-sizing: border-box;
    margin-top: auto;
}

#akc-app-footer p.akc-app-footer__copy {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: 0.04px;
    margin: 0;
    color: white;
}

#akc-app-footer ul.akc-app-footer__resources {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#akc-app-footer ul.akc-app-footer__resources li.akc-app-footer__resources-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#akc-app-footer ul.akc-app-footer__resources li.akc-app-footer__resources-list a.akc-app-footer__resources-link {
    color: white;
    text-decoration: underline;
    line-height: 1.67;
    letter-spacing: 0.04px;
    font-family: Lato;
    font-size: 12px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    #akc-app-footer {
        padding: 16px;
        font-size: 12px;
    }
    main {
        min-height: calc(100vh - 89px - 61.5px);
    }
}