@import url("fontawesome.min.css");
@import url("fonts.css");
@import url("lightbox.min.css");
@import url("datepicker.min.css");

:root {
	--danger: #b70000;
	--white: #ffffff;
	--primary: #87BBE5;
	--secondary: #666666; 
}


/* SITE */
html, body {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--secondary);
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
	color: var(--primary);
	margin: 0 0 15px 0;
	font-weight: 300;
	line-height: 1.8;
}

p {
	margin: 15px 0;
	text-align: justify;
	-moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens:auto; 
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.25s;
}
a:hover {
	color: var(--secondary);
	text-decoration: none;
}

small {
	display: block;
	font-size: 65%;
	color: var(--secondary);
}

hr {
	margin: 30px 0;
}

ul.ul {
	list-style-image: url("../img/list_icon.png");
	padding-left: 25px;
}
ul.ul li {
	line-height: 2.25;
}

.in-content-img {
	position: relative;
	display: block;
}
.in-content-img img {
	width: 100%;
	max-width: 280px;
	display: block;
}
.in-content-img.float-start {
	margin: 0 40px 15px 0;
	box-shadow: 10px 10px 0 0 var(--primary);
}

.in-content-img[title]::after {
	content: attr(title);
	font-size: 14px;
	padding: 5px 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	color: var(--white);
	z-index: 500;
	display: block;
}

#del_img_container {
	display: none;
}


/* BUTTON */
.btn {
	border-radius: 0;
	border: none;
	box-shadow: none !important;
}

.btn-primary {
	background-color: var(--primary) !important;
	color: var(--white) !important;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--secondary) !important;
	color: var(--white) !important;
}

.btn-light {
	background-color: var(--white) !important;
	color: var(--secondary) !important;
}
.btn-light:hover,
.btn-light:focus {
	background-color: #eee !important;
	color: var(--secondary) !important;
	
}


/* BACKGROUND */
.bg-primary {
	background-color: var(--primary) !important;
	color: var(--white);
}
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary p,
.bg-primary a {
	color: var(--white);
}

.bg-secondary {
	background-color: var(--secondary) !important;
	color: var(--white);
}
.bg-secondary h1,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-secondary p,
.bg-secondary a {
	color: var(--white);
}


/* LIGHTBOX */
.lightbox .lb-image {
	border: none !important;
	border-radius: 0px !important;
}
.lb-outerContainer {
	border-radius: 0px !important;
	margin-bottom: 15px;
}


/* HEADER */
header {
	padding: 20px 30px;
	background-color: var(--white);
	background-image: url("../img/header_bg.png");
	background-position: center right 42%;
	background-repeat: no-repeat;
	background-size: auto;
}
header .logo {
	width: 100%;
	max-width: 300px;
	transition: all .25s;
}
header .oeffnungszeiten,
header .kontaktdaten {
	text-align: center;
	line-height: 1.25;
	margin: 0;
	font-size: 16px;
}
header .oeffnungszeiten {
	border-right: 1px solid var(--secondary);
	padding-right: 30px;
}
header .oeffnungszeiten span {
	display: inline-block;
	min-width: 100px;
}
header .kontaktdaten a {
	color: var(--secondary);
}
header .kontaktdaten a:hover {
	color: var(--primary);
}

header.fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 800;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}


/* MENU */
.btn-menu {
	text-transform: uppercase;
	font-size: 22px;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 auto;
	text-align: center;
}
.btn-menu .pfoetchen {
	width: 20px;
	height: 20px;
	background-image: url("../img/menu-pfoetchen.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 5px;
}


/* MENU */
.menu {
	width: 100%;
	max-width: 380px;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.25);
	transition: all .25s;
	margin-right: -400px;
	background-image: url("../img/nav_bg.png");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: auto;
}
.menu .menu-inner {
	min-height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden; 
}
.menu .menu-inner .menu-title {
	display: flex;
	padding: 20px;
	background: var(--secondary);
	color: var(--white);
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}
.menu .menu-inner .menu-title .menu-close {
	font-size: 28px;
	cursor: pointer;
}
.menu .menu-inner .menu-item {
	display: block;
	padding: 10px 20px;
	border-bottom: 1px solid #f5f5f5;
}
.menu .menu-inner .menu-item:hover,
.menu .menu-inner .menu-item:focus,
.menu .menu-inner .menu-item.active {
	padding: 10px 20px 10px 30px;
	color: var(--secondary);
}
.menu .menu-inner .menu-item::before {
	content: '';
	height: 15px;
	width: 15px;
	display: inline-block;
	background-image: url("../img/menu-pfoetchen.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 8px;
}
.menu .menu-inner .menu-item .badge {
	font-family: 'Verdana', sans-serif;
	padding: 5px 7px;
	font-size: 12px;
	font-weight: bold;
	margin-left: 5px;
}
.menu-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(0,0,0,0.25);
	display: none;
}


/* SECTION */
.section {
	padding: 60px 30px;
	background-color: var(--white);
}

section#service .content-text {
	background-image: url("../img/content_bg.png");
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: auto;
}


/* CONTENT */
.content-iframe {
  height: 100%;
	min-height: 420px;
  width: 100%;
  border: none;
}
.content-img {
	height: 100%;
	min-height: 420px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.content-text {
	padding: 45px;
	display: block;
	height: 100%;
}


/* CAT */
.cta {
	display: block;
	text-align: center;
	background-color: var(--primary);
	color: var(--white);
	padding: 30px 15px;
	font-size: 22px;
}
.cta:hover {
	background-color: var(--secondary);
	color: var(--white);
}


/* FADER */
.fader {
	min-height: 480px;
	display: flex;
	align-items: center;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fader .fader-inner {
	width: 100%;
	padding: 45px 15px;
	text-align: center;
	color: var(--white);
	font-size: 45px;
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	transition: all .25s;
	font-weight:300;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}
.fader .fade-item {
	display: none;
	line-height: 1.2;
}
.fader .fade-item:nth-child(1) {
	display: block;
}
.fader .fade-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	flex-direction: row;
	z-index: 500;
}
.fader .fade-dots .fade-dot {
	width: 10px;
	height: 10px;
	border-radius:50%;
	margin: 0 7.5px;
	display: block;
	background-color: var(--white);
	cursor: pointer;
}
.fader .fade-dots .fade-dot.active {
	background-color: var(--primary);
}


/* FOOTER */
footer {
	padding: 60px 0;
	background-color: var(--secondary);
	color: var(--white);
	font-size: 16px;
}
footer a {
	color: var(--white);
}
footer a:hover {
	color: var(--white);
	opacity: 0.5;
}
footer .footer-nav {
	margin-bottom: 0;
}
footer .footer-nav .footer-nav-item {
	margin-right: 5px;
	padding-right: 10px;
	border-right: 1px solid #ccc;
}
footer .footer-nav .footer-nav-item:last-child {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}
footer .copyright {
	margin-top: 0;
}
footer .creator,
footer .to-top {
	display: block;
	padding: 5px 15px;
	text-align: left;
	background-color: #555;
	font-size: 14px;
}
footer .footer-illustration {
	width: 100%;
	max-width: 360px;
	margin-bottom: -15px;
}


/* GALERIE */
.galerie-item-wrap {
	margin-bottom: 30px;
	box-shadow: 10px 10px 0 0 var(--primary);
	transition: all .25s;
}
.galerie-item-wrap:hover {
	box-shadow: 10px 10px 0 0 var(--secondary);
}
.galerie-item-wrap .galerie-item {
	display: block;
	background-color: #f5f5f5;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 200px;
}
.galerie-item-wrap .galerie-item-caption {
	font-size: 14px;
	text-align: center;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary);
	color: var(--white);
	min-height: 90px;
}


.galerie-img {
	display: block;
	margin-bottom: 30px;
	transition: all .25s;
}


/* TABLE */
.table {
	color: var(--secondary);
}
tbody, td, tfoot, th, thead, tr,
.table > :not(:last-child) > :last-child > * {
	border-color: var(--primary);
}


/* TOAST */
#meldung-toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0;
}


/* EDITOR */
.editor {
	display: none;
}


/* POSTS */
.post-item {
	padding: 15px;
	display: block;
	background-color: var(--white);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
	transition: all .25s;
	margin-top: 30px;
}
.post-item:hover {
	transform: scale(1.025);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}
.post-item .post-img {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid var(--primary);
}
.post-item .post-name {
	color: var(--primary);
	font-family: 'Niconne'; 
	font-size: 35px; 
	line-height: 1; 
	min-height: 80px;
	margin: 10px 0;
	display: flex;
	align-items: center;
}
.post-item .post-birthday,
.post-item .post-deathday,
.post-item .post-city {
	color: var(--secondary);
	line-height: 1.5;
}
.post-item .post-city {
	background-color: var(--primary);
	color: var(--white);
	padding: 7.5px 15px;
	text-align: left;
	position: relative;
	bottom: -15px;
	left: -15px;
	width: calc(100% + 30px);
}


/* DETAIL PB */
.detail-pb {
	width: 180px;
	height: 180px;
	display: inline-block;
	vertical-align: middle;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	border: 1px solid var(--primary);
}


/* LIST */
.list .list-item {
	display: block;
	padding: 10px 15px;
	background-color: #f5f5f5;
	margin-bottom: 10px;
	margin-top: 10px;
	transition: all .25s;
	position: relative;
}
.list .list-item.disabled {
	opacity: 0.5;
}
.list .list-item:hover {
	transform: scale(1.015);
	box-shadow: 0 10px 5px -10px rgba(0,0,0,0.25);
}
.list .list-item .not-accepted {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 22px;
	font-weight: 800;
	background: rgba(0,0,0,0.25);
	color: #000;
}
.list .list-item .list-img {
	display: inline-block;
	vertical-align: middle;
	width: 35px;
	height: 35px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 10px;
	border-radius: 50%;
	border: 1px solid var(--primary);
}
.list .list-item .list-name {
	font-weight: 800;
	line-height: 1.5;
}
.list .list-item .list-caption {
	font-size: 16px;
	line-height: 1.5;
}
.list .list-item .list-control {
	text-align: end;
}

/* PAGINATION */
.pagination {
	margin-top: 30px;
}

.pagination .page-link {
	border-radius: 0px !important;
	padding: 5px 12px;
	line-height: 1.2;
	color: var(--primary);
	box-shadow: none !important;
}
.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
	background-color: var(--primary);
	color: var(--white);
}

/* impressionen */
.impression-area {
	position: relative;
	display: block;
	padding: 60px;
}
.impression-area .carousel {
	display: block;
	margin: 0 auto;
	border: 5px solid var(--white);
	box-shadow: 10px 10px 0 0 var(--primary);
}
.impression-area .impression-image1 {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 350px;
	transform: rotate(7.5deg);
	z-index: 500;
	border: 5px solid var(--white);
	box-shadow: 10px 10px 0 0 var(--primary);
}
.impression-area .impression-image2 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 350px;
	transform: rotate(-7.5deg);
	z-index: 500;
	border: 5px solid var(--white);
	box-shadow: 10px 10px 0 0 var(--primary);
}


/* MOBILE */
@media (max-width: 1399.98px) { }
@media (max-width: 1199.98px) {
	/* impression */
	.impression-area .impression-image1,
	.impression-area .impression-image2 {
		max-width: 300px;
	}
}
@media (max-width: 991.98px) { 
	/* HEADER */
	header .logo {
		margin: 0 auto;
		display: block;
		max-width: 220px;
	}
	
	.btn-menu {
		justify-content: center;
	}
	
	/* FADER */
	.fader {
		min-height: 420px;
	}
	.fader .fader-inner {
		font-size: 28px;
		padding-left: 30px;
		padding-right: 30px;
	}
	
	/* CONTENT */
	.content-img,
  .content-iframe {
		min-height: 380px;
	}

	/* FOOTER */
	footer,
	footer .footer-nav,
	footer .copyright {
		text-align: center;
	}

	/* impression */
	.impression-area .impression-image1,
	.impression-area .impression-image2 {
		max-width: 250px;
	}
}
@media (max-width: 767.98px) {
	.in-content-img {
		float: none !important;
		margin: 0 auto 30px auto !important;
	}
	.in-content-img img {
		max-width: 100%;
	}
	
	/* FADER */
	.fader {
		min-height: 350px;
	}
	
	/* SECTION */
	.section {
		padding: 30px 15px;
	}
	
	/* CONTENT */
	.content-img,
  .content-iframe {
		min-height: 250px;
	}
	.content-text {
		padding: 30px 30px;
	}
	
	/* GALERIE */
	.galerie-item-wrap .galerie-item {
		min-height: 150px;
	}
	
	/* LIST */
	.list .list-item .badge {
		margin: 0 auto;
		display: block;
		margin-bottom: 10px;
	}
	.list .list-item .list-img {
		display: block;
		margin: 0 auto 10px auto;
		width: 80px;
		height: 80px;
	}
	.list .list-item .list-name {
		text-align: center;
	}
	.list .list-item .list-caption {
		text-align: center;
	}
	.list .list-item .list-control {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		margin-top: 10px;
	}
	.list .list-item .list-control .btn {
		width: 100%;
		margin-right: 15px;
	}
	.list .list-item .list-control .btn:last-child {
		margin-right: 0;
	}

	/* impression */
	.impression-area {
		padding: 45px;
	}
	.impression-area .impression-image1,
	.impression-area .impression-image2 {
		max-width: 200px;
	}
}
@media (max-width: 575.98px) {
	/* POST */
	.post-item .post-img {
		margin: 0 auto 15px auto;
	}
	.post-birthday,
	.post-name,
	.post-deathday {
		text-align: center;
		justify-content: center;
	}

	/* impression */
	.impression-area {
		padding: 30px 0;
	}
	.impression-area .impression-image1,
	.impression-area .impression-image2 {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		max-width: 100%;
	}
	.impression-area .impression-image1 {
		transform: rotate(5deg);
	}
	.impression-area .impression-image2 {
		transform: rotate(-5deg);
	}
}




