#full-overlay {
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: none;
  transition: background-color .3s ease;
}

#pop-up-container {
  opacity: 0;
  max-width: 95vw;
  width: auto;
  height: auto;
  transition: opacity 1.2s ease;
}

.full-opacity {
  opacity: 1 !important;
  transition: opacity .8s ease;
}

.slight-opacity {
  background-color: rgba(206, 230, 249, .2) !important;
}

#pop-up-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

#pu-exit {
  z-index: 10;
  position: absolute;
  top: 5%;
  right: 5%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

#pu-exit i {
  color: white;
  font-size: 25px;
}

#pop-up-text {
  z-index: 10;
  position: absolute;
  top: 30%;
  left: 16%;
  color: #316094;
}

#pu-promotion-title-one {
  font-size: 55px;
  text-transform: uppercase;
}

#pu-promotion-title-two {
  font-size: 36px;
  text-transform: uppercase;
}

#pu-disclaimer {
  font-size: 16px;
  margin-top: 5px;
}

#pu-btn {
  display: block;
  width: fit-content;
  margin-top: 15px;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: #86cfc5;
  padding: 8px 15px;
  border-radius: 4px;
}

#pop-up-background {
  max-width: 100%;
  position: absolute;
}
