.embla_mum {
	--dots_height: 5rem;
	position: relative;
}
.embla {
	position: relative;
	overflow: hidden;
}
.embla__viewport {
	width: 100%;
}
.embla__viewport.is-draggable {
	cursor: move;
	cursor: grab;
}
.embla__viewport.is-dragging {
	cursor: grabbing;
}
.embla__container {
	display: flex;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.embla__slide {
	position: relative;
	margin-right: 10px;
	flex: 0 0 33.3333%;
}
.embla__slide__img {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: auto;
	min-height: 100%;
	min-width: 100%;
	max-width: none;
	transform: translate(-50%, -50%);
}
.embla__button {
	outline: 0;
	cursor: pointer;
	touch-action: manipulation;
	position: absolute;
	z-index: 1;
	top: calc((100% - var(--dots_height)) / 2);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	border-radius: 50%;
	padding: 0 !important;
}
.embla__button__svg {
	position: relative;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #5F5F5F;
	stroke-width: 1.5px;
	stroke-linecap: round;
	stroke-miterlimit: 10;
}
.embla__button:hover .embla__button__svg {
	stroke: var(--prim);
}
.embla__button:disabled .embla__button__svg {
	cursor: default;
	opacity: 0.3;
}
.embla__button:after {
	content: 0;
	display: none;
}

.embla__dots {
	height: var(--dots_height);
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: flex-end;
}
.embla__dot {
	background-color: transparent;
	cursor: pointer;
	position: relative;
	padding: 0;
	outline: 0;
	border: 0;
	width: 30px;
	height: 30px;
	margin-right: 7.5px;
	margin-left: 7.5px;
	display: flex;
	align-items: center;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.embla__dot:after {
	background-color: #d5d5d5;
	width: 100%;
	height: 2px;
	border-radius: 1px;
	content: "";
}
.embla__dot:hover:after {
	background-color: var(--prim);
	opacity: 0.5;
}
.embla__dot.is-selected:after {
	background-color: var(--prim);
	opacity: 1;
}
.embla__button {
	width: 40px;
	height: 40px;
	font-size: 1.4rem;
	color: var(--prim_125);
	transition: background-color 0.35s;
}
.embla__button--prev {
	left: calc(var(--m) / 2 - 20px);
}
.embla__button--next {
	right: calc(var(--m) / 2 - 20px);
}


@media screen and (max-width: 1360px) {
.embla__button--prev {
	left: var(--m);
}
.embla__button--next {
	right: var(--m);
}
}
@media screen and (hover: hover) and (pointer: fine) {
.embla__button:hover {
	background-color: var(--gray_light);
}	
}
