 * {
  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;
}

.lockup {
  position: absolute;
  background-image: url('lockup.svg');
  width: 147px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 14px;
  bottom: 14px;
}

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

.model-year {
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;
  opacity: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.headline {
  text-transform: uppercase;
  font-size: 23px;
  line-height: 25px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #fff;
  overflow-wrap: break-word;
  letter-spacing: 0.5px;
  max-width: 70%;
}

.headline-2 {
  position: absolute;
  top: 17px;
}

.headline-2, .word-1, .word-2 {
  opacity: 0;
}

.cta {
  position: absolute;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 8px;
  z-index: 6;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #fff;
  padding: 3px 7px;
  left: 17px;
  bottom: 14px;
}

.disclaimer-btn {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 12;
  text-transform: uppercase;
  font-size: 8px;
  color: #fff;
  font-family: sans-serif;
  opacity:0.65;
}

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