.comp__articles_ticker .wide-layout,
.comp__articles_ticker .wide-layout>.row,
.comp__col {
  padding: 0;
  margin: 0;
}

.comp__col {
  height: 100%;
}

.comp__title {
  background-color: #2b2b2b;
  /* display: table; */
  /* height: 64px; */
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.comp__title span {
  /* display: table-cell;
  margin: 0;
  vertical-align: middle; */
}

/* .ticker-wrapper {
  height: 64px;
} */

.the-slider {
  background-color: black;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 64px;
}

.the-slider-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
}

.ticker-animate {
  animation: moveSlideshow;
  animation-delay: 0;
  animation-direction: normal;
  animation-duration: 20s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.ticker-animate:hover {
  animation-play-state: paused
}

.the-slider-content .item {
  flex: 1 0 auto;
}

.item {
  height: 100%;
  padding: 20px 40px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.owl-articles-ticker,
.ticker__title {
  font-size: 14px;
  line-height: 1.2;
}

.owl-articles-ticker,
.owl-articles-ticker a,
.owl-articles-ticker a:hover,
.owl-articles-ticker a:focus,
.comp__title {
  color: white;
}

.owl-articles-ticker a {
  display: inline-block;
  height: 100%;
}

.owl-articles-ticker a:hover,
.owl-articles-ticker a:focus {
  text-decoration: underline;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-100%);
  }
}

@media (min-width: 1220px) {
  .comp__title {
    background-color: #b15e0a;
  }
}