.video-thumbnail-container {
  background-color: var(--color-ti-primary-black);
  cursor: pointer;
  position: relative;
}

.video-thumbnail-overlay {
  align-items: center;
  color: var(--color-ti-white);
  display: flex;
  flex-direction: column;
  gap: 13px;
  height: 100%;
  justify-content: center;
  opacity: 0.7;
  position: absolute;
  width: 100%;
}

.video-thumbnail {
  opacity: 0.1;
}

.video-modal-popup {
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 10;
}

.video-modal-popup::before {
  background-color: var(--color-ti-primary-black);
  content: "";
  height: 100%;
  opacity: 0.9;
  position: absolute;
  width: 100%;
}

.video-container {
  background: var(--color-ti-primary-white);
  height: 90%;
  left: 50%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.video-modal-title-container {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: flex-end;
}

.close-icon {
  cursor: pointer;
  margin-right: 10px;
  margin-top: 10px;
}

.main-video {
  cursor: pointer;
  height: calc(100% - 100px);
  outline: none;
  position: relative;
  width: 100%;
}

.main-video.video-paused {
  opacity: 0.5;
}

.video-play-icon {
  cursor: pointer;
  display: none;
  height: 25%;
  left: 50%;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
}

.video-paused.video-play-icon {
  display: block;
}
