/* Home News Ticker Styles:
--------------------------------------------- */
.wp-block-moe-home-newsticker .breaking-news-ticker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  border: 0;
}
@media (max-width: 767px) {
  .wp-block-moe-home-newsticker .breaking-news-ticker {
    margin-bottom: 0;
  }
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-label {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--base);
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  padding: 0 20px;
  height: 40px;
  border-radius: 5px;
  min-width: 135px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls {
  width: auto;
  min-width: 75px;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button {
  width: 25px;
  float: left;
  height: 100%;
  cursor: pointer;
  border: 0;
  text-align: center;
  outline: 0;
  background: transparent;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-arrow {
  margin: 0;
  display: inline-block;
  height: 8px;
  position: relative;
  width: 8px;
  top: -2px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-arrow:after {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
  content: '';
  display: inline-block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
  border-color: var(--wp--preset--color--base);
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-arrow:before {
  background-color: var(--wp--preset--color--base);
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-arrow.bn-next {
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  left: -3px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-arrow.bn-prev {
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 3px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-play {
  position: relative;
  background: var(--wp--preset--color--base);
  width: 0;
  height: 12px;
  display: inline-block;
  margin-left: -5px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-play:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-left-color: var(--wp--preset--color--base);
  border-width: 8px;
  margin-top: -8px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-pause {
  position: relative;
  width: 0;
  height: 14px;
  display: inline-block;
  top: 1px;
  left: -2px;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-pause:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 3px;
  background-color: var(--wp--preset--color--base);
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-controls button .bn-pause:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: -3px;
  background-color: var(--wp--preset--color--base);
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-news {
  flex-grow: 1;
  align-self: baseline;
  width: 100%;
  overflow: hidden;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-news > ul {
  margin: 0;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-news > ul li {
  min-width: 0;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-news > ul li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: inline-block;
  font-weight: 600;
  color: var(--wp--preset--color--text-primary);
  text-decoration: none;
}
.wp-block-moe-home-newsticker .breaking-news-ticker .bn-news > ul li a:hover {
  text-decoration: none;
}
