.forms-popup-overlay {
  background: #282828;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
}
.forms-popup-container {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 801;
  text-align: left;
  min-width: 350px;
  box-shadow: rgba(0, 0, 0, 0.8) 0 0 8px;
  max-height: 99%;
  max-width: 99%;
  overflow: auto;
}
.close-popup {
  position: absolute;
  right: 4px;
  top: 4px;
}
.close-popup a {
  width: 22px;
  height: 22px;
  background: url(close-popup.png) no-repeat left top;
  display: block;
}
.close-popup a:hover {
  background-position: left -30px;
}
@media (max-width: 500px) {
  .forms-popup-container {
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    height: 100vh;
    min-height: 0;
    min-width: 0;
    max-width: none !important;
    max-height: none !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  .forms-popup-container > form > div {
    box-sizing: border-box;
    min-height: 100vh;
  }
}
