/* alte globals.css */

:root
{
    --color-bg-body: white;

    --color-bg-header: white;
    --color-bg-header-hover: hsl(0, 0%, 80%);
    --color-fg-header: black;
    --color-bg-header-menu-openicon: hsl(0, 0%, 30);

    --color-bg-footer: hsl(0, 0%, 30%);
    --color-bg-footer-hover: hsl(0, 0%, 40%);
    --color-fg-footer: white;

    --font-weight-logo: 800;
    --font-weight-nav: 500;

    --nav-rahmen: 10px;
    --nav-rahmen-padding: 4px;

    --color-bg-main: white;
    --color-fg-main: black;

    --color-bg-title: hsl(0, 0%, 30%);
    --color-fg-title: white;

    --height-htf-mobile: 366px;
    --height-htf-desktop: 230px;

    --versand-padding: 130px;

    --color-bg-details: hsl(0, 0%, 100%);
    --color-bg-faqmain: hsl(0, 0%, 100%);
    --color-border-details: hsla(0, 0%, 30%, 0.7);

    --color-bg-sub: #f0f0f0;
}

/* alte general.css */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, picture, section, summary {
    display: block;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    min-width: 340px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: var(--color-bg-body, white);
}

*, ::after, ::before {
    box-sizing: inherit;
}

a, a:visited {
    text-decoration: none;
    color: black;
}

/* alte header.css */

header {
    display: flex;
    flex-direction: row;
    background-color: var(--color-bg-header, white);
    align-items: center;
}

#shell {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#menu {
    width: 48px;
    height: 48px;
    margin: 10px;
    opacity: 0.7;
}

#menu2 {
    width: 48px;
    height: 48px;
    margin: 10px;
    background-color: var(--color-bg-header-menu-openicon, hsl(0, 0%, 30%));
    opacity: 0.7;
    display: none;
    border-radius: 2px;
}

header a {
    text-decoration: none;
    color: var(--color-fg-header, black);
}

.freiraum {
    flex: 20 20 18px;
}

#logo {
    margin: 15px 0 15px 15px;
}

header > nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    align-self: stretch;
    margin-right: 10px;
}

header > nav > a {
    text-decoration: none;
    color: var(--color-fg-header, black);
    margin: var(--nav-rahmen, 10px);
}

@media (max-width: 921px)
{
    #menu { visibility: visible; width: 48px; }
    header, nav { flex-direction: column !important; }
    #menu-content { display: none; }
    .freiraum { display: none; }
    header nav a { margin: 15px; }
    #shell { align-self: flex-start; }
    .menu-mobile { visibility: visible; width: calc(100vw - 20px); min-width: 320px; margin: 0 5px 0 15px; opacity: 0.7; }
}

@media (min-width: 922px) 
{ 
    #menu { visibility: hidden; width: 0px; }
    header, nav { flex-direction: row !important; }
    #menu-content { display: flex; }
    .freiraum { display: block; }
    header nav a { margin: 0 15px 0 0; }
    .menu-mobile { visibility: hidden; width: 0; }
    #nav-home { margin-left: 0; padding-left: 0; }
}

/* alte title.css */

#title {
    text-align: center;
    background-color: var(--color-bg-title, hsl(0, 0%, 30%));
}

#title > h1 {
    font-family: 'Roboto';
    color: var(--color-fg-title, white);
}

/* alte main.css */

main {
    background-color: var(--color-bg-main, white);
    color: var(--color-fg-main, black);
    min-height: calc(100vh - var(--height-htf-mobile, 366px));
    margin: 0 auto;
    width: 99vw;
    max-width: 900px;
    min-width: 340px;
}

main > section {
margin: 12px;
}

img.image {
box-shadow: -5px -5px 10px #737373,
5px 5px 10px #ffffff;
}

#agb-table-of-content {
list-style: none;
}

#agb-table-of-content a {
text-decoration: none;
}

#noscript {
text-align: center;
background-color: hsl(0, 100%, 71%);
width: 100vw;
margin: 0;
padding: 15px;
}

#noscript > h1, #noscript > p , #noscript > p > a {
font-family: 'Roboto';
color: black;
}

@media (max-width: 366px) {
    img.printable {
        float: none;
    }
}

.landscape {
display: none;
}

@media (min-width:500px) {
    .portrait {
        display: none;
    }

    .landscape {
        display: inline;
    }
}

@media (min-width:824px) {
    main {
        min-height: calc(100vh - var(--height-htf-desktop, 230px));
    }

    .landscape {
        display: none;
    }

    .no-desktop {
        display: none;
    }
}

/* alte footer.css */

footer {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    color: var(--color-fg-footer, white);
    background-color: var(--color-bg-footer, hsl(0, 0%, 30%));
}

footer > p {
    margin-block-start: 0;
}

footer nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px auto 10px auto;
}

footer > nav > a, footer > nav > a:visited {
    text-decoration: none;
    color: var(--color-fg-footer, white);
    margin: var(--nav-rahmen, 10px);
}

/* alte fonts.css */

body {
    font-family: 'Open Sans','Helvetica Neue',Helvetica,'Segoe UI',Tahoma,Arial,sans-serif;
}

#logo {
    font-family: Roboto,'Helvetica Neue',Helvetica,'Segoe UI',Tahoma,Arial,sans-serif;
    font-weight: var(--font-weight-logo, 800);
    font-size: 33px;
}

header > nav > a, footer > nav > a {
    font-family: 'Open Sans','Helvetica Neue',Helvetica,'Segoe UI',Tahoma,Arial,sans-serif;
    font-weight: var(--font-weight-nav, 500);
    font-size: 17px;
}

footer > p {
    font-size: 14px;
    font-weight: 300;
}

main h3 {
    font-family: Roboto,'Helvetica Neue',Helvetica,'Segoe UI',Tahoma,Arial,sans-serif;
    font-size: 19px;
}

[type=submit], [type=file], h1, h2, h3, h4, h5, h6 {
    font-family: Roboto,'Helvetica Neue',Helvetica,'Segoe UI',Tahoma,Arial,sans-serif;
}

[type=submit], [type=file] {
    font-size: 19px;
}

@media (min-width: 800px) {
    main h3 {
        font-size: 23px;
    }
}

/* alte menu-hover.css */

header > nav > a, footer > nav > a {
    border-radius: 3px;
    padding: var(--nav-rahmen-padding, 4px);
    margin: calc(var(--nav-rahmen, 15px) - var(--nav-rahmen-padding, 4px));
}

header > nav > a:hover {
    text-decoration: underline;
}

footer > nav > a:hover {
    text-decoration: underline;
}

@media (max-width: 799px) {
    header > nav > a:hover {
        background-color: var(--color-bg-header-hover, hsl(0, 0%, 80%));
        text-decoration: none;
    }
    
    footer > nav > a:hover {
        background-color: var(--color-bg-footer-hover, hsl(0, 0%, 20%));
        text-decoration: none;
    }
}

/* alte button.css */

.button {
    display: inline-block;
    color: black;
    text-decoration: none;
    text-align: center;
    padding: 6px;
    margin: 6px 0;
    border-radius: 3px;
    background: rgb(221,221,221);
    background: linear-gradient(180deg, rgba(221,221,221,0.5) 0%, rgba(248,248,248,1) 14%, rgba(244,244,244,1) 44%, rgba(194,194,194,0.5) 100%);
}

.button:active {
    background: rgb(221,221,221);
    background: linear-gradient(0deg, rgba(221,221,221,0.5) 0%, rgba(248,248,248,1) 14%, rgba(244,244,244,1) 44%, rgba(194,194,194,0.5) 100%);
}

.button > img {
    position: relative;
    border-radius: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.child-center {
    text-align: center;
}