.nrcn_info_ticker {
  background-color: #CE0058;
  color: #fff;
  padding: 10px;
  width: 100%;
  overflow: hidden;
}

.scrolling_container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow; hidden;
  position: relative;
}

.scrolling_message {
  display: flex;
  align-items: center;
  padding: 2px 5px;
  white-space: nowrap;
  margin-right: 5px;
}

.scrolling_message, 
.scrolling_message > span {
  font-family: 'Poppins' !important;
  text-transform: uppercase;
  user-select: none;
}

.scrolling_message .white {
  color: #fff;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 24px;
  letter-spacing: 0.48px;
}

.scrolling_message .yellow {
  color: #E7FF51;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 10px 0 8px;
  font-family: Poppins;
  line-height: 35px;
}

.animate_inner_message > .scrolling_message {
  animation: scrollLeft 13s linear infinite;
  animation-delay: 2s;
  position: relative;
}

@keyframes scrollLeft {
  0% {
    left: 0;
  }
  100% {
    left: -1146px;
  }
}