/*! Flickity v1.2.1
http://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;
	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;
}
/* ---- page dots ---- */

.flickity-page-dots {
	position: absolute;
	width: 100%;
	bottom: -35px;
	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: 13px;
	height: 13px;
	margin: 0 8px;
	background: transparent; 
	border: 2px solid #f16021;
	border-radius: 50%;
	cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
	background: #f16021; 
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.gallery {
	background: #fff;
}
.gallery-cell {
	width: 102%;
	height: 750px;
	margin-right: 10px;
	counter-increment: gallery-cell;
}
/* Mobile */
@media only screen and (max-width: 375px) {
.gallery-cell {
	height: 625px;
	width: 107%;
}
}
/* Small Tablets */
@media only screen and (min-width : 376px) and (max-width : 767px) {
.gallery-cell {
	height: 665px;
}
}
/* Large Tablets */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
.gallery-cell {
	height: 800px;
}
}
