:root
{
	--highlight: #006699;
}
body
{
    background-color: black;
    background-image: url(../images/background.png);
	background-size: 980px;
    background-repeat: repeat;
    margin: 0;
    padding: 0;
	font-family: "Righteous", sans-serif;
	overflow-x: hidden;
	min-height: 100vh;
	position: relative;
}

/* INDEX PAGE ANFANG */
.gallery
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 100px auto;
}
.gallery img
{
    width: 60%;
	min-width: 300px;
    transition: transform 0.3s ease-in-out;
}
.gallery img:hover
{
    transform: scale(1.4);
}
.frameleft
{
	margin-left: 250px;
	margin-top: 60px;
	text-align: center;
}
.frameright
{
	
	margin-right: 300px;
	text-align: center;
}

p.error {
	color: red;
}

/* INDEX PAGE ENDE */

/* HEADER LOGO ANFANG */
div.ascended-banner
{
	background-position: 50% 0px;
    margin-inline: auto;
    /* background-image: url(../images/background.png); */
    /* background-repeat: repeat; */
    /* background-size: 980px; */
    position: sticky;
    top: 0;
    background-color: #040404;
    border-bottom: 1px solid white;
    text-align: center;
    display: flow-root;
    margin-bottom: -20;
	z-index: 99;
	margin-left: 0;
    margin-right: 0;
	min-width: 800px;
}
div.ascended-logo
{
    background-position: 50% 0px;
    margin-inline: auto;
    background-image: url(../images/background.png);
    background-repeat: repeat;
    background-size: 980px;
    background-color: #000000;
    text-align: center;
    display: flow-root;
    margin-bottom: -20px;
    margin-top: -5px;
	margin-bottom: 0;
    z-index: 99;
}
/* HEADER LOGO ENDE */

/* MENU ANFANG */
.ascended-menu-container
{
	display: flow-root;
}
#ascended-menu
{
	display: inline-block;
    background: #00000030;
    color: #FFF;
    height: 31px;
    padding-left: 18px;
    border-radius: 0px;
    margin-top: 0;
    margin-bottom: 10px;
    margin-inline: auto;
    text-align: center;
	padding-top: 20px;
}
#ascended-menu ul, #ascended-menu li
{
	margin: 0 auto;
	padding: 0;
	list-style: none
}
#ascended-menu ul
{
	width: 100%;
}
#ascended-menu li
{
	float: left;
	display: inline;
	position: relative;
}
#ascended-menu a
{
	display: block;
    height: 45px;
    padding: 0 14px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 17px;
    text-transform: lowercase;
	border-bottom: 1px solid black;
}
#ascended-menu a.dropdown-arrow:after
{
	content: "\25BE";
	margin-left: 5px;
}
#ascended-menu li a:hover
{
	color: var(--highlight);
	border-bottom: 1px solid var(--highlight);
}
#ascended-menu input
{
	display: none;
	margin: 0;
	padding: 0;
	height: 41px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
#ascended-menu label
{
	display: none;
	line-height: 2px;
	text-align: center;
	position: absolute;
	left: 35px
}
#ascended-menu label:before
{
	font-size: 1.6em;
	content: "\2261"; 
	margin-left: 20px;
}
#ascended-menu ul.sub-menus
{
	height: auto;
	overflow: hidden;
	width: 150px;
	background: #020202;
	position: absolute;
	z-index: 99;
	display: none;
	text-align: left;
}
#ascended-menu ul.sub-menus li
{
	display: block;
	width: 100%;
}
#ascended-menu ul.sub-menus a
{
	color: #ffffff;
	font-size: 16px;
	position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
	border-bottom: 1px solid black;
}
#ascended-menu li:hover ul.sub-menus
{
	display: block
}
#ascended-menu ul.sub-menus a:hover
{
	background: #020202;
	color: var(--highlight);
	border-bottom: 1px solid var(--highlight);
}
.menulogo
{
	display: none;
    position: fixed;
    top: 16px;
    left: 50px;
    height: 50px;
    width: 268px;
}
@media screen and (max-width: 1200px)
{
	.menulogo
	{
		width: 140px;
	}
}
@media screen and (max-width: 900px)
{
	#ascended-menu {font-size:unset;}
	#ascended-menu ul { font-size:unset;}
	#ascended-menu ul.sub-menus {font-size:unset;}
	#ascended-menu ul.sub-menus a {font-size:unset;}
	#ascended-menu li {font-size:unset;}
	body {overflow-x: auto; }
	#ascended-menu ul.sub-menus a {font-size: unset;}
}
/* MENU ENDE */

/* ONLINE PLAYER ANZEIGE ANFANG */
.ascended-player-info
{
    text-align: center;
    width: 160px;
    height: 46px;
    border-bottom: 3px solid #ffffff9e;
    border-top: 3px solid #ffffff9e;
	border-left: 3px solid #ffffff9e;
    top: -111px;
    border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
    left: 10%;
    position: absolute;
    top: 10px;
    right: 0;
    display: inline-block;
    margin-inline-start: auto;
    margin-right: -2px;
    margin-top: -1px;
    color: white;
    font-size: 15px;
    padding: right: 40px;
    padding-top: 3px;
    padding-bottom: 0px;
    font-family: 'Righteous';
    line-height: 1.4;
    background-color: black;
}
.ascended-player-info:hover
{
	cursor: pointer;
}
@media only screen and (max-width: 1100px)
{
	.ascended-player-info
	{
		display:none;
	}
}
/* ONLINE PLAYER ANZEIGE ENDE */

/* CONTENT CONTAINER ANFANG */

.content
{
	text-align:center;
	color: #fff;
}
.space-hundret
{
	margin-top:100px;
}
.login-rahmen
{
	margin:auto;
	margin-top:100px;
	padding:20px;
	border: 3px solid #fff;
	border-radius: 20px;
	width: max-content;
}
a.login-rahmen:hover, 
a.login-rahmen:focus, 
a.login-rahmen:active
{
    border: 3px solid var(--highlight);
	color: #fff;
}

a:link, a:visited
{
	color: white;
	text-decoration: none;
}
a:hover, a:active, a:focus
{
	color: var(--highlight);
	text-decoration: none;
}

a.caution:link, a.caution:visited
{
	color: lime;
	text-decoration: none;
}
a.caution:hover, a.caution:active.caution, a:focus
{
	color: white;
	text-decoration: none;
}

.iconspacing
{
	padding-left: 20px;
}
h1
{
	font-size: 22px;
}
h2
{
	font-size: 20px;
	color: var(--highlight);
}
h3
{
	font-size: 18px;
}
.login-icon
{
	font-size: 50px;
}
.red
{
	color: #f00;
}
.lime
{
	color: #0f0;
}

#ascended-container
{
	margin-top: 0px;
	margin-bottom: -10px;
	text-align:left;
	display:flow-root;
	width:100%;
	max-width: 2004px;
	color: black;
	font-family: 'Readex Pro', sans-serif;
	border: 2px solid;
	justify-content: center;
	border-radius: 20px 20px 12px 12px;
	padding-bottom: 30px;
	background:transparent;
	opacity: 1;
	background-size:1000px;
	padding-top: 40px;
}
div.ascended-div
{
	font-family: "Righteous", sans-serif;
	font-size: 14px;
    border: 2px solid black;
	border-radius: 20px;
	width: 90%;
	min-width: 900px;
	padding: 1rem;
	margin-inline: auto;
	display: flow-root;
	background-color: rgba(255, 255, 255, 0.05);
	background-size: 1000px;
	opacity: 1;
    box-shadow: -1px 1px 20px -4px rgb(0 0 0 / 99%);
    -webkit-box-shadow: -1px 1px 20px -4px rgb(0 0 0 / 99%);
    -moz-box-shadow: -1px 1px 20px -4px rgba(0,0,0,0.99);
}
/* CONTENT CONTAINER ENDE */

/* HEADLINE ANFANG */
.ascended-title
{
	color: white;
	font-weight: bold;
	font-size: 20px  ;
	margin-top: -5px;
	margin-bottom: 5px;
	border-bottom: 2px solid white;
	text-align: left;
	padding-left: 10px;
	text-shadow: 0 -1px 0 #000, 0 1px 0 #000, 0 2px 0 #000, 0 3px 0 #000, 0 4px 0 #000, 0 5px 0 #000;
	font-family: "Righteous", sans-serif;
}
.ascended-title2
{ 
	color: white;
}
ascended-title .span:first-letter
{
	color: var(--highlight);
	font-size: 25px  ;
	border-left: 2px solid white;
	padding-left: 10px;	
}

.ascended-title:first-letter
{
	color: var(--highlight);
	font-size: 25px  ;
	border-left: 2px solid white;
	padding-left: 10px;	
}
/* HEADLINE ENDE */


/* PLAYERS ANFANG */
.online-ascended-wrapper-grid
{
	display: grid;
	grid-template-columns: 2fr 2fr; 
}
.online-ascended-wrapper
{
	display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    flex-wrap: wrap;
	align-content: stretch;
    justify-content: space-evenly;
    gap: 20px;
	padding-top: 30px;
}
.online-ascended-wrapper-asa
{
	display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    flex-wrap: wrap;
	align-content: stretch;
    justify-content: space-evenly;
    gap: 20px;
	padding-top: 30px;
	padding-right:20px;
}
.online-ascended-server
{
	position: relative;
    border: 2px solid var(--highlight);
    padding: 19px;
	min-height:80px;
    background: linear-gradient(152deg, rgb(255 255 255 / 0%) 45%, rgb(0 0 0) 100%);
}
.online-ascended-server-asa::after {
    content: "";
    position: absolute;
    bottom: 10px; /* Abstand vom unteren Rand */
    right: 10px;  /* Abstand vom rechten Rand */
    width: 100px;
    height: 100px;
    background-image: url('https://my.arkkovia.de/myascended/images/logo-ascended.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3; /* 50% Transparenz */
    pointer-events: none; /* Damit es keine Klicks blockiert */
}
.online-ascended-server-ase::after {
    content: "";
    position: absolute;
    bottom: 0px; /* Abstand vom unteren Rand */
    right: 10px;  /* Abstand vom rechten Rand */
    width: 90px;
    height: 90px;
    background-image: url('https://my.arkkovia.de/myascended/images/logo-evolved.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3; /* 50% Transparenz */
    pointer-events: none; /* Damit es keine Klicks blockiert */
}
.online-ascended-servername
{
	color:white;
	position: absolute;
    top: -11px;
    left: 7px;
    font-size: 16px;
    background: #0d0d0d;
    padding-inline: 10px;
    border: 2px solid var(--highlight);
    border-radius: 0 0 5px 0;
}
/* PLAYERS ENDE */

/* FARBOVERRIDES ANFANG */
.sblue {color:var(--highlight) !important;}
.slightblue {color: #13F4BD !important;}
.sred {color:#ff4d4d !important;}
.slred {color:#ff9492 !important;}
.sgreen {color:#5dff4d !important;}
.syellow {color:#33C4DD !important;}
.slyellow {color:#33C4DD !important;}
.sgold {color: #fbff00 !important;}
.fbold {font-weight: bold;}
.sorange {color: #4488aa !important;} 
.swhite {color:white;}
.slblue {color: #0090ff !important;}
.slpinkt {color: #b93b83 !important;}
.stuerkis {color: #00e2d4 !important;}
/* FARBOVERRIDES ENDE */

/* FOOTER ANFANG */
footer
{
    background: #000;
    padding: 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer a
{
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
	font-weight: bold;
	transition: 0.5s;
}

footer a.ascended:hover, a.ascended:active
{
    color: var(--highlight);
	transition: 0.5s;
}
footer a:hover, a:active
{
    color: red;
	transition: 0.5s;
}
/* FOOTER ENDE */

/* LINK TRANSITIONEN ANFANG */
a
{
	transition: 0.5s;
}
a:hover
{
	transition: 0.5s;
}
/* LINK TRANSITIONEN ENDE */

/* SCROLLBAR ANFANG */
*
{
	scrollbar-width: thin;
	scrollbar-color: var(--highlight) #b8b7b7;
}
*::-webkit-scrollbar
{
	width: 15px;
}
*::-webkit-scrollbar-track
{
    background: #b8b7b7;
}
*::-webkit-scrollbar-thumb
{
    background-color: var(--highlight);
    border-radius: 2px;
    border: 1px outset #000000;
}
/* SCROLLBAR ENDE */

/* DASHBOARD ANFANG */
.player-grid {  
display: grid;
font-family: "Righteous", sans-serif;
  grid-template-columns: 450px 300px auto 350px ;
  grid-template-rows: auto auto auto auto auto;
  gap: 1.5rem;
  width: 90%;
  min-width: 800px;
  grid-auto-flow: row;
  margin-left: auto;
  margin-right: auto;
  grid-template-areas:
    "player-name player-structures player-tribe player-vote"
    "player-name player-tmember player-tmember player-vote"
	"player-rank player-shop player-shop player-vote"
    "player-tribelog player-tribelog player-tribelog player-tribelog"
    "player-stats player-stats player-stats player-stats"
    ;
}

.bank-grid {  
display: grid;
font-family: "Righteous", sans-serif;
  grid-template-columns: auto ;
  grid-template-rows: auto ;
  gap: 1.5rem;
  width: 90%;
  
  min-width: 800px;
  grid-auto-flow: row;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  grid-template-areas:
    "playershop-bank"
    ;
}

.player-vote { grid-area: player-vote; }
.player-shop { grid-area: player-shop; }
.player-rank { grid-area: player-rank; }
.player-tribelog { grid-area: player-tribelog; }
.player-name { grid-area: player-name; }
.player-structures { grid-area: player-structures; }
.player-tribe { grid-area: player-tribe; }
.player-tmember { grid-area: player-tmember; }
.player-stats { grid-area: player-stats; }

.player-list
{
	position: relative;
	text-align: left;
	padding-top: 7px;
	color: white;
	font-size: 13px;
	width: 100%;
	font-family: "Righteous", sans-serif;
}
.player-warning{
	color: var(--highlight);
	font-size: 16px;
	text-align: center;
}

.playerlist-votesgewinn{text-align: right; padding-right: 15px;}
.playerlist-activity{}
.playersmall{font-size: 10px;}
.playerlist-pname{font-size: 30px; padding-left: 1px; float:left; margin-top:1px;	}
.playerlist-plevel{font-size: 30px; padding-right: 10px; float:right; margin-top:5px;}
.playerlist-psname{ font-size: 12px; padding-left: 15px; 	float: left;}
.playerlist-psnameright{font-size: 12px; padding-right: 15px; 	float: right; text-align: right;}
.playerlist-logout{font-size: 16px; padding-left: 15px;	}
.playerlist-votes{width: 40%; float: left; padding-left: 2px;}
.playerlist-shop{float:left; padding-left: 15px;}
.playerlist-shopdatum{width: 130px; float:left; padding-left: 15px;}
.playerlist-shopserver{width: 90px; float:left; padding-left: 15px;}
.playerlist-shoppoint{width: 70px; float:right; text-align: right; padding-right: 15px;}
.playerlist-votes{width: 40%; float: left; padding-left: 2px;}
.playerlist-votes-datum{width: 30%; float: left; padding-left: 2px;}
.playerlist-votesmonat{width: 90%; float:left; padding-left: 15px;}
.playerlist-votesgewinn{text-align: right; padding-right: 15px;}
.player-rangleft{font-size: 14px; padding-left: 0px;float:left; clear:left; }
.player-tmemberleft{font-size: 14px; padding-left: 10px;float:left;}
.player-memberleft{padding-left: 8px;float:left; word-spacing: 6px;display: contents;}
.player-rangright{font-size: 14px; padding-left: 40px; float:right; clear: right;color: var(--highlight);}
.player-stats{vertical-align: top;  float:left; padding-left:20px; color: white;}
.player-img{vertical-align: center; height: 190px;}
.player-center{text-align:center; float:none; padding:0px;}
.player-struc{width: 90px; float:left; padding-left:15px;}
.player-cred{color: LightPink;}
.cred{color: LightPink;}
.player-cgreen{color: LightGreen;}
.cgreen{color: LightGreen;}
.player-uline{border-bottom: 1px solid white;}
.tribe-name{width: 200px; float:left; padding-left:15px;}
.tribe-select{width: 100%; float:left; padding-left:15px;}
.tribe-time{width: 200px; float:left; padding-left:5px;}
.tribe-server{width: 130px; float:left; }
.tribe-server2{width: 130px; float:left; padding-left: 15px; }
.tribe-activity{float:none; padding-left: 15px; }
.tribe-nonfloat{width: 800px; float:none; padding-left: 15px; }
.tribe-login{ float:right; }
.tribe-logbutton{ width: 100%; text-align:center;float:left; }

.player-title
{
	color: white;
	font-weight: bold;
	font-size: 20px  ;
	margin-top: -5px;
	margin-bottom: 5px;
	border-bottom: 2px solid white;
	text-align: left;
	padding-left: 10px;
	text-shadow: 0 -1px 0 #000, 0 1px 0 #000, 0 2px 0 #000, 0 3px 0 #000, 0 4px 0 #000, 0 5px 0 #000;
	font-family: "Righteous", sans-serif;
	/* position: relative; */
}
.player-title2
{ 
color: white;

}
player-title .span::first-letter {
	color: var(--highlight);
	font-size: 25px  ;
	border-left: 2px solid white;
	padding-left: 10px;	
}

.player-title::first-letter {
	color: var(--highlight);
	font-size: 25px  ;
	border-left: 2px solid white;
	padding-left: 10px;	
}

.player-title::first-letter {
	color: var(--highlight);
	font-size: 25px  ;
	border-left: 2px solid white;
	padding-left: 10px;	
}
.playerlist-pname::first-letter {
	color: white;
	background-color: var(--highlight);
	border-radius: 8px;
	font-size: 35px  ;
	margin-left: 15px;
	margin-right:2px;
	padding-left: 3px;	
	padding-right: 3px;	
	
}
.playerlist-plevel::first-letter {
	color: white;
	background-color: var(--highlight);
	border-radius: 8px;
	font-size: 35px  ;
	margin-left: 15px;
	margin-right:2px;
	padding-left: 3px;	
	padding-right: 3px;		
}

.player-div
{
	border: 2px solid black;
	color: white;
	border-radius: 20px;
	padding: 1rem;
	font-size: 12px;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.05);
	opacity: 1;
	background-size:1000px;
	box-shadow: -1px 1px 20px -4px rgba(0,0,0,0.99);
	-webkit-box-shadow: -1px 1px 20px -4px rgba(0,0,0,0.99);
	-moz-box-shadow: -1px 1px 20px -4px rgba(0,0,0,0.99);
}

.iconsmall
{
    font-size: 10px;
    text-align: center;
    vertical-align: middle;
    color: var(--highlight);
}
/* DASHBOARD ENDE*/

/* TRIBE ANFANG */
.playertribe-grid {  
	display: grid;
	font-family: "Righteous", sans-serif;
  grid-template-columns: 450px 300px auto 350px ;
  grid-template-rows: auto auto auto auto auto;
  gap: 1.5rem;
  width: 90%;
  
  min-width: 800px;
  grid-auto-flow: row;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  grid-template-areas:
    "tribe-tribes tribe-tribes tribe-member tribe-member  "
    "tribe-log tribe-log tribe-log tribe-log"
	"player-rank player-shop player-shop player-vote"
    "player-tribelog player-tribelog player-tribelog player-tribelog"
    "player-stats player-stats player-stats player-stats"
    ;
}
.tribe-tribes  { grid-area: tribe-tribes ; }
.tribe-member  { grid-area: tribe-member ;     white-space: nowrap; }
.tribe-log  { grid-area: tribe-log ; }
.tribe-struc  { grid-area: tribe-struc ; }

.new_tribelog_wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 4fr;
}
.tribelog_icon {
    width: 1rem;
	position: relative;
    display: block;
    /* background: red; */
    aspect-ratio: 1;
    float: left;
    margin-right: 10px;
}
.tribelog_icon > i{
	font-size: 15px;
	
}
.tribe-activity {
    /* clear: right; */
    white-space: nowrap;
    overflow: hidden;
    float: left;
    padding-bottom: 8px;
    padding-left: 15px;
    width: 800px;
    margin-bottom: 21px;
    border-bottom: 1px dotted white;
}
.tribe-activity {
	clear: right;
    white-space: nowrap;
	overflow: hidden;
}
.tribe-server2 {
	font-size: 12px;
    clear:left;
    float: left;
    padding-left: 15px;
	width: 100px;
}
.tribe-time {
    float: left; width: 150px; font-size: 12px;
    padding-left: 5px;
}
select.player-select
{
	width:200px;
	font-size:12px;
	padding-left: 5px;
	margin-left: 15px;
	border:1px solid white;
	border-radius:7px;
	transition: box-shadow 0.3s, border 0.3s;
	background-color: #3E3E3E;
	color: #D5D5D5;
	line-height: 0.5;
	margin-top:10px;
	float: left;
}

select.player-select:focus, select.player-select:hover
{
	width:200px;
	font-size:12px;
	background-color: #3E3E3E;
	color: #D5D5D5;
	line-height: 1;
}
/* TRIBE ENDE */

@media only screen and (max-width: 1500px) {
  .player-grid {
	  width:90%;
	 grid-template-columns: auto auto;
	 grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-areas:
    "player-name player-rank player-rank"
    "player-tmember player-vote player-vote"
    "player-tribe player-vote player-vote"
    "player-structures player-vote player-vote"
	"player-shop player-shop player-shop"
    "player-tribelog player-tribelog player-tribelog"
    "player-stats player-stats player-stats"
    ;
}
.playertribe-grid {  
	
  grid-template-columns: auto auto;
  grid-template-rows: auto ;
  grid-template-areas:
    "tribe-tribes tribe-tribes"
    "tribe-member tribe-member"
	"tribe-log tribe-log"
    ;
}
.tribe-activity {
	clear: right;
    white-space: nowrap;
	overflow: hidden;
}
.tribe-server2 {
	font-size: 12px;
    clear:left;
    float: left;
    padding-left: 15px;
	width: 100px;
}
.tribe-time {
	
    float: left; width: 150px; font-size: 12px;
    padding-left: 5px;
}
}
@media only screen and (max-width: 1000px) {
.arkkovia-info {
	display:none;
}
.qplatz {
	display:none;
}
}
@media only screen and (max-width: 1350px) {
  .player-grid {
	  width:90%;
	  min-width: 800px;
	/* grid-template-columns: 60% 40% ;*/
	 grid-template-rows: auto ;
    grid-template-areas:
    "player-name player-name"
    "player-rank player-tmember"
    "player-tribe player-structures"
    "player-vote player-vote"
	"player-shop player-shop"
    "player-tribelog player-tribelog"
    "player-stats player-stats"
    ;
}

.playerlist-time {font-size: 12px; clear:left; width: 130px; padding-left: 10px;}
.playerlist-tribe { width: 200px; float: left;display: none; }
.playerlist-server { font-size: 12px; width: 150px; float: left;}
.playerlist-activity {font-size: 12; height: 18px; clear: right; overflow: hidden;}

.playershop-grid {  
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas:
    "playershop-log"
    "playershop-trades"
    "playershop-history"
    ;
}



.tribe-activity {
    /* clear: right; */
    white-space: nowrap;
    overflow: hidden;
    float: left;
    padding-bottom: 8px;
    padding-left: 15px;
    width: 800px;
    margin-bottom: 21px;
    border-bottom: 1px dotted white;
}
}


/* Chat Anfang */
div.chatchatleft {
	width: 20%;
	text-align: left;
	float:left;
	
}

div.chatchatright {
	
	text-align: right;
	float:right;
	margin-right: 15px;
	
}
div.chatrightlow {
	width: 100%;
	text-align: left;
	color:white;
	padding-left: 10px;
	padding-right: 10px;
}
div.chatrightlowname {
	text-align: left;
	float:left;
	font-size: 16px;
	padding-left: 5px;
}
@media screen and (max-width: 400px) {
  div.chatchatright {
    float: left;
	text-align: left;
	padding-left: 5px;
	padding-top: 2px;
	width: 100%;
  }
}
div.chatrow-upper {	
color:var(--highlight);
text-align: left;
width: 100%;
font-size: 16px;
line-height: 1;
overflow:hidden;
padding-top: 6px;
padding-left: 10px;
font-weight:200;
}
#chatmain {
	display: flow-root;
	margin-left:10px;
	margin-right:10px;
	margin-top:20px;
	position: relative;
}
div.chatrow-lower {	
text-align: left;
line-height: 1.5;
font-size: 16px;
margin-top: 4px;
padding-bottom: 6px;
padding-left: 20px;
padding-right: 55px;
font-weight: 000;
word-wrap: break-word;
}
#text {
	width: 80%;
	background-color: #e7e7e7;
	border: 1px solid black;
	border-radius: 5px;
	padding-right: 10px;
	height: 2rem;
}
#submit {
	appearance: auto;
    writing-mode: horizontal-tb !important;
    font-style: ;
    font-variant-ligatures: ;
    font-variant-caps: ;
    font-variant-numeric: ;
    font-variant-east-asian: ;
    font-weight: ;
    font-stretch: ;
    font-size: ;
    font-family: ;
    text-rendering: auto;
    color: buttontext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    margin: 0em;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
	height: 2rem;
    width: 3rem;
}
.bggray {
	background-color: #24232340;
	border-bottom: 1px solid black;
	border-top: 1px solid black;
	margin-left: -15px;
	margin-right: -15px;
}
.bgwhite {
	margin-left: -15px;
	margin-right: -15px;
	background-color: #40404040;
	
}

/* Chat Ende */

/* Spenden Anfang */
.progress-tcontainer {
    display: flex;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.progress-tcontainer > div.quest-bar-container-new {
	height: 30px;
}

.new-tquest-title {
display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    color: white;
    align-items: center;
    filter: drop-shadow(2px 2px 4px black);
}

div.quest-bar-container-new {
	width: 100%;
    float: left;
    height: 18px;
    border: 0px solid black;
    border-radius: 3px;
    display: block;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}
.quest-bar-container-new > .quest-bar-progress-new {
	-webkit-animation: progress-bar2 2s;
	-moz-animation: progress-bar2 2s;
	animation: progress-bar2 2s;	
}
.quest-bar-progress-new {
    position: absolute;
    /* background: linear-gradient(90deg, rgb(24 129 134) 0%, rgb(0 169 162) 80%, rgb(3 255 248) 120%); */
	background: linear-gradient(90deg, #004477 0%, #006699 80%, #0099AA 120%);
    left: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #007e82;
    width: 100%;
    z-index: 1;
	grid-area: bar;
}
.quest-bar-background-new {
    background: #0b3537a1;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.tquest-active-countdown {
	background: #0a2426;
    position: relative;
    display: flex;
    box-sizing: border-box;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
	margin-top:-6px;
    height: 26px;
    justify-content: center;
}
.active-time-quest-wrapper > .new-quest-info-flex {
    grid-row: 1;
	position: absolute;
    right: -20px;
	width: max-content;
}

.active-time-quest-wrapper {
    display: grid;
    grid-template-columns: 100% 0%;
    position: relative;
    align-content: center;
    align-items: center;
    justify-items: stretch;
    margin: 10px;
    grid-template-rows: 1fr;
    gap: 1%;
}
/* Spenden Ende */

/* Award Anfang */
.stat-flexbox {
    display: flex;
    margin-inline: auto;
    /* width: 100%; */
    align-content: center;
   
    justify-content: space-between;
    justify-content: center;
    flex-flow: wrap;
    gap: 2%;
}
.award-container{
	font-family: "Righteous", sans-serif;
	display: flow-root;
	isolation: isolate;
	/* border: 3px solid white; */
	width: 150px;
	float: left;
	overflow: hidden;
	margin: 10px;
	padding: 5px;
}

img.award-podium {
    width: 100%;
    margin-top: -21px;
    position: relative;
    z-index: -1;
}
.award-image img{
    width: 100%;
    aspect-ratio: 1;
    margin-inline: auto;
    display: block;
    margin-top: -15px;
    margin-bottom: -10px;
}
/* Award Ende */

/* Votes Anfang */
.votes-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    justify-items: stretch;
    width: 100%;
}
.votes-history-date {
    margin-top:20px;
}
.votes-history-gewinn {
    text-align:right;
}
/* Votes Ende */

/* Profil Anfang */
.warn-list {
	display: block;
	float: none;
	margin-top: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #ffffff40;
}
.warn-title {
	display: block;
	float: none;
	margin-top: 5px;
	margin-bottom: 15px;
}
.warn-content {
	float:left;
	padding-left: 15px;
	min-width: 80px;
}
.warn-tribe {
	float:left;
	padding-left: 15px;
	width: 150px;
}
.warn-art {
	float: left;
	margin-left: 5px;	
	margin-right: 5px;	
	width: 10px;
	height: 10px;
	border: 1px solid black;
}
.warn-orange{
	background-color: orange;
}
.warn-yellow{
	background-color: yellow;
}
.warn-red{
	background-color: red;
}
.warn-green{
	background-color: green;
}

.bordergreen{
	border: 1px solid green;
	border-radius: 12px;
}
.borderred{
	border: 1px solid lightpink;
	border-radius: 12px;
}

.info {
	font-size: 16px;
	text-align: center;
	padding: 5px 15px 5px 15px;
	
	margin-inline: auto;
	display: table;
}

.profile-wins
{
	margin:auto;
	width:50%;
	float:left;
}
.profile-warn
{
	margin:auto;
	width:50%;
	float:left;
}

.profiledata{
	float: left;
	font-size:16px;
	margin-left: 15px;
	margin-right: 15px;
}
.profiledata-player {
	display: grid;
	border-left: 1px solid #ffffff54;
	border-bottom: 1px solid #ffffff54;
	margin-bottom:10px;
	padding-bottom:5px;
	padding-top:5px;
	position:relative;
}
.profiledata-list {
	border: 2px solid black;
	background-color: #ffffff0d;
	width: 25%;
	display: block;
	float:left;
	margin:10px 3px 10px 4px;
	padding:15px;
}
.clearright{
	clear: right;
	text-align: right;
}

span.votingcheck {
    position: absolute;
    left: 170px;
    top: 8px;
}

.fullwidth{
	width: 95%;
	display: inline-block;
	margin-top: 20px;
}

a.editprofile{
	padding-top:	5px;
	padding-bottom:	5px;
	margin-inline: auto;
	font-size: 15px;
	color: var(--highlight);
	text-align: center;
	background-color: black;
	display: block;
	width: max-content;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 12px;
	padding-right: 12px;
	float:right;
}

a.editprofile:hover{
	background-color: black;
	color: var(--highlight);
	cursor: pointer;
	display: block;
	box-shadow: 0px 0px 30px 5px var(--highlight);
}

a.editprofile66 {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-inline: auto;
    font-size: 15px;
    color: var(--highlight);
    text-align: center;
    background-color: black;
    display: block;
    width: max-content;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 12px;
    padding-right: 12px;
    float: right;
    top: -40px;
}
a.editprofile66:hover{
	background-color: black;
	color: var(--highlight);
	cursor: pointer;
	display: block;
	 box-shadow: 0px 0px 30px 5px var(--highlight);
}

a.editprofileback {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-inline: auto;
    font-size: 15px;
    color: var(--highlight);
    text-align: center;
    background-color: black;
    display: block;
    width: max-content;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 12px;
    padding-right: 12px;
    top: -40px;
}
a.editprofileback:hover{
	background-color: black;
	color: var(--highlight);
	cursor: pointer;
	display: block;
	box-shadow: 0px 0px 30px 5px var(--highlight);
}
/* Profil Ende */



/* Voteübersicht Anfang */

.votes-sucuss {
	position: absolute !important;
    inset: 0;
    z-index: 2!important;
	opacity: 0.3;
}
.voting-server {
    float: left;
    width: 200px;
}
p.voting-card {
    color: white;
    background: #003d47;
    position: absolute;
    top: -19px;
    left: 0px;
    right: 0px;
    text-align: center;
    font-size: 18px;
	z-index: 3;
}
div.voting-card {
	color: white;
    width: 300px;
    position: relative;
    border: 1px solid;
    /* float: left; */
    /* display: flex; */
    flex-wrap: wrap;
    text-align: left;
    padding-left: 14px;
    padding-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
    padding-top: 28px;
}
.votes-container {
    display: flex;
    justify-content: center;
    gap: 10px;
	row-gap: 23px;
    flex-direction: row;
    flex-wrap: wrap;
} 
p.voting-card-full {
	color: white;
    position: absolute;
    background: #ff000029;
    text-align: center;
    inset: 0;
    display: grid;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 0px
}
.voting-card > div {
	position: relative;
	z-index: 3;
}


/* Voteübersicht Ende */

/* Shop Anfang */

.quest-div {
	font-family: "Righteous", sans-serif;
    border: 2px solid black;
    color: white;
    border-radius: 20px;
    padding: 1rem;
    font-size: 15px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
    background-size: 1000px;
    box-shadow: -1px 1px 20px -4px rgb(0 0 0 / 99%);
    -webkit-box-shadow: -1px 1px 20px -4px rgb(0 0 0 / 99%);
    -moz-box-shadow: -1px 1px 20px -4px rgba(0,0,0,0.99);
    width: 90%;
    display: flow-root;
    margin-inline: auto;
    min-width: 900px;
}

.new-daily-container {
    position: relative;
    width: 100%;
    display: flow-root;
    border: 3px solid #045353;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 21px;
    background: linear-gradient(164deg, rgba(255,255,255,0) 0%, rgb(0 0 0) 100%);
}

.new-daily-title {
    position: relative;
    text-align: left;
    margin-top: -36px;
    margin-left: -10px;
    font-size: 14px;
    z-index: 2;
    width: max-content;
    color: #ffffff;
    background: #101010;
    padding: 2px 15px 3px 15px;
    border: 3px solid #045353;
}

div.shoptitem {
	width: 20%;
    border: 1px solid white;
    display: flow-root;
    border-radius: 3px;
    margin: 5px;
    overflow: hidden;
    float: left;
    background-color: #000000a1;
    max-width: 150px;
    min-width: 100px;
	position: relative;
	    max-height: 161px;
}
div.shopcheck {
	margin-inline: auto;
	    display: inline-flex;
}
div.shop-check {
	font-size: 22px;
	text-align: center;
	padding: 10px;
	float: left;
}
div.shoptitem-title {
    font-size: 14px;
    text-align: left;
    width: 100%;
    padding-left: 10px;
    background-color: #008c835e;
    border-bottom: 2px solid #ffffff6b;
    overflow: hidden;
}
.shoptitem-img {
	max-width: 50%;
    max-height: 80%;
    margin-inline: auto;
	padding: 5px;
    margin: 10px;
}
.shoptitem-img-without {
	filter: invert(0%) ;
}
.shoptitem-img-vanilla {
	filter: invert(100%) ;
}
.shoptitem-img-aberrant {
	filter: invert(60%) sepia(30%) saturate(3000%) hue-rotate(210deg) brightness(100%) contrast(100%);
}
.shoptitem-img-bionic {
	filter: invert(60%) sepia(40%) saturate(3000%) hue-rotate(180deg) brightness(100%) contrast(100%);
}
.shoptitem-img-rockwell {
	filter: invert(60%) sepia(17%) saturate(3000%) hue-rotate(80deg) brightness(100%) contrast(100%);
}
div.shoptitem-info {
	padding-left: 9px;
    padding-right: 6px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-right: 1px solid white;
    border-top: 1px solid white;
    color: var(--highlight);
    float: left;
    cursor: pointer;
	 transition: 0.5s;
}
div.shoptitem-info:hover {
	background-color: var(--highlight);
	color: white;
}
div.shoptitem-cost {
    border-right: 1px solid white;
    border-top: 1px solid white;
    font-size: 13px !important;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    float: left;
    width: 33%;
}
div.shoptitem-buy {
	padding-left: 11px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-top: 1px solid white;
    overflow: hidden;
    cursor: pointer;
}
.shopgreen { background-color: black; color: var(--highlight); transition: 0.5s;}
.shopgreen:hover { background-color: var(--highlight); color: white;}
.shopred { background-color: #8000005c; color: red;}

span.qpoints {
	float: right;
    font-size: 20px;
    font-weight: 100;
}

.quest-title-inline {
    color: #dd0000;
    position: relative;
    top: 5px;
    font-weight: bold;
    font-size: 18px;
    min-height: 1px;
    margin-top: -22px;
    margin-bottom: 19px;
    padding-top: 40px;
    border-bottom: 2px dotted #ffffff9c;
    text-align: center;
    text-shadow: 0 -1px 0 #000, 0 1px 0 #000, 0 2px 0 #000, 0 3px 0 #000, 0 4px 0 #000, 0 5px 0 #000;
    font-family: "Righteous", sans-serif;
}

/* Trades Anfang */
.aukt-radio {
    display: flex;
    align-content: center;
    justify-content: space-between;
    gap: 44px;
	position: relative;
}
.aukt-radio > textarea {
    width: 217px;
    resize: vertical;
    height: 85px;
}
.aukt-radio > input {
  border: 1px solid gray;
  border-radius: 6px;
  position: relative;
  padding-left: 17px;
  width: 200px;
  line-height: 6ex;
  margin-top:20px;
  font-size: 16px;
  width: 100%;
}

.aukt-radio > textarea {
  border: 1px solid gray;
  border-radius: 6px;
  position: relative;
  padding-left: 5px;
  font-size: 14px;
  width: 100%;
  padding-top: 10px;
  margin-top:20px;
}

.aukt-radio > input::placeholder , .aukt-radio > textarea::placeholder {opacity:0;}

.aukt-radio > label {
    position: absolute;
    top: 20px;
    z-index: 1;
    left: 17px;
    font-size: 18px;
    color: black;
    padding: 0 5px;
    transition: all 0.2s;
}
.aukt-radio > input:focus + .control-label
{
    top: 8px;
    z-index: 1;
    font-size: 15px;
	background-color: black;
	color: white;
	border: 1px solid gray;
	border-radius: 5px;
}

.aukt-radio > textarea:focus + .control-label {
    top: 8px;
    z-index: 1;
    font-size: 15px;
	background-color: black;
	color: white;
	border: 1px solid gray;
	border-radius: 5px;	
}
.aukt-radio > textarea:not(:placeholder-shown) + .control-label {
	top: 8px;
    z-index: 1;
    font-size: 15px;
	background-color: black;
    color: #06f60d;
	border: 1px solid gray;
	border-radius: 5px;	
}

.aukt-radio > input:not(:placeholder-shown) + .control-label {
	top: 8px;
    z-index: 1;
    font-size: 15px;
	background-color: black;
    color: #06f60d;
	border: 1px solid gray;
	border-radius: 5px;
}

.sendbutton{
    margin-left: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
    color: var(--highlight);
    text-align: center;
    background-color: black;
    display: block;
    width: 100px;
    margin-inline: auto;
    margin-top: 20px;
    transition: 0.5s;
}
input.silbersend {
	width: 100px;
}
.sendbutton:hover{
	background-color: black;
	color: #00dcff;
	cursor: pointer;
	display: block;
	 box-shadow: 0px 0px 30px 5px var(--highlight);
}

form#sendgold {
    width: 250px;
    margin-inline: auto;
}
.tradinggold {
	width: 30%;
	margin-inline:auto;
}
div.trade-uebersicht {
    display: flow-root;
    border: 5px solid var(--highlight);
    border-radius: 20px;
    padding: 20px;
    width: 400px;
    margin-inline: auto;
	overflow: hidden;
    position: relative;
}
p.trade-uebersicht {
    font-size: 20px;
    color: white;
    padding: 10px;
    margin-top: -20px;
    text-align: center;
    margin-left: -20px;
    padding-left: 6px;
    background: black;
    width: 120%;
}
.trade-daten {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    justify-items: stretch;
    flex-wrap: wrap;
}
.trade-daten > div {
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
}
.trading-fav-list {
	display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px 50px 50px;
    gap: 15px;
    flex-wrap: wrap;
}
.trading-fav-list-card {
	position: relative;
    width: 200px;
    border: 2px solid white;
    border-radius: 0 30px;
    padding: 30px;
    margin-inline: auto;
    transition: all 0.4s;
    max-width: 180px;
}
.trading-fav-list-card:hover {
    border-color: var(--highlight);
    background: #00000094;
    cursor: pointer;
}
.trading-fav-list-card > div.name {
    position: absolute;
    top: 2px;
    left: 13px;
    font-size: 25px;
}
.trading-fav-list-card > div.del {
    position: absolute;
    bottom: 5px;
    right: 12px;
    font-size: 18px;
}
.trading-history-flex {
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.trading-history-list {
    position: relative;
    padding: 14px 0 14px 0;
    padding-top: 7px;
    margin-top: -5px;
    width: 48%;
    min-width: 734px;
    border-left: 2px solid white;
}
/* Trades ENDE */

/*  Max Stats */
.dropdown-content {
  display: none;
    position: absolute;
    background-color: #282828;
    width: max-content;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    max-height: 338px;
}

.dropdown-content a {
	text-align: left;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	background: #0f0f0f;
}

.dropdown a:hover {background-color: #3b3b3b;}



.dropbtn {
    background-color: #008c83;
    color: white;
    padding: 9px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 12px;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #003330;
}

#myInput {
	box-sizing: border-box;
    color: white;
    width: 100%;
    background: #00000014;
    background-image: url(https://cdn-icons-png.flaticon.com/512/61/61088.png);
    background-position: 13px 9px;
    background-size: 30px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 5px solid #ddddddad;
}

#myInput:focus {outline: 3px solid #fffcfc00;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
    position: absolute;
    background-color: #282828;
    width: max-content;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    max-height: 338px;
}

.dropdown-content a {
	text-align: left;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	background: #0f0f0f;
}

.dropdown a:hover {background-color: #3b3b3b;}

.show {display: block;}
.dinobank-content {
    width: 100%;
    display: flow-root;
	 /* min-height: calc(100% + 300px); */
} 
.soul-inline {
	    margin-top: 15px;
    padding-top: 12px;
    width: 96%;
    /* margin-left: 0; */
    border: 1px solid #ffffff6b;
    border-radius: 20px;
    display: inline-block;
    margin-inline: auto;
    padding-left: 12px;
    padding-right: 10px;
    padding-bottom: 300px;
}

.soul-container {
	position: absolute;
	transform: scale(0.0);
	/* display: none; */
	width: 600px;
	margin: 15px;
	margin-top: -300px;
	/* height: 500px; */
	border:1px solid white; 
	/* background: lime; */
	top:0px;
	/* left:0px; */
	text-align: left;
	background: #0b3c4b;
	z-index: 1;
	/* transition: all 0.4s; */
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.55, 0.09, 0.68, 0.53);
    transition-delay: 0.5s;
    transition-property: all;
}
.ball:hover ~ .soul-container {
	transform: scale(0.8);
	/* left:-54px; */
	transition: all 0.4s;
	transition-delay: 0.2s; 
}
.soul-container:hover {
	transform: scale(1.0);
	transition: all 0.4s;
	/* transition-delay: 1s;  */
}


.soul-upper-info {
    box-sizing: border-box;
	position: relative;
    height: 237px;
	background: #0b3c4b;
}
.soul-lower-color {
	display: flow-root;
	background: #052933;
    border: 2px solid #177790;
    margin: 10px;
	height: max-content;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.soul-color-info {
    box-sizing: border-box;
    position: relative;
    background: #0b3c4c;
    display: flex;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}
.soul-mut-info {
	box-sizing: border-box;
	width:50%;
	float: left;
	/* height: 50%; */
	/* background: lime; */
	/* border: 5px solid black; */
}
p.soul-smallinfo{
    font-size: 10px;
    margin: 0;
    padding-left: 10px;
    color: #89b4bb;
}
p.dino-title {
	font-size: 18px;
	margin-top:0;
	margin-left: 12px;
}
p.dino-class {
    font-size: 12px;
    margin-top: -16px;
    margin-left: 12px;
}
.ssoulcolor {color:#76d6eb;}
.male {color:#76d6eb ;}
.female {color:#eb53eb ; }
a.female {color: #ffadff;}
.nogender {color:#ff8d00 ;}

a.female:visited {color:#ffadff ;}
a.male:visited {color:#76d6eb ;}
a.nogender:visited {color:#ff8d00 ;}

a.female:hover, a.male:hover, a.nogender:hover
{
	color:red;}

.soul-dino-bild {
    position: relative;
    background: #04151a;
	border: 2px solid #1a768f;
    aspect-ratio: 1;
	height: 75%;
    left: 12px;
    float: left;
    margin-right: 25px;
}

.soul-dino-bild img {
	width: 100%;
	height: 100%;
}
p.soul-info {
	font-size: 14px;
	margin-top: -12px;
}
img.schnuller {
	position: absolute;
	top:0px;
	right:0px;
	width:40px;
	height:40px;
	z-index: 1;
}
div.soul-info {
    margin-top: -9px;
}
div.soul-color {
    box-sizing: border-box;
    text-align: center;
    width: 88px;
    padding: 5px 0;
    margin: 4px;
    border: 3px solid #000000ba;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    cursor: pointer;
}
p.mut-line1 {
    padding-left: 10px;
    margin: 2px;
	margin-top:10px;
}
p.mut-line2 {
    padding-left: 30px;
	margin: 5px;
}
p.mut-line3 {
    padding-left: 15px;
    margin: 2px;
	margin-bottom: 10px;
}
.soul-stat-info {
    width: 100%;
    float: left;
    margin-left: 15px;
}
p.stat {
	width:33%;
	float:left;
	font-size: 18px;
    margin: 0px;
    margin-top: 4px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
}
.stat-symbol {
	font-size: 22px;
	color:#baf3ff;
}
.novalue {
	opacity: 0.4;
}
.cright2 {
    float: right;
    clear: right;
    margin-right: 20px;
}
.soul-right {
	position: relative;
	float: right;
	
}
.dino-liste {
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    background: #0000005c;
    margin-top: 5px;
    /* border-radius: 7px; */
    border-bottom: 1px solid #ffffff80;
}
.didetail-id {
    width: 250px; 
	    position: relative;
}
.didetail-id2 {
    width: 200px;
}
.didetail-stat { width: 80px; text-align: center; }
.didetail-gen { width: 50px; text-align: center; margin-right:5px; }
.didetail-color { 
    display: flex;
    width: 164px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 5px;
    overflow: hidden;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.soul-border {
    border-right: 1px solid #ffffff61;
    border-left: 1px solid #ffffff61;
    background: #d2d2d20d;
    height: 27px;
    margin-top: -5px;
    overflow: hidden;
}
ds.colorbox {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2px;
    width: 50px;
    height: 19px;
    border: 1px solid #707070;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
a.dinolistlink, a.dinolistlink:visited {
	color: #ffffff99;
}
a.dinolistlink:hover,  a.dinolistlink:active {
	color: white;
}
p.maxstats {
    color: lightblue;
    padding: 5px;
    margin: 0;
    border-bottom: 0;
}
.soul-container2 {
    position: relative;
    /* display: none; */
    width: 600px;
    /* height: 500px; */
    border: 1px solid white;
    /* background: lime; */
    /* top: 0px; */
    margin-left: auto;
    margin-right: auto;
    /* left: 500px; */
    text-align: left;
    background: #0b3c4b;
}
div.maxstats {
    background: #94fff529;
    padding: 0;
    margin: 0;
    border-bottom: 0;
    padding-bottom: 2px;
    font-size: 13px;
    color: #06e8ff;
    font-weight: 100;
}
ds.fa-solid {
	margin-right: 5px;
	width: 15px;
}

.soul-info-inline {
	margin-top: 15px;
    padding-top: 12px; 
    width: 96%;
    /* margin-left: 0; */
    border: 1px solid #ffffff6b;
    border-radius: 20px;
    display: inline-block;
    margin-inline: auto;
    padding-left: 12px;
    padding-right: 10px;
    text-align: left;
    padding-bottom: 22px;
}
.soul-menu {
    display: flex;
    width: 213px;
    height: 43px;
    position: relative;
    top: 24px;
    left: 79px;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}
.soul-menu div {
    background: #000000;
    padding: 3px;
    border: 1px solid #787878;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px 10px 0 0;
}
.cgray {
	color: gray;
	opacity: 0.3;
}


/* ######### soul ball */

.ball {
    width: 15px;
    display: inline-block;
    height: 15px;
    margin: 0;
    margin-right: 5px;
    margin-bottom: -2px;
    border-radius: 50%;
    position: relative;
}
.ballmale {background: radial-gradient(circle at 50% 120%, #81e8f6, #76deef 10%, #055194 80%, #062745 100%);}
.ballfemale {background: radial-gradient(circle at 50% 120%, #feade9, #feade9 10%, #94057e 80%, #4f073f 100%);}
.ballnogender {background: radial-gradient(circle at 50% 120%, #ffeabf, #ffc699 10%, #d27d00 80%, #7c4b00 100%);}
.ball:before {
    content: ""; 
    position: absolute;
    top: 7px;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 0px, #ffffff, rgba(255, 255, 255, 0) 58%);
    -webkit-filter: blur(5px);
    z-index: 2;
} 

.ball .shadow {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 50%);
-webkit-transform: rotateX(90deg) translateZ(-150px);
-moz-transform: rotateX(90deg) translateZ(-150px);
-ms-transform: rotateX(90deg) translateZ(-150px);
-o-transform: rotateX(90deg) translateZ(-150px);
transform: rotateX(90deg) translateZ(-150px);
z-index: -1;
}

.slegend {
	padding-left: 0px;
	padding-right: 10px;
	margin-left: -2px;
}

fieldset.ds-fieldset {
    margin-top: 20px;
    color: white;
    width: 20px;
    /* float: left; */
    margin-right: 50px;
    padding-bottom: 20px;
}
fieldset.ds-fieldset-legende {
    margin-top: 20px;
    display: flex;
    width: 296px;
    color: white;
    /* width: 20px; */
    /* float: left; */
    margin-right: 50px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
.soul-pages {
	margin-top: 10px;
    display: flex;
    /* border: 1px solid white; */
    height: 40px;
    padding-top: 12px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;	
}
.soul-link {
	padding-left: 5px;
	padding-right: 5px;	
}
.soul-link:hover {
	font-size: 18px;
}
p.soul-info-gacha {
    margin: 0;
    font-size: 14;
    padding-left: 12px;
    padding-top: 91px;
}
.info-saddle {
	padding-top: 94px;
}

p.saddle-armor {
    position: relative;
    margin-left: 62px;
    padding: 15px;
    padding-bottom: 0;
}
img.saddle {
    padding: 5px;
    margin-top: 10px;
    width: 47px;
    aspect-ratio: 1;
    border: 3px solid;
    background-color: #00ffff0d;
    float: left;
}

.floatleft{float: left;}

.soulmap {
	width: 250px;
}
.soulsouls{
	width: 100px;
}

.soul-info-server {
    position: relative;
    min-width: 750px;
    float: right;
}

.soul-filter-container {
    display: flex;
    align-content: space-between;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.stat-flexbox {
    display: flex;
    margin-inline: auto;
    /* width: 100%; */
    align-content: center;
    justify-content: space-between;
    justify-content: center;
    flex-flow: wrap;
    gap: 2%;
}

.stat-container{
	font-family: "Righteous", sans-serif;
	display: flow-root;
	border: 3px solid white;
	width: 150px;
	float: left;
	overflow: hidden;
	margin: 10px;
	padding: 5px;
}

.scale-small {
	transform: scale(0.9);
	transition: all 0.4s;
	border: 2px solid #ffffff7d;
	border-radius: 5px;
}
.scale-hover {
	opacity: 0.8;
	transition: all 0.4s;
	margin: 0px;
}
.scale-hover:hover {
	transform: scale(1.0);
	opacity: 1;
	transition: all 0.4s;
	cursor: pointer;
}
.cyan-text {
	color: #00f8ff;
	background-color: #ffffff00;
}
.stat-text {
	color: white;
}
.stat-zahl {
	text-align: center;
	font-size: 22px;
	margin: -5px;
}
.stat-title{
	text-align: center;
	font-size: 18px;
	margin-top: 0px;
	font-weight: 500;
	margin: -5px;
	font-stretch: 100%;
}
span.yourtame {
    box-sizing: border-box;
    display: inherit;
    width: auto;
    padding: 4px;
    margin: -6px;
    margin-top: 5px;
}

.no-gap {
	gap: 2px;
}
/*  Max Stats ENDE */

/* Bank Anfang */
.bank {
	font-size: 15px;
	
	float: left;
	margin-right: 20px;
}
.bank-title {
	font-size: 20px;
	float: left;
	margin-left: 15px;
	margin-bottom: 5px;
}
.bank-title-amount {
font-size: 20px;
    float: right;
    margin-right: 15px;
    /* margin-bottom: -36px; */
    color: #00b3cf;
    border-radius: 20px 0 0 20px;
    background-color: black;
    padding-left: 15px;
    padding-bottom: 2px;
    padding-top: 2px;
	padding-right:10px;
    border: 1px solid #00b3cf;
}
.bank-symbol {
	float: left;
	margin-left: 5px;
}
.bank-symbol-list {
    text-align: right;
	font-size:14px;
    float: right;
    margin-left: 10px;
    opacity: 0.8;
    padding: 5px;
    border: 1px solid #00ffea7a;
    border-radius: 20px 0 0 20px;
    background-color: #00000096;
    display: flex;
    clear: right;
    margin-right: 15px;
    flex-direction: row-reverse;
    margin-top: 5px;
	margin-bottom: 10px;
}
.bank-log {
	width: 100%;
	margin-left: 50px;
	float:left;
}
.bank-log:hover {
	background: #80808029;
}
.bank-loglist{
	float: left;
	margin-left: 15px;
}
.bank-account {
    width: 100%;
    /* float: none; */
    display: box;
    margin-bottom: 22px;
    display: flow-root;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
    padding-top: 15px;
	overflow: hidden;
}
.payin-account {
    width: 50%;
    /* float: none; */
    display: box;
    margin-bottom: 12px;
	background-color: #90ee9024;
    display: flow-root;
    border: 2px solid white;
    padding-bottom: 15px;
    padding-top: 15px;
}
.payout-account {
    width: 50%;
    /* float: none; */
    display: box;
    margin-bottom: 12px;
	background-color: #ee909024;
    display: flow-root;
    border: 2px solid white;
    padding-bottom: 15px;
    padding-top: 15px;
}
.delete-account {
    width: 50%;
    /* float: none; */
    display: box;
	text-align:center;
	margin-inline:auto;
    margin-bottom: 12px;
	background-color: #ee909024;
    display: flow-root;
    border: 2px solid white;
    padding-bottom: 15px;
    padding-top: 15px;
}
.deletebutton{
	margin: 15px;
	padding:0;
    margin-right: 55px;
    font-size: 14px;
    color: #ff0000;
    text-align: center;
    background-color: #00dcff00;
	border: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
	transition: 0.5s;
	border-radius: 10px;
}
.deletebutton:hover{
	color: #ff0000;
	 background-color: #00dcff00;
	cursor: pointer;
	 box-shadow: 0px 0px 30px 5px #ff0000;
}
.paybutton{
	margin-left: 15px;
	padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
    color: #00dcff8c;
    text-align: center;
    background-color: black;
    display: block;
    width: 100px;
    float: right;
	transition: 0.5s
}
.paybutton:hover{
	background-color: black;
	color: #00dcff;
	cursor: pointer;
	display: block;
	 box-shadow: 0px 0px 30px 5px #0ff;
}

a.editbank{
	margin-left: 20px;
	color: #00dcff8c;
	text-align: center;
	
}
a.editbank:hover, a.adduser2:hover{
	color: #00dcff;
	cursor: pointer; 
}
.payamount {
	padding-left: 15px;
}
.max {
	font-size: 12px;
    float: roght;
    /* text-align: right; */
    /* clear: right; */
    padding-right: 15px;
    float: right;
}
.paybox {	
	margin-bottom: 10px;
	font-size: 20px;
	padding-left: 15px;
	display: box;
}
.paybox:first-letter {
	color: var(--highlight);
	font-size: 33px;
}
.banktime{width: 120px;}
.bankname{width: 120px;}
.bankact{width: 200px;}

.deluser {
	    color: #ff7187b0;
    margin-left: 9px;
    background-color: #ccc0;
    /* border: 0px; */
    width: 0px;
    /* size: 0; */
    float: left;
    padding: 0 !important;
    margin-right: auto;
}
.deluser:hover {
	color: #ff0028;
	cursor: pointer;
}
button.editbank {
	    color: #a0ff71b0;
    margin-left: 9px;
    background-color: #ccc0;
    /* border: 0px; */
    width: 0px;
    /* size: 0; */
    
    padding: 0 !important;
    margin-right: auto;
}
button.editbank:hover {
	color: #50f100;
	cursor: pointer;
}
.player-memberlist{
    display: block;
    /* float: right; */
    /* width: 791px; */
    /* overflow: hidden; */
    flex-wrap: nowrap;
    margin-right: auto;
    width: 850px;
}
form.deluser {
	padding-top: 4px;
    margin-bottom: auto;
}
form.adduser {
	float: right;
	margin-left: 5px;
}
.bankpoint {
	clear: right;
    /* width: 100%; */
    text-align: right;
    display: block;
    margin-right: 10%;
	float:unset;
}
form.editbankuser {
	margin-bottom: 2px;
}
.adduser2 {
	font-size:18px;
	color: #00dcff8c;
	margin-left: 15px;
}
form.bankform {
	float: left;
}
.small {font-size: 12px !important;}

span.ggold {
    font-size: 15px;
    font-weight: 100;
    margin-left: 23px;
}
input.summe {
	width: 90px;
}

/* ItemsPlus Ende */

.itemsplus-container {
    flex-wrap: wrap;
    justify-content: space-between; /* Abstand zwischen den inneren divs */
    align-items: flex-start; /* Ausrichtung oben für die inneren divs */
    margin: 0 auto;
}

.itemsplus-column {
padding: 10px;
}

.itemsplus-inventory {
    overflow-y: scroll;
    height: 500px;
    text-align: center;
    scrollbar-width: thin; /* Für Firefox */
    scrollbar-color: var(--highlight) rgba(0, 0, 0, 0.3); /* Für Firefox */
}

.itemsplus-inventory .itemsplus-item {
margin:5px;
width: 100px;
height: 100px;
border: 2px solid var(--highlight);
box-sizing: border-box;
float: left;
word-wrap: break-word;
background-image:url(../images/itemsplus/back.png);
}


.itemsplus-picture {
text-align:center;
padding: 10px;
height: 60px;
width: 60px;
}


.itemsplus-color {
color:var(--highlight) !IMPORTANT;
}

/* ItemsPlus Ende */


/* Zuchtvertrag Anfang */
.contract-container {
    border-top: 2px solid;
    /* border-bottom: 2px solid; */
    border-color: #ffffff52;
    margin: 35px 0 20px 0;
    position: relative;
}
p.contract-container-title {
    color: var(--highlight);
    font-size: 16px;
    position: absolute;
    top: -41px;
    left: 16px;
}
.contract-card {
    height: 100px;
    border: 2px solid white;
    width: 171px;
    border-radius: 30px;
	position: relative;
    overflow: hidden;
	transition: all 1s;
	isolation: isolate;
	cursor: pointer;
}
.contract-new {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #026c75;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
	opacity: 0.2;
	transition-delay: 300ms;
}
.contract-card:hover {
	transform: rotateY(180deg);
}
.contract-card:hover > .contract-new{
	transition: all 0.1s;
	transition-delay: 300ms;
	opacity: 1;
}
.contract-flex {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0 20px 0;
}
p.contract-link {
    color: black;
    font-size: 31px;
	transition: all 1s;
}
.contract-card:hover > div.contract-new > p.contract-link {
	transform: rotateY(180deg);
	transition: all 1s;
}
p.contract-link > a {
	font-size: 40px;
	color: black;
	margin:0px;
	padding: 0px;
	border: 2px solid #2f920600;
    border-radius: 50%;
	transition: all 1000ms;
}
p.contract-link > a:hover {
    border: 2px solid #2f9206;
	color: black;
	transition: all 1s;
}
.contract-form-flex {
    display: grid;
    gap: 10px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.contract-vorschau-container {
    position: relative;
    display: flow-root;
    padding: 20px;
    border: 2px solid white;
    border-radius: 22px;
    margin-top: 20px;
}
.contract-vorschau-title {
    font-size: 23px;
    border-bottom: 2px solid #039d9d;
    padding: 0px 15px 10px 15px;
    margin-inline: auto;
    width: max-content;
}
.contract-vorschau-logo {
    max-width: 600px;
    position: relative;
    margin-inline: auto;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.contract-vorschau-logo > img {
	width: 100%;
}
.contract-vorschau-vereinbarung {
    display: flow-root;
    position: relative;
    margin: 20px;
    padding: 5px 20px;
    /* width: max-content; */
    margin-inline: auto;
}
.contract-vorschau-partner {
	display: flex;
    position: relative;
    margin: 20px;
    padding: 20px;
    margin-inline: auto;
    align-content: center;
	flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #d2d56f66;
}
.contract-partner-card {
    position: relative;
    border: 1px solid #ffffff4d;
    padding: 20px;
    border-radius: 20px;
    width: 250px;
}
.partner-innercard {
    /* display: grid; */
    /* justify-content: space-between; */
    /* justify-items: stretch; */
}
.partner-innercard-left {
    float: left;
}
.partner-innercard-right {
    clear: right;
	text-align: right;
}
p.contract-inner-title {
    color: var(--highlight);
    position: absolute;
	top: -25px;
    left: 0px;
    padding: 0px;
    margin: 0px;
}
.contract-tier-card {
    border: 2px solid #ffffff66;
    border-radius: 20px;
    width: 100%;
    margin: 10px 0px;
    font-size: 30px;
    display: flex;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}
p.contract-wert {
	font-size: 14px;
}
div#editable-div {
    background: #cbd56f08;
    margin: 10px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #00d9ff45;
}
button.contract-button {
    padding: 10px;
    color: white;
    background-color: black;
    border: 1px dashed #00fff6;
    cursor: pointer;
	transition: all 0.2s;
}
button.contract-button:hover {
    transform: scale(1.1);
	transition: all 0.2s;
}
button.contract-button:focus {
    transform: scale(1.0);
	transition: all 0.2s;
}
.contract-form-flex > div > label {
	text-align: left;
	float:left;
	margin-right: 20px;
}
.contract-form-flex > div > input {
	float:right;
}
div#input-fields {
    width: 400px;
}
div#input-fields > div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}
div#input-fields > div > input, div#input-fields > div > span {
	float:right;
}
div#input-fields > div > label {
	text-align: left;
	float:left;
	margin-right: 20px;
}
/* Zuchtvertrag Ende */

/* Serverdaten Ende */
.landing-upper-wrapper {
    display: grid;
    justify-content: center;
}
.landing-wrapper {
    display: grid;
    /* grid-template-columns: 1fr; */
    width: 90vw;
    position: relative;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    border-radius: 1rem;
    padding: 20px;
	margin-top: 10px;
    z-index: 2;
}


.landing-server-wrapper {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-content: center;
	margin-top: 0px;
    position: relative;
}
p.landing-server-title {
    position: absolute;
    font-size: 2rem;
    text-align: left;
    padding-left: 5%;
    border-bottom: 2px solid #ffffff26;
    width: 100%;
    margin: -50px;
    text-shadow: 1px 1px black;
    z-index: 29;
    color: #011D4E;
}

.server-wrapper {
    min-width: 280px;
    float: left;
    width: calc(100vw / 6);
    padding: 10px;
    min-height: 100px;
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 13px;
	border: 2px solid var(--highlight);
    position: relative;
    background-color: #000000bf;
    transition: ease-in-out;
    transition-duration: .25s;
}
.server-wrapper:hover {
	opacity: 1;
	transition: all 0.4s;
	    background-color: #00000080;
    transition: ease-in-out;
    transition-duration: .25s;
	    background-color: #231a1a;
}
p.server-title {
    font-size: 1.3rem;
    left: 30%;
    text-align: left;
    top: 40px;
    margin: 0px;
    text-shadow: 4px 2px black;
    z-index: 3;
    color: white;
}
p.server-online {
	font-size: 1.1rem;
    margin: 0px;
    text-shadow: 4px 2px black;
	z-index:3;
    color: white;
}

.server-bg-image {
    background-size: cover;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 11px;
	opacity: 0.3;
	transition: all .25s;
}
.server-wrapper:hover > .server-bg-image {
	opacity: 0.5;
	transition: all .25s;
}
.server-bg-image:hover {
	opacity: 0.5;
	transition: all .25s;
	
}

.map-genesis {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/genesis.png) center;
	background-size: cover;
}
.map-ragnarok, .map-ragnarokflex {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/ragnarok.png) center;
	background-size: cover;
}
.map-genesis2 {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/genesis2.png) center;
	background-size: cover;
}
.map-lostisland, .map-lost {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/lost_island.png) center;
	background-size: cover;
}
.map-valguero, .map-valgueroflex  {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/valguero.png) center;
	background-size: cover;
}
.map-island {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/island.png) center;
	background-size: cover;
}
.map-islandl, .map-lagermap {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/islandl.png) center;
	background-size: cover;
}
.map-bossmap {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/bossmap.png) center;
	background-size: cover;
}
.map-aberration {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/aberration.png) center;
	background-size: cover;
}
.map-scorchedearth, .map-scorched {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/scorchedearth.png) center;
	background-size: cover;
}
.map-fjordur, .map-fjordurd {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/fjordur.png) center;
	background-size: cover;
}
.map-center {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/center.png) center;
	background-size: cover;
}
.map-clubark {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/clubark.png) center;
	background-size: cover;
}
.map-extinction, .map-extinctiond, .map-extinctionflex {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/extinction.png) center;
	background-size: cover;
}
.map-caballus {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/caballus.png) center;
	background-size: cover;
}
.map-crystalisles, .map-crystal {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/crystalisles.png) center;
	background-size: cover;
}
.map-rotation {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/rotation.png) center;
	background-size: cover;
}
.map-eventserver {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/event.png) center;
	background-size: cover;
}
.map-astraeos {
	background: #363636 url(https://my.arkkovia.de/myarkkovia/files/img/maps/astraeos.png) center;
	background-size: cover;
}
/* Serverdaten Anfang */