#adContent {
  position: absolute;
  left: 0;
  top: 0;
}

.container {
  position: absolute;
  left: 0;
  top: 0;
}

.border {
  border: 1px solid #000;
}

.linear-animation {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}

.ease-animation {
  -webkit-animation-timing-function: cubic-bezier(0.34, 0.66, 0.66, 1);
  animation-timing-function: cubic-bezier(0.34, 0.66, 0.66, 1);
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}

#gradient-overlay {
  position: absolute;
  opacity: 0.7;
}

#background {
  background-color: #0f304f;
}

#headline {
  position: absolute;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  -webkit-animation-name: headline_animation;
  animation-name: headline_animation;
  line-height: 1.2;
}

#description {
  position: absolute;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  -webkit-animation-name: description_animation;
  animation-name: description_animation;
  line-height: 1.3;
}

#logo-image {
  position: absolute;
}

#product-image {
  position: absolute;
  -webkit-animation-name: product_animation;
  animation-name: product_animation;
}

#button-container {
  position: absolute;
  width: 113px;
  height: 27px;
  background-color: #fff;
  border-radius: 2px;
}

#button {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 111px;
  height: 25px;
  background-color: #cc3;
  border-radius: 2px;
}

#button-glow {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 109px;
  height: 23px;
  border-radius: 2px;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
}

#button-text {
  position: absolute;
  width: 98px;
  height: 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1;
}
