.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 9999;
    display: none;
    max-width: 90%;
    padding: 2px;
    box-sizing: content-box;
    border-radius: 20px;
  }
  #youtubePopup {
    width: 854px;
    height: 480px;
  }
  
.popup iframe {
      max-width: 100%;
      border-radius: 20px;
}
  #contentPopup #contentContainer {
    padding: 20px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9998;
    display: none;
  }

  /* Close button styles */
  .popup-close {
    position: absolute;
    top: -40px;
    right: -20px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
  }
  @media (max-width:767px) {
    .popup-close {
      left: 50%;
      transform: translateX(-50%);
      right: auto;
      top: -65px;
    }
    .popup {
    /* max-height: 65vh;; */
    }
    #contentPopup {
      width: 100%;
      max-height: 65vh;
    }
  }