/*
	Theme Name: DSVP Theme
	Theme URI: http://www.little-spot.com
	Description: DSVP Theme
	Version: 1.0.0
	Author: Gregor Schulze
	Author URI:
	Tags: 

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

@font-face {
    font-family: Montserrat;
    src: url(fonts/Montserrat-Regular.ttf);
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

h3{
	margin: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea {
	background: #fff;
	color: #000;
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	padding: 0.625em 0.4375em;
	width: 100%;
}

button,
button[disabled]:hover,
button[disabled]:focus,
input[type="button"],
input[type="button"][disabled]:hover,
input[type="button"][disabled]:focus,
input[type="reset"],
input[type="reset"][disabled]:hover,
input[type="reset"][disabled]:focus,
input[type="submit"],
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:focus {
	border: 0;
	border-radius: 2px;
	color: #fff;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-weight: 700;
	letter-spacing: 0.046875em;
	line-height: 1;
	padding: 0.84375em 0.875em 0.78125em;
	text-transform: uppercase;
	/* background: #009999; !important; */
	background: #009999;
	margin: 10px;
}
 
 select{
	background: #fff;
	color: #000;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.login_startpage_box{
	width: 25%;
	margin: 150px auto;
}

.text_startpage_box{
	margin: 40%;
	margin-top: 150px;
}

.login_error{
	border-style: solid;
	text-align: center;
	border-color: red;	
}

.login_loggedout{
	border-style: solid;
	text-align: center;
}

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
	word-wrap: break-word;
}
/* header */
.header {
	position: fixed;
	top: 0px;
	z-index: 999;
	background-color: #009999;
	width: 100%;
	height: 40px;
}


/* logo */
.logo {

}
.logo-img {

}

.pagetitle{
	float: left;
	width: 160px;
	padding: 17px 0px 0px 17px;
	padding: 0px 0px 0px 0px;
}

.pagetitle h1{
	color: #fff;
	margin: 0;
	font-size: 3em;

}

.pagetitle p{
	margin: 0;
	color: #fff;
}

/* nav */

.site-header-menu{
	/* margin: -1px; */
	float: left;
	height: 40px;
	margin-top: -1px;
}

.nav {

}

.nav ul{
	list-style: none;
	margin-top: 0px;
	padding: 0px;
	padding-left: 0px;
	margin-top: 10px;
}

.nav li{
	float: left;
}

.nav a{
	list-style: none;
	font-weight: 100;
	font-size: 12px;
	color: #fff;
	background-color: #03a9a9;
	padding: 12px;
	transition: background-color 0.2s ease-in;
}

.nav a:hover{
	background-color: #006C6C;
	transition: background-color 0.2s ease-in;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

.finefilter {
	width: 20%;
	float: left;
}

.mainfilter {
	width: 80%;
}




/*------------------------------------*\
    HEADER
\*------------------------------------*/
.headerUsername{
	font-size: 10px;
	display: inline;
	position: fixed;
	height: 43px;
	width: 150px;
	right: 45px;
	/* display: flex; */
	align-items: center;
	text-align: right;
	padding: 12px;

}

.site-header-user{
	margin-bottom: 0px;
	color: white;
	margin-left: auto;
	margin-right: 55px;
	text-align: right;
	float: right;
}

/*------------------------------------*\
    TABLES
\*------------------------------------*/
table{
	margin: 10px;
}

caption, th, td {
    font-weight: normal;
    /* text-align: center; */
}

th{
    font-weight: 700;
}


th, td {
    border: 1px solid #d1d1d1;
	padding: 5px 10px;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

.content_view_area{
	margin-left: 160px;
	padding-left: 15px;
	padding-right: 15px;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {

	.login_startpage_box{
		width: 270px;
		margin-left: 40%;
		padding: 0px 15px;
		margin-top: 95px;
	}

	.nav {
		display: none;
		background-color: rgba(0, 0, 0, 0.5);
		padding-top: 1px;
		padding-bottom: 1px;
		text-align: center;
		height: 100vh;
		width: 100vw;
	}
	
	.nav li{
		float: unset;
		padding: 15px 15px;
		background-color: #03a9a9;
		border-style: solid;
		border-width: 0px 0px 2px 0px;
		border-color: white;
	}
	
	.nav a {
		padding: 15px 30% 15px 30%;
		background-color: none;
	}

	.mobileMenu{
		display: unset;
	}

	.logoutBtn,
	.headerUsername{
		display: none;
	}
}

@media screen and (max-width: 400px) {
	
	.login_startpage_box{
		width: 100%;
		margin-left: 0;
		padding: 0px 15px;
		margin-top: 65px;
	}
	
	
	.plugin-titel-header{
		margin-top: 50px;
		display: block;
	}
	
	/*make elements ready for mobile*/
	.content_view_area{
		margin-left: 0px;
	}
	
	.form_box_head{
		margin: 0px;
	}
	.pagetitle{
		width: 103px;
	}
	
	.header_logo{
		height: 40px;
		width: 93px;
		//margin-left: 10px;
	}
	
	.sideMobileMenu,
	.mobileMenu{
		display: unset;
	}
	
	.version_info{
		display: none;
	}
	
	.site-header-menu{
		float: unset;
		margin-top: 60px;
	}
	
	.sidemenu{
		padding-top: 50px;
	}
	
	.plginMenuBtn_txt{
		font-size: 0.8em;
	}
	
	.sidemenu .plginMenuBtn{
		height: 35px;
	}
	
	.sidemenu .plginMenuBtn_img{
		height: 35px;
	}
	

}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
