﻿#weLoginBG {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background-color: #000;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

#weLogin {
	visibility: hidden;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 300px;
	min-height: 280px;
	z-index: 10001;
	margin-left: -150px;
	margin-top: -140px;
	background-color: #fff;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 14px;
	line-height: 1.3;
	color: #000;
	padding: 15px;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
	#weLogin::before {
		content: "";
		position: absolute;
		width: 200%;
		height: 200%;
		top: -56%;
		left: -49%;
		z-index: -1;
		opacity: 0.3;
		background-image: url(../grafik/icon_login.svg);
		background-size: 39%;
		background-position: 291px 204px;
		background-repeat: no-repeat;
		transform: rotate(17deg);
	}

	#weLogin * {
		font-family: inherit;
		font-size: inherit;
		color: inherit;
		line-height: inherit;
	}

#weLoginHeading {
	/*background-color: #eee;*/
	background: linear-gradient(to bottom, #09329e 0%,#4875cf 3%,#6ca7e9 6%,#2f87e9 12%,#2f87e9 29%,#7ad1ff 76%,#6cc5e9 90%,#1751ab 100%);
	margin: -15px -15px -5px -15px;
	padding: 10px 15px;
	font-size: 14px !important;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 1px 0px #000;
	cursor: pointer;
}
	#weLoginHeading::after {
		display: block;
		content: "";
		position: absolute;
		width: 15px;
		height: 15px;
		top: 12px;
		right: 15px;
		background-image: url(../grafik/icon_close_32.svg);
		background-size: 100%;
	}
	#weLogin input {
		border: solid 1px #000 !important;
		border-radius: 0 !important;
		color: #000 !important;
		background-color: #fff !important;
		padding: 5px;
		width: 100%;
		margin-bottom: 15px;
	}
	#weLogin input[type="checkbox"] {
		width: 25px;
		height: 25px;
		margin-bottom: 15px;
	}
	#weLogin label {
		display: inline-block;
		position: relative;
		top: -7px;
		left: 5px;
	}

#weLoginSubmit {
	background: linear-gradient(0deg, #d3d2db 0%, #efefef 5%, #b3b3cb 95%, #d3d3df 100%) !important;
	cursor: pointer;
	height: 35px;
}

#weLogin a {
	text-decoration: none;
	float: right;
	line-height: 30px;
	color: #285bc1;
}