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: 600px;
}

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

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

.image-area {
  position: relative;
  width: 298px;
  height: 399px;
  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: 300px;
  height: 84px;
  background-color: white;
  background-size: 60%;
  background-position: 59px 7px;
}

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

.img1 {
  height: 270%;
  margin-left: -608px;
  margin-top: -288px;
}

.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: 144px;
  right: -288px;
  -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: 195px;
  left: 16px;
  opacity: 0;
  -webkit-animation: textcta 1s ease-in 6.5s forwards;
          animation: textcta 1s ease-in 6.5s forwards;
}

.punch {
  position: absolute;
  top: 256px;
  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/300x600view-cta.png') no-repeat;
  width: 100%;
  height: 41px;
  bottom: 0;
  opacity: 0;
  -webkit-animation: textcta 1s ease-in 7s forwards;
          animation: textcta 1s ease-in 7s forwards;
}

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

.image-bg2 .copy {
  bottom: 51px;
  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: 199px;
}

.isi-container .header {
  text-transform: uppercase;
  /* font-weight: bold; */
  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: 256px;
    left: 304px;
    -webkit-transform: scale(.6);
            transform: scale(.6);
  }

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

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

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

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

  to {
    right: 19px;
  }
}

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

  to {
    right: 19px;
  }
}

@-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;
  }
}