.stella-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: var(--as-popup-z-index);
    overflow-y: auto;
    padding-top: max(5%, 30px);
    padding-bottom: max(5%, 30px);
  }
  
  .stella-popup-content {
    position: relative;
    background: #fff;
    max-width: 800px;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
  }
  
  .stella-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: white;
  }
  
  @media (min-width: 1024px) {
    .stella-popup-content {
      max-width: 1200px;
      width: 80%;
    }
    .stella-popup-close {
      right: -8px;
    }
  }
  