/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

:root {
    --font-size: 16px;
}

/* Allgemeiner Button-Stil */
.btn-back-to-index {
    background-color: #6297c0 !important; /* 1a85d7 Microsoft-Blau */
    color: #a8cde8 !important; /* Textfarbe */
    font-weight: bold;
    border: none; /* Keine Ränder */
    border-radius: 6px; /* Abgerundete Ecken */
    padding: 10px 20px; /* Innenabstand */
    font-family: 'Segoe UI', sans-serif; /* Microsoft-typische Schriftart */
    font-size: 14px; /* Textgröße */
    display: inline-flex; /* Für Icon und Text */
    align-items: center; /* Zentrierung von Icon und Text */
    cursor: pointer; /* Zeiger als Mauszeiger */
    transition: background-color 0.2s ease; /* Hover-Animation */
}

/* Hover-Effekt */
.btn-back-to-index:hover {
    background-color: #7db0d7 !important; /* Dunkleres Blau */
}

a.btn-back-to-index {
    color: #095189 !important; /* Textfarbe */
}

a.btn-next-group, a.btn-prev-group {
    color: white !important; /* Textfarbe */
}

.btn-categorie {
    padding: 9px 5px;
    font-size: 14px;
    color: #fff;
    background-color: #b5c9d9; /* Microsoft-ähnliches Blau */
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #005a9e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

a.btn-categorie:focus, a.btn-categorie:hover {
    background-color: white;
}

/* Erweiterte Kategorien-Schaltfläche */
.btn-categorieEXT {
    padding: 9px 5px;
    font-size: 14px;
    color: #fff !important;
    background-color: #d9c9b5; /* Microsoft-ähnliches Blau */
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #005a9e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

a.btn-categorieEXT:focus, a.btn-categorieEXT:hover {
    background-color: gray;
}

/* Microsoft-ähnliche Pfeil-Schaltflächen */
.btn-next-group {
    background-color: #0078D4 !important; /* Microsoft-Blau */
    color: white; /* Textfarbe */
    border: none; /* Keine Ränder */
    border-radius: 6px; /* Abgerundete Ecken */
    padding: 10px 20px; /* Innenabstand */
    font-family: 'Segoe UI', sans-serif; /* Microsoft-typische Schriftart */
    font-size: 14px; /* Textgröße */
    display: inline-flex; /* Für Icon und Text */
    align-items: center; /* Zentrierung von Icon und Text */
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Hover-Effekt */
.btn-next-group:hover {
    background-color: #005A9E; /* Dunkleres Blau */
}

.btn-prev-group {
    background-color: #0078D4 !important; /* Microsoft-Blau */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-prev-group:hover {
    background-color: #005A9E; /* Dunklerer Hover-Farbton */
}

.icon {
    margin: 0 8px; /* Abstand zwischen Icon und Text */
    font-family: 'Segoe MDL2 Assets'; /* Microsoft Icon Schriftart */
    font-size: 16px;
}

/* Das allgemeine Styling für das <details>-Tag */
details {
    margin: 0;
    padding: 0px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

/* Der Inhalt innerhalb des geöffneten <details> */
details p {
    margin: 10px 0;
    padding: 0;
    line-height: 1.6;
}

details[open] summary::before,
summary::before {
    content: " "; /* Platzhalter-Inhalt */
    display: inline-block; /* Sicherstellen, dass es als Block für Breite/Höhe agiert */
    width: 1em; /* Gleiche Breite für beide Zustände */
    height: 1em; /* Gleiche Höhe für beide Zustände */
    text-align: center;
    margin-right: 8px;
    color: #007BFF; /* Farbe für den Pfeil */
    transition: transform 0.2s ease; /* Optional für Animation */
}

details[open] summary::before {
    transform: rotate(90deg); /* Dreht den Pfeil, wenn geöffnet */
    content: "▶"; /* Gleicher Platzbedarf wie der geschlossene Zustand */
}

summary::before {
    content: "▶"; /* Pfeil bleibt immer gleich breit */
}

/* Das Styling für das <summary>-Tag */
summary {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #007BFF;
    margin: 0;
    padding: 0;
    list-style: none; /* Entfernt die Standard-Dreieck-Markierung */
}

/* Die Hover- und Fokus-Effekte für <summary> */
summary:hover {
    color: #0056b3;
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
}

body, html {
    background: linear-gradient(to bottom, /*#191970*/#014bd5, #202124);
    color: /*#A7C7E7*/#fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
/*    line-height: 2.1em; */
/*    background-color: #014bd5;*/
}

header, main, footer {
    margin: 0 /*1*/90px;
    max-width: 880px;
}

hr {
    border: 1px solid #fff; /* red */
}

h1 {
    font-size: 3.325rem;
}

p {
    font-size: 18px;
}

ul, ol {
    padding: 0;
    list-style-type: none;
}

ul li, ol li {
    margin: 22px 0;
}

figure {
    margin: 0;
}

a:active, a:link, a:visited {
    text-decoration: underline;
    color: #000;
}

a:focus, a:hover {
    text-decoration: none;
    color: #000;
}

.div1 {
    background-color: #c8eeff;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.brd1 {
    border: 2px solid green;
}

.brd2 {
    border: 3px solid green;
}

.brd3 {
    border: 2px solid #d9d9d9;
}

.brd4 {
    border-bottom: 2px solid #282626;
}

.brd5 {
    border: 2px solid #673297;
}

.brd-btn-effekt span {
    border: 1px solid black;
    border-radius: 9px;
    padding: 14px 9px;
}

.brd-btn-effekt-span {
    border: 1px solid black;
    border-radius: 9px;
}

.box-boxing {
    display: flex;
    flex-wrap: wrap;
    flex-direction: center;
    gap: 10px 20px;
}

.box-gatter {
    padding: 20px 40px;
}

.box-inner-gatter {
    padding: 40px;
}

.box-page-cat-nav li {
    margin: 1.2em 0 !important;
    line-height: 2.4em !important;
}

.box-page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 8px 0;
}

.box-page-nav-bottom {
    border: 1px solid gray;
    border-top: 4px solid red;
    padding: 20px;
    background-color: #EEE;
}

.box-page-nav-top {
    border: 1px solid gray;
    border-bottom: 4px solid blue;
    padding: 20px;
    background-color: #bbb;
}

.box-part-all-header {
    margin: 20px 0;
    padding: 20px 40px;
    border-top: 2px solid green;
    border-right: 2px solid green;
    border-bottom: 1px solid green;
    border-left: 2px solid green;
    border-radius: 40px 20px 14px 14px;
    box-shadow: rgba(0, 0, 0, 0.1) 20px 10px 15px 3px, rgba(0, 0, 0, 0.05) 0px 4px 6px 12px;
}

.box-part-footer {
    max-width: 65%;
    border: 2px solid #d9d9d9;
    border-radius: 40px;
}

.box-page-legal-main {
    border: 1px solid green;
    border-radius: 40px;
}

.box-rom-gatter {
    padding: 20px 0;
}

.box-sbrd {
    padding: 10px;
    border: 3px solid green;
}

.box-top {
    line-height: 1.0;
}

.box-sitenav {
    background-color: #1c292d;
}

.box-shadow1 {
    box-shadow: rgba(0, 0, 0, 0.1) 20px 10px 15px 3px, rgba(0, 0, 0, 0.05) 0px 4px 6px 12px;
}

.box-shadow2 {
    box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 40px 0px, rgba(0, 0, 0, 0.05) 4px 4px 16px 12px;
}

.box-two {
    margin: 20px 0;
    padding: 20px;
    border: 2px solid green;
    border-radius: 40px 20px 30px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 20px 10px 15px 3px, rgba(0, 0, 0, 0.05) 0px 4px 6px 12px;
}

.box-three {
    margin: 20px 0;
    padding: 20px;
    border-top: 2px solid green;
    border-right: 2px solid green;
    border-bottom: 1px solid green;
    border-left: 2px solid green;
    border-radius: 40px 20px 0 0;
    box-shadow: rgba(0, 0, 0, 0.1) 20px 10px 15px 3px, rgba(0, 0, 0, 0.05) 0px 4px 6px 12px;
}

.box-one-b {
    margin: 20px 0;
    border-top: 1px solid green;
    border-right: 2px solid green;
    border-bottom: 6px solid green;
    border-left: 2px solid green;
    box-shadow: rgba(0, 0, 0, 0.1) 20px 10px 15px 3px, rgba(0, 0, 0, 0.05) 0px 4px 6px 12px;
}

.box-one-em {
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 20px 40px 10px 30px;
}

.box-one {
    margin: 0 0 50px 0;
    padding: 20px;
    border: 4px solid red;
    background-color: rgb(212, 102, 102);
    border-radius: 20px 40px 10px 30px;
}

.box-one-2 {
    margin: 50px 0;
    padding: 20px;
    border: 4px solid #fff;
    background-color: gray;
    border-radius: 20px 40px 10px 30px;
}
.box-one-3 {
    padding: 20px;
    border: 2px solid blue;
    border-radius: 20px 40px 10px 30px;
}

.box-one.mar20 {
    margin: 20px 0;
}

.box-welcome {
    background-color: #c8eeff;
    color: #18186a;
}

.box-zero {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid gray;
    border: 2px solid green;
    border-radius: 20px 40px 10px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 20px 10px 15px 3px, rgba(0, 0, 0, 0.05) 0px 4px 6px 12px;
}

.cookie-banner-box-bg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.cookie-banner-box {
    background-color: #DDD;
    max-width: 880px;
    margin: 0px auto;
    border: 2px solid black;
}

.cookie-banner {
    color: #333;
    text-align: left;
    font-size: 14px;
}

.css_adr_name::after {
    padding-left: 7px;
    content: "Spano'";
    cursor: text;
}

.css_adr_place::before {
    padding-right: 7px;
    content: "42105 Wuppertal,";
    cursor: text;
}

.css_adr_email::after {
    padding-left: 7px;
    content: "info@internet4us.de";
    cursor: text;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.card-container {
    margin-top: 20px;
}

.card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    display: none; /* Karten sind standardmäßig ausgeblendet */
}

.card.active {
    display: block; /* Nur die aktive Karte wird angezeigt */
}

.categoryname {
    padding: 14px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #d77600; /* 0078d7 Microsoft-ähnliches Blau */
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #005a9e; /* Dunklerer Rand für Kontrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.collapsible-content {
    display: none; /* Versteckt den Text initial */
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.cookie-banner {
    min-height: 180px;
    padding: 20px;
    color: #333;
    text-align: center;
    font-size: 14px;
}

.cookie-banner__button {
    background-color: #4CAF50;
    color: white !important;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-banner__button:hover {
    background-color: #69bc6c;
}

.cookie-banner__button_NO {
    background-color: rgb(235, 26, 26);
    color: white !important;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.cookie-banner__button_NO:hover {
    background-color: red;
    color: white;
}

.doname {
    padding: 6px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #2d8543; /* 0078d7 Microsoft-ähnliches Blau */
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #005a9e; /* Dunklerer Rand für Kontrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.domainname {
    padding: 6px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #d78f00; /* 0078d7 Microsoft-ähnliches Blau */
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #005a9e; /* Dunklerer Rand für Kontrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.display.flex,
.display.flex.responce {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.display.flex.responce span {
    border: 1px solid #000;
    border-radius: 9px;
    padding: 9px;
}

.display-flex-responce-span {
    border: 1px solid #000;
    border-radius: 9px;
    padding: 9px;
}

.div {
    overflow: hidden;
    text-overflow: ellipsis;
}

.end-of-line::after {
    padding: 0 7px;
    content: "--- End of Section ---";
    cursor: text;
}

.end-of-site::after {
    padding: 0 7px;
    content: "--- End of Site ---";
    cursor: text;
}

.flex-container {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht das Umbrechen der Elemente */
    gap: 20px; /* Abstand zwischen den Elementen */
    justify-content: center; /* Zentriert die Elemente */
}

.group {
    padding: 15px;
    background-color: #62b1ed;
    border-radius: 10px;
    color: white;
}

.group_list.none {
    list-style-type: none;
}

.group_list li {
    padding: 20px;
    border: 1px solid gray;
    text-align: center;
    width: 55px;
}

.link-list {
    list-style-type: none;
    padding: 0;
}

.link-list li {
    display: inline;
    margin-right: 20px;
    cursor: pointer;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.link-list li.active {
    font-weight: bold;
    background-color: #007BFF;
    color: white;
}

.overlay-text {
    position: absolute;
    padding: 5px 10px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    background-color: green;
    border-radius: 3px;
}

/* Positioning for bottom-right */
.overlay-text.bottom-right {
    right: 15px;
    bottom: 15px;
    left: 15px;
}

.text-container {
    margin: 20px;
}

.toggle-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007BFF;
    font-size: 16px;
    cursor: pointer;
}

.toggle-link:hover {
    text-decoration: underline;
}

/* ############################################################################### */

.cat_links a:active, .cat_links a:link, .cat_links a:visited {
    text-decoration: none;
}

.cat_links a:focus, .cat_links a:hover {
    text-decoration: underline;
}

.clickable-div {
    position: relative;
    display: inline-block;
}

.clickable-div img {
    display: block;
    width: 100%;
    height: auto;
}

.clickable-div:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.content {
    padding: 20px;
}

.hr {
    background-color: black; height: 2px; margin: 20px 0; border-top: 2px dashed #CCC;
}

.inner-div {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.item {
    flex: 0 0 280px; /* Fixe Breite von 280px, keine Skalierung */
    background-color: #f0f0f0;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.item-full-width {
    flex: 0 0 100%; /* Breites Element nimmt die volle Breite der Zeile ein */
}

.link-box a:active, .link-box a:link, .link-box a:visited {
    text-decoration: none;
    color: white;
    background-color: #e10709;
}

.link-box a:focus, .link-box a:hover {
    text-decoration: underline;
    color: white;
    background-color: #e10709;
}

.link-boxer a:active, .link-boxer a:link, .link-boxer a:visited {
    padding: 10px;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    background-color: #444;
}

.link-boxer a:focus, .link-boxer a:hover {
    padding: 10px;
    text-decoration: none;
    background-color: #222;
}

.link-boxer span {
    padding: 5px;
    background-color: #e10709;
}

.link-com a:active, .link-com a:link, .link-com a:visited {
    text-decoration: none;
    color: white;
    background-color: #0733e1;
}

.link-com a:focus, .link-com a:hover {
    text-decoration: underline;
    color: white;
    background-color: #0733e1;
}

.link-div {
    color: #000;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid rgb(63, 63, 211);
    border-right: 1px solid blue;
    border-left: 1px solid blue;
    background-color: #a5c0c0;
    margin: auto 0;
}

.link-div-noindex {
    color: #000;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #8f8f96;
    border-right: 1px solid #8f8f96;
    border-left: 1px solid #8f8f96;
    background-color: #e4e4e0;
    margin: auto 0;
}

.link-div:hover {
    border-bottom: 1px solid red;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.link-div a {
    text-decoration: none;
    color: inherit;
}

.link-off-div {
    color: #000;
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #8f8f96;
    border-right: 1px solid #8f8f96;
    border-left: 1px solid #8f8f96;
    background-color: #e5c4bc;
    margin: auto 0;
}

.link-off-div:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid black;
}

.link-off-div a {
    text-decoration: none;
    color: inherit;
}

.link-mouse:hover {
    cursor: pointer;
}

.mabt1 {
    margin: 30px 0;
}

.mabt2 {
    margin: 140px 0;
}

.mabt3 {
    margin: 140px 0;
}

.mp0 {
    margin: 0;
    padding: 0;
}

.ml0 ul, .ml0 li {
    list-style-type: none;
}

.nobr {
    white-space: nowrap;
}

.nolink-div:hover {
    cursor: not-allowed;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid red;
}

.pa-lr-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.pabt1 {
    padding: 20px;
}

.road {
    position: relative;
    width: 100%;
    height: 5px;
}

.road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        #008000,
        #008000 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
}

.results-items {
    margin: 20px 0;
    min-width: 100%;
    max-width: 100%;
}

.street {
    background: #333;
    max-width: 855px;
    height: 150px;
}

.title-div {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.walking:before {
    background-color: green;
    position: relative;
    height: 10px;
    width: 100%;
}

.win-btn-effect {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 3px;
}

.win-btn-effect:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ############################################################################### */

@media only screen and (max-width:640px) {}

@media only screen and (max-width:720px) {
    header, main, .footer, .street {
        margin: 0;
        max-width: 100%;
    }
    h1 {
        font-size: 2.325rem;
    }
    .box-one-2, .box-one {
        padding: 0;
    }
}

@media only screen and (min-width:400px) {}

@media only screen and (max-width:1020px) {}

@media only screen and ((min-width:1021px) and (max-width:1120px)) {}

@media only screen and (min-width:1700px) {}