/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
	position: relative;
	height: 100%; 
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
	overflow: hidden;
	position: relative;
	height: 100%!important;
}

.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: rgba(0, 0, 0, 0);
	border: none;
	color: #fff;
  	opacity: 0;
	pointer-events: none; 
}

.flickity-button:hover {
	background: rgba(0, 0, 0, 0);
	cursor: pointer;
}

.flickity-button:focus { outline: none; }

.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: #fff; }

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
	top: 50%;
	border-radius: 0;
	/* vertically center */
	transform: translateY(-50%);
	z-index: 2;
}

.flickity-prev-next-button.previous { left: 10px; width: 0px; height: 0px; }
.flickity-prev-next-button.next { width: calc(55vw - 1050px); height: 100%; left: 100%; }
/* 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;
	left: 0;
	bottom: 0;
	padding: 28px 38px;
	margin: 0;
	list-style: none;
	text-align: left;
	line-height: 1;
	
	height: 84px; 
	background: rgba(0, 0, 0, .6);
	display: flex; justify-content: flex-start; align-items: center; 
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0 13px;
	background: #eee;
	border-radius: 0;
	opacity: 0.5;
	cursor: pointer;
	transition: .35s ease all; 
}

.flickity-page-dots .dot.is-selected {
	background: #ff5808; opacity: 1; width: 28px; height: 28px; 
}

@media only screen and (max-width: 1200px) {
	.flickity-page-dots { padding: 26px 32px; height: 76px; }
	.flickity-page-dots .dot { width: 14px; height: 14px; }
	.flickity-page-dots .dot.is-selected { width: 24px; height: 24px; }
}