.ff-header-content {
  display: flex;
  align-items: center;
  gap: 4px;

  .ff-header-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
  }
}

.ff-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--tooltip-bg-color);
}

.ff-media-video,
.ff-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ff-top-right-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.ff-media-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
}

.ff-play-pause-btn {
  background: none;
  border: none;
  color: var(--primary-button-text-color);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.ff-progress-bar {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;

  .ff-current-time,
  .ff-total-time {
    font-size: 12px;
    min-width: 40px;
    text-align: center;
    color: var(--tooltip-text-color);
  }

  .ff-custom-slider {
    flex: 1;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .ff-slider-track {
    width: 100%;
    height: 10px;
    background-color: var(--ff-bg-pearl-gray-color);
    border-radius: 10px;
    position: relative;
  }

  .ff-slider-progress {
    height: 100%;
    background-color: var(--ff-white-color);
    border-radius: 10px;
    transition: width 0.1s linear;
  }

  .ff-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: left 2s linear , transform 0.2s linear;
    width: 18px;
    height: 18px;
    background-color: var(--ff-white-color);
    border-radius: 50%;
    z-index: 1;
    transition: left 0.1s linear;
  }
}