.gatekeeper-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(250, 250, 250, 0.75);
  width: 100%;
  height: 100%;
  z-index: 1337;
  transition: opacity .5s ease-in-out;
  cursor: pointer;
}
.gatekeeper-popup {
  cursor: default;
}
.gatekeeper-popup-wrapper {
  position: absolute;
  width: 550px;
  background-color: #f9e3d9;
  left: calc(50% - 325px);
  top: calc(50% - 150px);
  padding: 50px;
}
.gatekeeper-popup-close {
  background: url("/sites/all/themes/pronails/images/close_black.png") no-repeat center;
  height: 34px;
  width: 37px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #000000;
}
.gatekeeper-popup h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.gatekeeper-popup-body {
  margin-bottom: 4rem;
}
.gatekeeper-popup a {
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.5rem;
  text-align: center;
}
.gatekeeper-popup a:hover {
  text-decoration: none;
}
.gatekeeper-popup a:last-child {
  background-color: #000000;
  color: #ffffff;
}
.gatekeeper-popup a:last-child:hover {
  color: #ffffff;
}
.gatekeeper-popup a:first-child {
  margin-right: 20px;
  background-color: #e9e9e9;
  color: #000000;
}
.gatekeeper-popup a:first-child:hover {
  color: #000000;
}
.gatekeeper-popup-buttons {
  display: flex;
}
header ul.menu li.menu-link-professional,
footer ul.menu li.menu-link-professional {
  display: none;
}
@media only screen and (max-width: 700px) {
  .gatekeeper-popup-wrapper {
    left: 0;
    width: calc(100% - 100px);
  }
  .gatekeeper-popup a {
    display: block;
  }
  .gatekeeper-popup a:first-child {
    order: 2;
    margin: 10px 0 0;
  }
  .gatekeeper-popup a:last-child {
    margin: 0;
  }
  .gatekeeper-popup-buttons {
    flex-direction: column;
  }
}