/** TOP BAR **/
@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
.header-banner-slider-container {
    width: 100%;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.header-banner-slider-text {
    text-align: center;
    transform: translateY(-60px);
    position: absolute;
    text-decoration: none;
}
.header-banner-slider-text a{
    text-decoration: underline;
}
.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/** END TOP BAR **/