.popup-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.popup-modal.active {
  display: block;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.popupDetailswrapper {
    position: relative;
    width: 90%;
    max-width: 700px;
    height: 600px;
    background: #fff;
    margin: 0px;
    border-radius: 8px;
    /* overflow: hidden; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* overflow: hidden; */
    padding: 16px !important;
        border: 6px solid #d5d5d5;
}
.popup-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 100%;
    background: #fff;
    margin: 0px;
    border-radius: 8px;
    overflow: hidden;
    overflow-y: auto;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
}

.popup-content iframe {
  width: 100%;
  height: 100%;
}


.popup-close {
       position: absolute;
    top: -24px;
    right: -20px;
    width: 36px;
    height: 36px;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0px 5px 5px 5px #00000014;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #9b9191;
}
button.popup-close span {
    position: relative;
    top: 0px;
}

.popup-close:hover {
    background-color: #ffffff;
}

/* @media (max-width: 960px) {
  .popup-close {
    position: absolute;
    top: 20px;
    right: 6px;
    width: 36px;
    height: 36px;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0px 5px 5px 5px #00000014;
}
} */