@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'FuturaStd-Book', Helvetica, Arial, sans-serif
}

html {
	height: 100%;
}

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

/*********
Allgemeine Responsive Klassen für Geräte
*********/
/* Desktop */
@media 
only screen and (min-device-width : 880px), 
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-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) 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-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.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: 2.5rem; /* 40px 40/16 = 2.5 */
	font-weight: normal;
	color: #ab881f;
	margin-bottom: 30px;
}

h2 {
	font-size: 1.8rem; /* 30px 32/16 = 2 */
	font-weight: normal;
	color: #ab881f;
	margin-bottom: 15px;
	padding-top: 30px;
}

h3 {
	font-size: 1.25rem; /* 20px 20/16 = 1.25 */
	color: #ab881f;
	margin-bottom: 10px;
	font-weight: normal;
}

h2:first-child, 
h3:first-child {
	padding-top: 0;
}

p {
	font-size: 1rem; /* 12px 12/16 = 0.75 */
	margin-bottom: 15px;
}

p.date {
	font-size: 0.8rem;
	font-style: italic;
}

p.lead {
	font-size: 1.125rem;
	font-weight: 700;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
h1 {
	font-size: 2rem; /* 30px 32/16 = 2 */
}
}

img {
	border: 0;
}

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

.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-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.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: #fff;
	text-decoration: underline;
}

a:hover {
	color: #ab881f;
	text-decoration: none;
}

footer a {
	color: #737373;
	text-decoration: none;
}

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

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

.content-block-center {
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	padding-bottom: 30px;
	overflow: hidden;
}

.content {
}

#logo {
	float: left;
}

.main-nav {
	float: right;
}

.bg-hell {
	background: #686868;
}

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

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
	body {
		font-size: 90%; 
	}
	.content-block-center {
		margin-left: 15px;
		margin-right: 15px;
		width: auto;
	}
}

.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-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.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;
}

/* Masonry Box-System */
.box-sizer,
.box-item { 
	width: 20%;
	z-index: 10;
}

.box-item img {
	width: 100%;
	width: calc(100% - 15px);
	padding-right: 15px;
	padding-bottom: 15px;
}

.box-item .info {
	display: none;
}

.box-item .info a {
	text-decoration: none;
	color: #ffffff;
	padding: 5px;
	background-color: #000000;
}

.box-item.selected { 
	width: 100%;
	background-color: #686868;
	margin-bottom: 15px;
}

.box-item.selected img { 
	width: 75%;
	width: calc(80% - 15px);
	float: left;
	padding-bottom: 0;
}
.box-item.selected.hochformat img { 
	width: 42%;
	width: calc(45% - 15px);
}

.box-item.selected .info {
	display: block;
	width: 18%;
	width: calc(20% - 15px);
	padding: 15px 15px 15px 0;
	float: right;
	background: url(../img/layout/icon-schliessen.png) top 10px right 10px no-repeat;
	background-size: 12px auto;
}
.box-item.selected.hochformat .info {
	width: 52%;
	width: calc(55% - 15px);
}

.list.tags {
	padding-top: 15px;
}

.list.tags li {
	display: inline;
}

.list.tags li a {
	display: inline-block;
	background: #ab881f;
	padding: 4px;
	margin-right: 0px;
	margin-bottom: 4px;
	font-size: 0.8rem;
}

.list.tags li a:hover {
	background: #7f661a;
}

@media screen and (min-width: 850px) and (max-width: 999px) {
	.box-sizer,
	.box-item { 
		width: 25%;
	}
	.box-item.selected img { 
		width: 63%;
		width: calc(70% - 15px);
	}

	.box-item.selected .info {
		width: 27%;
		width: calc(30% - 15px);
	}
}
@media screen and (min-width: 700px) and (max-width: 849px) {
	.box-sizer,
	.box-item { 
		width: 33.3333%;
	}
	.box-item.selected img { 
		width: 55%;
		width: calc(60% - 15px);
	}

	.box-item.selected .info {
		width: 35%;
		width: calc(40% - 15px);
	}
}
@media screen and (min-width: 550px) and (max-width: 699px) {
	.box-sizer,
	.box-item { 
		width: 50%;
	}
}
@media screen and (max-width: 549px){
	.box-sizer,
	.box-item { 
		width: 100%;
	}
}

@media screen and (max-width: 699px) {
	.box-item.selected img, 
	.box-item.selected.hochformat img { 
		width: 100%;
		float: none;
		display: block;
		padding-right: 0;
	}

	.box-item.selected .info, 
	.box-item.selected.hochformat .info {
		width: 90%;
		width: calc(100% - 30px);
		padding: 15px;
		float: none;
	}
}

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

/* Salvattore - Masonry */
/* These are the classes that are going to be applied: */
/*
.masonry-box .column { 
	float: left;
}
.masonry-box .size-1of5, 
.masonry-box .size-1of4, 
.masonry-box .size-1of3, 
.masonry-box .size-1of2 { 
	margin: 0;
	padding: 0;
	float: left;
	width: 20%;
}

.masonry-box .size-1of4 {
	width: 25%;
}
.masonry-box .size-1of3 {
	width: 33.3334%;
}
.masonry-box .size-1of2 {
	width: 50%;
}
.masonry-box .size-1of1 {
	width: 100%;
}

.box-item img {
	display: block;
	width: 90%;
	width: calc(100% - 15px);
	padding-right: 15px;
	padding-bottom: 15px;
}

@media screen and (min-width: 1000px) and (max-width: 5000px) {
	.masonry-box[data-columns]::before {
		content: '5 .column.size-1of5';
	}
}
@media screen and (min-width: 850px) and (max-width: 999px) {
	.masonry-box[data-columns]::before {
		content: '4 .column.size-1of4';
	}
}
@media screen and (min-width: 700px) and (max-width: 849px) {
	.masonry-box[data-columns]::before {
		content: '3 .column.size-1of3';
	}
}
@media screen and (min-width: 550px) and (max-width: 699px) {
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}
@media screen and (max-width: 549px){
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}
*/

/*********
Navigation
*********/
.main-nav ul, 
.gal-nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.gal-nav {
	margin-bottom: 20px;
	overflow: hidden;
}

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

.main-nav li.galerie {
	display: none;
}

.main-nav li a, 
.gal-nav li a {
	display: block;
	padding-right: 25px;
	margin-right: 25px;
	border-right: #fff solid 1px;
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
}

.main-nav li.social a {
	border-right: 0;
	padding-right: 0px;
}

.main-nav li.social img {
	height: 20px;
	width: auto;
	display: block
}

.gal-nav ul {
	float: left;
}

.gal-nav input.suche {
	float: left;
	padding: 0;
	padding-bottom: 2px;
	padding-left: 24px;
	border-bottom: #fff solid 1px;
	color: #fff;
	background-color: transparent;
	background-image: url(../img/layout/suche.svg);
	background-repeat: no-repeat;
	background-size: 16px 16px;
	font-size: 1rem;
	width: auto;
}

.main-nav li:last-child a {
	border-right: 0;
	padding-right: 0px;
	margin-right: 0px;
} 

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

@media 
only screen and (min-device-width : 220px) and (max-device-width : 849px), 
only screen and (min-width : 220px) and (max-width : 849px) {
	.gal-nav ul {
		display: none;
	}
	.gal-nav input.suche {
		width: calc(100% - 38px);
	}
}

/*********
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: 0.75rem;
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

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

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

textarea {
	height: 120px;
}

input:focus {
	/*border-color: #2A8E01;*/
}

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: #fff;
	width: 100%;
}

input[type="submit"]:hover {
}

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-device-width : 220px) and (max-device-width : 879px), 
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;
}
