.privacy-page {
  position: relative;
}

.privacy-page::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 1;
}

.privacy-content {
  height: 100%;
  position: relative;
}

.privacy-panel {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
  font-family: sans-serif;
  left: 0;
  margin: 0 auto;
  max-width: 600px;
  padding: 30px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 40px;
  width: calc(100% - 32px);
  z-index: 2;
}

.privacy-panel-logo {
  display: block;
  height: 32px;
  margin: 0 0 20px;
  width: auto;
}

.privacy-title {
  border-top: 1px solid #d3d9df;
  display: block;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 12px;
  padding-top: 20px;
}

.privacy-description {
  color: #333;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 20px;
}

.privacy-description-link,
.privacy-description-link:visited {
  color: #3678ED;
  font-weight: bold;
  text-decoration: none;
}

.privacy-btn {
  background-color: #1e66eb;
  border-radius: 4px;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: table;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  padding: 0 16px;
  text-decoration: none;
  transition: background-color 0.25s ease-in-out;
}
.privacy-btn:hover {
  opacity: 0.9;
}

@media screen and (min-width: 48em) {
  .privacy-panel {
    top: 20px;
  }
}
