bold {
    font-size: large;
    font-weight: 700;
}

#msg {
    text-align: center;
    font-size: 0.9rem;
    position: absolute;
    color: #61b752;
    bottom: 1rem;
    display: block;
}

.disabled {
    pointer-events: none;
    background-color: rgba(255, 0, 79, 0.7);
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 9999;
    /* Ensure on top */
}

.loading-body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-in {
    position: absolute;
    left: -200px;
    /* start off screen */
    top: 42%;
    transform: translateY(-50%);
    /* center vertically */
    /* background: #3498db; */

    padding: 1rem 2rem;
    border-radius: 50%;
    /* animation */
    animation: slideIn 1s ease-out forwards;
}

.loading-body p {
    margin-top: 100px;
}

/* second animation (slide out) */
.slide-out {
    /* background-color: red; */
    animation: slideOut 1s ease-in forwards;
    /* left: 50% !important;
    transform: translate(-50%, -50%) !important; */
}

@keyframes slideIn {
    0% {
        left: -200px;
        /* off screen left */
        opacity: 0;
    }

    100% {
        left: 50%;
        /* center horizontally */
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    100% {
        left: 120%;
        transform: translate(-50%, -50%);
        opacity: 0;
    }
}

@media only screen and (max-width:975px) {
    .slide-in {
        width: 14rem;
    }
}