.jifu-video-block {
  position: relative;
  width: 100%;
  height: 70vh;
  background: #000;
  overflow: hidden;
}

.jifu-video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* triangle */
.jifu-video-play-btn::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 24px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #000;
}

.blackoverlap .jifu-video-wrapper::after {
  content: '';
  height: 100vh;
  background: linear-gradient(180deg, rgba(7, 146, 227, 0) 75%, rgb(0, 0, 0) 94%);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.blackoverlap.whiteovlap .jifu-video-wrapper::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 75%, rgb(255, 255, 255) 94%);

}

/* pulse animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* MUTE BUTTON */
.jifu-video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.jifu-video-controls button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #eef2ff8f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.jifu-video-block {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.jifu-video-wrapper video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* RIGHT SIDE CONTROLS */
.jifu-video-controls {
  position: absolute;
  right: 25px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

/* BUTTON STYLE */

.jifu-video-controls button:hover {
  transform: scale(1.1);
}

/* UNMUTE (speaker clean) */
.mute-btn.dashicons-controls-volumeon:before {
  content: "\f521";
  /* dashicons speaker */
  color: #000;
}

/* MUTE (custom slash overlay) */
.mute-btn.dashicons-controls-volumeoff:before {
  content: "\f521";
  /* same icon */
  color: #000;
}

.topbanner-arrow {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 20px;
}

.topbanner-arrow.textviewss {
  bottom: 80px;
}

/* DRAW SLASH LINE */
.mute-btn.dashicons-controls-volumeoff::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 2px;
  background: #111;
  color: #000;
  transform: rotate(45deg);
}