.offline-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e67e22;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    overflow: hidden;
}
#offlineMessage{
    padding: 10px;
    /* margin-top: 68px; */
}
.sliding-bar {
    position: absolute; 
    top: 0;
    left: -100%;
    height: 5px; 
    width: 100%;
    background-color: #ffffff;
    animation: slide 2s linear infinite;

    
}

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* 1111111111111111111111111111111111111111 */
