* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn {
  cursor: pointer;
}

.container {
  position: absolute;
  width: 728px;
  height: 90px;
  background: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}

.container:hover .main-content .cta .rollover {
  -webkit-animation: shine 2.5s ease-out;
  animation: shine 2.5s ease-out;
}

.border {
  position: absolute;
  pointer-events: none;
  z-index: 20;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #665d5b;
}

#exit {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.guide {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.main-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.white {
  position: absolute;
  top: 0px;
  width: 728px;
  height: 90px;
  background-color: white;
}

.background {
  position: absolute;
  top: 0px;
}

.clouds {
  position: absolute;
  top: -5px;
  left: 300px;
}

.lockup {
  position: absolute;
  background-image: url('kia_logo_w_tagline.svg');
  width: 77px;
  height: 31px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 16px;
  bottom: 8px;
  filter: invert(100);
}

.copy {
  position: absolute;
  top: 6px;
  left: 130px;
  line-height: 31px;
  max-width: 280px;
}

.car-model {
  text-transform: uppercase;
  font-size: 21px;
  color: #000;
  opacity: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.headline {
  width: 100%;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #000;
  opacity: 0;
  overflow-wrap: break-word;
  letter-spacing: 0.5px;
}

.car {
  position: absolute;
  top: 90px;
}

.cta {
  position: absolute;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  z-index: 6;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: rgba(0, 0, 0, 1);
  border: 1px solid #fff;
  padding: 3px 10px;
  opacity: 0;
  bottom: 20px;
  right: 16px;
}

.disclaimer-btn {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 12;
  text-transform: uppercase;
  font-size: 7px;
  color: #000;
  opacity: 0.65;
  font-family: sans-serif;
  font-weight: lighter;
}

.disclaimer-btn.active {
  opacity: 0.2;
}

.close-btn {
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}

#disclaimer-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  min-height: 90px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  display: none;
  color: #fff;
  font-size: 8px;
  font-family: sans-serif;
  padding: 20px;
}

.feature-disclaimer {
  margin-top: 10px;
}

#disclaimer-content.active {
  display: block;
}

.rollover {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-image: url("cta_rollover.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  background-position: -100px;
  opacity: 0.5;
}

.rollover.shine {
  -webkit-animation: shine 2.5s ease-out;
  animation: shine 2.5s ease-out;
}

@-webkit-keyframes shine {
  100% {
    background-position: 100px;
  }
}

@keyframes shine {
  100% {
    background-position: 100px;
  }
}