/* Erweiterung - Zimmerausstattung */

.mw-room-features {
	background: var(--mw-color-primary-opacity-highest);
	padding: 20px 0;
	position: relative;
}
/*.mw-room-features ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
}*/
.mw-room-features ul > li {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
	/*margin: 0 10px;*/
}
.mw-room-features ul > li > div {
	font-family: var(--mw-font-headline);
	display: flex;
	flex-direction: column;
	width: 90px;
	height: 90px;
	border: 2px solid var(--mw-color-primary-opacity-highest);
	border-radius: 50%;
	margin-bottom: 10px;
	box-shadow: 0 0 3px #ffffff;
	/*margin-left: auto;
	margin-right: auto;*/
}
.mw-room-features ul > li > div .value {
	color: var(--mw-color-primary);
	font-weight: var(--mw-font-primary-weight-medium);
	font-size: 36px;
	line-height: 1;
	margin-top: auto;
}
.mw-room-features ul > li > div .unit {
	color: var(--mw-color-primary);
	font-weight: var(--mw-font-primary-weight-medium);
	font-size: 13px;
	line-height: 1;
	margin-bottom: auto;
}
.mw-room-features ul > li > .icon {
	display: block;
	position: relative;
}
.mw-room-features ul > li > .icon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-size: 100%;
	height: 45px;
	width: 49px
}
.mw-room-features ul > li.sauna > .icon:before {
	background-image: url('/img/layout/sauna.svg');
}
.mw-room-features ul > li.veranda > .icon:before {
	background-image: url('/img/layout/veranda.svg');
}
.mw-room-features ul > li.allergic > .icon:before {
	background-image: url('/img/layout/allergiker.svg');
}
.mw-room-features ul > li.wooden-floor > .icon:before {
	background-image: url('/img/layout/holzboden.svg');
}
.mw-room-features ul > li.chimney > .icon:before {
	background-image: url('/img/layout/kamin.svg');
}

/* Swiper */

.mw-room-features .swiper-container {
	width: 100%;
}
.mw-room-features .swiper-pagination {
	display: none;
	bottom: -24px !important;
	width: 100%;
}
.mw-room-features .swiper-pagination-bullet-active {
	background: var(--mw-color-primary, var(--mw-color-lightgray));
}
.mw-room-features .swiper-pagination-bullet {
	margin-left: 2px;
	margin-right: 2px;
}

@media all and (min-width: 601px){
	
	.mw-room-features .swiper-pagination {
		display: block;
	}
}