.glide {
	box-sizing: border-box;
	position: relative;
	width: 100%;
}

.glide * {
	box-sizing: inherit;
}

.glide__track {
	overflow: hidden;
}

.glide__slides {
	align-items: stretch;
	backface-visibility: hidden;
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	touch-action: pan-Y;
	transform-style: preserve-3d;
	white-space: nowrap;
	width: 100%;
	will-change: transform;
}

.glide__slides--dragging {
	user-select: none;
}

.glide__slide {
	flex-shrink: 0;
	list-style: none;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	white-space: normal;
	user-select: none;
	width: 100%;
}

.glide__slide a {
	-webkit-user-drag: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.glide__slide .textBlockEdit a {
	-webkit-user-drag: unset;
	-moz-user-select: unset;
	-ms-user-select: unset;
	user-select: unset;
}

.glide__arrows {
	-webkit-touch-callout: none;
	user-select: none;
}

.glide__bullets {
	-webkit-touch-callout: none;
	user-select: none;
}

.glide--rtl {
	direction: rtl;
}

.glide__arrow {
	cursor: pointer;
	display: block;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 150ms ease, border 300ms ease-in-out;
	z-index: 2;
}

.glide__arrow:focus {
	outline: none;
}

.glide__arrow:hover {
	border-color: white;
}

.glide__arrow--left {
	left: 2em;
}

.glide__arrow--right {
	right: 2em;
}

.glide__arrow--disabled {
	opacity: 0.33;
}

.glide__bullets {
	bottom: 2em;
	display: inline-flex;
	left: 50%;
	list-style: none;
	position: absolute;
	transform: translateX(-50%);
	z-index: 2;
}

.glide__bullet {
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid transparent;
	border-color: 2px solid rgba(255, 255, 255, 0);
	border-radius: 50%;
	box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
	height: 15px;
	line-height: 0;
	margin: 0 0.25em;
	padding: 0;
	transition: background-color 0.3s linear, border-color 0.3s linear, opacity 0.3s linear;
	width: 15px;
}

.glide__bullet:focus {
	outline: none;
}

.glide__bullet:hover,
.glide__bullet:focus {
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid white;
}

.glide__bullet--active {
	background-color: white;
}

.glide--swipeable {
	cursor: default;
}

.glide--dragging {
	cursor: default;
}

.glide__bullets {
	opacity: 1;
}
