/* pre-bootstrap */

body,
html {
    height: 100%;
}
.app-loading {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.app-loading .message {
    display: flex;
    padding: 1rem;
}
.app-loading .message .dots {
    margin-left: 5px;
}
.app-loading .message .dots span {
    position: relative;
    bottom: 0px;
    -webkit-animation: jump 1500ms infinite;
    animation: jump 2s infinite;
}
.app-loading .message .dots .dot-1 {
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
}
.app-loading .message .dots .dot-2 {
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
}
.app-loading .message .dots .dot-3 {
    -webkit-animation-delay: 600ms;
    animation-delay: 600ms;
}
@-webkit-keyframes jump {
    0% {
        bottom: 0px;
    }
    20% {
        bottom: 5px;
    }
    40% {
        bottom: 0px;
    }
}

@keyframes jump {
    0% {
        bottom: 0px;
    }
    20% {
        bottom: 5px;
    }
    40% {
        bottom: 0px;
    }
}

/* Pre bootstrap styles */
#prebootstrapmsg.prebootstrap-error {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
}

#prebootstrapmsg.error-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
}

#prebootstrapmsg.fingerprint {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

#prebootstrapmsg.2 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    color: #333333;
    max-width: 600px;
}

#prebootstrapmsg.error-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

#prebootstrapmsg.error-details {
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
    background-color: #f0f8ff;
    padding: 1rem;
    width: auto;
    max-width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}
