@font-face {
    font-family: 'Rosario';
    src: url('includes/fonts/Rosario-VariableFont_wght.ttf') format('woff2');
    font-weight: 300 800;
}

@font-face {
    font-family: 'Rosario';
    src: url('includes/fonts/Rosario-Italic.woff2') format('woff2'),
        url('includes/fonts/Rosario-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

html {
	font-size: 1rem;
	transition: all 0s ease 0s;

	height: 100%;
}

body {
	font-family: 'Rosario', sans-serif;
	font-weight: 400;

	padding: 0;
	margin: 0;
	height: 100%;
	
	transition: all 0s ease 0s;
}

* {
	box-sizing: border-box;

	transition: all 0.1s ease-in-out;
}

.hidden {
	display: none;
}

a {
	color: inherit;
}

strong {
	font-weight: 700;
}

hr {
	border: none;
	border-top: 1px solid rgba(150, 150, 150, 1);
	
	margin: 2.5rem 0.5rem;
}

hr.small {
	margin: 1.5rem 1.5rem;
}

td {
	line-height: 100%;
}

td p:first-child,
div p:first-child{
	margin-top: 0;
}

#loadingIndicator {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(255, 255, 255, 0);
	
	pointer-events: none;
	
	transition: all 0.2s ease-in-out;
}

#loadingIndicator.shown {
	background-color: rgba(255, 255, 255, 1);
}

#loadingIndicator .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;
	
	-webkit-opacity: 0;
	opacity: 0;
}

#loadingIndicator .loader.shown {
	-webkit-opacity: 1;
	opacity: 1;
}




#mainLoadingIndicator {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(255, 255, 255, 0);

	pointer-events: none;

	transition: all 0.2s ease-in-out;
	
	z-index: 99999;
}

#mainLoadingIndicator.shown {
	background-color: rgba(255, 255, 255, 1);
}

#mainLoadingIndicator .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;

	-webkit-opacity: 0;
	opacity: 0;
}

#mainLoadingIndicator .loader.shown {
	-webkit-opacity: 1;
	opacity: 1;
}




#mainWrapper {
	display: flex;
	
	margin: 0;
	padding: 0;
	
	width: 100vw;
	height: 100vh;
	
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#mainContent {
	display: flex;
	
	position: relative;
	
	width: 75rem;
	height: 35rem;
}

#mainContent > *{
	flex-basis: 0;
}

#footer {
	display: flex;
	width: 75rem;
	
	margin-top: 1.5rem;
	
	transition: none;
	
	font-size: 120%;
}

#footer div {
	display: flex;
	margin-left: auto;
	margin-right: auto;
	
	flex-direction: column;
	justify-content: end;
	
	text-align: right;
}

#imprintLink {
	font-size: 75% !important;
	position: absolute;
	right: 0;
	bottom: -1.15rem;
	
	font-size: 90%;
}

#homeLink {
	text-decoration: none;
	font-weight: 600;
	color: #474747;
}

#footer div:first-child {
	margin-left: 0;
}

#footer div:last-child {
	margin-right: 0;
}

#mainImage {
	position: relative;
	
	height: 30rem;
	width: 30rem;
	
	margin-top: 2.5rem;
	
	flex-basis: auto;
}

#mainImage #mainImgContent {
	position: absolute;
	left: 2px;
	top: 2px;
	
	width: calc(100% - 4px);
	height: calc(100% - 4px);
}

#mainImage #mainImgContent > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

#mainImage #imgMask {
	position: absolute;
	
	width: 100%;
	height: 100%;
	
	pointer-events: none;
}

#mainImage #homeCircle {
	width: 100%;
	height: 100%;
	
	position: relative;
}

#textContent {
	display: flex;
	flex-grow: 1;
	
	margin-top: 1rem;
	margin-left: 1.5rem;
	margin-right: 2rem;
	
	flex-direction: column;
}

#textContent #menuShapes {
	display: flex;
	
	height: 5.75rem;
	
	z-index: 999;
	
	flex-shrink: 0;
}

#textContent #menuShapes > .menuBtnShape {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	
	width: 5.75rem;
	height: 5.75rem;
}

#textContent #menuShapes > .menuBtnShape img {
	width: 100%;
	height: 100%;
}

#textContent #menuShapes > .menuBtnShape .activeImg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}

#textContent #menuShapes > .menuBtnShape:first-child{
	margin-left: 0;
}

#textContent #menuShapes > .menuBtnShape:last-child {
	margin-right: 0;
}

#textContent #menuShapes > .menuBtnShape .inactiveImg {
	display: block;
}

#textContent #menuShapes > .menuBtnShape .activeImg {
	-webkit-opacity: 0;
	opacity: 0;
}

#textContent #menuShapes > .menuBtnShape.active .activeImg
{
	-webkit-opacity: 1;
	opacity: 1;
}

#textContent #pageContent {
	position: relative;
	
	flex-grow: 1;
	
	margin-top: 0.5rem;
	
	font-size: 100%;
	letter-spacing: 0.05em;
	word-spacing: 0.2em;
	line-height: 250%;
	
	overflow: auto;
}

#textContent #pageContent p {
	line-height: 140%;
}

#textContent #pageContent p:last-of-type {
	margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	
	text-transform: uppercase;
	
	margin: 0.5em 0;
}

h1, h2, h3 {
	text-shadow: 2px 2px 4px rgba(0,0,0,0.075);
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0 !important;
}

.nocaps {
	text-transform: none !important;
}

#textContent #pageContent h1 {
	font-size: 175%;
	font-weight: 600;
	line-height: 150%;
}
#textContent #pageContent h2 {
	font-size: 160%;
	line-height: 140%;
}
#textContent #pageContent h3 {
	font-size: 140%;
	line-height: 130%;
}
#textContent #pageContent h4 {
	font-size: 130%;
	line-height: 120%;
}
#textContent #pageContent h5 {
	font-size: 105%;
	line-height: 110%;
}
#textContent #pageContent h6 {
	font-size: 90%;
	line-height: 100%;
}

#textContent #pageContent .highlight {
	font-size: 140%;
	
	line-height: 140%;
}

#pageMainImgContent {
	display: none;
}

#titleSpecialties {
	margin-top: 0;
	padding-left: 0;
	
	list-style: none;
	list-style-position: inside;
}

#titleName .small {
	font-size: 108%;

	line-height: 108%;
}

#titleName strong{
	display: inline-block;
	
	font-size: 250%;
	
	position: relative;
	top: -0.9rem;
}

#titleName + p {
	margin-top: 0;
}

#titleName + p + hr {
	margin: 1.5rem 1.5rem;
}

#titleSpecialties li {
	margin-bottom: 0rem;
}

p.hint {
	font-size: 90%;
}

ul {	
	list-style-type: '|';
	padding-left: 0.3rem;
	
	line-height: 160%;
}

ul li::marker {
	color: #8cb631;
}

ul li {
	padding-left: 0.35rem;
	margin-bottom: 1rem;
}

ul li p {
	margin-top: 0;
	margin-left: 0.4rem;
	margin-bottom: 1.25rem;
}

#menuText {
	display: flex;
	
	width: auto;
	
	margin-top: 0.5rem;
	
	flex-direction: row;
	
	z-index: 999;
	
	border-bottom: 1px solid rgba(230, 230, 230, 1);
}

#menuText > * {
	margin-left: auto;
	margin-right: auto;

	width: 5.75rem;

	text-align: center;
}

#menuText > *:first-child {
	margin-left: 0;
}

#menuText > *:last-child {
	margin-right: 0;
}

.taubenblau,
#textContent #pageContent .taubenblau,
.menuBtnText.active.taubenblau,
.menuBtnText.taubenblau:hover
{
	color: #687C96;
}

.pistazie,
#textContent #pageContent .pistazie,
.menuBtnText.active.pistazie,
.menuBtnText.pistazie:hover
{
	color: #9FA893;
}

#textContent #pageContent .purple,
.menuBtnText.active.purple,
.menuBtnText.purple:hover
{
	color: #9c6d84;
}

#textContent #pageContent .powderpink,
.menuBtnText.active.powderpink,
.menuBtnText.powderpink:hover
{
	color: #e3a8bc;
}

.menuBtnText {
	font-size: 80%;
	letter-spacing: 0.03em;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	
	color: #000;
	
	margin-bottom: 0.3rem;
}

.textOutline {
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

#kontaktContainer {
	display: flex;
	
	width: 100%;
	
	flex-direction: row;
	justify-content: space-between;
}

.kontaktAccessibilityHint table:last-of-type {
	margin-top: 0.25rem;
}

td.hoursHeader {
	text-align: center;
	font-size: 100%;

	padding-bottom: 0.75rem;
}

td.hours {
	text-align: right;
}

td.hoursNotice {
	text-align: center;
	font-size: 80%;
	
	padding-top: 0.5rem;
}

#popupWrapper {
	background: rgba(255, 255, 255, 0.7);
	
	display: block;
	
	position: fixed;
	top: 0;
	left: 0;
	
	width: 100vw;
	height: 100vh;
	
	z-index: 999;
}

#popupWrapper.hidden {
	opacity: 0;
	pointer-events: none;
}

#popupWrapper .popup {
	border-radius: 0.5rem;
	
	background: #fff;
	
	box-shadow: 0rem 0rem 2rem 0px rgba(0,0,0,0.34);
	
	display: flex;
	flex-direction: column;
	align-items: center;
	
	text-align: center;
	
	position: absolute;
	left: 50%;
	top: 50%;
	
	transform: translate(-50%, -50%);
	
	max-width: 45vw;
	
	padding: 4rem;
}

#popupWrapper .popup.hidden {
	opacity: 0;
	pointer-events: none;
}

#popupWrapper .popup .popupTitle {
	color: rgb(100, 100, 100);
	
	font-size: 130%;
	font-weight: 600;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	
	width: 100%;
	
	border-bottom: 1px solid rgb(185, 185, 185);
	
	padding-bottom: 0.8rem;
	margin-top: -0.5rem;
	margin-bottom: 1.5rem;
}

#popupWrapper .popup .popupContent {
	letter-spacing: 0.05em;
	word-spacing: 0.1em;
	line-height: 140%;
	
	width: auto;
}

#popupWrapper .popup button {
	display: inline-block;
	
	border-radius: 10rem;
	
	box-shadow: 0px 0px 0.5rem 0px rgba(0,0,0,0.2);
	
	background-color: #687C96;
	border: none;
	
	color: #fff;
	
	font-size: 100%;
	font-weight: 600;
	text-transform: uppercase;
	
	width: auto;
	
	padding: 0.7rem 1.8rem;
	margin-top: 2rem;
	margin-bottom: -1rem;
	
	flex-grow: 0;
	
	cursor: pointer;
}

#popupWrapper .popup button:hover {
	background-color: #91a7c4;
}


/* Media Queries */

@media (hover: hover) and (pointer: fine) {
    /* css hover class/style */
	a:hover {
		color: #808080;
	}
	
	#homeLink:hover {
		color: #3c3c3c;
	}
	
	#textContent #menuShapes > .menuBtnShape:hover .activeImg
	{
		display: block;
		-webkit-opacity: 1;
		opacity: 1;
	}
}

/* NORMAL */
@media ( max-width: 1200px ) {
	/*body::before{content:"NORMAL"}*/
	html{
		font-size: 0.8rem;
	}

	#mainContent {
		width: 999px;
	}
}

/* MEDIUM */
@media ( max-width: 999px ) {
	/*body::before{content:"MEDIUM"}*/

	html{
		font-size: 2.5rem;
	}
	
	#mainWrapper {
		display: block;
		position: absolute;
		
		height: auto;
	}
	
	#mainContent {
		display: block;
		
		position: relative;
		
		margin-top: 1rem;
		
		width: 100vw;
		height: auto;
	}
	
	#loadingIndicator {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
	}
	
	#textContent {
		width: 100%;
		height: auto;
		
		margin: 0;
		
		position: relative;
		
		padding: 0 0.8rem;
	}
	
	#textContent #menuShapes {
		position: absolute;
		top: 0;
		left: 0.8rem;
		
		width: calc(100vw - 1.6rem);
		height: 3.5rem;
	}
	
	#textContent #menuShapes .menuBtnShape {
		width: 3.5rem;
		height: 3.5rem;
	}
	
	#textContent #menuShapes .menuBtnShape img {
		width: 100%;
		height: 100%;
	}
	
	#textContent #menuShapes > .menuBtnShape .activeImg {
		display: block;
		-webkit-opacity: 0;
		opacity: 0;
	}
	
	#menuText {
		position: absolute;
		left: 0.8rem;
		top: 5rem;
		
		margin-top: 0;
		padding-bottom: 0.3rem;
		
		width: calc(100vw - 1.6rem);
	}
	
	#menuText > * {
	    width: 3.5rem;
	}
	
	.menuBtnText {
	    font-size: min(60%, 2.5vw);
	    margin-bottom: 0;
	}
	
	#mainImage {
	    position: absolute;
	    top: 6.5rem;
	    left: 10vw;

	    width: 80vw;
	    height: 80vw;

	    margin-top: 0;
	}
	
	#textContent #pageContent {
	    position: relative;

	    margin-top: calc(6.5rem + 80vw + 1rem);

	    overflow: visible;
	}
	
	#kontaktContainer {
		flex-direction: column;
		gap: 2rem;
		
		margin-bottom: 2rem;
	}
	
	#footer {
		position: relative;
		
		width: calc(100vw - 1.6rem);
		
		margin: 2rem 0 0 0.8rem;
		
		padding-bottom: 3rem;
		
		font-size: 80%;
		
		flex-wrap: wrap;
	}
	
	#footerAddress,
	#footerContact
	{
		width: 100%;
		text-align: center;

		margin: 0.9rem 0;
	}
	
	#footerHomeLink {
		border-bottom: 1px solid #a3a3a3;
		padding-bottom: 0.3rem;
	}
	
	#footerHomeLink a {
		text-align: center;
	}
	
	#footerHomeLink,
	#footerAddress, #footerAddress span,
	#footerContact, #footerContact span
	{
		width: 100%;
		text-align: center;
	}
	
	#footerContact {
		position: relative;
	}
	
	#popupWrapper .popup {
		width: calc(100vw - 3rem);
		
		max-width: none;
		max-height: 75vh;
		
		overflow: hidden;
		
		padding: 2rem;
	}
	
	#popupWrapper .popup .popupTitle {		
		margin-bottom: 1rem;
	}
	
	#popupWrapper .popup .popupContent {
		overflow-y: scroll;
		overflow-x: hidden;
	}
}

/* SMALL */
@media ( max-width: 699px ) {
	/*body::before{content:"SMALL"}*/
}

/* TINY */
@media ( max-width: 576px ) {
	/*body::before{content:"TINY"}*/
}.loader {
	color: rgb(104, 124, 150);
	font-size: 45px;
	text-indent: -9999em;
	overflow: hidden;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	transform: translateZ(0);
	animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
	0% {
		box-shadow: 0 -0.83em 0 -0.4em,
			0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
			0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95% {
		box-shadow: 0 -0.83em 0 -0.4em,
			0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
			0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59% {
		box-shadow: 0 -0.83em 0 -0.4em,
			-0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
			-0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
			-0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
			-0.749em -0.34em 0 -0.477em;
	}
	38% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
			-0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
			-0.82em -0.09em 0 -0.477em;
	}
	100% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,
			0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}

@keyframes round {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}