@keyframes ani {
    from {
        filter: blur(5px);
        opacity: 0;
    }

    to {
        letter-spacing: 0;
        filter: blur(0);
        opacity: 1px;
    }
}

@keyframes animate-ms {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

@keyframes thongbao-top {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    33.3333% {
        transform: translate3d(0, 0, 0) scale(0.5);
    }

    66.6666% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    0% {
        box-shadow: 0 0 0 0px var(--color-white,#fff),0 0 0 0px var(--color-white,#fff);
    }

    50% {
        transform: scale(0.98);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0,210,255,0),0 0 0 30px rgba(0,210,255,0);
    }
}

@keyframes logo {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33.3333% {
        transform: translate3d(0, 0, 0) scale(0.9);
    }
    66.6666% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    0% {
        box-shadow: 0 0 0 0px #fff, 0 0 0 0px #fff;
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0), 0 0 0 30px rgba(0, 210, 255, 0);
    }
}

#logo img {
    animation: logo 2000ms infinite;
    border-radius: 30px;
}

.noti-message {
    width: 100%;
    animation: ani 1.5s;
}

.header-top {
    background-size: 40px 40px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, 
    transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    width: 100%;
    color: #fff;
    padding: 10px 0px;
    position: sticky;
    top: 0;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    animation: animate-ms 2s linear infinite; /* Sửa lại animation */
    z-index: 4;
    box-sizing: border-box;
}

.noti-message i {
    animation: thongbao-top 1000ms infinite;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}

h1.logoimgtrangchu {
    margin-bottom: 0;
}

.header-main a.nav-top-link {
    font-size:16px;
    font-weight:400;
    line-height: 1.3em;
    position: relative;
}

.header:not(.transparent) .header-main .current-menu-item a.nav-top-link {
    color:var(--color-green,#b8ff2f);
}

.header-main a.nav-top-link:after {
    content: "";
    background-color: #b8ff2f;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    transition: 0.5s;
}

.header-main a.nav-top-link:hover:after {
    width: 100%;
}

.header:not(.transparent) .header-main a.nav-top-link:hover {
    color:var(--color-green,#b8ff2f);
}

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

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