.infiniteScroll {
    position: absolute;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 2;
    overflow: auto;
        overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fotosLista ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fotosLista li {
	position: absolute;
	text-align:center;
	display: inline-block;
	width: 100%;
}

.containerZoom {
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zoomInput[type=range] {
  width: 100%;
}

.zoomButton {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: white;
  font-size: 24px;
  border: 1px solid lightgrey;
  cursor: pointer;
  -webkit-appearance: none;
  margin: 0 10px;
}

.action{
	cursor: pointer;
} 

.img-with-zoom {
		overflow: hidden;
		margin: 0 auto;
}

.img-with-zoom img {
		width: 100%;
		transition: 0.5s all ease-in-out;
}
	 
.img-with-zoom:hover img {
		transform: scale(1.3);
}

@media (orientation:landscape) {
    .hide-on-landscape {
        display: none;
    }
}

@media (orientation:portrait) {
    .hide-on-portrait {
        display: none;
    }
}

.test-overflow-descr {
    bottom: -2px;
    z-index: 9;
    color: white;
    position: absolute;
    max-width: calc(100% - 30px);
    padding: 2px 4px;
}

.test-overflow-bg {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: -1;
}
