/**
 * NWP popups common css
 */

.nwp-popup {
  display: none;
}

.nwp-popup-overlay {
  position: fixed;
  z-index: 9998;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.nwp-popup.--bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

.nwp-popup.--bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

.nwp-popup.--top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

.nwp-popup.--top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

.nwp-popup.--center {
  top: auto;
  right: auto;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

@media (max-width: 767px) {
  .nwp-popup.--center,
  .nwp-popup.--top-left,
  .nwp-popup.--top-right,
  .nwp-popup.--bottom-left,
  .nwp-popup.--bottom-right {
    right: 0;
    left: 0;
  }

  .nwp-popup.--top-left,
  .nwp-popup.--top-right {
    top: 0;
    bottom: auto;
  }

  .nwp-popup.--bottom-left,
  .nwp-popup.--bottom-right {
    top: auto;
    bottom: 0;
  }

  .nwp-popup.--center {
    top: auto;
    bottom: 50%;
    transform: translate(0, 50%);
  }
}
