.nn-ticker {
  display: flex;
  align-items: center;
  height: 40px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  overflow: hidden;
  background: transparent;
}

.nn-ticker__label {
  flex: 0 0 auto;
  background: #b14c4c;
  color: #f2f1ee;
  font-weight: 700;
  line-height: 38px;
  padding: 0 15px;
  white-space: nowrap;
}

.nn-ticker__viewport {
  position: relative;
  flex: 1 1 auto;
  height: 40px;
  overflow: hidden;
}

.nn-ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
}

.nn-ticker__item {
  flex: 0 0 auto;
  margin-right: 40px;
  color: #313131;
  line-height: 38px;
}

.nn-ticker__item a {
  color: #313131;
  text-decoration: none;
}

.nn-ticker__item a:hover {
  text-decoration: underline;
}

.nn-ticker__controls {
  display: flex;
  flex: 0 0 auto;
}

.nn-ticker .nn-ticker__controls button.nn-ticker__prev,
.nn-ticker .nn-ticker__controls button.nn-ticker__next {
  width: 30px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #b14c4c;
  background-color: #b14c4c;
  background-image: none;
  box-shadow: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 18px;
  line-height: 38px;
  text-transform: none;
  cursor: pointer;
}

.nn-ticker__prev {
  margin-right: 1px;
}

.nn-ticker__prev:focus-visible,
.nn-ticker__next:focus-visible {
  outline: 2px solid #313131;
  outline-offset: -2px;
}