.banner__lf {
  position: relative;
  background-color: #fff;
  background-image: url(../images.tpl/addon/lf-bg-wide.png);
  background-position: center center;
  overflow: hidden;
}
.banner__lf > .row {
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.banner__lf > .row > .text1 {
  text-transform: uppercase;
  font-weight: bold;
}
.banner__lf > .icon {
  position: absolute;
  top: 20px;
  right: 10px;
}
.banner__lf > .icon img {
  -webkit-animation: moveof 2s infinite linear;
          animation: moveof 2s infinite linear;
  width: 80px;
}

.banner__nf {
  position: relative;
  background-color: #6b7f3d;
  background-image: url(../images.tpl/addon/nf-bg-wide.png);
  background-size: auto 100%;
}
.banner__nf > .row {
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.banner__nf > .row > .victory {
  position: relative;
  -webkit-animation: scalev 2s infinite linear;
          animation: scalev 2s infinite linear;
}
.banner__nf > .row > .victory > .text1 {
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: 0;
}
.banner__nf > .row > .nf {
  position: relative;
}
.banner__nf > .text {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
.banner__nf > .text > p {
  margin: 3px 0;
  padding-left: 100%;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-animation: scrolltext 15s infinite linear;
          animation: scrolltext 15s infinite linear;
}

@-webkit-keyframes scrolltext {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
}

@keyframes scrolltext {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
}
@-webkit-keyframes scalev {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scalev {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes moveof {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(5px);
  }
  0% {
    transform: translateX(0);
  }
}
@keyframes moveof {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(5px);
  }
  0% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=banner_onf_z.css.map */