.l-image-preview__btn {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
  background-color: #606666;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease-in-out;
}
.l-image-preview__btn:hover {
  color: var(--l-primary-color, #4998f6);
}

.l-image-preview__close {
  top: 30px;
  right: 30px;
}

.l-image-preview__prev,
.l-image-preview__next {
  top: 50%;
  transform: translateY(-50%);
}
.l-image-preview__prev {
  left: 30px;
}
.l-image-preview__next {
  right: 30px;
}

.l-image-preview__actions {
  cursor: default;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 25px;
  width: auto;
  border-radius: 20px;
}

.l-image-preview__actions .l-image-preview__btn {
  position: static;
  width: 40px;
}

.l-image-preview-img {
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 200px);
  vertical-align: middle;
  transform-origin: center center;
  transition: all 0.25s ease;
  user-select: none;
}
