/* ltgk */
:root {
	--primary-color: #E30613;
	--secondary-color: black;
	--imprint-color: white;
}

html, body {
	height:100%;
	width:100%;
	margin:0px;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	font-weight: 600;
	background-color: white;
	min-width:auto;
	z-index:1;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background-color: white;
    color: white;
    padding: 0px;
    text-align: left;
}

.content {
    flex: 1 0 auto;
	position:relative;
	float:left;
	background-color:transparent;	
	height:auto;
	z-index:10;
	padding: 0 10%;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 18px;
	font-weight: 300;
}

div#headerimage{
	/*width:100%;*/
	height:auto;	
	background-size: contain;  
	padding: 0 10%;
}

div#footer{
	position:relative;
	float:left;
	background-color:#333333;
	width:100%;
	height:50px;
	z-index:10;
}

div#scorecontent{
	position:relative;
	float:left;
	background-color:transparent;
	width:100%;
	height:auto;
	z-index:10;
}	

table.footer{
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	font-weight: 300;	
	width:100%;
	height:50px;
	vertical-align:center;
	border-collapse: collapse;
}

table {
    border: none;
    border-collapse: collapse;
}

td.contentmainscore {
	border: 0px solid white;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 18px;
	font-weight: 100;
	text-align: left;	
	width: 60%;
	background-color:white;
	z-index:10;
}

tr.zeile:hover {
	background-color: #ddd;
}

div#clear{
	clear:left;
}

div#vorhang{
	position:fixed;
	top:1px;
	left:1px;
	width:100%;
	height:100%;
	background-color:gray;
	opacity:0.80;	
	visibility:hidden;
	z-index:40;
}

div#vorhangBall{
	position:fixed;
	top:1px;
	left:1px;
	width:100%;
	height:100%;
	background-color:gray;
	opacity:0.80;	
	visibility:hidden;
	z-index:40;
}

.functionContainer{
	display: flex;
    flex-wrap: wrap;
    gap: 10px; 
}

.functionItem{		
	position: relative;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	/*font-weight: 800;*/
	background-color: var(--primary-color);
	text-align:center;
	color:white;	
	border:solid transparent 1px;
    border-radius:10px;	  
    padding: 10px;	
    flex: 1; /* Optionale Flex-Anpassungen */
}

.functionItem:hover{
	background-color: black;
	cursor: pointer;
}

.functionItemBreak{		
    flex: 100%; /* Optionale Flex-Anpassungen */
}

.functionItemExposed{	
	position: relative;	
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;	
	background-color: black;
	text-align:center;
	color:white;	
	border:solid transparent 1px;
    border-radius:10px;	  
    padding: 10px;	
    flex: 1; /* Optionale Flex-Anpassungen */
}

.functionItemHome{		
	position: relative;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;	
	background-color: #333333;
	text-align:center;
	color:white;	
	border:solid transparent 1px;
    border-radius:10px;	  
    padding: 10px;	
    flex: 1; /* Optionale Flex-Anpassungen */
}

.functionItemExposed:hover{
	background-color: var(--primary-color);
	cursor: pointer;
}

.functionItemHome:hover{
	background-color: var(--primary-color);
	cursor: pointer;
}

.badgeCircle {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50%;
}

/* Hyperlinks */
a{text-decoration:none;color:var(--primary-color);-webkit-tap-highlight-color: var(--primary-color);}
a:hover{color:var(--secondary-color) !important;}
a:visited{color:var(--primary-color);}

a.impressum{text-decoration:none;color: var(--imprint-color);-webkit-tap-highlight-color: var(--imprint-color);}
a.impressum:hover{color: var(--primary-color) !important;}
a.impressum:visited{color: var(--imprint-color);}

p{
	color:black;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	font-weight: 600;	
}

p1{
	color:black;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 13px;
	font-weight: 300;	
}

p2{
	color:gray;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	font-weight: 300;	
}

p3{
	color:black;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	font-weight: 300;	
}

p4{
	color: var(--primary-color);
	font-family: 'Arial';
	font-style: normal;
	font-size: 100px;
	font-weight: 300;	
}

/* Überschriften */
h1 {
  position: relative;	
  font-family: 'Raleway';
  font-weight: normal; 
}

h2 {
  position: relative;	
  font-family: 'Raleway';
  margin-bottom: 1em;  
  font-style: normal;
  font-size: 18px;
  font-weight: 600;	
}

h3 {
  position: relative;	
  font-size: 200%;
  font-family: 'Raleway';
  font-weight: normal;
  margin-bottom: 1em;
}

h4 {
  position: relative;	
  font-size: 100%;
  font-family: 'Raleway';
  font-weight: normal;  
}

hr{
	border: 1px solid lightgray;
	border-radius: 5px;
}

/* modifizierte Eingabefelder */
.eingabe{
	height:25px;	
	background-color:white;
	border-color:gray;
	border-style:solid;
	border-width:1px;
	border-radius:5px;
	box-shadow: 1px 1px 1px transparent;
	font-size:16px !important;
	font-family: 'Raleway';
}

.eingabeTextarea{	
	background-color:white;
	border-color:gray;
	border-style:solid;
	border-width:1px;
	border-radius:5px;
	box-shadow: 1px 1px 1px transparent;
	font-size:16px !important;
	font-family: 'Raleway';
}

/* Mousehand bei icons, die anklickbar sind */
.clickable-icon {
  cursor: pointer;
}

select, option {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;  
}
select {    
    height:30px;
    border : 1px #ccc solid;
    vertical-align:top;
}

/* Submit-Buttons von 3D-Effekten etc. befreien */
input[type="submit"] {
	border:0 none;
	background-color: var(--primary-color);
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

input[type="submit"]:hover {
	cursor: pointer;
	border:0 none;
	background-color: #333333;
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

input[type="button"] {
	border:0 none;
	background-color: #333333;
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

input[type="button"]:hover {
	cursor: pointer;
	border:0 none;
	background-color: var(--primary-color);
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

input[type="cancel"] {
	border:0 none;
	background-color: var(--primary-color);
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

input[type="cancel"]:hover {
	cursor: pointer;
	border:0 none;
	background-color: #333333;
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

textarea {
    width: 80%; 
    max-width: 80%;  
}

@media (max-width: 600px) {
    input[type="text"], 
    input[type="password"], 
    input[type="email"], 
    textarea, 
    select {
        width: 80%;
        max-width: 80%; 
    }
}

/* Ersatz-CSS fuer jquery-Dialog und Button */
.ui-dialog {
	border-radius: 5px;
	box-shadow: 1px 1px 1px lightgray;
}

.ui-button {
  	cursor: pointer;
	border:0 none;
	background-color: var(--imprint-color);
	color: #ffffff;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 5px;
}

.ui-dialog-title{
	color:gray;
	font-family: 'Raleway';
	font-style: normal;
	font-size: 14px;
	font-weight: 300;	
}

.ui-dialog .ui-dialog-buttonpane button {
    font-family: Arial, sans-serif; 
    font-size: 11px; 
	border:0 none;
	background-color: #333333;
	color: white;
	padding: 1em 1.5em;
	text-decoration: none;
	text-transform: uppercase;
	border-radius:5px;
}

.ui-dialog .ui-dialog-buttonpane button:hover {
    background-color: var(--primary-color); 
    color: white;
}
/* Überschreibungsblock abgeschlossen */

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin { 
	0% { transform: rotate(0deg); } 
	100% { transform: rotate(360deg); } 
}

/* CSS für drehenden Ball */
.rotate {	
	position: absolute;	
    top: 50%;
    left: 50%;	
    margin-top: -50px;
    margin-left: -50px;
	width: 100px;
	height: 100px;	
	animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* für das durchlaufende Banner */
.banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 5px;
  opacity: 0.5;
}

.banner-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;  
  background-size: cover;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: green;
}

input:focus + .slider {
  box-shadow: 0 0 1px green; 
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;  
}

.slider.round:before {
  border-radius: 50%;
}

/* raleway-100 - latin */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/Raleway/raleway-v29-latin-100.woff2') format('woff2');
}

/* raleway-200 - latin */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/Raleway/raleway-v29-latin-200.woff2') format('woff2');
}

/* raleway-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Raleway/raleway-v29-latin-300.woff2') format('woff2');
}

/* raleway-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Raleway/raleway-v29-latin-regular.woff2') format('woff2');
}

/* raleway-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Raleway/raleway-v29-latin-500.woff2') format('woff2');
}

/* raleway-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Raleway/raleway-v29-latin-600.woff2') format('woff2');
}

/* raleway-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Raleway/raleway-v29-latin-700.woff2') format('woff2'); 
}

/* raleway-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Raleway/raleway-v29-latin-800.woff2') format('woff2');
}

/* raleway-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/Raleway/raleway-v29-latin-900.woff2') format('woff2');
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/OpenSans/open-sans-v40-latin-regular.woff2') format('woff2'); 
}