#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-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-fill-mode: none;
  animation-fill-mode: none;
}

#gradient-overlay {
  position: absolute;
  opacity: 0.24;
  background-image: -webkit-radial-gradient(48% 43%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 86%);
  background-image: -moz-radial-gradient(48% 43%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 86%);
  background-image: -ms-radial-gradient(48% 43%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 86%);
  background-image: -o-radial-gradient(48% 43%, circle closest-side, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 86%);
  background-image: radial-gradient(circle closest-side at 48% 43%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 86%);
}

#background {
  background-color: #003346;
}

#background-bottom {
  position: absolute;
  background-color: #002433;
}

#gradient-image {
  position: absolute;
  width: 300px;
  height: 41px;
  background-image: url('gradient.png');
  opacity: 0.23;
}

#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.1;
}

#logo-image {
  position: absolute;
}

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

#button {
  position: absolute;
  overflow: hidden;
  width: 110px;
  height: 30px;
  background-color: #005fe7;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.56);
  -webkit-animation-name: button_animation;
  animation-name: button_animation;
}

#button-glow {
  width: 110px;
  height: 30px;
  -webkit-animation-name: button_animation;
  animation-name: button_animation;
}

#button-text {
  position: absolute;
  width: 105px;
  height: 21px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  color: #fff;
  -webkit-animation-name: button_animation;
  animation-name: button_animation;
  line-height: 1.3;
}
