/* Add custom CSS styles below */ 

.s-advertisement-content {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 45px; /* تقدرين تعدلينه */
}

.s-advertisement-content * {
  visibility: hidden;
}

.s-advertisement-content::before {
  content: "ياهلا وسهلا نورتونا❤️ للطلبات من خارج السعوديه يلزم تسجيل الدخول بالبريد الإلكتروني" ; /* اكتبي النص اللي تبينه */
  
  position: absolute;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  
  color: #fff;
  font-size: 18px;
  
  animation: slideText 15s linear infinite;
}

@keyframes slideText {
  0% {
    right: -100%;
  }
  100% {
    right: 100%;
  }
}