@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/* Allgemein */
* {
	margin:0;
	padding:0;
	outline:none;
	resize:none;
	box-sizing:border-box;
	font-family:'Open Sans', arial, tahoma, sans-serif;
}

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

body {
	min-height:100%;
	font-size:16px;
	background-color:#f3f3f3;
}

h1, h2, h3, h4, h5, h6 {
	color:#333;
}

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

input[type="submit"], button[type="submit"], .btn {
	border:none;
	background-color:#333;
	color:#fff;
	padding:5px 10px;
	cursor:pointer;
}
button[type="submit"] {
	font-size:0;
}

form label {
	display:block;
	margin-bottom:10px;
	width:100%;
	height:40px;
	line-height:40px;
	font-size:14px;
	overflow:hidden;
}
form label:last-child {
	margin-bottom:0;
}
form label:after {
	content:"";
	display:inline-block;
	clear:both;
}
	form label input, form label textarea, form label select {
		float:right;
		padding:5px 10px;
		width:50%;
		max-width:600px;
		min-height:40px;
		border:1px solid #ccc;
	}
	form label select {
		padding:5px 5px;
	}

/* Klassen */
.clearfix {
	height:0;
	clear:both;
}
.hdn {
	display:none;
	height:0;
}
.error {
	margin-bottom:25px;
	padding:10px;
	width:100%;
	text-align:center;
	background-color:#111;
	background-color:rgba(0,0,0,.5);
	color:#fff;
	font-size:75%;
}
	.error.nomargin {
		margin:0 !important;
	}
.success {
	margin-bottom:25px;
	padding:10px;
	width:100%;
	text-align:center;
	background-color:#111;
	background-color:rgba(0,0,0,.5);
	color:#fff;
}
.input_error {
	border:1px solid #c00;
}

/* ID's */
#wrapper {
	padding:50px;
}
#wrapper.member {
	padding:125px 20px 25px 20px;
}
	#logo {
		margin:0 auto 25px auto;
		width:100%;
		max-width:200px;
	}
		#logo img {
			width:auto;
			height:auto;
			max-width:100%;
			max-height:100%;
		}
		#logo h1 {
			text-align:center;
		}
	#login {
		margin:auto;
		width:100%;
		max-width:400px;
	}
		#login form:after {
			content:"";
			display:block;
			clear:both;
			height:0;
		}
			#login form label input {
				float:none;
				width:100%;
			}
			#login form input[type="submit"], #login form button[type="submit"] {
				float:right;
			}
	#actionbar {
		position:fixed;
		top:0;
		left:0;
		padding:0 25px;
		width:100%;
		height:100px;
		line-height:100px;
		background-color:#333;
		overflow:hidden;
		z-index:8;
	}
	#actionbar:after {
		content:"";
		display:block;
		height:0;
		clear:both;
	}
		#actionbar a {
			float:left;
			padding:0 25px;
			height:100px;
			line-height:100px;
			font-size:16px;
			color:#fff;
			transition:all .3s ease-in-out;
		}
		#actionbar a:hover {
			background-color:rgba(255,255,255,.1);
		}
		#actionbar a.right {
			float:right;
		}
			#actionbar a img {
				float:left;
				margin:10px 10px 0 0;
				width:auto;
				height:auto;
				max-width:100%;
				max-height:80px;
			}
			#actionbar a i.material-icons {
				vertical-align:middle;
				font-size:32px;
			}
	.popup {
		display:none;
		position:relative;
		position:fixed;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		padding:25px;
		width:90%;
		max-width:800px;
		height:auto;
		max-height:90%;
		background-color:#fff;
		box-shadow:0 0 50px #999;
		z-index:9;
	}
	.popup:after {
		content:"";
		display:block;
		height:0;
		clear:both;
	}
		.popup .popup_close {
			position:absolute;
			top:10px;
			right:10px;
			cursor:pointer;
		}
		.popup label {
			display:block;
			margin-top:15px;
			font-size:14px;
			color:#999;
		}
		.popup label:first-child {
			margin-top:0;
		}
			.popup label input, .popup label textarea {
				width:100%;
				margin-top:5px;
				padding:10px 15px;
				border:1px solid #ccc;
				color:#000;
				font-size:16px;
				resize:none;
			}
			.popup label textarea {
				height:110px;
			}
		.popup input[type="submit"] {
			float:right;
		}
	#passwordlist {

	}
	#passwordlist:after {
		content:"";
		display:block;
		height:0;
		clear:both;
	}
		#passwordlist .item {
			position:relative;
			float:left;
			margin:0.5%;
			padding:25px;
			width:calc(100% / 5 - 1%);
			background-color:#fff;
			border:3px solid #fff;
			border-radius:3px;
			box-shadow:0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
			cursor:pointer;
			overflow:hidden;
			transition:all .3s ease-in-out;
		}
		#passwordlist .item:hover {
			box-shadow:0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
		}
		#passwordlist .item.active {
			border:3px solid #333;
		}
			#passwordlist .item .item_delete {
				display:none;
				position:absolute;
				top:10px;
				right:10px;
				padding:5px;
				border-radius:50%;
				font-size:0;
				transition:all .3s ease-in-out;
				z-index:7;
			}
			#passwordlist .item:hover .item_delete {
				display:inline;
			}
			#passwordlist .item .item_delete:hover {
				background-color:#eee;
			}
				#passwordlist .item .item_delete a {
					color:#000;
					transition:all .3s ease-in-out;
				}
				#passwordlist .item .item_delete:hover a {
					color:#b00;
				}
			#passwordlist .item .item_head {
				padding-right:15px;
				font-weight:bold;
				font-size:20px;
				overflow:hidden;
				white-space:nowrap;
				text-overflow:ellipsis;
			}
			#passwordlist .item label {
				display:block;
				margin-top:15px;
				font-size:14px;
				color:#999;
				white-space: nowrap;
				overflow:hidden;
			}
				#passwordlist .item label i.material-icons {
					font-size:20px;
					vertical-align:middle;
				}
			#passwordlist .item p {
				width:100%;
				height:30px;
				overflow-x:auto;
			}
			#passwordlist .item p::-webkit-scrollbar {
				width:8px;
				height:5px;
				background-color:transparent;
			}
			#passwordlist .item p::-webkit-scrollbar-thumb {
				background-color:#333;
			}
				#passwordlist .item p .item_domain_bubble {
					display:inline;
					margin-right:5px;
					padding:3px 10px;
					border-radius:25px;
					background-color:#eee;
					color:#333;
					font-size:14px;
				}
	#notify {
		position:fixed;
		bottom:-250px;
		left:25px;
		padding:10px 20px;
		width:auto;
		background-color:#333;
		border-radius:25px;
		color:#fff;
		font-size:14px;
		z-index:10;
		transition:all .3s ease-in-out;
	}
@media all and (max-width:1600px) {
	#passwordlist .item {
		width:calc(100% / 4 - 1%);
	}
}
@media all and (max-width:1280px) {
	#passwordlist .item {
		margin:10px;
		width:calc(100% / 3 - 20px);
	}
}
@media all and (max-width:980px) {
	#passwordlist .item {
		width:calc(100% / 2 - 20px);
	}
}
@media all and (max-width:768px) {
	#actionbar a {
		padding:0 15px;
	}
	#passwordlist .item {
		margin:10px 5px;
		width:calc(100% - 10px);
	}
}
@media all and (max-width:480px) {
	#actionbar a {
		padding:0 10px;
	}
	#actionbar a#logo_link {
		width:110px;
	}
}
