/* ------------------------------------------ */
/* ------------ BOT STATUS PAGE ------------- */
/* ------------------------------------------ */

#bot_status_section{
    position: relative;
}

#bot_status_loader {
    margin-top: 20px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    animation: status 1.5s ease-in-out infinite;
}

@keyframes status {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#bot_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Inter, sans-serif;
    color: #fff;
    transform: tran;
    font-size: 1.25rem;
    transition: 0.3s;
}

#bot_info h1 {
    margin-bottom: 20px;
}

.bot_info {
    color: #494949;
    font-size: 1.5rem;
}

#status_note {
    font-size: 0.8rem;
    color: #494949;
    font-weight: 700;
    font-family: Inter, sans-serif;
    position: absolute;
    top: 5px;
    left: 10px;
}