* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 



.stock-ticker {
  line-height: 1.5;
  color: #1c355e;
  padding: 100px 50px;
  font-size: 15px;
  padding-block: 8px;
  overflow: hidden;
  user-select: none;

  --gap: 50px;
  display: flex;
  gap: var(--gap);
}

.stock-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);

  animation: scroll 20s linear infinite;
}

.stock-ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(100% - var(--gap)));
  }
}




.stock-ticker .price {
  font-weight: bold;
}

.stock-ticker .price {
  margin-inline: 4px;
}

.stock-ticker .plus::before {
  content: " ☕️";
}

.stock-ticker .minus::before {
  content: " ☕️ ";
}




.s-product-card-content-pie {
  display: none !important;
}

.s-product-card-content {
  gap: 0 !important;
}


.s-product-card-promotion-title {
  background-color: #18355e !important; 
}


#nationalday-txt {
  color: white;
  background-color: #49825d;
  padding: 5px !important ;
    border-radius: 5px !important;

 
}