/* breaking news ticker */
.breaking-news {
  display: flex;
}
.breaking-news > .breaking-news-title {
  background-color: red;
  font-weight: bold;
  color: white;
  border: 1px solid transparent;
  padding: 13px 10px 10px 10px;
  text-align: center;
  white-space: nowrap;
  width: 130px;
}
.breaking-news > .breaking-news-body {
  display: inline-block;
  max-width: calc(100% - 130px);
  background: black;
  color: white;
  border: 1px solid #343434;
  padding: 13px 10px 10px 10px;
  cursor: pointer;
  white-space: nowrap;
}
.breaking-news .breaking-news-item {
  display: inline-block;
  padding-right: 100px;
  white-space: nowrap;
}

/* marquee */
.marquee {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}