/********************************** Popup ***********************************/
.blockOverlay {
	background-color: #eee;
	opacity: 0.9; 
}

.blockMsg {
	background-color: #fff;
	border: 1px solid #4c4c4c;  /* see $baywa-color-gray in _app.styles.variables */
	box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
	color: #565656;
	left: 35%;
    min-width: 400px;
	padding: 5px;
	width: 30%; 
}

.popup {
	font-size: 9pt;
	position: relative;
}

.popup_close {
	background: url("/solarplanit/resources/img/baywa/close.png") no-repeat;
	cursor: pointer;
	height: 15px;
	position: absolute;
	right: 0;
	top: 0;
	width: 15px;
}

.popup_close:hover {
	background: url("/solarplanit/resources/img/baywa/close_hover.png") no-repeat;
}

.popup_close:active {
	background: url("/solarplanit/resources/img/baywa/close_active.png") no-repeat;
}

.popup_title {
	border-bottom: 1px solid #565656;
	font-size: 9pt;
	padding-bottom: 3px;
}

.popup_message {
	margin: 20px 0;
}

.popup_message h4 {
	font-size: 11pt;
	margin-bottom: 10px;
}

.popup_message h5 {
	font-size: 10pt;
	margin: 10px 0;
}

.popup_message ul {
	list-style: disc inside;
}

.popup_buttons {
	text-align: center;
}

.popup_button {
	background-color: #008c46;
	border: 0;
	color: #fff;
	font-size: 9pt;
	font-weight: bold;
	min-width: 60px;
	padding: 6px 15px;
}

.popup_button:hover{
	background-color: #565656;
	color: #fff;
}

.popup_button:active {
	background-color: #565656;
	color: #008c46;
}

#version_popup .popup_message {
	overflow: hidden;
}

#version_popup #version_left {
	float: left;
	width: 69%;
}

#version_left .logo {
	height: 35px; /* Half the header height */
	padding-bottom: 18px; /* Half the logo size */
}

#version_popup #version_right {
	float: right;
	width: 30%;
}

#version_popup a {
	text-decoration: underline;
}

#version_popup  a:hover {
	text-decoration: none;
}

#version_popup .clear_float {
    overflow: hidden;
    width: 100%;
}

#version_popup #contribution {
    list-style: none;
    margin-top: 20px;
}

#imprint_popup .popup_message,
#privacy_popup .popup_message,
#license_popup .popup_message {
	overflow: auto;
}

