 @keyframes scroll-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
 }

.scroll-container {
    position: absolute;
    overflow: hidden;
    margin: auto; 
    /* width: 50%; */
    height: 30px;
    white-space: nowrap;
    font-size: 16px;
    /* left: 0;
    right: 0; */
    margin-top: 10px;
    animation: scroll-blink 1s infinite; 
}

#scroll-text.scroll-container a {
    text-decoration: unset;
    color: red !important;
}

.login.scroll-container {
    position: relative;
}


#announce-content {
    padding: 10px 20px;
    font-size: 14px;
}

#announce-content p {
    padding: 5px 0;
}

.text-indent {
    text-indent: 50px;
}

.announce-content-footer {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: right;
    float: right;
    width: 50%;
}

#announce-langauage {
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}

.announce-content-footer.th {
    text-align: center;
}

.announce-content-footer.ch {
    width: 100%;
}

.announce-content-footer.ch #anounceFooter1{
     text-align: left;
     text-indent: 50px;
}