.news-marquee-ticker {
  background-color: var(--gray);
  padding: 3px 0;
  opacity: 0;
  transition: all 0.3s;
}

.news-marquee-ticker .hnticker_marquee {
    /*display: flex;*/
    /*flex-direction: row;*/
}

.news-marquee-ticker .news-heading {
  position: relative;
  font-size: 10px;
  color: var(--white);
  min-width: 20dvh;
  padding-right: 20px;
  padding-left: 20px;
  white-space: nowrap;
}

.news-marquee-ticker .news-heading::after {
  content: '';
  padding: 6px 16px;
  background-image:url(../../../revampDesign/assets/marquee_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.news-marquee-ticker .news-heading a {
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.news-marquee-ticker .news-heading a:hover {
  color: var(--secondary);
}

/* --- (responsive) - start --- */
@media (min-width: 576px) {
  .news-marquee-ticker {
    padding: 6px 0;
  }

  .news-marquee-ticker .news-heading {
    padding-right: 38px;
    padding-left: 38px;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
}

@media(min-width: 992px) {
  .news-marquee-ticker {
    padding: 7px 0;
  }

  .news-marquee-ticker .news-heading {
    padding-right: 44px;
    padding-left: 44px;
    font-size: 14px;
  }

  .news-marquee-ticker .news-heading::after {
    padding: 8px 16px;
  }
}

@media(min-width: 1200px) {
}

@media(min-width: 1441px) {
  .news-marquee-ticker {
    padding: 8px 0;
  }

  .news-marquee-ticker .news-heading {
    padding-right: 50px;
    padding-left: 50px;
    font-size: 16px;
  }
}
/* --- (responsive) - end --- */