/* CSS Document */
.popup {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px; }
  .popup__content {
    position: relative; }
  .popup__close-button {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 70px;
    height: 70px; }
    @media (max-width: 575px) {
      .popup__close-button {
        width: 50px;
        height: 50px; } }
  .popup__footer-anchor {
    position: absolute;
    height: 20%;
    left: 0;
    right: 0;
    bottom: 0; }
