 * {
  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: 250px;
  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 {
  position: absolute;
  top: 0;
  right: 0;
}

.lockup {
  position: absolute;
  background-image: url('lockup.png');
  width: 114px;
  height: 47px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 14px;
  bottom: 10px;
  opacity: 1;
}

.copy {
  position: absolute;
  top: 15px;
  left: 14px;
  text-align: left;
  width: 85%;
}

.copy-1, .copy-2 {
  opacity: 0;
}

.headline {
  font-size: 18.44px;
  line-height: 23px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #fff;
  overflow-wrap: break-word;
  letter-spacing: 0.015em;
}

.car-model {
  color: rgba(184,190, 196, 1);
  font-size: 12px;
}

.cta {
  opacity: 1;
  position: absolute;
  display: inline-block;
  text-transform: capitalize;
  text-align: center;
  font-size: 9.5px;
  line-height: 9.5px;
  letter-spacing: 1px;
  z-index: 6;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: transparent; 
  border: 1px solid #fff;
  padding: 5px 7px;
  padding-right: 19px; /* 2nd cta padding data point^ plus width of arrow (rounded)*/
  right: 15px;
  top: 200px;
}

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

.disclaimer-btn {
  position: absolute;
  top: 226px;
  right: 15px;
  z-index: 12;
  text-transform: capitalize;
  font-size: 6.5px;
  color: #fff;
  font-family: "Inter", sans-serif;
  opacity: 0.65;
  letter-spacing: -0.5px;
}

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

.disclaimer-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  min-height: 250px;
  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: -100px;
  opacity: 0.3;
}

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