/* Splash Modal — LLL site entry experience (GVOS-4975) */

.splashModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 999;
}

.splashModal__window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 675px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  overflow-x: hidden;
}

.splashModal__header {
  display: flex;
  justify-content: flex-end;
  background: #333333;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 24px;
}

.splashModal__close {
  position: relative;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.splashModal__close:hover,
.splashModal__close:focus {
  opacity: 0.8;
}

.splashModal__close:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.splashModal__image {
  display: block;
  width: 100%;
  height: auto;
}

.splashModal__body {
  position: relative;
  padding: 32px;
}

.splashModal__heading {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #333333;
}

.splashModal__copy {
  margin-bottom: 24px;
  color: #333333;
}

.splashModal__copy p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 26px;
}

.splashModal__copy p:last-child {
  margin-bottom: 0;
}

.splashModal__cta {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #ffce00;
  color: #213245;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.splashModal__cta:hover,
.splashModal__cta:focus {
  background-color: #666;
  color: #fff;
}

.splashModal__cta:focus {
  outline: 2px solid #213245;
  outline-offset: 2px;
}

.splashModal__sticker {
  position: absolute;
  right: 32px;
  bottom: 26px;
  width: 200px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .splashModal__window {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: auto;
    transform: none;
    max-height: calc(100vh - 32px);
  }

  .splashModal__body {
    padding: 20px;
    padding-right: 20px;
  }

  .splashModal__heading {
    font-size: 22px;
    line-height: 30px;
  }

  .splashModal__sticker {
    position: static;
    display: block;
    width: 200px;
    max-width: 100%;
    margin: 16px auto 0;
  }
}
