
.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 80vh; 
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  image-rendering: optimizeQuality; 
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /*Waikee - Overlay Wallpaper color*/

}
.slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  object-position: center 30% ; /* waikee adjust the position to show more chocolates */
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
	bottom:0;
	left:0;
	right:0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}


.slideshow .slide .caption {
	display:block;
	width:100%;
	max-width: 1260px;
}
.slideshow .slide .caption p {
	display:inline-block;
	text-transform: uppercase;
	font-size: 1.5rem;
	border-bottom: 2px solid #fff;
	padding-bottom:0.5rem;
	margin-bottom:0px;
}
.slideshow .slide .caption h1 {
	font-size:3.5rem;
	line-height:3.5rem;
}

.black-layer{
	display:block;
	backdrop-filter: blur(0px);
	background: rgba(255,255,255,0); /*Waikee - Square text box layer*/
	padding:1rem;
	margin:auto;
	text-align: center;
}

.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 7px; /*Waikee - gap between dots*/
  position: relative;

  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;

  width: 10px;
  height: 10px;
	border-radius:360px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 0px;
  position: absolute;
  top:50%;/*waikee pust down arrow*/
  cursor: pointer;
  z-index: 3; 
}
.slideshow .arrows .prev {
  left: 2rem;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 2rem; 
}
.slideshow .arrows .next:hover .svg {
  left: 10px; 
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}


@media (max-width: 768px) {
.slideshow .slide .caption {
	transform: scale(0.8, 0.8);
}
.slideshow .slide .title{
  font-size: 2rem;
}
.slideshow .slide .text{
  font-size: 1rem;
}
	.mobil-smaller{
		font-size:90% !important;
	}
}
