.gk-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.gk-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  padding: 80px 107px;
  text-align: center;
  border-radius: 5px;
}

.gk-content p.like-h2 {
  font-size: 40px;
}

.gk-content p.policy {
  max-width: 450px;
  width: 60%;
  margin: 40px auto 0;
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  text-align: center;
}

.gk-content button {
  width: 290px;
  margin: 5px;
  padding: 1em;
  cursor: pointer;
  border-width: 1px;
  border-radius: 3px;
  border-style: solid;
  letter-spacing: 0.1em;
  font-weight: 600;
}

button#gk-yes {
  color: #000;
  border-color: #fdd451;
  background-color: #fdd451;
}

button#gk-no {
  color: #fff;
  border-color: white;
  background-color: #000;
}