/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
  width: 100%;
  /* margin-top: auto; */

  background-color: #fff;
  z-index: 99999;
}

.close {
  cursor: pointer;
  font-weight: bold;
  color: #713AD3 !important;
  padding: 0px 20px;
  font-size: 40px;
}

.video-container-wrap {
  position: relative;
}

.modal-content .close {
  position: absolute;
  right: 10px;
  top: 60px;
  z-index: 100;
}

#videoPlayer {
  height: auto;
  width: 1000px;
  object-fit: cover;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #videoPlayer {
    width: 100%;
    height: auto;
  }
}