html.desktop {
    font-size: 62.5%;
}

.loading-body {
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    margin: 0px;
}


.loading-card {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 30.0rem;
    width: 100%;
    z-index: -1;

    box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1);
    display: block;
    padding: 0px;
    border-radius: 0px;
    background: #fff;
    color: rgba(0, 0, 0, .87);

    font-family: Roboto, "Helvetica Neue", sans-serif;
    font-size: 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    /* height: 30%; */
    /* margin-bottom: 16px; */
    padding: 2.4rem;
}

.loading-logo-container img {
    width: 250px;
    max-height: 70px;
}

#msg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 60%; */
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
}

/* spinner css */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    padding-bottom: 16px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    margin: 8px;
    border: 8px solid #003253;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #003253 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media only screen and (min-width: 768px) {
    .loading-card {
        width: 70.0rem;
        height: min-content;
        padding: 2.4rem;
        border-radius: 4px;
        bottom: 0px;
    }
}