.video-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.975);

  padding: 60px;

  @media (max-width: 768px) {
    padding: 16px;
  }
}

.video-popup-content {
  position: relative;
  margin: auto;
  max-width: 980px;
  width: 90%;

  @media (max-width: 768px) {
    padding-top: 100px;
  }
}

.video-popup-content iframe {
  margin: 0 auto;
}

.close-btn {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222;
  border-radius: 50%;
  top: 50px;
  right: 50px;
  color: white;
  font-size: 50px;
  line-height: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;

  @media (max-width: 768px) {
    top: 25px;
    right: 25px;
  }
}

.close-btn:hover,
.close-btn:focus {
  background-color: #fff;
  cursor: pointer;
  color: black;
}

.video-popup-description {
  color: white;
  margin-top: 20px;

  @media (max-width: 768px) {
    padding-top: 15px;
  }
}

.video-popup-description h2 {
  color: white;
  margin-top: 0;
  font-size: 22px;
  padding-top: 50px;
  text-align: left;

  @media (max-width: 768px) {
    padding-top: 15px;
  }
}

.video-popup-description p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  padding-top: 5px;
}

.button__container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.watch-online-btn {
  background-color: white;

  display: flex;
  justify-content: center;

  width: 235px;
  margin-top: 25px;
  color: #000;

  text-decoration: none;
  font-size: 20px;

  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.watch-online-btn:hover {
  background: #ccc;
}

.video__container {
  width: 100%;
  display: flex;
  justify-content: center;
}
