/* Flickity
------------------------- */

.flickityb-enabled {
  position: relative;
}

.flickityb-enabled:focus { outline: none; }

.flickityb-viewport {
  overflow: hidden;
  position: relative;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickityb-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickityb-slider {
  position: absolute;
  width: 100%;
}

.flickityb-prev-next-button.previous { left: 10px; }
.flickityb-prev-next-button.next { right: 10px; }

.flickityb-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickityb-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickityb-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickityb-prev-next-button.no-svg {
	color: #000;
	font-size: 26px;
}

/* ---- page dots ---- */

.flickityb-page-dots {
	position: relative;
	width: 100%;
	bottom: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: 1;
	z-index: 9999;
}

.flickityb-page-dots .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: #c1000f;
	border-radius: 50%;
	opacity: 0.25;
	cursor: pointer;
}

.flickityb-page-dots .dot.is-selected { opacity: 1; }
