.wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 20;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s forwards;
  z-index: 9999;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: videoFadeIn 1s forwards;
}

@keyframes videoFadeIn {
  to {
    opacity: 1;
  }
}

.video-player {
  height: auto;
  max-height: 80%;
  ::cue {
    white-space: pre-wrap;
    background: transparent;
  }
}

.close-icon {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}


.two-images {
  display: flex;
  width: 100%;
  height: 100%;
}

.half-image {
  width: 50%;
  height: auto;
}

.left-img {
  width: 100%;
  height: 100%;
}

.three-images {
  display: flex;
  width: 100%;
  height: 100%;
}

.disabled-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
}

.preview-overlay {
  background: rgba(255,255,255,0.6);
  width: 100%;
  height: 100%;
}


.with-bg {
  position: relative;
}

.with-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.with-bg {
  position: relative;
  z-index: 2;
}

.image-wrapper {
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
}

.mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.mask_info{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 4px;
  width: 100%;
  height: 100%;
}

.disabled-overlay {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
}

.content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
}

.preview-text {
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

.disabled-overlay:hover .preview-text {
  display: block;
}

.full-image {
  position: relative;
  //z-index: 10;
}
