@charset "utf-8";

/*********
Allgemein
*********/
* {
	/*font-family: Helvetica, Arial, sans-serif*/
	font-family: 'Ubuntu', sans-serif;
	font-weight: lighter;
}

html {
	height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	outline: 0;
}

.center {
	text-align: center;
}

/*********
Allgemeine Responsive Klassen für Geräte
*********/
/* Desktop */
@media 
only screen and (min-width : 880px) {
	.desktop-off, 
	.tablet-on,
	.phone-on {
		display: none;
	}
	.desktop-on, 
	.tablet-off, 
	.phone-off {
		display: block;
	}
}
/* Tablets */
@media 
only screen and (min-width : 701px) and (max-width : 879px) {
	.tablet-off,
	.desktop-on, 
	.phone-on {
		display: none;
	}
	.tablet-on,
	.desktop-off, 
	.phone-off {
		display: block;
	}
}
/* Mobile */
@media 
only screen and (min-width : 220px) and (max-width : 700px) {
	.phone-off,
	.desktop-on, 
	.tablet-on
	 {
		display: none;
	}
	.phone-on, 
	.desktop-off, 
	.tablet-off {
		display: block;
	}
}

/*********
Allgemeine Content Styles
*********/
h1, h2, h3, p {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 3rem; /* 40px 40/16 = 2.5 */
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 30px;
}

h2 {
	font-size: 2rem; /* 30px 32/16 = 2 */
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

.fotos h2 {
	text-decoration: none;
	text-align: center;
	padding: 10px;
	font-size: 1.4rem;
	background: #c17752;
}
.fotos a {
	text-decoration: none;
}

h3 {
	font-size: 1.25rem; /* 20px 20/16 = 1.25 */
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 15px;
}

.trauzeugen h3 {
	margin-top: 10px;
	font-weight: 700;
}

.trauzeugen h3 span {
	font-weight: normal;
	font-size: 1rem;
}

p {
	font-size: 1.1rem; /* 12px 12/16 = 0.75 */
	line-height: 1.3;
	margin-bottom: 15px;
}

p.lead {
	font-size: 1.3rem;
}

p.slogan {
	font-size: 3rem;
	text-transform: uppercase;
}

@media 
only screen and (min-width : 220px) and (max-width : 700px) {
	h1 {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}

	h2 {
		font-size: 1.4rem;
		margin-bottom: 15px;
	}

	h3 {
		font-size: 1.1em;
		margin-bottom: 10px;
	}
	p.lead {
		font-size: 1.1rem;
	}

	p.slogan {
		font-size: 2rem;
	}
}

img {
	border: 0;
}

img.full {
	width: 100%;
	height: auto;
	display: block;
}

.icon img {
	height: 40px;
	width: auto;
}

.img-right {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media 
only screen and (min-width : 220px) and (max-width : 700px) {
	.img-right {
		float: none;
		display: block;
		width: 100%;
		margin-left: 0px;
	}
	.img-left {
		float: none;
		display: block;
		width: 100%;
		margin-right: 0px;
	}
}

ul, ol {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
} 

li {
	padding-bottom: 10px;
	padding-left: 8px;
	margin-left: 15px;
	list-style-type: disc;
	font-size: 1rem; /* 12px 12/16 = 0.75 */
}

ol li {
	list-style-type: decimal;
}

/*Links*/
a {
	color: #4a2e22;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

/* Buttons */
.btn a {
	display: block;
	padding: 15px;
	background: #4a2e22;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.btn a:hover {
	background: #c17752;
}

.btn.inline a {
	display: inline-block;
}

.btn.inline.right {
	text-align: right;
}

/* Datum Front */
.frontdatum img {
	width: 60%;
	padding-bottom: 20px;
}
.frontdatum p.date {
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #4a2e22;
}
@media 
only screen and (min-width : 220px) and (max-width : 700px) {
	.frontdatum img {
		width: 100%;
	}
}

/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1em */
	height: 100%;
	background: #d0beaa;
}

body, img, p, tr, td {
	color: #4a2e22;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 245px;
	background: #4a2e22;
}

#main {
	margin-left: 245px;
}

.logo, 
.main-nav {
	margin: 70px 35px; 
}

.content-block-center {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 0px;
}

.content {

}

.bg-hellbraun {
	background: #d0beaa;
}

@media 
only screen and (min-width : 701px) and (max-width : 1535px) {
	.content-block-center {
		margin-left: 45px;
		margin-right: 45px;
		width: auto;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 700px) {
	body {
		font-size: 90%; 
	}
	header {
		height: 55px;
		width: 100%;
	}
	header .logo {
		margin: 10px 25px;
	}
	header .logo img.full {
		height: 38px;
		width: auto;
	}
	header .icon.center {
		display: none;
	}
	#main {
		margin-left: 0;
		margin-top: 55px;
	}
	.content-block-center {
		margin-left: 25px;
		margin-right: 25px;
		width: auto;
		padding: 25px 0px;
	}
}

.skipp {
	position: absolute;
	right: 10px;
	top: 10px;
}

.skipp img {
	display: block;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	/* IE 5-7 */
	filter: alpha(opacity=70);
	/* Netscape/FireFox */
	-moz-opacity: 0.7;
	/* Safari 1.x */
	-khtml-opacity: 0.7;
	/* aktuelle Browser */
	opacity: 0.7;
}
@media 
only screen and (min-width : 220px) and (max-width : 700px) {
.skipp {
	display: none;
}
}

/*********
Tools & spezifische Content-Styles
*********/
ul.list {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.list li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.list li a {
	text-decoration: none;
	display: block;
}

list.vier-spalten li {
	width: 22.375%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.drei-spalten li {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.zwei-spalten li, 
.list.zwei-spalten.news.front li {
	width: 48.25%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.vier-spalten li:nth-child(4n),
.list.drei-spalten li:nth-child(3n), 
.list.zwei-spalten li:nth-child(2n), 
.list.zwei-spalten.news.front li:nth-child(2n) {
	margin-right: 0;
}

/* Ablauf */
.list.ablauf li {
	text-align: center;
	display: block;
	float: left;
	background: #c17752;
	width: 24%;
	margin-right: 1%;
	margin-bottom: 1%;
}

.list.ablauf li img {
	height: 70px;
	width: auto;
	padding: 20px;
	padding-bottom: 15px;
}

.list.ablauf li p {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.9rem;
	padding-bottom: 20px;
}

.list.ablauf li p span {
	display: block;
	font-weight: normal;
}

/* Geschenke */
.list.geschenke .info {
	padding: 15px;
	background: #4a2e22;
}
.list.geschenke h2, 
.list.geschenke p {
	color: #fff;
	text-align: center;
}
.list.geschenke h2 {
	margin-bottom: 0;	
}
.list.geschenke p {
	color: rgba(255,255,255,0.5)
}
.list.geschenke p.anteile {
	font-size: 0.7rem;
}
.detail.geschenke p.preis {
	font-weight: 700;
}

.detail.geschenke p.preis span {
	font-size: 0.8rem;
}
@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	.list.ablauf li {
		width: 49%;
	}
}

@media 
only screen and (min-width : 701px) and (max-width : 879px) {
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n) {
		width: 48.25%;
		margin-right: 3.5%;
	}
	.list.vier-spalten li:nth-child(2n), 
	.list.drei-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	.list.ablauf li {
		height: 185px;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 700px) {
	.list.zwei-spalten li, 
	.list.zwei-spalten.news.front li, 
	.list.zwei-spalten li:nth-child(2n), 
	.list.zwei-spalten.news.front li:nth-child(2n),
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n), 
	.list.drei-spalten li:nth-child(2n), 
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.vier-spalten li:nth-child(2n) {
		width: 100%;
		margin-right: 0%;
		float: none;
		display: block
	}
	.list.ablauf li {
		height: 165px;
	}
	.list.ablauf li img {
		height: 50px;
	}
	.list.ablauf li p {
		padding-bottom: 0;
	}
}

/* Masonry Box-System */
.masonry-box {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

/* News, Events */
.masonry-box .box-item {
	margin-bottom: 35px;
	
}

.news.list.aktionaere li {
	margin-bottom: 15px;
}

/* Salvattore - Masonry */
/* These are the classes that are going to be applied: */
.masonry-box .column { 
	float: left;
}

.masonry-box .size-1of4, 
.masonry-box .size-1of3, 
.masonry-box .size-1of2 { 
	margin: 0;
	padding: 0;
	float: left;
	width: 22.375%;
	margin-right: 3.5%;
}

.masonry-box .size-1of3 { 
	width: 31%;
}

.masonry-box .size-1of2 {
	width: 48%;
	margin-right: 4%;
}

.masonry-box .size-1of1 {
	width: 100%;
	margin-right: 0;
}

.masonry-box .size-1of4:nth-child(4n), 
.masonry-box .size-1of3:nth-child(3n), 
.masonry-box .size-1of2:nth-child(2n) {
	margin-right: 0;
}

@media screen and (min-width: 880px) and (max-width: 5000px) {
	.masonry-box[data-columns]::before {
		content: '3 .column.size-1of3';
	}
	.vier-spalten.masonry-box[data-columns]::before {
		content: '4 .column.size-1of4';
	}
}
@media screen and (min-width: 701px) and (max-width: 879px) {
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}
@media screen and (max-width: 700px){
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}
/*********
Navigation
*********/
.main-nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.main-nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.main-nav li a {
	display: block;
	padding: 10px 0px;
	color: #d0beaa;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	font-weight: normal;
}

.main-nav li a.active, 
.main-nav li a:hover {
	color: #fff;
}

/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 10px;
}

tr, td, th {
	border: 0px;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

tr {
	padding: 0px;
	margin: 0px;
}

tr:hover {
	background-color: #e3b2b3;
}

th {
	padding: 2px;
	border-bottom: 1px solid #333;
	vertical-align: top;
	text-align: left;
	color: #fff;
	font-weight: bold;
	background-color: #C00;
}


td {
	margin: 0;
	padding: 2px;
	border-bottom: 1px dotted #333;
	vertical-align: top;
	text-align: left;
}

/*********
Formulare
*********/
form {
	overflow: hidden;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form p {
	padding-bottom: 10px;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 7px;
	font-size: 1rem;
	text-transform: uppercase;
}

label {
	display: block;	
	font-size: 1rem;
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #4a2e22;
	color: #fff;
	border: 0;
	padding: 8px;
	font-size: 1rem;
	width: 100%;
	margin-bottom: 8px;
}

input, 
textarea {
	width: 90%;
	width: calc(100% - 16px);
}

textarea {
	height: 120px;
}

input:focus {
	background-color: #fff;
	color: #4a2e22;
}

input[type="checkbox"], 
input[type="radio"] {
	width: auto;
	margin-right: 5px;
	border: 0;
}

input[type="checkbox"] {
	border: 0;
	background: #fff;
	padding: 0px;
}

input[type="submit"], 
button[type="submit"] {
	background-color: #c17752;
	color: #4a2e22;
	width: 100%;
}

input[type="submit"]:hover {
	background-color: #4a2e22;
	color: #fff;
}

input.pflicht, 
textarea.pflicht {
	/*border-right: 3px solid #000;*/
}

.validationerror {
	background: #CB0003;
	color: #fff;
	padding: 8px;
	margin-bottom: 1px;
	width: 50%;
	
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
input, 
select,
textarea,
input[type="submit"],
button[type="submit"],
input[type="submit"]:hover, 
.validationerror
 {
	width: 90%;
	width: calc(100% - 16px);
}

input, 
select, 
input[type="submit"],
button[type="submit"],
input[type="submit"]:hover {
	width: 100%;
}
}

/*********
Transparenzen
*********/
.opac70 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	  /* IE 5-7 */
	  filter: alpha(opacity=70);
	  /* Netscape/FireFox */
	  -moz-opacity: 0.7;
	  /* Safari 1.x */
	  -khtml-opacity: 0.7;
	  /* aktuelle Browser */
	  opacity: 0.7;
}

.opac100 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	  /* IE 5-7 */
	  filter: alpha(opacity=100);
	  /* Netscape/FireFox */
	  -moz-opacity: 1.0;
	  /* Safari 1.x */
	  -khtml-opacity: 1.0;
	  /* aktuelle Browser */
	  opacity: 1.0;
}
