/*
Theme Name: AID PPT Theme
Theme URI: https://directresponsept.com
Description: A custom child theme of Astra with custom styles
Author: Flemming Arnott
Author URI: https://directresponsept.com
Template: astra
Version: 1.0.0
Text Domain: aid-ppt-theme
*/

@import url("../astra/style.css");

.announcement-bar {
    background: #204578;
    color: #fff;
    display: block !important;
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    text-align: center;"
}

.announcement-bar p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    margin: 0!important;
}

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

.announcement-bar p:hover {
    animation-play-state: paused;
}