/* 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.9rem;
			font-weight: 300;
			text-decoration: none;
			}


/*Allgemeines CSS*/

body {
	max-width: 100%;
	color: black;
	min-height: 100%;
}


header img {
	width: 100%;
}


footer {
	background-color: lightgrey;
	padding: 2rem 0;
	position: relative;
	width: 100%;
}

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: 2%;
	top: 14%;
}

nav a {
	font-size: 1rem;
}

select {
	border: none;
	border-radius: 6px;
	box-shadow: 4px 4px 4px grey;
	padding: 0.2rem;
	margin: 1.2rem 0.5rem;
}

input {
	background-color: white;
	border: none;
	border-radius: 6px;
	box-shadow: 4px 4px 4px grey;
	padding: 0.5rem;
	margin: 0.5rem 0.5rem 1.2rem;
}

textarea {
	background-color: white;
	border: none;
	border-radius: 6px;
	box-shadow: 4px 4px 4px grey;
	height: 300px;
	padding: 0.5rem;
	margin: 1.2rem 0.5rem;
}

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

h2 {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	margin: 2rem 0 1rem 0;
}

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

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

strong {
	font-weight: 600;
}

li {
	list-style-type: none;
}

/*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: 0 2rem 2rem;
	width: 90%;
	max-width: 2000px;
}

#footer_left{
	font-size: 0.9rem;
	position: absolute;
	left: 2%;	
	top: 40%;
}

#footer_right{
	font-size: 0.9rem;
	position: absolute;
	right: 2%;
	top: 40%;
}

#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 a {
	color: white;
}

#title_bar a:hover {
	color: grey;
}


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

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

button {
	padding: 0.5rem 0.8rem;
	border-radius: 6px;
	font-weight: 600;
}

#hover_dcm, #hover_bs, #hover_ws {
	width: 30%;
	height: fit-content;
	height: -moz-fit-content;
	background-color: #27519a;
	cursor: pointer;
	color: white;
	padding: 1rem 1.5rem;
	transition: all ease-in-out 0.1s;
	text-align: center;
}

#hover_dcm {
	border-radius: 6px 0 0 6px;
	border-right: 1px solid white;
}

#hover_bs {
	border-radius: none;
	border-right: 1px solid white;
}

#hover_ws {
	border-radius: 0 6px 6px 0;
}



/*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);
	
}

.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;
}

.blocker {
	background-color: indianred!important;
}

.ticket_overview_detail{
	padding: 0.5rem 0.5rem;
}

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

.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: -40px;

  /* 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;
}

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

.footer_link:hover {
	color: #27519a;
	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%;
}

.w40 {
	width: 40%;
}

.w80 {
	width: 80%;
}

.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: 1rem;
	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: 94.8vh;
}

.ticket_detail {
	width: 65%;
}

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

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

.form_get_button:hover {
	background-color: white;
	border: solid 1px #27519a;
	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;
}

.selected {
	border-bottom: solid 2px rgba(0,93,255,0.40);
}

.sort_selected {
	color: black;
}

.hover_dropdown_dcm, .hover_dropdown_bs, .hover_dropdown_ws {
	background-color: white;
	border-radius: 0 0 6px 6px;
	padding: 6px 4px;
	width: inherit;
}

.hover_dropdown_dcm ul, .hover_dropdown_bs ul, .hover_dropdown_ws ul {
	margin-top: 0.5rem!important;
}

.hover_dropdown_dcm ul:hover, .hover_dropdown_bs ul:hover, .hover_dropdown_ws ul:hover {
	transform: scale(1.2)!important;
	transition: all ease-in-out 0.4s!important;
}

.white_link {
	color: inherit;
	font-size: 1rem;
}

.hover_effect {
	background-color: white !important;
	color: #27519a !important;
	transition: all ease-in-out 0.1s !important;
}

.showdateienfeld {
	cursor: pointer;
}
