/*
 * Media processing
 *
 * Media Action Strip Styles
 *
 * Pavlin Georgiev
 * 2023 Softel Labs
 *
*/


.action-stripe {
  display: flex;
  align-items: center;
  padding: 8px;
}

.action-item {
  display: flex;
  align-items: center;
  margin-right: 2px;
  cursor: pointer;
}

.action-item i {
  font-size: 16px;
  margin-right: 2px;
}

.action-item span {
  font-size: 16px;
}

.action-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s;
}
.action-btn:hover {
  background-color: lightgray;
}
.action-btn:active {
  transform: scale(0.9);
}



.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1111;
  bottom: 125%;
  left: 50%;
  margin-left: -20px;
  margin-right: 20px;
  opacity: 0;
  transition: all 0.3s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.media-video-container {
  position: relative;
}
.media-video-container .prev-arrow,
.media-video-container .next-arrow {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  top: 35%;
  height: 90px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s;
}
.media-video-container .prev-arrow:hover,
.media-video-container .next-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.media-video-container .prev-arrow {
  left: 0px;
}
.media-video-container .prev-arrow svg {
  transform: rotateZ(-90deg);
}
.media-video-container .next-arrow {
  right: 0px;
}
.media-video-container .next-arrow svg {
  transform: rotateZ(90deg);
}
.media-video-container video {
  z-index: 1;
}
