.lightboxV {
  transition: opacity 0.5s linear;
}

.lightboxV__inside {
  position: fixed;
  left: 0;
  background-color: #000000db;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
}

.lightboxV__inside__container {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;/*700px;*/
  max-width: 85%;
  transition: 0.3s opacity linear;
}

.lightboxV__inside__img {
  transition: 1s all;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.lightboxV__close {
  cursor: pointer;
  transition: 0.3s opacity linear;
  position: absolute;
  right: 0;
  margin-top: 14px;
  width: 16px;
  height: 16px;
  background-image: url(../../dist/images/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.lightboxV__close:hover {
  opacity: 0.6;
}

.lightboxV__title {
  color: #fff;
  font-size: 13px;
  display: inline-block;
  position: absolute;
}

@media (min-width: 768px) {
  .lightboxV__title {
    font-size: 20px;
  }
}

.lightboxV__details {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.lightboxV__count {
  position: absolute;
  left: 0;
  margin-top: 20px;
  color: #fff;
  font-size: 13px;
}

@media (min-width: 768px) {
  .lightboxV__count {
    font-size: 16px;
  }
}

.lightboxV__arrows {
  position: absolute;
  cursor: pointer;
  width: 33%;
  height: 100%;
  top: 0;
  z-index: 5;
  -webkit-filter: drop-shadow(6px 0 2px hsla(0, 0%, 0%, 0.2));
  filter: drop-shadow(6px 0 2px hsla(0, 0%, 0%, 0.2));
}

.lightboxV__arrows__inside {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  opacity: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .lightboxV__arrows__inside {
    width: 30px;
  }
}

@media (min-width: 768px) {
  .lightboxV__arrows__inside {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lightboxV__arrowsSm .lightboxV__arrows__inside {
    opacity: 1;
  }
}

@media only screen and (max-device-width: 1366px) {
  .lightboxV__arrowsSm .lightboxV__arrows__inside {
    opacity: 1;
  }
}

.lightboxV__arrows__inside--next {
  text-align: right;
  right: 20px;
  background-image: url(../../dist/images/next.svg);
}

.lightboxV__arrows__inside--prev {
  left: 20px;
  background-image: url(../../dist/images/prev.svg);
}

.lightboxV__prev {
  left: 0;
}

@media (min-width: 768px) {
  .lightboxV__prev {
    left: 0;
  }
}

@media (min-width: 768px) {
  .lightboxV__prev:hover .lightboxV__arrows__inside--prev {
    opacity: 1;
  }
}

.lightboxV__next {
  right: 0;
}

@media (min-width: 768px) {
  .lightboxV__next {
    right: 0;
  }
}

@media (min-width: 768px) {
  .lightboxV__next:hover .lightboxV__arrows__inside--next {
    opacity: 1;
  }
}

.lightboxV__border {
  border: 3px solid #fff;
  border-radius: 3px;
}

@media (min-width: 1200px) {
  .lightboxV__expand {
    color: #fff;
    right: 0;
    position: absolute;
    top: -33px;
    width: 30px;
    height: 30px;
    background-image: url(../../dist/images/expand.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .lightboxV__expand__img .lightboxV__inside__container {
    width: 75% !important;
    max-width: 100% !important; /*1200px*/
  }

  .lightboxV__expand__img .lightboxV__inside__container .lightboxV__expand {
    background-image: url(../../dist/images/shrink.svg);
  }
}

.lightboxV__no__next .lightboxV__next {
  display: none;
}

.lightboxV__no__prev .lightboxV__prev {
  display: none;
}
