/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Custom styling  */
body {
  background-color: #fe0060;
  color: white;
  /* 	font-family: 'Roboto Mono', monospace; */
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

#playground {
  position: absolute;
  top: 0px;
  margin-left: -500px;
  left: 50%;
  width: 1000px;
  position: relative;
  padding-top: 75px;
}

a {
  color: white;
}

h1 {
  font-size: 36px;
  width: 35%;
  line-height: 46px;
  font-weight: 700;
}

h3 {
  font-size: 36px;
  line-height: 46px;
  width: 35%;
  font-weight: 700;
}

h2,
p {
  font-size: 24px;
  line-height: 30px;
  width: 35%;
  margin-top: 20px;
}

h1 i,
h1 strong,
h2 strong,
p i,
p strong {
  color: white;
  animation-name: glossy-text;
  animation-iteration-count: infinite;
  animation-duration: 4s;
}

h2 strong.glossy1,
p strong.glossy1 {
  animation-delay: 0.25s;
}

h2 strong.glossy2,
p strong.glossy2 {
  animation-delay: 0.5s;
}

h2 strong.glossy3,
p strong.glossy3 {
  animation-delay: 0.75s;
}

h2 strong.glossy4,
p strong.glossy4 {
  animation-delay: 1s;
}

@keyframes glossy-text {
  0% {
    color: white;
  }

  60% {
    color: white;
  }

  75% {
    color: #ffd56d;
  }

  100% {
    color: white;
  }
}

h1 strong,
h2 strong,
h3 strong,
p strong {
  font-weight: 700;
}

#gumgum-wizard {
  position: absolute;
  top: 210px;
  z-index: 1;
}

#gumgum-wizard img {
  height:360px
}

@media(max-width:1490px){
  #gumgum-wizard {
    display: none;
  }
}

.playground-logo img {
  width: 160px;
  margin-top: 18px;
}

.section-icon {
  background-color: #fe0060;
  width: 75px;
  border: 3px solid white;
  border-radius: 40px;
  margin-bottom: 20px;
}

.btn {
  background-color: white;
  color: #ff0060;
  padding: 0 20px 0 30px;
  border: 3px solid transparent;
  line-height: 40px;
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(1, 0.78, 0.59, 1.45);
  cursor: pointer;
}

.btn:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: calc(100% - 10px);
  background-color: #ff0060;
  content: " ";
  box-shadow: 0px 10px 0px rgba(0, 0, 0, 0);
  border-radius: 5px;
  transition-property: all;
  transition-duration: 0.25s;
  transition-delay: 0.25s;
  transition-timing-function: cubic-bezier(1, 0.78, 0.59, 1.45);
}

.btn:hover:before {
  background-color: rgba(0, 0, 0, 0.25);
}

.btn:hover {
  background-color: #fe0060;
  color: white;
  border-color: white;
  box-shadow: 0px 10px 0px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

/* HEADER START */
header {
  position: fixed;
  top: 0px;
  width: 1000px;
  height: 75px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(254, 0, 96, 0.8);
  z-index: 99;
}

header svg path {
  fill: #fff !important;
}

header svg {
  width: auto;
  height: 75px;
  position: absolute;
  top: 0px;
  left: 0px;
}

header ul a {
  text-decoration: none;
}

header ul a:hover {
  border-bottom: 1px solid white;
}

header ul {
  position: absolute;
  right: 0px;
  top: 0px;
  line-height: 75px;
}

header ul li {
  float: left;
  margin-left: 20px;
}

header ul ul {
  display: none;
  width: 200px;
  margin-left: 30px;
}

header ul li.aip:hover ul {
  display: block;
}

header ul ul li {
  clear: both;
  float: none;
  position: relative;
}

header ul li.aip {
  position: relative;
  padding-left: 55px;
}

header ul li.aip svg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
}

header ul ul {
  position: absolute;
  top: 75px;
  left: 20px;
  background-color: rgba(176, 22, 76, 1);
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

header ul ul img {
  width: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
}

header ul ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 50px;
  padding-left: 30px;
}

header ul ul li:hover {
  background-color: rgba(254, 0, 96, 0.9);
  border-radius: 5px;
}

header ul ul li a {
  display: block;
  width: calc(100% - 40px);
  padding: 0 20px;
}

header ul ul a:hover {
  border: none;
}

/* HEADER END */
/*  S1 START  */
#s1 {
  width: 100%;
  height: calc(840px);
  position: relative;
}

#s1 h1 {
  padding-top: 140px;
}

#s1 h1,
#s1 h2,
#s1 p {
  margin-left: 50px;
}

#s1-phone {
  position: absolute;
  top: 50px;
  right: 70px;
  width: 350px;
}

#s1-phone img {
  width: 280px;
}

#s1-phone svg path {
  fill: #ff76aa;
}

#s1 #crosshairs-container {
  position: absolute;
  top: 0px;
  right: -150px;
  width: 800px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  color: #f7b71b;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.75;
  z-index: 9;
}

#s1 #crosshairs-container.active {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

#s1 #crosshairs-container #crosshairs-attention-time {
  position: absolute;
  top: auto;
  top: 202px;
  left: 560px;
  width: 100px;
  height: 50px;
  text-align: center;
  font-size: 30px;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
}

#s1 #crosshairs-container #crosshairs-attention-time:before {
  content: "Seconds";
  position: absolute;
  top: 30px;
  left: 0px;
  width: 100px;
  font-size: 10px;
  text-align: center;
  transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

#s1 #crosshairs-container #crosshairs-viewability {
  position: absolute;
  top: auto;
  top: 599px;
  left: 283px;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  display: none;
}

#s1 #crosshairs-container #crosshairs-viewability:before {
  content: "Seconds";
  position: absolute;
  top: 20px;
  left: 0px;
  width: 100px;
  font-size: 10px;
  text-align: center;
  transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

#crosshairs-container .orb-label {
  position: absolute;
  top: 640px;
  left: 120px;
  color: #f7b71b;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 12px;
  opacity: 0;
}

#crosshairs-container .orb-label span {
  display: block;
  font-size: 18px;
  background-color: #f7b71b;
  color: rgba(254, 0, 96, 1);
  margin-top: 5px;
  padding: 5px;
}

#s1 #crosshairs-container img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 800px;
}

#s1 #dogo-video {
  position: absolute;
  top: 64px;
  right: 158px;
  width: 243px;
}

#s1 #crosshairs-container #c-icon {
  opacity: 0.5;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

#s1 #crosshairs-container.active #c-icon {
  opacity: 1;
}

#s1 #c1 {
  animation-name: c1_an;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes c1_an {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#s1 #c2 {
  animation-name: c2_an;
  animation-duration: 35s;
  animation-iteration-count: infinite;
}

@keyframes c2_an {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

#s1 #c3 {
  animation-name: c3_an;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes c3_an {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }

  25% {
    transform: translateX(0px);
    opacity: 1;
  }

  60% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(25px);
    opacity: 0;
  }
}

#s1 #c4 {
  animation-name: c4_an;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes c4_an {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }

  25% {
    transform: translateX(0px);
    opacity: 1;
  }

  60% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(-25px);
    opacity: 0;
  }
}

#s1 #c5 {
  animation-name: c5_an;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes c5_an {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-15deg);
  }

  80% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#top-orb-container {
  position: absolute;
  top: 450px;
  left: 350px;
  width: 280px;
  height: 1100px;
  z-index: 9;
}

#top-orb-container .orb {
  position: absolute;
  top: 0px;
  right: 50px;
  left: auto;
  width: 100px;
  height: 100px;
  background: rgb(255, 183, 39);
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb727', endColorstr='#ff7927', GradientType=1);
  border-radius: 50%;
  background-color: #ff9727;
  box-shadow: 0 0 5px 5px #ff9727, /* inner yellow */ 0 0 10px 5px #ff9727,
    /* middle magenta */ 0 0 15px 5px rgba(0, 0, 0, 0);
  /* outer cyan */
}

#top-orb-container .orb1:before,
#top-orb-container .orb2:before,
#top-orb-container .orb3:before,
#top-orb-container .orb4:before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../img/orb-icon1.png");
  background-size: 100% auto;
}

#top-orb-container .orb2:before {
  background-image: url("../img/orb-icon2.png");
}

#top-orb-container .orb3:before {
  background-image: url("../img/orb-icon3.png");
}

#top-orb-container .orb4:before {
  background-image: url("../img/orb-icon4.png");
}

/* S1 END */
/* S2 START */
#s2 {
  width: 100%;
  height: 1100px;
  overflow: hidden;
  position: relative;
}

#smoke-canvas {
  position: absolute;
  top: 60px;
  left: 50%;
  margin-left: -800px;
  width: 1100px;
  height: 500px;
  transform: rotate(9deg);
}

#s2 h3 {
  padding-top: 30px;
}

#s2 h3,
#s2 p {
  padding-left: 530px;
}

#aip-logo-container,
#aip-full-logo-container {
  position: absolute;
  top: 10px;
  left: 75px;
  width: 400px;
  height: 300px;
}

#aip-logo-container svg,
#aip-full-logo-container svg {
  position: absolute;
  top: 90px;
  left: 30px;
  fill: #fff;
  width: 350px;
}

#aip-full-logo-container {
  opacity: 0;
}

#aip-full-logo-container svg {
  animation-name: full-logo-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes full-logo-animation {
  0% {
    opacity: 0.75;
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0.75;
  }
}

#aip-container {
  position: absolute;
  top: 350px;
  left: 200px;
  width: 600px;
}

#aip-container img#aip-back {
  position: relative;
}

#aip-container img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

#aip-container ul {
  position: absolute;
  top: 375px;
  left: -50px;
}

#aip-container ul li a img {
  width: 100px;
  height: 100px;
  background-color: #ff0060;
  border-radius: 55px;
  border: 3px solid white;
}

#aip-container ul li {
  position: absolute;
  width: 100px;
  height: 100px;
}

#aip-container ul li.ico-insights {
  top: 0px;
  left: 0px;
}

#aip-container ul li.ico-insights a img {
  /*
	transition-property: all;
	transition-duration:.25s;
	transition-timing-function: ease-out;
*/
}

#aip-container ul li.ico-insights a img:hover {
  /* 	background-color:orange; */
}

#aip-container ul li.ico-formats {
  top: 85px;
  left: 140px;
}

#aip-container ul li.ico-creative {
  top: 150px;
  left: 290px;
}

#aip-container ul li.ico-media {
  top: 85px;
  left: 450px;
}

#aip-container ul li.ico-reports {
  top: 0px;
  left: 580px;
}

#aip-container ul li.ico-insights:before,
#aip-container ul li.ico-formats:before,
#aip-container ul li.ico-creative:before,
#aip-container ul li.ico-media:before,
#aip-container ul li.ico-reports:before {
  content: "Insights";
  position: absolute;
  bottom: -40px;
  left: 0px;
  width: 100px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}

#aip-container ul li.ico-formats:before {
  content: "Formats";
}

#aip-container ul li.ico-creative:before {
  content: "Creative";
}

#aip-container ul li.ico-media:before {
  content: "Media";
}

#aip-container ul li.ico-reports:before {
  content: "Reports";
}

/*
		<img src="img/aip-back.png" id="aip-back">
		<img src="img/aip-base.png" id="aip-base">
		<img src="img/aip-orbs.png" id="aip-orbs">
		<img src="img/aip-cover.png" id="aip-cover">
		<img src="img/aip-top.png" id="aip-top">
*/
#aip-cover {
  animation-name: aip_cover_an;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}

@keyframes aip_cover_an {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0px);
  }
}

#aip-top {
  animation-name: aip_top_an;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes aip_top_an {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(15px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* S2 END */
/* S3 START  */
#s3 {
  height: 600px;
  position: relative;
}

#s3 .section-icon {
  margin-top: 110px;
  margin-left: 600px;
}

#s3 .btn {
  margin-left: 600px;
}

#s3 h3,
#s3 p {
  padding-left: 600px;
}

#s3 #laptop {
  position: absolute;
  top: 100px;
  left: -100px;
  width: 650px;
}

#insights-iframe {
  background-color: white;
  width: 1710px;
  height: 1040px;
  position: absolute;
  top: 128px;
  left: 34px;
  transform-origin: top left;
  transform: scale(0.22);
}

#insights-gif {
  position: absolute;
  top: 128px;
  left: 34px;
  width: 376px;
  height: 228px;
}

/* S3 END  */
/* S4 START  */
#s4 {
  height: 600px;
  position: relative;
}

#s4-circles img {
  position: absolute;
  top: 100px;
  right: 60px;
  width: 500px;
}

#s4-circ-purp {
  animation-name: circ-purp;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes circ-purp {
  0% {
    opacity: 1;
  }

  75% {
    opacity: 0.25;
  }

  100% {
    opacity: 1;
  }
}

#s4-circ-orange {
  animation-name: circ-orange;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}

@keyframes circ-orange {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#s4-phone {
  position: absolute;
  right: 150px;
  top: 50px;
  width: 300px;
}

#s4-hero {
  position: absolute;
  top: 120px;
  right: 400px;
  width: 200px;
}

#s4-baller {
  position: absolute;
  top: 250px;
  right: -10px;
  width: 300px;
}

#s4-baller {
  position: absolute;
  top: 250px;
  right: -10px;
  width: 300px;
}

#s4-x {
  position: absolute;
  top: 475px;
  right: 0px;
  width: 75px;
  animation-name: x-ani;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes x-ani {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(400deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#s4-triangle {
  position: absolute;
  top: 355px;
  right: 440px;
  width: 125px;
  animation-name: triangle-ani;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 1;
}

@keyframes triangle-ani {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-400deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#s4-phone svg {
  fill: #f499c1;
}

#s4 .section-icon {
  margin-top: 70px;
}

#s4 .section-icon,
#s4 h3,
#s4 p,
#s4 .btn {
  margin-left: 50px;
}

#s4 #formats-video {
  position: absolute;
  top: 94px;
  left: 601px;
  width: 197px;
}

#s4-wavy {
  position: absolute;
  top: 100px;
  right: 0px;
  width: 150px;
  height: 100px;
  background-image: url("../img/s4-wavy.png");
  background-size: auto 100%;
  animation-name: wavy-baby;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes wavy-baby {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: -50px 0px;
  }
}

/* S4 END  */
/* S5 START  */
#s5 {
  height: 600px;
  position: relative;
}

#s5-phone {
  position: absolute;
  left: 150px;
  top: 50px;
  width: 300px;
}

#s5-phone svg {
  fill: #ff90b2;
}

#s5 .section-icon {
  margin-top: 70px;
}

#s5 .section-icon,
#s5 h3,
#s5 p,
#s5 .btn {
  margin-left: 550px;
}

#ht-container {
  position: absolute;
  top: 94px;
  left: 202px;
  width: 197px;
}

#ht-container img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

#ht-container #ht-heatmap,
#ht-container #ht-heatmap2 {
  opacity: 0;
}

#ht-attention-panel {
  position: absolute;
  top: 250px;
  background-color: #fe0060;
  width: 150px;
  height: 200px;
  opacity: 0.9;
  left: 25px;
}

#ht-attention-panel img {
  width: 100px;
  position: absolute;
  top: 0px;
  left: 10px;
}

#ht-attention-panel .txt {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 14px;
}

#ht-attention-panel .txt-version {
  font-size: 16px;
  font-weight: 300;
  top: 90px;
  left: 20px;
}

#ht-attention-panel .txt-at {
  font-size: 32px;
  top: 110px;
  font-weight: 700;
  left: 20px;
  font-family: "Roboto Mono", monospace;
}

#ht-attention-panel .txt-at-label {
  font-size: 14px;
  top: 150px;
  font-weight: 400;
  left: 20px;
  opacity: 0.75;
}

/* S5 END  */
/* S6 START  */
#s6 {
  height: 800px;
  position: relative;
}

#s6 #crane-container {
  width: 800px;
  height: auto;
  position: absolute;
  top: -15px;
  left: 0px;
  z-index: 3;
  left: 2000px;
}

#s6 #crane-orb {
  position: absolute;
  top: 430px;
  right: 135px;
  left: auto;
  width: 80px;
  height: 80px;
  background: rgb(255, 183, 39);
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb727', endColorstr='#ff7927', GradientType=1);
  border-radius: 50%;
  background-color: #ff9727;
  box-shadow: 0 0 5px 5px #ff9727, /* inner yellow */ 0 0 10px 5px #ff9727,
    /* middle magenta */ 0 0 15px 5px rgba(0, 0, 0, 0);
  /* outer cyan */
}

#s6 #crane-container img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

#s6 #crane-claw-left {
  transform-origin: 600px 410px;
  /* 	transform:rotate(10deg); */
}

#s6 #crane-claw-right {
  transform-origin: 640px 410px;
}

#s6 .section-icon {
  margin-top: 100px;
}

#s6 .section-icon {
  margin-top: 150px;
}

#s6 .section-icon,
#s6 h3,
#s6 p,
#s6 .btn {
  margin-left: 50px;
}

#s6 p {
  width: 45% !important;
}

#s6 #machine-container {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 500px;
  z-index: 9;
}

#s6 #machine-container #machine-screen {
  position: absolute;
  top: 45px;
  left: 340px;
  width: 120px;
  height: 50px;
}

#s6 #machine-container #machine-screen img {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 40px;
  height: auto;
}

#s6 #machine-container #machine-screen span {
  position: absolute;
  top: 0px;
  left: 50px;
  line-height: 50px;
  width: 70px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto Mono", monospace;
}

#s6 #machine-container img {
  width: 100%;
}

#s6 #chart-container {
  position: absolute;
  bottom: 0px;
  right: 50px;
  width: 400px;
  height: 600px;
}

#s6 #chart-container .pub {
  float: left;
  width: 18%;
  height: 100%;
  margin-right: 2%;
  position: relative;
}

#s6 #chart-container .pub .at-bar {
  position: absolute;
  bottom: 45%;
  left: 0px;
  width: 100%;
  height: 0%;
  background-color: white;
}

#s6 #chart-container .pub .at-bar:before {
  content: " ";
  background-image: url("https://assets.playground.xyz/nashtendo3/ba0c1802_giphy.gif");
  background-size: 200px auto;
  background-position: center bottom;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

#s6 #chart-container .pub .at-bar:after {
  content: " ";
  position: absolute;
  bottom: 0%;
  left: 0px;
  width: 100%;
  height: 50px;
  background: -moz-linear-gradient(
    top,
    rgba(156, 28, 71, 0) 0%,
    rgba(156, 28, 71, 0) 9%,
    rgba(156, 28, 71, 0.2) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(156, 28, 71, 0) 0%,
    rgba(156, 28, 71, 0) 9%,
    rgba(156, 28, 71, 0.2) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(156, 28, 71, 0) 0%,
    rgba(156, 28, 71, 0) 9%,
    rgba(156, 28, 71, 0.2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009c1c47', endColorstr='#339c1c47', GradientType=0);
}

#s6 #chart-container .pub .pub-logo {
  position: absolute;
  top: 55%;
  left: 0px;
  width: 100%;
  height: 25%;
  background-color: white;
}

#s6 #chart-container .pub .pub-logo img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

#s6 #chart-container .pub .dial-bid.bid {
  animation-name: bid-flashing;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  opacity: 0.999;
}

@keyframes bid-flashing {
  0% {
    background-color: #fa9700;
    box-shadow: 0 0 5px 5px #fa9700, /* inner yellow */ 0 0 10px 10px #fa9700,
      /* middle magenta */ 0 0 15px 5px rgba(0, 0, 0, 0);
    /* outer cyan */
  }

  50% {
    background-color: #fe0060;
    box-shadow: 0 0 5px 5px #fe0060, /* inner yellow */ 0 0 10px 10px #fe0060,
      /* middle magenta */ 0 0 15px 5px rgba(0, 0, 0, 0);
    /* outer cyan */
  }

  100% {
    background-color: #fa9700;
    box-shadow: 0 0 5px 5px #fa9700, /* inner yellow */ 0 0 10px 10px #fa9700,
      /* middle magenta */ 0 0 15px 5px rgba(0, 0, 0, 0);
    /* outer cyan */
  }
}

#s6 #chart-container .pub .dial-bid,
#s6 #chart-container .pub .dial-at {
  position: absolute;
  top: 82%;
  left: 0px;
  width: calc(100% - 10px);
  height: calc(8% - 10px);
  background-color: #3e474a;
  border: 5px solid white;
  border-radius: 5px;
  text-align: center;
  font-family: "Roboto Mono", monospace;
  line-height: 36px;
}

#s6 #chart-container .pub .dial-at {
  font-size: 12px;
}

#s6 #chart-container .pub .dial-at {
  top: 92%;
}

/* S6 END  */
/* S7 START  */
#s7 {
  height: 700px;
  position: relative;
}

#s7 .section-icon {
  margin-top: 100px;
}

#s7 .section-icon {
  margin-top: 150px;
}

#s7 .section-icon,
#s7 h3,
#s7 p,
#s7 .btn {
  margin-left: 550px;
}

#s7 #reports-container {
  position: absolute;
  top: 115px;
  left: 0px;
  width: 500px;
  height: 500px;
}

#s7 #reports-container #rep1 {
  background-color: rgba(255, 255, 255, 0.7);
  width: 200px;
  height: 100px;
  position: absolute;
  top: 0px;
  left: 0px;
}

#s7 #reports-container #rep2 {
  background-color: rgba(255, 255, 255, 0.85);
  width: 200px;
  height: 100px;
  position: absolute;
  top: 0px;
  left: 220px;
}

#s7 #reports-container #rep3 {
  background-color: rgba(255, 255, 255, 0.85);
  width: 420px;
  height: 200px;
  position: absolute;
  top: 120px;
  left: 20px;
}

#s7 #reports-container #rep4 {
  background-color: rgba(255, 255, 255, 0.9);
  width: 200px;
  height: 100px;
  position: absolute;
  top: 340px;
  left: 40px;
}

#s7 #reports-container #rep5 {
  background-color: rgba(255, 255, 255, 0.75);
  width: 200px;
  height: 100px;
  position: absolute;
  top: 340px;
  left: 260px;
}

#s7 .metric-title,
#s7 .metric-rate {
  color: #fe0160;
}

#s7 .metric-title {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  text-transform: uppercase;
}

#s7 .metric-icon {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 80px;
  height: 80px;
}

#s7 .metric-rate {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 120px;
  line-height: 80px;
  font-size: 32px;
  text-align: left;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
}

#s7 #rep3 .metric-title {
  width: 100%;
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  text-transform: uppercase;
}

#s7 #rep3 .metric-icon {
  width: 160px;
  height: 160px;
}

#s7 #rep3 .metric-rate {
  width: 240px;
  line-height: 160px;
  font-size: 64px;
  text-align: left;
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
}

span.flasher {
  font-size: larger;
}

/* S7 END  */
/* S8 START  */
#s8 {
  height: 800px;
  position: relative;
  border: 1px solid transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#s8 > div,
#s8 > form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#s8 .chart_wrapper {
  width: 400px;
  margin-left: 50px;
}

#s8 .text {
  width: 450px;
  margin-left: 50px;
}

#s8 form {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fe0060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  transform: translateY(0);
  transition: transform 0.4s linear;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

#s8 .chart_wrapper > img {
  width: 100%;
}

#s8 > form.inactive {
  transform: translateY(-100vh);
}

#s8 > form .cols2 > div {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  padding-bottom: 30px;
  position: relative;
  justify-content: center;
}

#s8 > form .cols2 > div:last-child {
  padding-bottom: 0;
}

#s8 > form .btn {
  margin-top: 0;
}

#s8 form p {
  text-align: center;
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: 100%;
  line-height: 1;
}

#s8 .close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

#s8 .close:hover {
  opacity: 1;
}

#s8 .close:before,
#s8 .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}

#s8 .close:before {
  transform: rotate(45deg);
}

#s8 .close:after {
  transform: rotate(-45deg);
}

#s8 h3 {
  text-align: left;
  width: 100%;
}

#s8 p {
  text-align: left;
  width: 100%;
}

#s8 .whitepaper_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#s8 #whitepaper {
  position: relative;
  width: 100%;
  margin: 0 auto 0 0;
}

#s8 .btn {
  text-align: center;
  font-size: 100%;
  outline: none;
}

#s8 input {
  background-color: #d02062;
  font-size: 100%;
  width: calc(100% - 32px);
  color: #fff;
  border: 6px solid rgba(255, 255, 255, 1);
  padding: 10px;
  text-align: center;
  font-family: "Roboto Mono", monospace;
  border-radius: 10px;
  outline: none;
}

#s8 input:focus {
  border-color: rgba(255, 255, 255, 0.75);
}

#s8 input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

#s8 form .error-container {
  position: absolute;
  font-size: 12px;
  top: -15px;
  left: 0;
  z-index: -9;
  transform: translateY(15px);
  transition: transform 0.3s cubic-bezier(0.54, -0.32, 0.44, 1.42);
}

#s8 div.invalid input,
#s8 div.invalid label {
  box-shadow: 0 0 10px rgba(255, 121, 39, 1);
  background: rgb(255, 183, 39);
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(255, 183, 39, 1) 0%,
    rgba(255, 121, 39, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb727', endColorstr='#ff7927', GradientType=1);
  -webkit-animation-name: shake;
  animation-name: shake;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
}

#s8 div.invalid .error-container {
  transform: translateY(0);
}

#s8 label {
  display: none;
}

#s8 .checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#s8 .checkbox input {
  width: auto;
  margin: 0;
  display: none;
}

#s8 .checkbox input + label {
  /* background: rgb(255,183,39);
    background: -moz-radial-gradient(center, ellipse cover, rgba(255,183,39,1) 0%, rgba(255,121,39,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(255,183,39,1) 0%,rgba(255,121,39,1) 100%);
    background: radial-gradient(ellipse at center, rgba(255,183,39,1) 0%,rgba(255,121,39,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb727', endColorstr='#ff7927',GradientType=1 ); */
  font-size: 100%;
  width: 10px;
  height: 10px;
  color: #fff;
  border: 6px solid rgba(255, 255, 255, 1);
  padding: 10px;
  text-align: center;
  font-family: "Roboto Mono", monospace;
  border-radius: 10px;
  outline: none;
  display: inline-flex;
  position: relative;
  margin-right: 20px;
  justify-content: center;
  align-items: center;
  transition: background 0.4s linear;
}

#s8 .checkbox input + label:after {
  content: "  ";
  font-size: 14px;
  width: 14px;
}

#s8 .checkbox input:checked + label {
  background: #d02062;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05),
    inset 15px 10px -12px rgba(255, 255, 255, 0.1);
}

#s8 .checkbox input:checked + label:after {
  content: "\2714";
  font-size: 14px;
  color: #fff;
}

#s8 .cols2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  max-width: 400px;
  height: 100%;
  margin: 0 10px 0 auto;
}

#s8 .cols2:nth-child(2) {
  margin: 0 auto 0 10px;
}

#s8 .chart_wrapper {
  margin-left: 100px;
  position: relative;
  height: 70%;
  background-color: #fff;
  padding: 0px;
}

#s8 .chart_wrapper,
#s8 .chart_wrapper::before,
#s8 .chart_wrapper::after {
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.3);
}

#s8 .chart_wrapper::before,
#s8 .chart_wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 1s linear;
}

/* Second sheet of paper */
#s8 .chart_wrapper::before {
  z-index: -1;
}

/* Third sheet of paper */
#s8 .chart_wrapper::after {
  z-index: -2;
}

#s8 .chart_wrapper.inview::before {
  transform: translate(7px, 5px);
}

#s8 .chart_wrapper.inview::after {
  transform: translate(12px, 10px);
}

#s8 .chart_wrapper:hover::before {
  transform: translate(10px, 8px);
  box-shadow: 2px 1px 15px rgba(0, 0, 0, 0.25);
}

/* Third sheet of paper */
#s8 .chart_wrapper:hover::after {
  transform: translate(18px, 16px);
  box-shadow: 2px 1px 15px rgba(0, 0, 0, 0.2);
}

#s8 .chart {
  position: relative;
  height: calc(100% - 240px);
  width: calc(100% - 90px);
  margin: 50px auto 0 auto;
  color: #333;
  font-size: 60%;
}

#s8 .chart .guide {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}

#s8 .chart .guide .axis {
  position: absolute;
  top: -4px;
  left: -35px;
  height: calc(100% + 9px);
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  padding-right: 5px;
}

#s8 .chart .guide .gridline {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#s8 .chart .guide .gridline span {
  width: 100%;
  height: 1px;
  display: inline-block;
  background: #333;
}

#s8 .chart .graphs {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

#s8 .chart .graphs .graph {
  background: #333;
  width: 25%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  flex-direction: column;
  color: #fff;
  position: relative;
  text-align: center;
  height: 0%;
}

#s8 .chart .graphs .graph:first-child {
  background: -moz-linear-gradient(
    bottom,
    rgba(255, 121, 37, 1) 0%,
    rgba(254, 0, 96, 1) 100%
  );
  background: -webkit-linear-gradient(
    bottom,
    rgba(255, 121, 37, 1) 0%,
    rgba(254, 0, 96, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 121, 37, 1) 0%,
    rgba(254, 0, 96, 01) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7925', endColorstr='#00fe0060', GradientType=0);
}

#s8 .chart .graphs .graph:after {
  background-image: url("https://assets.playground.xyz/nashtendo3/ba0c1802_giphy.gif");
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
}

#s8 .chart .graphs .graph span {
  position: absolute;
  width: 100%;
  height: 32px;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
  bottom: -37px;
  color: #333;
}

#s8 .chart .graphs .graph p {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100%;
  margin: 0;
  overflow: hidden;
}

#s8 .chart .title p {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
}

#s8 .chart .legend {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
}

/* S8 END  */
/* S9 START  */
#s9 {
  height: 1300px;
  position: relative;
}

#s9 h3 {
  margin-top: 40px;
  margin-left: 20px;
  padding-bottom: 20px;
}

#s9 img {
  width: 100%;
}

.address-col.usa {
  margin-left: 100px;
}

.address-col {
  float: left;
  width: 200px;
  margin-right: 20px;
  position: relative;
}

.address-col address {
  margin-bottom: 20px;
  line-height: 24px;
}

.address-col h4 {
  margin-bottom: 10px;
  color: #fe0060;
  background-color: white;
  display: inline-block;
  line-height: 30px;
  padding: 0 10px;
}

.address-col h5 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

#map-back-pink,
#map-back-orange-container {
  position: absolute;
  top: 60px;
  left: 0px;
  width: 100%;
  height: 500px;
  background-color: #fe0060;
}

#map-back-orange-container {
  background-color: transparent;
  overflow: hidden;
}

#map-back-orange,
#map-back-orange2 {
  position: absolute;
  top: 60px;
  left: 0px;
  width: 500px;
  height: 500px;
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 122, 37, 1) 0%,
    rgba(254, 33, 80, 0) 56%,
    rgba(254, 0, 96, 0) 77%
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 122, 37, 1) 0%,
    rgba(254, 33, 80, 0) 56%,
    rgba(254, 0, 96, 0) 77%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(255, 122, 37, 1) 0%,
    rgba(254, 33, 80, 0) 56%,
    rgba(254, 0, 96, 0) 77%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7a25', endColorstr='#00fe0060', GradientType=1);
}

#map-fg {
  position: absolute;
  top: 60px;
  left: 0px;
  width: 100%;
  height: auto;
}

#s9 img#map-pin-usa-ec,
#s9 img#map-pin-usa-wc,
#s9 img#map-pin-uk,
#s9 img#map-pin-sg,
#s9 img#map-pin-au,
#s9 img#map-pin-nz {
  position: absolute;
  top: 300px;
  left: 200px;
  width: 75px;
  height: auto;
  animation-name: pin-bounce-left;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

#s9 img#map-pin-usa-ec,
#s9 img#map-pin-uk,
#s9 img#map-pin-au {
  animation-name: pin-bounce-right;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes pin-bounce-left {
  0% {
    transform: translateY(0px);
  }

  10% {
    transform: translateY(-15px) rotate(-10deg);
  }

  12% {
    transform: translateY(-5px) rotate(0deg);
  }

  14% {
    transform: translateY(5px);
  }

  16% {
    transform: translateY(-3px);
  }

  18% {
    transform: translateY(2px);
  }

  20% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pin-bounce-right {
  0% {
    transform: translateY(0px);
  }

  10% {
    transform: translateY(-15px) rotate(10deg);
  }

  12% {
    transform: translateY(-5px) rotate(0deg);
  }

  14% {
    transform: translateY(5px);
  }

  16% {
    transform: translateY(-3px);
  }

  18% {
    transform: translateY(2px);
  }

  20% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(0px);
  }
}

#s9 img#map-pin-usa-wc {
  top: 190px;
  left: 75px;
}

#s9 img#map-pin-usa-ec {
  top: 170px;
  left: 225px;
  animation-delay: 0.25s;
}

#s9 img#map-pin-sg {
  top: 290px;
  left: 730px;
  animation-delay: 0.75s;
}

#s9 img#map-pin-au {
  top: 420px;
  left: 850px;
  animation-delay: 1s;
}

#s9 img#map-pin-nz {
  top: 460px;
  left: 900px;
  animation-delay: 1.25s;
}

#s9 img#map-pin-uk {
  top: 140px;
  left: 430px;
  animation-delay: 0.5s;
}

#s9 a.ico-email img {
  position: absolute;
  top: -50px;
  left: 0px;
  width: 40px;
  opacity: 0.5;
  padding-bottom: 5px;
  transition-property: transform, opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease-out;
}

#s9 a.ico-email:hover img {
  opacity: 1;
  transform: translateY(-10px) rotate(20deg);
}

#s9-header {
  text-align: center;
}

#s9 h3 {
  width: 100%;
  line-height: 30px;
  margin-left: 0;
  margin-bottom: 10px;
}
#s9 p {
  width: 100%;
  line-height: 30px;
  text-align: center;
  margin-top: 0px;
}

#map-container {
  top: -55px;
  position: relative;
  padding-bottom: 540px;
  pointer-events: none;
  z-index: 1;
}

#address-container {
  position: relative;
  z-index: 3;
}

/* S9 END  */
/* Footer Start */
footer {
  color: #333;
  position: relative;
  padding-top: 180px;
  background-color: white;
}

#footer-logos {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 300px;
  margin-left: -150px;
}

footer .footer-logo {
  width: 200px;
  position: absolute;
  left: 50%;
  margin-left: -100px;
  top: 10px;
}

.footer-logo svg path {
  fill: #fe0060 !important;
}

footer p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  border: 0;
  line-height: 24px;
  text-align: center;
  margin-left: 10%;
  width:80%;
}

footer a {
  color: #666;
  font-size: 14px;
}

/* Footer End  */
/* Anchors  */
#aip,
#insights,
#formats,
#creative,
#media,
#reporting,
#contact,
#whitepaper {
  position: relative;
  top: -100px;
}

/* Keyframes Animation */
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/*   Preloading screen */
#loading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fe0060;
  z-index: 999999;
}

#loading svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -110px;
  margin-left: -200px;
  width: 400px;
}

#loading #orange-you-glad-im-here {
  background: rgb(254, 0, 96);
  background: -moz-linear-gradient(
    -45deg,
    rgba(254, 0, 96, 1) 44%,
    rgba(255, 122, 37, 1) 100%
  );
  background: -webkit-linear-gradient(
    -45deg,
    rgba(254, 0, 96, 1) 44%,
    rgba(255, 122, 37, 1) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(254, 0, 96, 1) 44%,
    rgba(255, 122, 37, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe0060', endColorstr='#ff7a25', GradientType=1);
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 300px;
  height: 300px;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-in;
  transform-origin: bottom right;
}

#loading svg path {
  fill: #fff;
}

#cali-terms {
  background-color: #fff;
  border-top: 4px solid #efefef;
  font-size: 14px;
  line-height: normal;
  width: 100%;
  margin: 0;
  padding: 10px;
  text-align: center;
  color: #212121;
  display: none;
}

#cali-terms a {
  color: #212121;
}
