
/* Main
--------*/

	main {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #FFFFFF;
	}

/* Empty
---------*/

	.empty {
		position: fixed;
		top:0;
		right: 0;
		height: 60px;
		width: 60px;
		background-color: transparent;
		z-index: 2;
		cursor: default;
	}

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

	h1 {
		font-size: 24px;
		font-weight: 800;
	}

	h1 img {
		height: 22px;
		position: relative;
		top: 3px;
		margin-right: 5px;
	}

/* Logo
--------*/

	#logo {
		display: block;
		max-width: 100%;
		margin: 20px auto 0 auto;
	}

	.subpage #logo img {
		height: 50px;
	}

/* Zentrierung
---------------*/

	.centered {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 80%;
		text-align: center;
	}

/* Button
----------*/

	.btn {
		display: inline-block;
		background-color: #454545;
		color: #FFFFFF !important;
		padding: 10px 20px;
		border-radius: 20px;
		text-align: center;
		cursor: pointer;
		-webkit-appearance: none;
  		-moz-appearance: none;
  		appearance: none;
		border: none;
	}

	.btn:hover {
		opacity: 0.8;
	}

	.btn img {
		display: inline-block;
		height: 20px;
		vertical-align: sub;
		margin-right: 5px;
		position: relative;
		top: 2px;
	}

	.btn.btn-secondary {
		background-color: #DDDDDD;
		color: #222222 !important;
	}

/* Formular
------------*/

	form {
		display: block;
		width: 100%;
		padding: 20px;
	}

	form input[type="text"],
	form input[type="password"],
	form textarea {
		display: block;
		width: 100%;
		border: 1px solid #666666;
		resize: none;
		background-color: #F2F2F2;
		border-radius: 5px;
		padding: 7px 10px;
	}

	form textarea {
		min-height: 100px;
		padding: 7px 10px;
		font-family: inherit;
		-webkit-appearance: none;
  		-moz-appearance: none;
  		appearance: none;
	}

	form .field {
		margin-bottom: 15px;
	}

	form .field-label {
		padding-bottom: 3px;
	}

/* Frage-Übersicht
-------------------*/

	.question {
		position: relative;
		display: block;
		background-color: #f2f2f2;
		padding: 10px;
		border-radius: 5px;
		margin-bottom: 7px;
	}

	.question:after {
		content: '';
		clear: both;
		display: table;
	}
	.question .date {
		display: block;
		font-size: 12px;
	}

	.question .nr {
		display: block;
		float: left;
		font-weight: bold;
		background-color: #FFFFFF;
		border-radius: 100%;
		height: 40px;
		width: 40px;
		text-align: center;
		line-height: 40px;
	}

/* Whatsapp
------------*/

	#whatsapp {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-image: url('/project/bg/scope/www/pub/img/chat_bgr.png');
		background-size: 100% auto;
		background-position: center center;
	}

	#whatsapp .history {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 200px;
		left: 0;
		overflow-y: auto;
	}

	#whatsapp .history ul {
		margin: 0;
		padding: 0;
	}

	#whatsapp .history li {
		display: block;
		list-style-type: none;
		margin: 0;
		padding: 10px;
	}



	#whatsapp .bubble {
		background-color: #FFFFFF;
		font-size: 15px;
		padding: 5px 10px;
		border-radius: 5px;
		-webkit-box-shadow: 0px 0px 18px -11px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 18px -11px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 18px -11px rgba(0,0,0,0.75);
	}

	#whatsapp .history li.other {

	}

	#whatsapp .history bubble.me {
		width: calc(100% - 50px);
	}

	#whatsapp form {
		position: absolute;
		right: 0;
		bottom: 0;
		left:0;
		background-color: transparent;
	}

	#whatsapp form textarea {
		border: 1px solid #cecece;
		background-color: #FFFFFF;
		height: 150px;
		width: calc(100% - 50px);
		border-radius: 20px;
	}