html {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #fff;
  position: relative;
  font-family: Arial, sans-serif;
  border: solid 1px #3B60AF;
  width: 300px;
  height: 250px;
}

.main {
  background-color: #03080A;
}

.lung-icon {
  width: 11px;
  height: 11px;
}

.image-area {
  position: relative;
  width: 298px;
  height: 155px;
  overflow: hidden;
}

.image-area a {
  position: absolute;
  display: inline-block;
}

.image-area .cta {
  width: 100%;
  height: 100%;
  top: 0;
}

.taf-mek-logo {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/logo.svg") no-repeat;
  width: 126px;
  height: 47px;
  background-color: white;
    border-radius: 0 0 12px;
    background-size: 80%;
    background-position: 12px 3px;
}

/* add to auto later */
.image-bg {
  overflow: hidden;
  height: inherit;
}

.img1 {
  height: 285%;
  margin-left: -64px;
  margin-top: -195px;
}

.fade-img {
  position: absolute;
  bottom: 0;
  -webkit-animation: imgbg 1s ease-in-out 5s forwards;
          animation: imgbg 1s ease-in-out 5s forwards;
}

.text2 {
  position: absolute;
  top: 64px;
  right: -232px;
  -webkit-animation: text2 .5s ease-in-out 1s forwards;
          animation: text2 .5s ease-in-out 1s forwards;
}

.image-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  -webkit-animation: bgB 1s ease-in-out 5s forwards;
          animation: bgB 1s ease-in-out 5s forwards;
}

.text3 {
  position: absolute;
  top: 58px;
  left: 13px;
  opacity: 0;
  -webkit-animation: textcta 1s ease-in 6.5s forwards;
          animation: textcta 1s ease-in 6.5s forwards;
}

.punch {
  position: absolute;
  top: 128px;
  left: 304px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-animation: punchin .5s ease-in 6s forwards;
          animation: punchin .5s ease-in 6s forwards;
}

.cta-btn {
  background: url('../images/300x250view-cta.png') no-repeat;
  width: 100%;
  height: 28px;
  bottom: 0;
  opacity: 0;
  -webkit-animation: textcta 1s ease-in 7s forwards;
          animation: textcta 1s ease-in 7s forwards;
}

.copy {
  position: absolute;
  bottom: 10px;
  left: 13px;
  -webkit-animation: imgbg 1s ease-in-out 5s forwards;
          animation: imgbg 1s ease-in-out 5s forwards;
}

.image-bg2 .copy {
  bottom: 35px;
  opacity: 0;
  -webkit-animation: textcta 1s ease-in 7s forwards;
          animation: textcta 1s ease-in 7s forwards;
}

.isi-container {
  overflow-y: scroll;
  overflow-x: hidden;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  /*
	Introduced in IE 10.
	See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
	*/
  -ms-user-select: none;
  user-select: none;
  background: white;
  width: 100%;
  height: 93px;
}

.isi-container .header {
  text-transform: uppercase;
  color: #0096DB;
}

.isi-container p {
  font-size: 13px;
}

.isi-container a {
  color: #0096DB;
}

.isi-container sup,
.isi-container sub {
  font-size: 60%;
}

.isi-container .isi-text-container {
  padding: 0 10px 0 12px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.click-wrapper {
  width: 100%;
  height: 20px;
}

.click-wrapper a {
  display: inline-block;
  width: 50%;
  height: 100%;
}

body.screenshot {
  overflow: visible;
}

body.screenshot .isi-container {
  overflow-y: visible;
  overflow-x: visible;
  margin-top: -.8rem;
  height: 210px;
}

body.screenshot .isi-container .isi-text-container {
  padding-bottom: 10px;
}

/* animations */

@-webkit-keyframes textcta {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes textcta {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes punchin {
  0% {
    top: 128px;
    left: 304px;
    -webkit-transform: scale(.6);
            transform: scale(.6);
  }

  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes punchin {
  0% {
    top: 128px;
    left: 304px;
    -webkit-transform: scale(.6);
            transform: scale(.6);
  }

  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes text2 {
  from {
    right: -232px;
  }

  to {
    right: 75px;
  }
}

@keyframes text2 {
  from {
    right: -232px;
  }

  to {
    right: 75px;
  }
}

@-webkit-keyframes imgbg {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes imgbg {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes bgB {
  0% {
    background-color:transparent;
  }

  100% {
    background-color: #03080A;
  }
}

@keyframes bgB {
  0% {
    background-color:transparent;
  }

  100% {
    background-color: #03080A;
  }
}