/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');



		*{
			/* RESET */
			margin:0;
			padding:0;
			font-family: 'Open Sans';
			font-size: 0.98rem;
			font-weight: 300;
			text-decoration: none;
			}


/*Allgemeines CSS*/

body {
	max-width: 100%;
	background-image: linear-gradient(rgba(0, 56, 120,0.8),rgba(0, 56, 120,1));
	min-height: 100%;
}



header img {
	width: 10%;
}

header a {
	display: flex;
	justify-content: center;
	margin-top: 2%;
}


footer {
	background-color: none;
	color: white;
	padding: 2rem 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

footer a {
	color: white;
	transition: all ease-in-out 0.6s;
}


a {
	color: black;
	font-weight: bold;
	transition: all ease-in-out 0.6s;
}

a:hover {
	color: #27519a;
	transition: all ease-in-out 0.4s;
	
}

nav {
	position: absolute;
	right: 3%;
	top: 3%;
}

select {
	border: solid 1px rgba(0, 56, 120,1);
	border-radius: 6px;
	box-shadow: 4px 4px 4px grey;
	padding: 0.2rem;
	margin: 0.5rem 0 1.5rem;
}

input {
	background-color: white;
	border: solid 1px rgba(0, 56, 120,1);
	border-radius: 6px;
	box-shadow: 4px 4px 4px grey;
	padding: 0.5rem;
	margin: 0.5rem 0 1.5rem;
}

textarea {
	background-color: white;
	border: solid 1px rgba(0, 56, 120,1);
	border-radius: 6px;
	box-shadow: 4px 4px 4px grey;
	height: 300px;
	max-width: 100%;
	padding: 0.5rem;
	margin: 0.5rem 0 1.5rem;
}

h1 {
	font-size: 2rem;
	font-weight:600;
	margin: 2rem 0;
}

h2 {
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	margin: 3rem 0;
}

h3 {
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1.5rem;
}

h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

strong {
	font-weight: 600;
}

hr{
	border-style: 1px solid;
	color: lightgray;
	margin: 1rem 0;
}

/*CSS-ID's*/

#container {
	padding: 2rem 5rem;
}


#container_column_left{
	flex-direction: column;
	justify-content: center;
	width: 60%;
}

#container_column_right{
	flex-direction: column;
	justify-content: center;
	width: 40%;
}

#container_center {
	display: flex;
	justify-content: center;	
}

#container_nav {
	position: relative;
}

#ticket_container {
	background-color: rgba(0,0,0,0.10);
	border-radius: 6px;
	padding: 1.5rem;
	margin: 2rem;
	width: 90%;
	max-width: 2000px;
}


#title_bar {
	background-color: #27519a;
	color: white;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px solid rgba(32,32,32,1.00);
}

#title_bar div {
	font-weight: bold;	
	padding: 1rem 0.5rem;
}

#chat_window {
	max-height: 400px;
	overflow-y: scroll;
}

#top_right_img {
	float:right;
	width: 30%;
}

#impressum,#kontakt{
	min-width: 85%;
	max-width: 95%;
	margin: 2%;
	position: relative;
	border-radius: 6px;
	padding: 2rem 1rem 2rem 3rem;
	background-color: white;
	margin-left: 30px;
	text-align: center;
	z-index: 1;
	
}

#nnd_background_blue{
	background-color: rgb(226, 240, 250);
}


button {
	padding: 0.5rem 0.8rem;
	border-radius: 6px;
	border: solid 1px rgba(0, 56, 120,1);
	box-shadow: 4px 4px 4px grey;
}


/*CSS-Klassen*/

.container_flex{
	display: flex;
	flex-direction: row;
}

.shadow{
	box-shadow: 4px 4px 4px grey; 
}

.ticket_overview {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px solid rgba(32,32,32,1.00);
	background-color: lightgray;
}

.nachricht {
	padding: 1.5rem;
	border-top: 1px solid rgba(32,32,32,1.00);
}

.ticket_overview:last-child, .nachricht:last-child {
	border-bottom: 1px solid rgba(32,32,32,1.00);
}

.ticket_overview:nth-child(odd), .nachricht:nth-child(odd) {
    background-color: #ffffff;
}

.ticket_overview_detail{
	padding: 1.2rem 0.5rem;
}

.ticket_overview_message {
	display: flex;
	justify-content: center;
	border-top: 1px solid rgba(32,32,32,1.00);
	padding: 0.4rem;
	
}

.ticket_overview_message:last-child {	
	border-bottom: 1px solid rgba(32,32,32,1.00);	
}

.ticket_overview_message:nth-child(odd) {
    background-color: #ffffff;
}

.ticket_overview_message i {
	padding: 0.2rem 0.5rem;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;

  /* Position tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip pfeil */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}


.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip_wide {
	display: block;
	width: 250px;
    margin-left: -132px!important;
}

.footer_link {
	font-weight: 300;
	font-size: 0.9rem;
	transition: all ease-in-out 0.6s;
}

.footer_link:hover {
	color: grey;
	transition: all ease-in-out 0.4s;	
}

.w2 {
	width: 2%;
}

.w5 {
	width: 5%;
}

.w6 {
	width: 6%;
}

.w8 {
	width: 8%;
}

.w10 {
	width: 10%;
}

.w15 {
	width: 15%;
}

.w20 {
	width: 20%;
}

.w25 {
	width: 25%;
}

.w30 {
	width: 30%;
}

.w35 {
	width: 35%;
}

.w40 {
	width: 40%;
}

.w80 {
	width: 80%;
}

.w100 {
	width: 100%;
}

.submit_grey {
	background-color: white;
	padding: 0.2rem 0.5rem;
	transition: all ease-in-out 0.6s;
	min-width: 4rem;
}

.submit_grey:hover {
	background-color: darkgrey;
	transition: all ease-in-out 0.4s;
}

.submit_blue {
	background-color: #27519a;
	color: white;
	transition: all ease-in-out 0.6s;
	min-width: 4rem;
}

.submit_blue:hover {
	background-color: white;
	color: black;
	transition: all ease-in-out 0.4s;
}

.detail_container {
	background-color: rgba(0,0,0,0.10);
	border-radius: 6px;
	padding: 1.5rem;
	margin: 2rem 2rem 4rem 2rem;
	max-width: 2000px;
}

.no_margin_top {
	margin-top: 0;
}

.text_center {
	text-align: center;
}

.items_center {
	display: flex;
	justify-content: center;
}

.blank_container {
	min-height: 92.2vh;
	display: flex;
	justify-content: center;
}

.ticket_detail {
	width: 65%;
}

.ticket_detail_title {
	font-weight: bold;
	width: 25%;
}

.form_get_button {
	background-color: #27519a;
	border-radius: 6px;
	color: white;
	padding: 1rem 1.5rem;
	margin: 1rem;
	transition: all ease-in-out 0.6s;
}

.form_get_button:hover {
	background-color: white;
	color: #27519a;
	transition: all ease-in-out 0.4s;
}

.form_get_button:focus {
	background-color: white;
	color: #27519a;
}


.form_get_button:active {
	background-color: white;
	color: #27519a;
}


.no_shadow {
	box-shadow: none;
}

.white_container {
	background-color: white;
	border-radius: 6px;
	min-width: 85%;
	max-width: 95%;
	margin: 2%;
	position: relative;
}

.overview_padding {
	padding: 0 2rem 2rem;
}

img {
	max-width: 100%;
}

.float_right {
	float: right;
}

.no_margin{
	margin: 0;
}

.delete_btn {
	border: none !important;
	font-weight: bold;
	transition: all ease-in-out 0.6s;
	padding: inherit;
	box-shadow: none !important;
	background: none;
	cursor: pointer;
}

.delete_btn:hover {
	color: #27519a;
	transition: all ease-in-out 0.4s;
	
}

.close_button_impressum, .close_button_kontakt{
	color: black;
	font-size: 1.5rem;
	padding: 0.2rem 0.6rem;
	position: absolute;
	top: 1rem;
	right: 1rem;
	transition: transform ease-in-out 0.6s;
}

.close_button_impressum:hover, .close_button_kontakt:hover{
	color: #27519a;
	transition: transform ease-in-out 0.4s;
}

.form_input_container{
	width: 50%;
}

.form_input_container:nth-child(odd) {
    margin-right: 5rem;
}
	
.form_container{
	padding: 2rem;
	width: 60%;
}

.footer_content {
	font-size: 0.9rem;
}

.anmeldung_content {
	padding: 0 4rem;
}

.anmeldung_content p {
	font-size: 1.2rem;
	padding: 0 4rem;
}

.language_icon{
	width: 15px;
}

.box_eventsammlung{
	border-radius: 6px;
	padding: 1.5rem;
	box-shadow: 0px 0px 8px lightgray;
	margin: 2rem 2rem 4rem 2rem;
	width: 27%;
	transition: all ease-in-out 0.6s;
}

.box_eventsammlung:hover{
	box-shadow: 0px 0px 8px gray;
	transition: all ease-in-out 0.4s;
}


/*Responsiveness*/

@media screen and (max-width:1000px){
	
	.form_container{
		width: 100%;
	}
	
	.anmeldung_content {
		padding: 0 2rem;
	}

	.anmeldung_content p {
		padding: 0 2rem;
	}
	
	header img {
		width: 30%;
	}
	
}

@media screen and (max-width:900px){
	
	footer{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.footer_content {
		padding: 1rem;
		text-align: center;
	}
	
	.anmeldung_content {
		padding: 0;
	}

	.anmeldung_content p {
		padding: 0;
	}
	
	nav {
		position: relative;
		margin-bottom: 2rem;
	}
	
	#top_right_img {
		float: none;
		width: 100%;
	}
	
	.box_eventsammlung{
	margin: 2rem 2rem 2rem 2rem;
	width: auto;
	}
	
}

@media screen and (max-width:700px){
	
	.container_flex{
		flex-direction: column;
	}
	
	.form_input_container{
		width: 100%;
	}
	
	header img {
		width: 40%;
	}
}



