body.modalOpen {
  overflow-y: hidden;
}

.marketingModal {
  margin: 100px auto;
  padding: 20px;
  background: #f3f3f3;
  border: 1px solid #666;
  width: 300px;
  border-radius: 6px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: relative;
}
.marketingModal h2 {
  margin-top: 0;
}
.marketingModal .closeButtonWrapper {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  top: -10px;
  right: -10px;
}
.marketingModal .close {
  background-image: url("data:image/svg+xml,%3Csvg fill='%2310e1e' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'%3E%3Cpath d='m31 25.4l13-13.1c0.6-0.6 0.6-1.5 0-2.1l-2-2.1c-0.6-0.6-1.5-0.6-2.1 0l-13.1 13.1c-0.4 0.4-1 0.4-1.4 0l-13.1-13.2c-0.6-0.6-1.5-0.6-2.1 0l-2.1 2.1c-0.6 0.6-0.6 1.5 0 2.1l13.1 13.1c0.4 0.4 0.4 1 0 1.4l-13.2 13.2c-0.6 0.6-0.6 1.5 0 2.1l2.1 2.1c0.6 0.6 1.5 0.6 2.1 0l13.1-13.1c0.4-0.4 1-0.4 1.4 0l13.1 13.1c0.6 0.6 1.5 0.6 2.1 0l2.1-2.1c0.6-0.6 0.6-1.5 0-2.1l-13-13.1c-0.4-0.4-0.4-1 0-1.4z'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0.8;
  width: 20px;
  height: 20px;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #777;
}
.marketingModal .close:hover {
  opacity: 1;
}
.marketingModal .content {
  overflow: auto;
  overflow-x: hidden;
}
.marketingModal .content img {
  width: 100%;
}
.marketingModal .content iframe {
  margin-top: 10px;
}
.marketingModal p {
  margin: 0 0 1em;
  text-align: center;
}
.marketingModal p.left {
  text-align: start;
}
.marketingModal p:last-child {
  margin: 0;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 501;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}
.overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}
.overlay .cancel:target {
  visibility: visible;
  opacity: 1;
}

.magazineModal .marketingModal {
  width: 600px;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.magazineModal .marketingModal #signup {
  margin: 20px 0 40px 0;
}

@media screen and (max-width: 600px) {
  .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .marketingModal {
    margin: 0;
    border-radius: 0;
    overflow-y: scroll;
  }
  .marketingModal .closeButtonWrapper {
    top: 5px;
    right: 5px;
  }
}
/*# sourceMappingURL=marketing-popup.css.map */
