
/* Wizzard
-----------*/

	.wizard-info {
		position: relative;
		background-color: #FFFFFF;
		padding: 20px;
		border-radius: 5px;
		margin-top: 25px;
		border-left: 5px solid #3475B4;
	}

/* Überschrift
---------------*/

	.wizard-info h2 {
		margin-top: 0;
	}

/* Schließen-Icon
------------------*/

	.wizzard-closer {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		height: 28px;
		width: 28px;
		cursor: pointer;
		background-image: url('/project/cafuture/ui/wizard/pub/img/x.svg');
		background-size: 100% auto;
		background-position: center center;
		background-repeat: no-repeat;
		z-index: 2;
		opacity: 0.5;
	}

	.wizzard-closer:hover {
		opacity: 1;
	}

/* Meldung (rechts unten)
--------------------------*/

	.wizard-message {
		position: fixed;
		padding: 20px;
		right: 20px;
		bottom: 20px;
		border-radius: 5px;
		background-color: #FFFFFF;
		box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.8),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0,0,0,.12);
		z-index: 5;
		max-width: 400px;
	}

	.wizard-message h2 {
		margin: 0 0 10px 0;
	}