* {
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	font-size: 24px;
	line-height: 1;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.header {
	background-color: #1b1b1b;
	padding: 0px;
    color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*
 ******* Nav *******
*/
.nav {
    /*overflow: hidden;*/
    background-color: #222; /* b48216 */
    display: flex;
    justify-content: space-between; /* Elemente nach rechts schieben */
    align-items: center; /* Elemente vertikal zentrieren */
    padding: 0px 55px; /* Optional: Füge Padding hinzu, um den Abstand zu erhöhen */
}

.logo {
    display: inline-block;
}
.logo img {
    width: 300px;
    height: 100px;
    display: block;
    content:url(../img/logo.png);
}
.navbar {
	margin-right: 80px;
}
.navbar ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	background: #222;
	position: relative;
	color: black;
	border-style: solid;
} 
.navbar ul li {
	display: inline-block;
}  
.navbar ul li a {
	color: #FFF !important;
	text-decoration: none !important;
	padding: 15px;
	display: block;
} 
.navbar ul li:hover {
	background: crimson;
}  
.navbar ul ul {
	position: absolute;
	min-width: 200px;
	background: #222;
	display: none;
}  
.navbar ul ul li{
	display: block;
	background: #222;
} 
.navbar ul li:hover ul{
	display: block;
}  
.navbar ul li i {
	color: #292929;
	float: right;
	padding-left: 20px;
}
  
.navbar div{
	background: #222;
	color: #FFF;
	font-size: 24px;
	padding: 0.6em;
	cursor: pointer;
	display: none;
} 
.navbar div:hover{
	background: crimson;
}   
@media(max-width: 1424px){
	.navbar div {
	  display: block;
	}
	.navbar ul {
	  display: none;
	  position: static;
	  background: #222;
	}
	.navbar ul li {
	  display: block;
	}
	.navbar ul ul {
	  position: static;
	  background: #222;
	}	
}

/*
 ******* InfoPanel *******
*/
.board{
	height: 130px;
	width: 70%;
	background: #6c0909;
	border-radius: 10px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	border-style: solid;
	color: black;
}

.infopanel_logo{
	content:url(../img/infopanel_logo.png);
	width: 100px;
	height: 100px;
	margin-top: 15px;
	margin-left: 15px;
}
.infopanel_text1{
	color: white;
	text-transform: Arial;
	font-size: 20px;
	margin-top: -80px;
	margin-left: 130px;
	font-weight: 500
}
.infopanel_text2{
	text-transform: Arial;
	font-size: 20px;
	margin-top: 5px;
	margin-left: 130px;
	font-weight: 500
}
.infopanel_auto-type{
	color: black;
}
/*
 ************************************************* MAIN *************************************************
*/
.main {
	flex: 1 1 auto;
	background-color: #1b1b1b;
	padding: 0px;
    color: white;
}
/*
 ******* ERROR BOX *******
*/
.error_content{
	width: 70%;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 50px;
	color: white;
	background: #242424;;
	border-radius: 10px;
	box-shadow: 0 0 50px #8b1919;
	border: solid #8b1919 1px;
    text-decoration: none;
}
.error_title{
    text-align: center;
	margin-top: 15px;
    width: 100%;
}
.error_linie {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 98%;
	color: #393939;
	height: 1px;
	border-bottom: 2px solid #e4e4e4;	
}
.error_text {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
    font-size: 26px;
}
.error_text a {
    text-decoration: none;
	color: white;
}
/*
 ******* Member List *******
*/
.memberscontent {
    width: 70%;
    border-radius: 10px;
    margin-top: 20px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    color: white;
	font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.members_box {
    border: 1px solid black;
    width: calc(33.33% - 20px);
    background: #131313;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.memberscontent::after {
    content: "";
    flex: auto;
}
.members_box:nth-child(3n + 1),
.members_box:nth-child(3n + 2) {
    margin-right: 10px;
}
.members_line {
    width: 100%;
    height: 5px;
    background-color: #a60000;
}
.members_name {
    width: 100%;
    height: 25px;
    background-color: #171717;
    text-align: center;
}
.members_avatar {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    background-color: #41DCE1;
}
.members_info {
    width: 100%;
    text-align: center;
    height: auto;
    margin-top: 10px;
}
.members_line2 {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    background-color: #a60000;
    text-align: center;
}
.pagination {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.pagination a,
.pagination .current_page {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #a60000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.pagination .current_page {
    background-color: #171717;
}


/*
 ******* Impressum *******
*/
.impressumcontent{
	width: 70%;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 50px;
	color: white;
	background: #242424;;
	border-radius: 10px;
	box-shadow: 0 0 50px #8b1919;
	border: solid #8b1919 1px;
    text-decoration: none;
}
.impressumcontent_text{
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
    font-size: 20px;
}
.impressumcontent_text a {
    text-decoration: none;
	color: white;
}
.impressumcontent_title{
    text-align: center;
	margin-top: 15px;
    width: 100%;
	border-bottom: solid white 2px;
}

/*
 ******* SERVERLISTE *******
*/
.serverlist_content{
	width: 490px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 50px;
	color: white;
	background: #242424;;
	border-radius: 10px;
	box-shadow: 0 0 50px #8b1919;
	border: solid #8b1919 1px;
    text-decoration: none;
}
.serverlist_title{
    text-align: center;
	margin-top: 15px;
    width: 100%;
}
.serverlist_linie {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 98%;
	color: #393939;
	height: 1px;
	border-bottom: 2px solid #e4e4e4;	
}
.serverlist_text {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
    font-size: 26px;
}
.serverlist_text a {
    text-decoration: none;
	color: white;
}

/*
 ******* Rule *******
*/
.rule_content{
	width: 70%;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
    margin-bottom: 50px;
	color: white;
	background: #242424;;
	border-radius: 10px;
	box-shadow: 0 0 50px #8b1919;
	border: solid #8b1919 1px;
    text-decoration: none;
}
.rule_title{
    text-align: center;
	margin-top: 15px;
    width: 100%;
}
.rule_linie {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 98%;
	color: #393939;
	height: 1px;
	border-bottom: 2px solid #e4e4e4;	
}

.rule_text {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
    font-size: 26px;
}
.rule_text a {
    text-decoration: none;
	color: white;
}




.rule_box {
	width: 98%;
	margin-top: 10px;
	margin-bottom: 20px;
    background-color: #6c0909;
	border: 2px solid black;
    color: white;
    cursor: pointer;
    padding: 18px;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-size: 20px;
}
.rule_panel {
	margin-top: -20px;
	margin-bottom: 20px;
    padding: 0 18px;
    display: none;
    text-align: left;
    overflow: hidden;
    background-color: #222;
    font-size: 18px;
}
.rule_panel ul {
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 20px;
    text-align: left;
}

.rule_panel li {
	margin-bottom: 10px; /* Platz zwischen den Elementen, je nach Bedarf anpassen */
}
/*
 ************************************************* FOOTER *************************************************
*/
.footer {
	background-color: #222;
	padding: 20px;
    color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*
 ************************************************* ALERTS *************************************************
    danger('Du hast zum Starten keine Rechte.')
    info('Button Funktioniert.');
    warning('Der Benutzer wurde nicht gefunden.'); break;
    success('Sie haben einen User Hinzugefügt.'); break;
*/
#Noti_container {
	width: 200px;
	position: fixed;
	top: 100px;
	right: 25px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 13px;
	font-weight: 500;
}

#Noti_container ion-icon {
	font-size: large;
}

.Noti_success {
	padding: 10px 10px;
	background: rgba(62, 189, 97,0.2);
	border:2px solid #3ebd61;
	color: white;
	width: 100%;
	margin: 6px 0px;
	border-radius: 3px;
}

.Noti_danger {
	padding: 10px 10px;
	background: rgba(236, 77, 43, 0.2);
	border:2px solid #EC4D2B;
	color: #ffffff;
	width: 100%;
	margin: 6px 0px;
	border-radius: 3px;
}

.Noti_info {
	padding: 10px 10px;
	background: rgba(0, 108, 227,0.2);
	border:2px solid #006CE3;
	color: #ffffff;
	width: 100%;
	margin: 6px 0px;
	border-radius: 3px;
}

.Noti_warning {
	padding: 10px 10px;
	background: rgba(239, 148, 0, 0.2);
	border:2px solid #EF9400;
	color: #ffffff;
	width: 100%;
	margin: 6px 0px;
	border-radius: 3px;
}
@keyframes Noti_animation {
	0% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(1.07);
	}

	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes Noti_animation {
	0% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(1.07);
	}

	100% {
		transform: scale(1);
	}
}

.timer_progress {
	height: 2px;
	background-color: rgba(255, 245, 245, 0.7);
	position: absolute;
	margin-top: -8px;
}

@keyframes timer_progress_animation {
	from {
		width: 100%;
	}

	to {
		width: 0%;
		transform: rotate(0deg);
	}
}

@-webkit-keyframes timer_progress_animation {
	from {
		width: 100%;
	}

	to {
		width: 0%;
		transform: rotate(0deg);
	}
}