.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  z-index: 100;
  display: none;
}

.overlay.active {
  display: block;
}

.main_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--secondary-color);
  padding: 10px;
  border-radius: 7px;
  color: #fff;
  width: 95%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: scroll;
}
.main_container::-webkit-scrollbar {
  width: 5px;
}
.main_container::-webkit-scrollbar-track {
  background: transparent;
}
.main_container::-webkit-scrollbar-thumb {
  background-color: var(--scroll);
  border-radius: 10px;
}

.video_container {
  background: #fff;
  color: #000;
  height: 500px;
  width: 100%;
  /* width: 90%; */
  /* max-width: 850px; */
}

.img {
  /* max-height: 80vh; */
  width: 100%;
}

.div_img {
  height: 90vh;
  width: 80vw;
}

.description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2rem;
}
