.gallery-lightbox .single-thumb {
    cursor: pointer;
}

.offer-slider-lightbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: rgba(0,0,0,0.7);
  z-index: 100;
  display: flex;
  box-sizing: border-box;
  padding: 70px;
  display: none;
  opacity: 0;
  transition: 0.25s;
}

.lightbox-picture {
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 11;
  position: relative;
  transition: 0.25s;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lightbox-visible {
  opacity: 1;
}

.lightbox-control {
  width: 50px;
  height: 50px;
  position: fixed;
  top: calc(50vh - 25px);
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  padding-top: 12px;
  transition: 0.25s;
  display: none;
}

.lightbox-control-close {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.lightbox-control:hover,
.lightbox-control-close:hover{

  transform: scale(1.1);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-active {
  display: block !important;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #ffffff;
  font-size: 6px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 7px);
  z-index: 8;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {

  0%,
  80%,
  100%{

    box-shadow: 0 2.5em 0 -1.3em;
  }
  
  40%{

    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load7 {

  0%,
  80%,
  100%{

    box-shadow: 0 2.5em 0 -1.3em;
  }

  40%{

    box-shadow: 0 2.5em 0 0;
  }
}

@media (max-width: 992px) {

	.offer-slider-lightbox {
		padding: 10px 70px;
	}
}

@media (max-width: 576px) and (orientation: portrait) {

	.offer-slider-lightbox {
		padding: 70px 10px;
	}
	
	.lightbox-control {
		top: unset;
		bottom: 10px;
	}
	
	.lightbox-prev {
		left: calc(50% - 100px);
	}

	.lightbox-next {
		right: calc(50% - 100px);
	}
}