/*****************/
/* Browser Reset */
/*****************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, textarea, select{
	font-family:inherit;
}

.clearfix:after {
    content: " ";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/*****************/
/* Pixelwald.net */
/*****************/

html, body {
	width: 100%;
	height: 100%;
}

body {
	background: url('images/page_bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	font-family: 'Raleway', sans-serif;
}

#gui {
	position: relative;
	width: 600px;
	height: 300px;
	top: 50%;
	left: 50%;
	padding: 100px;
	margin-left: -400px;
	margin-top: -250px;
	background: white;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 15px;
	font-size: 14px;
	font-weight: 400;
}

#logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

h1 {
	margin-bottom: 15px;
	color: rgb(230, 0, 126);
	font-size: 40px;
	font-weight: 300;
}

p {
	margin-bottom: 40px;
}

#notification {
	display: none;
	margin-bottom: 10px;
	padding: 10px;
}

#notification.sucess {
	border: 1px solid rgb(25, 100, 25);
	background: rgba(25, 100, 25, 0.3);
	color: rgb(25, 100, 25);
}

#notification.error {
	border: 1px solid rgb(200, 40, 40);
	background: rgba(255, 0, 0, 0.1);
	color: rgb(200, 40, 40);
	
}

.row {
	margin-bottom: 20px;
}

label {
	float: left;
	padding: 13px 0px;
	font-size: 18px;
}

input {
	float: right;
	width: 360px;
	padding: 10px;
	border: 1px solid rgb(220, 220, 220);
	background: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 300;
}

input[type="submit"] {	
	width: 180px;
	margin-top: 20px;
	padding: 10px 5px;
	border: none;
	background: rgb(230, 0, 126);
	color: rgb(255, 255, 255);
	font-size: 18px;
}

/*******************/
/* Kundenübersicht */
/*******************/

.admin #gui {
	top: 40px;
	height: auto;
	margin-top: 0px;
}

table#kunden {
	table-layout: fixed;
	width: 100%;
	background: rgba(255, 255, 255, 0.5);
}

#kunden th:nth-of-type(3) { width: 140px; }
#kunden th:nth-of-type(4) { width: 50px; }

tbody:before,
tbody:after {
    content: " ";
	display:block;
	height: 10px;
}

td, th {
	padding: 10px;
	vertical-align: middle;
}

th {
	background: rgb(230, 0, 126);
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-align: left;
}

tr:hover:not(.row_headline) {
	background: rgba(255, 255, 255, 0.9);
}

tr.row_headline td {
	padding-top: 30px;
	font-weight: 600;
} 

td input[type="text"] {
	float: none;
	width: 80%;
	padding: 4px 4px;	
	font-size: 14px;
	font-weight: normal;
	box-shadow: 0px 0px 2px rgb(230, 0, 126);
}

.button {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0px 2px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	opacity: 0.5;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}

.button.edit {	background-image: url('images/edit.png'); }
.button.delete {	background-image: url('images/delete.png'); }
.button.submit {	background-image: url('images/submit.png'); margin-top: 4px; }

.button:hover {
	opacity: 1;
}