#newsticker {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #bdbdbd;
  padding: 9px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 100%;
  line-height: 30px;
}

#newsticker * {
  margin: initial;
  padding: initial;
  font-size: initial;
  font-weight: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#newsticker a {
  text-decoration: none;
}

#newsticker a:hover {
  text-decoration: underline;
}

#newsticker > div {
  padding: 0px 10px;
  background-color: #f5f5f5;
  height: 30px;
}

#newsticker .tickertitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
}

@media (max-width: 659px) {
  #newsticker .tickertitle {
    padding: 0px 0px 0px 5px;
  }
}

#newsticker .tickertitle a {
  color: var(--ticker-color, #fff);
}

#newsticker .tickertitle a.icon {
  display: none;
  height: 12px;
  width: 12px;
}

@media (max-width: 659px) {
  #newsticker .tickertitle a.icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

#newsticker .tickertitle a.icon p {
  text-align: center;
  height: 15px;
  width: 15px;
  font-size: 14px;
  line-height: 15px;
  background-color: var(--ticker-bgcolor, #2464b3);
}

#newsticker .tickertitle a.icon svg {
  width: 100%;
  height: 100%;
  background-color: var(--ticker-bgcolor, #2464b3);
}

#newsticker .tickertitle a.icon img {
  width: 100%;
  height: 100%;
}

#newsticker .tickertitle a.text {
  padding: 0px 10px;
  background-color: var(--ticker-bgcolor, #2464b3);
  display: block;
}

@media (max-width: 659px) {
  #newsticker .tickertitle a.text {
    display: none;
  }
}

#newsticker .tickertelop {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

#newsticker .tickertelop ul {
  width: 100%;
  overflow: hidden;
}

#newsticker .tickertelop ul li {
  display: none;
}

#newsticker .tickertelop ul li.tickeractive {
  display: block;
}

#newsticker .tickertelop ul li a {
  white-space: nowrap;
  display: inline-block;
  vertical-align: -4%;
}

#newsticker .tickercontroller {
  cursor: pointer;
  padding-left: 0px;
  display: initial;
}

@media (max-width: 659px) {
  #newsticker .tickercontroller {
    display: none;
  }
}

#newsticker .tickercontroller > div {
  display: inline;
}
/*# sourceMappingURL=main.css.map */