.popup-content {
    margin: auto;
    background: rgb(255, 255, 255);
    /* padding: 5px; */
    color:#ffffff;
    background-color: rgba(34, 34, 34, 1);
    box-sizing: border-box;
  }
  @media (min-width:768px){
    .popup-content {
      width: 50vw;
      height: 90vh;
      padding: 0;
      min-width: 35vw;
      max-width: 70vw;
      border-radius: 12px;
    }
  }
  @media (max-width:768px){
    .popup-content {
      width: 100% !important;
      height: 100% !important;
    }
    .popup-content .modal > .close {
      top: 15px !important;
      left: 20px;
    }
  }
  .popup-content .modal > .content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: hidden;
  }
  .popup-arrow {
    color: rgb(255, 255, 255);
  }
  [role='tooltip'].popup-content {
    width: 200px;
    box-shadow: rgba(121, 78, 78, 0.16) 0px 0px 3px;
  }
  
  .popup-overlay {
    background: rgba(0, 0, 0, 0.5);
  }
  [data-popup='tooltip'].popup-overlay {
    background: transparent;
  }
  .popup-content .modal {
    font-size: 12px;
    height: 100%;
  }
  .popup-content .modal > .header {
    width: 100%;
    border-bottom: 1px solid gray;
    font-size: 18px;
    text-align: center;
    padding: 5px;
  }
  .popup-content .modal > .content {
    width: 100%;
    /* padding: 10px 5px; */
    height: 100%;
  }
  .popup-content .modal > .actions {
    width: 100%;
    padding: 10px 5px;
    margin: auto;
    text-align: center;
  }
  .popup-content .modal > .close {
    cursor: pointer;
    z-index: 1;
    color: #FFFFFF;
    font-weight: bold;
    position: absolute;
    display: block;
    padding: 2px 5px;
    line-height: 20px;
    right: -40px;
    top: 0px;
    /* font-size: 24px;
    background: rgba(51, 51, 51, 0.75);
    border-radius: 18px;
    border: none; */

    font-size: 27px;
    background: rgba(51, 51, 51, 0.75);
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: none;
  }
  .popup-content .modal > .close:focus-visible{
    outline:none;
  }