<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Popup container */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 1); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: rgba(0, 0, 0, 1);
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 20%; /* Could be more or less, depending on screen size */
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .modal-content {
    width: 90%;
    left: 5%;
  }
}

.paywall {
  background-color: #000000;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
}
.paywall::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  height: 200px;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1)
  );
  pointer-events: none;
}

.paywall p {
  font-family: "Fira Sans (webfont)", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0 0 -12px 0;
  color: #fff;
  text-align: center;
}

.ptext {
  font-family: "Fira Sans (webfont)", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  font-style: normal;
  margin: 0 0 -12px 0;
  color: #fff;
  text-align: center;
}

#paywinner {
  display: block;
  width: 100%;
  max-width: 320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

#emailfejl {
  font-family: "Fira Sans (webfont)", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  color: #e15e5e;
}

[data-paywall]:not(.active) {
  display: none !important;
}

[data-paywall].active ~ * {
  display: none;
}

p.subscriber {
  font-family: "Fira Sans (webfont)", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  display: block;
  margin: 32px 0 -8px 0;
  color: #ccddea;
  text-align: center;
}

button.action {
  font-family: "Fira Sans (webfont)", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  font-style: normal;
  display: block;
  width: 160px;
  border-radius: 4px;
  margin: 32px auto 32px auto;
  background-color: #45b145;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

h3.heading {
  font-family: "Fira Sans (webfont)", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  /* #paywinner {
    width: 90%;
    left: 5%;
  } */

  h3.heading {
    font-size: 15px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #paywinner {
    width: 60%;
    left: 20%;
  }
}
</pre></body></html>