#modal-container {
  display: none;
}

#modal-container.open {
  display: flex;
}

#modal-iframe-container {
  overflow: hidden;
}

#modal-iframe-container.donate-modal {
  width: 502px;
  height: 598px;
}

#modal-iframe-container.newsletter-modal {
  width: 428px;
  height: 490px;
}

#modal-iframe {
  width: 785px;
  height: 100%;
  overflow-y: scroll;

}

#modal-iframe.newsletter-modal {
  margin-top: -30px;
}

#modal-container {
  display: none;
  background: rgba(25, 25, 25, .85);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

#modal-container.open {
  display: flex;
}

#modal-close-btn {
  font-family: GeographWeb,Neue Haas Grotesk Text Pro,Helvetica Neue,Helvetica,Arial,sans-serif;
  border: 0;
  background: none;
  position: absolute;
  top: calc(50% - 290px);
  right: calc(50% - 240px);
  font-size: 20px;
  padding: 10px;
}

@media only screen and (max-width : 440px) {
  #modal-iframe {
    position: absolute;
    max-width: 100vw;
    left: 0;
  }

  .donate-modal > #modal-iframe {
    max-height: 598px;
  }

  .newsletter-modal > #modal-iframe {
    max-height: 490px;
  }

  #modal-close-btn {
    right: 30px;
  }
}

@media (max-width: 503px) {
  #modal-iframe-container.donate-modal {
    max-width: 375px;
    max-height: 610px;
  }

  #modal-iframe-container.newsletter-modal {
    max-width: 380px;
    height: 535px;
    max-height: 100vh;
  }
}

@media only screen and (max-width : 440px) {
  .ng-c-footer-buttons-small .ng-button {
    width: 130px !important;
    min-width: 0 !important;
    padding: 0 20px !important;
  }

  .ng-c-footer-container {
    max-width: 375px;
  }
}

@media only screen and (max-width : 380px) {
    .ng-c-footer-buttons-small .ng-button {
        width: 200px !important;
        margin: 10px 0 !important;
    }
}

