/* Start custom CSS for html, class: .elementor-element-7e7a4e6 */.moving-text-container {
  width: 100%;
  overflow: hidden;
  background-color: #FF0000;
  color: #FCF6D9; 
  padding: 12px 0;
  direction: ltr;
  position: relative;
  
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.moving-text-scroll {
  display: flex;
  width: max-content;
  animation: scroll-right 10s linear infinite;
}

.moving-text {
  flex-shrink: 0;
  padding-left: 80px; 
  font-family: 'Vazir', sans-serif; 
  
  font-weight: bold;
  direction: rtl; 
  font-size: 15px;
  white-space: nowrap;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.moving-text-container:hover .moving-text-scroll {
  animation-play-state: paused;
}/* End custom CSS */