.ticker-wrap, .ticker,  {
  box-sizing: border-box;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0.9);
  padding-left: 100%;
  box-sizing: content-box;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 2rem;
  color: white;
}

body {
  padding-bottom: 5rem;
}

h1,
h2,
p {
  padding: 0 5%;
}

.urgentTitle { background: #f00; z-index: 2; position: absolute; left: 0; top: 0; height: 30px; width: auto; color: #fff; padding-left: 5px; padding-right: 2px; font-size: 16px; line-height: 30px;}

.ticker-wrap { box-sizing:border-box; height:40px; display:block !important; position:relative; background:#f00; color:#fff; font-weight:bold; font-size:0; }
.ticker-wrap a { color:#fff; }
.ticker { box-sizing:border-block; /*border:1px solid;*/ }

.ticker-wrap,
.ticker-wrap .ticker { height:30px; line-height:30px; }

.ticker-wrap .ticker__item,
.ticker-wrap .ticker__item a { font-size: 16px !important; }
.ticker-wrap .ticker__item a:hover { text-decoration:underline; }
