/* Style for the Customizable Top Bar */
.top-bar {
    text-align: center;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
    white-space: nowrap;
}


p.ctb-woocommerce-text {
    text-align: center;
    font-size: 16px;
	font-weight: 600;
}


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



@media only screen and (max-width: 767px) {
	.top-bar {
	   position: relative;
}
	.top-bar p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 10s linear infinite;	
	height: 25px;
}
}

