/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
@media all and (min-width: 1366px) and (max-width: 1600px) {font-size: 17px; }}
@media all and (min-width: 1024px) and (max-width: 1366px) {font-size: 16px; }}
@media all and (min-width: 800px) and (max-width: 1024px)  {font-size: 16px; }}
@media all and (min-width: 640px) and (max-width: 800px)   {font-size: 15px; }}
@media all and (min-width: 500px) and (max-width: 640px)   {font-size: 14px; }}
@media all and (min-width: 400px) and (max-width: 500px)   {font-size: 13px; }}
@media all and (min-width: 300px) and (max-width: 400px)   {font-size: 12px; }}
@media all and (min-width: 280px) and (max-width: 300px)   {font-size: 12px; }}
@media all and (min-width: 280px) and (max-width: 340px)   {font-size: 11px; }}
@media all and (min-width: 280px) and (max-width: 300px)   {font-size: 10px; }}
@media all and (min-width: 280px) and (max-width: 250px)   {font-size: 8px; }}


@media all and (min-width: 1366px) and (max-width: 1600px) { div.content {font-size: 17px; }}
@media all and (min-width: 1024px) and (max-width: 1366px) { div.content {font-size: 16px; }}
@media all and (min-width: 800px) and (max-width: 1024px) { div.content {font-size: 16px; }}
@media all and (min-width: 640px) and (max-width: 800px) { div.content {font-size: 15px; }}
@media all and (min-width: 500px) and (max-width: 640px) { div.content {font-size: 14px; }}
@media all and (min-width: 400px) and (max-width: 500px)  { div.content {font-size: 13px; }}
@media all and (min-width: 300px) and (max-width: 400px) { div.content {font-size: 12px; }}
@media all and (min-width: 280px) and (max-width: 300px) { div.content {font-size: 12px; }}
@media all and (min-width: 280px) and (max-width: 340px) { div.content {font-size: 11px; }}
@media all and (min-width: 280px) and (max-width: 300px) { div.content {font-size: 10px; }}
@media all and (min-width: 280px) and (max-width: 250px) { div.content {font-size: 8px; }}
@media all and (min-width: 280px) and (max-width: 200px) { div.content {font-size: 6px; }}

.content
{
    padding-top: 15px;
 /* text-align: center; */
    padding: 10px 15px;
    text-decoration: normal;
}


.bilder
{
background-color: #123dcc;
color: #ffffff;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
padding-top: 2px;
padding-left: 5px;
padding-right: 5px;
}

.bilder img
{
max-width: 100%;
height: auto;
display: block;
justify-content: center;

}



/* Grundlayout */
body {
    font-family: Arial, Tahoma, Verdana, sans-serif;
    background: #123dcc;
    color: #ffffff;
    min-height: 100vh;
}

/* Fester Kopfbereich */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background: #0f36c2;
    display: flex;
    align-items: center;
    padding: 0 12px;
    z-index: 1000;
    border-bottom: 1px solid #1b75ff;
}

/* Burger */
.menu-toggle {
    font-size: 22px;
    cursor: pointer;
    user-select: none;
    margin-right: 14px;
}

/* Menüleiste */
.topmenu {
    display: flex;
    gap: 15px;
}

.topmenu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.topmenu a:hover {
    text-decoration: none;
}

/* Seitenmenü */
.sidebar {


    position: fixed;
    top: 52px;
    left: -200px;
    width: 180px;
    height: calc(100vh - 52px);
    background: #123dcc;
    transition: 0.8s;
    z-index: 999;
    overflow-y: auto;
    border-right: 1px solid #1b75ff;
}

.sidebar.open {
    left: 0;
}

.close-btn {
    text-align: center;
    font-size: 32px;
    cursor: pointer;
    padding: 2px;
    color: #fffffe;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sidebar a {
    display: block;
 /* padding: 10px 15px; */
    padding: 5px 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}

.sidebar a:hover {
    background: rgba(255,255,255,0.15);
}


.logo {
    max-width: 100%;
    height: auto;
    border: 4px solid #001b6f;
}

/* Kategorien */
.category-table {
    margin: 5px auto;
    border-collapse: collapse;
}

.category-table td {
    border: 0px solid #d9d9d9;
    padding: 5px 10px;
}

.category-table a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
}

.category-table a:hover {
    text-decoration: underline;
}

/* Mobil */
@media (max-width: 500px) {

    .topmenu a {
        font-size: 14px;
    }

    .category-table {
        width: 95%;
    }

    .category-table td {
        display: block;
        width: 100%;
        border: 0px solid #d9d9d9;
    }

    .category-table a {
        display: block;
        font-size: 16px;
    }
}

/* Bilder */
img {
    max-width: 100%;
    height: auto;
}

/* Videos */
video {
    max-width: 100%;
    height: auto;
}

/* Responsive Schriftgrößen */

@media all and (min-width: 1366px) and (max-width: 1600px) {
    body {
        font-size: 19px;
    }
}

@media all and (min-width: 1024px) and (max-width: 1366px) {
    body {
        font-size: 18px;
    }
}

@media all and (min-width: 800px) and (max-width: 1024px) {
    body {
        font-size: 17px;
    }
}

@media all and (min-width: 640px) and (max-width: 800px) {
    body {
        font-size: 16px;
    }
}

@media all and (min-width: 500px) and (max-width: 640px) {
    body {
        font-size: 15px;
    }
}

@media all and (min-width: 400px) and (max-width: 500px) {
    body {
        font-size: 14px;
    }
}

@media all and (min-width: 300px) and (max-width: 400px) {
    body {
        font-size: 13px;
    }
}

@media all and (min-width: 280px) and (max-width: 300px) {
    body {
        font-size: 13px;
    }
}

/* Flex-Container */

.flex-container {
    background-color: #123dcc;
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    line-height: 18px;
}

.inhalt {
/* align-items: center; */

margin-right: 20px;
margin-left: 20px;
max-width: 1000px;
}

/* Footer */

.footer {
    width: 100%;
    margin: 0;
    padding: 30px 10px;

    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #cccccc;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
}

.payment-logos img {
    height: 30px;
}


.flex-container 
{
background-color: #123dcc;
color: #ffffff;

display: flex;
flex-wrap: wrap;
max-width: 800px;
text-align: justify; 
/* line-height: 18px; */
/* font-size: 14px; */
}

.inhalt
{
background-color: #123dcc;
color: #ffffff;

display: flex;
flex-wrap: wrap;
max-width: 800px;

padding-top: 2px;
padding-left: 10px;
padding-right: 10px;
}

.bilder
{
background-color: #123dcc;
color: #ffffff;

display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;

padding-top: 2px;
padding-left: 10px;
padding-right: 10px;
}

.bilder img
{
max-width: 100%;
height: auto;
display: block;
}

.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-content{max-width:980px;margin:auto}.w3-rest{overflow:hidden}
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}

/* Set animation fading for pics - Start */

.ani-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.ani-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.ani-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.ani-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.ani-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.ani-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.ani-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.ani-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}

/* Set animation fading for pics - End */



/* Container: kiste */
.kiste {
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    margin: 0;
    font-family: Calibri, Arial, sans-serif;
    text-align: left;

    /* Schriftgröße: skaliert zwischen 9pt und 26pt */
font-size: clamp(10pt, 2vw, 20pt);

   -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}




/* ===========================
   Responsive Bildershow
   =========================== */

.slideshow {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.slideshow img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
}