@charset "utf-8";

/*  
	SW-Package (P): CSS File for bernerluft.ch 
	SW-Version (V): 1.0 CSS3 
	Copyright  (C): July, 2021 Christoph Utiger, Switzerland. All rights reserved.
	Assets     (A): -
*/

/* General Styles */


html, body {
	font-family: Helvetica, Arial, Sans-Serif;
	font-size: 1em;
	background: #DDD;
	box-sizing: border-box;
	margin: 0;
    padding: 0;
}

h1 {
	font-size: 1.8em;
	color: #FFF;
    text-align: center;
}

h2 {
	font-size: 1.1em;
	color: #333;	
}

p {
	line-height: 0.1;
}

#blk {
    height: 5px;
}
/* Header Section */
.header {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
	width: 100%;
	height: 80px;
	padding: 5px 0;
	background-color: #0072c6;
}

.item {
	flex: 0 1 auto;
	margin-left: 10px;
}

/* Manual Section */
.help {
	flex: 1 0 auto;
	align-self: flex-end;
	text-align: right;
	margin-right: 10px;
}

.manual {
	display: none;
	height: 240px;
	padding: 5px 10px;
	border-top: 3px #FFF solid;
	border-bottom: 3px #999 solid;
	background-color: #C7C7C7;
}

.hlpimg {
	display: block;
	float: left; 
	height: 100px;
	margin: 10px 15px;
}

/* Mail and upload Section */
.main {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 10px 15px;
}

.upzone {
	flex: 0 1 auto;
	font-family: Helvetica, Arial, "sans-serif";
	width: 300px; 
	height: 160px; 
	background: #EEE;
	background-image: url("dragndrop.png");
	border: dashed #777 5px;
	margin: 5px;
	padding: 0px 0px;
	text-align: center;
}

.upzone.highlight {
	background: #CCC;
	background-image: url("dragndrop.png");
}

#upform {
	display: none;
}

.options {
	flex: 0 1 auto;
	width: 300px;
	margin: 5px 20px;
}

.upstat {
	flex: 1 0 auto;
	height: 200px;
	column-count: 1;
	margin-top: 35px;
	font-size: 0.8em;
}

.label {
	line-height: 2;
}

[type="checkbox"] + label {
    position: absolute;
}

[type="checkbox"] {
    position: relative;
    left: 15px;
    top: -4px;
    z-index: 0;
    -webkit-appearance: none;
}

[type="checkbox"] + label::before {
    width: 15px;
    height: 15px;
    background-color: #777;
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
    z-index: 5;
    position: relative;
}

input[type="checkbox"]:checked+label::before {
    background-color: #0072c6;
}

[type="password"] {
    width: 70px;
    height: 15px;
    left: 7px;
    background-color: #BBB;
    display: block;
    content: "";
    float: left;
    margin: 5px 5px 0 0;
    z-index: 5;
    position: relative;
}

[type="password"]+label {
    display: block;
    padding: 7px 0 0 93px;
}

.leaflet-control-layers-selector {
    position: relative;
    -webkit-appearance: checkbox;
    left: 0;
}

.content {
	flex: 0 1 auto;
	width: 100%;
}

/* Copyright */
.copyright {
	position: absolute;
	font-size: 0.8em;
	bottom: 3px;
	right: 10px;
	text-align: center;
}

