html {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
	background-color: #f9f9f9;
}

body {
	height: 100%;
	min-height: 100vh;
	max-width: 1000px;
	margin: 0;
	/*background-image: linear-gradient(150deg, var(--GrauerHintergrundStart), var(--GrauerHintergrundEnde));*/
	background-color: white;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 5px 5px 8px #ccc;
}

header {
	width: 100vw;
	max-width: 100%;
	height: 67px;
	background-color: white;
	/*border-bottom: 2px solid var(--Hellgrau);*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--padding);
	box-sizing: border-box;
}

header .TWLogo {
	height: 60%;
}

.TWLogo{
	cursor: pointer;
}

header .BurgerMenu {
	height: 40%;
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--padding);
	box-sizing: border-box;
	font-size: 12px;
	color: var(--Grau);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: white;
	z-index: 10;
	max-width: 100%;
}

footer .TWLTLogo {
	height: 18px;
	vertical-align: middle;
}

footer .FussText {
	vertical-align: middle;
	margin-right: 10px;
}

main {
	color: var(--Text);
	margin-bottom: 50px;
}

.Willkommen {
	height: 260px;
	width: 100vw;
	max-width: 100%;
	background-image: url(../bilder/polizei.jpg);
	background-position: 20% 20%;
	background-size: 500px;
	box-sizing: border-box;
	margin-bottom: 60px ;
	padding-top: 130px;
}

.WillkommenText {
	font-size: 120%;
	font-weight: 600;
	border-left: 4px solid var(--PrimaerFarbe);
	padding: 4px;
	background-color: #00000077;
	box-shadow: 0 0 18px 10px #00000088;
	color: #ffffff;
	margin-left: var(--padding);
	width: 85%;
	box-sizing: border-box;
}

.WillkommenText span {
	font-size: 110%;
}

.KachelBereich {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	width: auto;
	padding: 0 40px;
	box-sizing: border-box;
}

.Kachel {
	/*background-color: var(--Text);
	background-image: linear-gradient(150deg, var(--Text), #252c5e);
	color: white;*/
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	box-shadow: 14px 14px 0px var(--Hellgrau);
	cursor: pointer;
	min-width: 200px;
	height: 300px;
	position: relative;
}

.Kachelfarbe1 {
	background-color: #141B4D;
	color: white;
}

.Kachelfarbe2 {
	background-color: #00CC88;
	color: var(--Text);
}

.Kachelfarbe3 {
	background-color: #51626F;
	color: white;
}

.Kachelfarbe4 {
	background-color: #FCDD3C;
	color: var(--Text);
}
.Kachelfarbe5 {
	background-color: #800080;
	color: white;
}

.Kachel img , .Kachel svg{
	height: 50px;
	width: 50px;
	position: absolute;
	right: 20px;
	bottom: 25px;
}

#alarmlicht {
	animation-name: blinklicht;
	animation-duration: 1.6s;
	animation-iteration-count: infinite;
}

@keyframes blinklicht {
	0% {fill: red;}
	50% {fill: #ffcccc;}
	100% {fill: red;}
}

.Kachel p {
	margin: 10px 0 10px 0;
}

.Kachel h2 {
	font-size: 120%;
	font-weight: 800;
}

/*
.KachelBereich .FarbigeKachel {
	background-color: var(--PrimaerFarbe);
	background-image: linear-gradient(150deg, var(--PrimaerFarbe), #11dd99);
	color: white;
}

.KachelBereich .AlarmKachel {
	background-color: #DA291C;
	color: white;
}
*/

.LeerBereich {
	min-width: 50px;
}

.Scroller {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.Passpartout {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: scroll;
}
.Passpartout::-webkit-scrollbar {
    display: none;
}

.textArea-scan{
	width: 100%;
	height: 70px;
}
.button {
    padding: 10px 20px 10px 20px;
    color: black;
    font-size: 14px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
	margin-bottom: 5px;
}
.fileUpload{
	margin: 15px 0px;
}
.input {
    display: block;
    width: 250px;
	font-size: 16px;
    margin: 10px auto 40px auto;
    text-align: center;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid black;
    background-color: white;
}
.LoginWrapper{
	text-align: center;
    margin-top: 40px;
}
.container h3{
	text-align: center;
	font-size: 110%;
  }
  
  details{
	font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #aaa;
  }
  
  summary {
	padding: .8em 1.3rem;
	list-style: none;
	display: flex;
	justify-content: space-between;  
	transition: height 1s ease;
	font-weight: 600;
	cursor: pointer;
  }
  
  summary::-webkit-details-marker {
	display: none;
  }
  
  summary:after{
	content: "\002B";
  }
  
  div summary {
	  border-bottom: 1px solid #aaa;
	  margin-bottom: .5em;
  }
  
  div summary:after{
	content: "\00D7";
  }
  
  .details{
	padding: .5em 1em;
	font-style: italic;
	border-bottom: 1px solid #aaa;
  }
  table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
  }
  
  td, th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
  }
  
  tr:nth-child(even) {
	background-color: #dddddd;
  }

picture img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 5;
    position: relative;
}
.telephone a{ 
	text-decoration: none;
}
.email a{
	text-decoration: none;
}
.office a{ 
	text-decoration: none;
}

.TeamUebersicht {
	text-align: center;
}
.member{
	display: inline-block;
    margin: 5px;
    padding: 20px;
	border-bottom: solid 2px #e6e6e6;
}
.icon{
	width: 10px;
}

.team-members {
	text-align: left;
}

.team-members-item-img1
, .team-members-item-img2
, .team-members-item-img3
, .team-members-item-img4
, .team-members-item-img5 {
	position: relative;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
	
}
.team-members-item-img1:after
, .team-members-item-img2:after
, .team-members-item-img3:after
, .team-members-item-img4:after
, .team-members-item-img5:after {
	width: 100%;
    height: 33%;
    display: block;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    z-index: 0;
}

.team-members-item-img1:after{
    background-color: #0c8;
}

.team-members-item-img2:after{
    background-color: #0f1c44;
}

.team-members-item-img3:after{
    background-color: #b7c7d2;
}

.team-members-item-img4:after{
    background-color: #fcdd3c;
}

.team-members-item-img5:after{
    background-color: #51626f;
}

.team-members-name{
	font-weight: 600;
    font-family: Gilroy-SemiBold,Arial,Helvetica,Sans-serif;
	margin-bottom: 0px;
}
.team-members-title{
	font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 15px 0;
}
.team-members-contact{
	color: black;
}
.item {
	margin: 10px 0;
}
.item a{
	color: black;
}
.eventBox{
  padding: 10px;
  margin: 10px;
  background-color: var(--Dunkelgrau);
  color: white;
  cursor: pointer;
}
.eventBox p{
	margin: 0px;
}
.support-head-section{
	border-bottom: 2px solid black;
}
.support-section{
	margin: 10px;
}

.auto-question {
	padding: 10px;
	border: 1px solid black;
    border-radius: 9px;
	margin-right: 10%;
	width: auto;
    margin-left: 10px;
    margin-top: 10px;
	margin-bottom: 15px;
	display: block;
	padding-bottom: 14px;
	box-sizing: border-box;
  }
.user-section {
    text-align: right;
    margin: 15px;
}
.user-head-section {
    border-bottom: 2px solid;
}
.user-answer{
	padding: 10px;
	border: 1px solid black;
	border-radius: 10px;
	margin-left: 10%;
	text-align: left;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 14px;
	box-sizing: border-box;
}
.user-answer p{
	white-space: pre-line;
	margin: 0px;
}
/*
.user-answer a{
	height: 18px;
  width: 200px;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0 5px 0 5px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
*/
.textArea-answer{
	width: 100%;
	height: 150px;
	border-radius: 10px;
    border: 1px solid;
}
.answer-box{
	box-sizing: border-box;
    padding: 10px;
    margin-top: 10px;
	margin-bottom: 70px;
    width: 100%;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.icon-clip{
	width: 20px;
	margin-right: 10px;
	cursor: pointer;
}
.icon-plane{
	width: 20px;
	cursor: pointer;
}
.icon-camera{
	width: 20px;
	cursor: pointer;
	margin-right: 10px;
}
.icon-holder{
	text-align: right;
}
.hiden{
	display: none;
}

.Camera {
	display: none; 
	position: fixed; 
	z-index: 1; 
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.4);
  }
  .Camera-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 320px;
    height: 275px;
  }

  /* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: none;
  }
  
  /* Transparent Overlay */
  .loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(20, 20, 20,.4), rgba(0, 0, 0, .4));
	background: -webkit-radial-gradient(rgba(20, 20, 20,.4), rgba(0, 0, 0,.4));
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
  }
  
  .loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 150ms infinite linear;
	-moz-animation: spinner 150ms infinite linear;
	-ms-animation: spinner 150ms infinite linear;
	-o-animation: spinner 150ms infinite linear;
	animation: spinner 150ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  }
  .messages{
		padding: 10px;
		box-sizing: border-box;
  }

  .closeEvent {
    text-align: center;
    background: wheat;
    margin: 10px 0px;
    padding: 10px 0px;
}

.btnQRCode{
	text-decoration: none;
	margin-left: 10px;
	margin-right: 10px;
}
.firma{
	text-align: center;
}
.buttonHolder{
	text-align: center;
}
.goldenRule{
	font-size: 10px;
}
.btnlogout{
	margin-right: 5px;
}

.level{
	display: inline-block;
	width: 30%;
}
.select{
	width: 60%;
	margin: 5px;
}
.tblNotfallKontkte{
	font-size: 10px;
	margin-top: 10px;
}
.btnNotfallKontakte{
	display: block;
	margin-left: auto;
	margin-right: 10%;
}
.removeNotfallKontakte{
	cursor: pointer;
}
.txtInput{
	width: 60%;
    max-width: 80%;
    margin: 5px;
    border-style: solid;
    border-width: 0px;
    border-bottom-width: 1px;
    border-color: #141B4D;
    background-color: transparent;
    font-size: 90%;
}
.senderEmail{
	font-size: 8px;
	text-align: left;
	float: left
	
}
.createDate{
	font-size: 8px;
	text-align: right;
	float: right;
	margin-left: 5px;
}
 
.ScrollPfeilWrapper {
	display: block;
	width: 100%;
	text-align: right;
	padding: 20px;
	box-sizing: border-box;
}

.ScrollPfeilWrapper div {
	display: inline-block;
	vertical-align: middle;
	margin: 0 20px;
	cursor: pointer;
}

.ScrollPfeilWrapper div img {
	width: 20px;
	vertical-align: middle;
}

.GoldeneRegel {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	background-color: white;
	box-sizing: border-box;
	padding: 0 25px 0 15px;
	perspective: 800px;
	cursor: pointer;
}
.Goldmini {
	height: 140px;
}
.Goldsmall {
	height: 200px;
}
.Goldmedium {
	height: 250px;
}
.Goldlarge {
	height: 300px;
}
.CanvasContainer {
	text-align: center;
	display: flex;
	align-items: center;
	width: 100%;
	height: 80%;
	padding: 12px;
	box-sizing: border-box;
	box-shadow: 14px 14px 0px var(--Hellgrau);
	transform: rotate3d(0,1,0,0deg);
}
.Eindrehen {
	transform: rotate3d(0,1,0,90deg);
	transition-duration: 0.5s;
	transition-timing-function: linear;
}
.Zwischenschritt {
	transform: rotate3d(0,1,0,-90deg);
}
.Ausdrehen {
	transform: rotate3d(0,1,0,0deg);
	transition-duration: 0.5s;
	transition-timing-function: linear;
}
.Unsichtbar {
	visibility: hidden;
}

.Vorderseite, .Rueckseite {
	position: absolute;
	margin-right: 15px;
}

.Vorderseite {
	font-weight: bold;
}

.CanvasContainer span {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-style: italic;
	font-size: 90%;
}

.checklist li{
	list-style-type: none;
}

.textArea-answer {
	padding: 12px;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}

.Dateiliste {
	color: #444;
	font-size: 80%;
	cursor: pointer;
	box-sizing: border-box;
	padding: 3px 0px;
	margin-bottom: 0;
	margin-top: 0;
}

.Dateiliste:hover {
	background-color: var(--SignalGelb);
}

.Dateiliste img {
	height: 18px;
	vertical-align: middle;
	margin-right: 15px;
}

.checklist {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 28px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checklist input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checklist:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checklist input:checked ~ .checkmark {
  background-color: var(--PrimaerFarbe);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checklist input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checklist .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.CheckRahmen {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}

.NotfallSettings {
	padding: 8px;
	box-sizing: border-box;
}


.logoutSession{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border: 1px solid #d0d7de;
	border-radius: 8px;
	padding: .5rem 1rem .5rem .55rem;
	min-width: 80px;
	cursor: pointer;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
	font: 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	margin-right: 15px;
	text-decoration: none;
}
.logoutSession:hover{ cursor: pointer; background-color: azure; color: red;}


  .lang-select {
  	display: inline-flex;
  	align-items: center;
  	gap: .5rem;
  	font: 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .lang-select label {
  	font-weight: 600;
  }

  .lang-select select {
  	appearance: none;
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	background: #fff;
  	border: 1px solid #d0d7de;
  	border-radius: 8px;
  	padding: .5rem 1.7rem .5rem .75rem;
  	min-width: 100px;
  	cursor: pointer;
  	box-shadow: 0 1px 0 rgba(0, 0, 0, .03);

  }

  .lang-select .select-wrap {
  	position: relative;
  	display: inline-block;
  }

  .lang-select .select-wrap::after {
  	content: "▾";
  	position: absolute;
  	right: .6rem;
  	top: 50%;
  	transform: translateY(-50%);
  	pointer-events: none;
  	font-size: .9rem;
  	color: #6b7280;
  }

  .lang-select select:hover {
  	border-color: #9aa3ad;
	cursor: pointer;
  }

  .lang-select select:focus {
  	outline: 3px solid rgba(37, 99, 235, .25);
  	border-color: #2563eb;
  }