/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}


.wbox-gallery.stage-padding {
	width: 100%;
	height: 25vh;
}

.wbox-gallery.stage-padding .item {
	height: 100%;
	width: 50%;
	margin-right: 0px;
	overflow: hidden;
	background: #999;
}

/* fade effect */
.wbox-gallery.stage-padding .item img {
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
	opacity: 0;
}

.wbox-gallery.stage-padding .item img.flickity-lazyloaded,
.wbox-gallery.stage-padding .item img.flickity-lazyerror {
	opacity: 1;
}

.wbox-gallery.stage-padding .item img {
	max-width: none;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.flickity-button, .flickity-button:hover {
	background: transparent;
}

.flickity-prev-next-button {
	border-radius: 0;
	height: 100%;
	width: 20vw;
}

.flickity-prev-next-button svg {
	display: none;
}

.flickity-prev-next-button.previous {
	left: 0;
	cursor: w-resize;
	cursor: url('../../../blocks/wbox_gallery/templates/stage_padding_btns/css/arrow-left.png'), auto;
}

.flickity-prev-next-button.next {
	right: 0;
	cursor: e-resize;
	cursor: url('../../../blocks/wbox_gallery/templates/stage_padding_btns/css/arrow-right.png'), auto;
}

.wbox-gallery .item {
	margin: 0 45px;
}

.gallery-btn-wrap {
	width: 100%;
	margin-top: 40px;
}

.gallery-btn-wrap .btn {
	padding: 12px 35px;
	width: 100px;
	height: 50px;
}

.gallery-btn-wrap .btn-left {
	background-repeat: no-repeat;
	background-image: url('../../../blocks/wbox_gallery/templates/stage_padding_btns/css/arrow-left-btn.svg');
	background-position: center;
	margin-right: 10px;
}

.gallery-btn-wrap .btn-right {
	background-repeat: no-repeat;
	background-image: url('../../../blocks/wbox_gallery/templates/stage_padding_btns/css/arrow-right-btn.svg');
	background-position: center;
	margin-left: 10px;
}

@media (min-width: 576px) {
	.wbox-gallery.stage-padding {
		height: 30vh;
	}
}

@media (min-width: 768px) {
	.wbox-gallery.stage-padding {
		height: 40vh;
	}
}

@media (min-width: 992px) {

	.wbox-gallery.stage-padding {
		height: 50vh;
	}

	.gallery-btn-wrap .btn-left {
		margin-right: 20px;
	}

	.gallery-btn-wrap .btn-right {
		margin-left: 20px;
	}

}




