.catalogue-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
	padding: 0px;
	display:flex;
	justify-content:center;
}

.flipbook-wrapper {
  position: relative;
  width: fit-content;
}

#flip-prev,
#flip-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;
	margin: 0px;

  background: rgba(0,0,0,0.5);
  color: #fff;
	padding: 0;
	line-height: 1;
	min-height: fit-content;
  font-size: 24px;
  cursor: pointer;
}

#flip-prev {
  left: -55px;
}

#flip-next {
  right: -55px;
}

@media (max-width: 850px) {

  #flip-prev {
    left: 10px;
  }

  #flip-next {
    right: 10px;
  }

}

/* ❗ KHÔNG ép full 100% */
#flipbook {
    display: block;
}
.catalogue-container .stf__item,
.catalogue-container .stf__item img{
	top: 0px !important;
}
.catalogue-container .stf__item img{
	object-fit: contain !important;
}
/* Mobile */
@media (max-width: 849px) {
	.catalogue-container {height: 100%;}
}