/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.8
*/

.quick-notice-bar {
    background: #4f4fab;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #ccc;
}

.quick-notice-ticker {
    display: flex;
    align-items: center;
    height: 32px;
    position: relative;
}

.quick-notice-items {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.quick-notice-items:hover {
	animation-play-state: paused;
}

.notice-item {
    display: inline-block;
    margin-right: 50px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
	font-size: 12px;
}

.notice-item:hover {
    text-decoration: underline;
	color: #fff;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

