.popup_window {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 150; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
  }

  .popup_wrapper {
    width: 80vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:50%;
    left:50%;
    overflow: hidden;
    transform: translate(-50%, -50%); /* (x, y)  => position */
    border: 1px solid white;
    z-index: 8;
  }

  .popup_close_button {
    width: 36px;
    height: 36px;
    position: absolute;
    padding: 4px;
    right: 0;
    top: 0;
    cursor: pointer;
    background-color: white;
  }

  .popup_background {
    width: 100%;
    object-fit: cover;
  }

  .popup_background_desk {
    display: block;
  }

  .popup_background_mob {
    display: none;
  }

  .popup_text {
    position: absolute;
    width: 100%;
    bottom: 16px;
    right: 26px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .popup_label {
    flex: 1;
    margin: 0 24px 0 26px;
    height: 100%;

    font-family: GothamMedium;
    font-size: 22px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: right;
    color: #ffffff;
  }

  @media only screen and (max-width: 768px) {
    .popup_background_desk {
      display: none;
    }

    .popup_background_mob {
      display: block;
    }

    .popup_text {
      bottom: 12px;
      right: 16px;
    }

    .popup_label {
      margin: 0 5px 0 16px;
      text-align: center;
    }
  }
