
.status {
    width: 100vw;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.status02{
    top: auto;
    bottom: 0;
    left: 0;
}

.marquee {
    height: 80px;
    width: 100%;
    overflow: hidden;
    position: relative;
    font-size: 80px;
    font-family: var(--Dots);
    color: var(--Black);
    text-transform: uppercase;
}

.marquee div {
    display: block;
    width: 200%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    animation: marquee 10s linear infinite;
}
.status02 .marquee div{
   animation: marquee02 10s linear infinite;
}

.marquee span {
    float: left;
    width: 50%;
    height: 80px;
    display: block;
    letter-spacing: 10px;
    line-height: 1em;
}

@keyframes marquee {
    0% {
        left: 0;
    }

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

    100% {
        left: 0;
    }
}



/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {
    
}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {
    
}

@media screen and (max-width:1024px) {
    .marquee,
    .marquee div,
    .marquee span,
    .status {
        font-size: 50px;
        height: 50px;
    }
}

@media (orientation:landscape) and (max-height: 1000px) {
   
}
@media (orientation:landscape) and (max-height: 900px) {
    
}
@media (orientation:landscape) and (max-height: 800px) {
    
}
@media (orientation:portrait) and (max-height: 1180px) {
   
}
@media (orientation:portrait) and (max-height:1024px) {

}

@media screen and (max-width:480px) {
   
    .status{
        justify-content: flex-start;
    }
    .marquee,
    .marquee div,
    .marquee span,
    .status {
        font-size: 50px;
        height: 50px;
    }
    .marquee div {
        width: 400%;
    }
  
}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-height: 896px) {}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height: 844px) {}

/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-height: 812px) {}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height: 736px) {
    
}
/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height: 667px) {
   
}
@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {


}