#ktc__marquee {
  width: 100%;
  padding: 10px;
  background-color: white;
  height: 46px;
  box-sizing: border-box;
  display: block;
  bottom: 0;
  position: relative;
  overflow: hidden;
}

#ktc__marquee:before {
  position: absolute;
  top:0;
  left: 0;
  height: 46px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  /* border-right: 10px solid white; */
  background: #f49700;
  color: white;
  font-weight: bold;
}

#ktc__marquee__wrapper {
  font-family: "Roboto Condensed",sans-serif;
  width: 100%;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 60s linear infinite;
}

#ktc__marquee__wrapper:hover{
animation-play-state: paused;
}

@keyframes marquee {
  0% { left: 120px; }
  50% { left: -110%; }
  100% { left: 120px; }
}

#ktc__marquee__wrapper a {
  margin: 0 10px;
  text-decoration: none;
  color: #2e2e2e;
  padding-right: 10px;
  border-right: 1px solid #eaeaea;
}

.ktc__marquee__discount {
  display: inline-block;
  margin: 0 4px;
  font-weight: bold;
  font-family: "Roboto Condensed",sans-serif;
  color: #fff;
  padding: 3px .8rem;
  border-radius: 1.2rem;
  background: #45c673;
}

.ktc__marquee__price {
  color: #f49700;
  display: inline-block;
}