/* Add custom CSS styles below */ 
/* شريط الإعلان المتحرك */
#store_notify.store-notify {
  overflow: hidden;
}

#store_notify.store-notify p {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

#store_notify.store-notify p a {
  display: inline-block;
  white-space: nowrap;
  animation: squaloTicker 12s linear infinite;
}

@keyframes squaloTicker {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}