
.close__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popup__background {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    height: 100%;
    width: 100%;
  }
  
  .popup__container {
    background-color: white;
    z-index: 4000;
    position: absolute;
    margin: auto;
    max-width: 95%;
    max-height: 95%;
  }
  
  .popup__content {
    padding: 0rem 2rem 2rem 2rem;
  }
  
  .popup__header {
    margin: 1rem 2rem;
    gap: 5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    height: 3rem;
    font-size: 1.5rem;
  }
  
  .popup__btnClose {
    cursor: pointer;
    text-align: right;
  }
  
  .popup__btnClose span {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    margin-left: auto;
  }
  @media only screen and (max-width: 1024px) {
    .popup__container {
      max-width: 90%;
      max-height: 90%;
      margin: 1rem;
    }
  }