 * {
  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: 300px;
  height: 600px;
  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;
}

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

.background, .car {
  position: absolute;
  top: 0;
}

.car {
  left: -300px;
}

.clouds {
  position: absolute;
  top: 95px;
  left: 150px;
  opacity: .75; 
}

.lockup {
  position: absolute;
  background-image: url('lockup.svg');
  width: 100px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 537px;
  left: 24px;
  /* transform: translateX(-50%); */
  opacity: 0;
}

.copy {
  position: absolute;
  left: 24px;
  text-align: left;
  width: 90%;
  margin-top: 52px;
}

.headline {
  text-transform: uppercase;
  font-size: 26.62px;
  line-height: 34.6px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1.3px;
}

.car-model, .copy-1 {
  opacity: 0;
}

.car-model {
  /* color: rgba(184,190, 196, 1); */
}

.cta {
  opacity: 1;
  position: absolute;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 1px;
  z-index: 6;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 2px 7px;
  padding-right: 19px; /* 2nd cta padding data point^ plus width of arrow (rounded)*/
  top: 204px;
  left: 24px;
  /* transform: translateX(-50%); */
  opacity: 0;
}

.cta-arrow {
  font-size: 17px;
  margin-left: 5px;
  position: absolute;
  margin-top: -1px;
}

.disclaimer-btn {
  position: absolute;
  bottom: 25px;
  right: 24px;
  z-index: 12;
  text-transform: uppercase;
  font-size: 7px;
  color: #fff;
  font-family: "Inter", sans-serif;
  opacity: 0;
}

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

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

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

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

.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: -200px;
  opacity: 0.3;
}

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

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

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