body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-family: Arial, Helvetica, sans-serif;
  font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
}

.container .creative {
  text-align: center;
}

.container .creative .logo {
  width: 64px;
  margin: 10px 0 0 0;
}

.container .creative h1 {
  font-size: 17px;
  color: #000;
  text-transform: uppercase;
}

.container .creative #imgSlider {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .creative #imgSlider img {
  opacity: 0;
  width: 320px;
  position: absolute;
}

.container .bubble {
  width: 280px;
  display: block;
  text-align: center;
  border-radius: 5px;
  margin: 10px auto 0 auto;
  border: 1px dotted #ccc;
  padding: 10px 10px 0px 10px;
}

.container .bubble .rating {
  width: 120px;
}

.container .bubble .tagline {
  color: #111;
  display: block;
  font-size: 11px;
  font-style: italic;
}

.container h2 {
  color: #333;
  font-size: 15px;
  text-align: center;
}

.container h5 {
  color: #777;
  font-size: 10px;
  text-align: center;
  font-weight: normal;
}

.container .tagline2 {
  color: #717171;
  display: block;
  font-size: 11px;
  text-align: center;
}

.container .tagline2 strong {
  text-transform: uppercase;
  text-decoration: underline;
}

.container .btn {
  width: 100%;
  color: #fff;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 18px;
  margin: 10px auto;
  max-width: 300px;
  font-weight: bold;
  border-radius: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  background-color: #FF9800;
}

.container .badge {
  width: 160px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}

.container .badge img {
  width: 100%;
}

.fadeInUp {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/*# sourceMappingURL=styles.css.map */