
header{
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    /* position: fixed; */
}

.topbar{
    padding: 5px;
    height: 25px;
    width: 100%;
    margin-top: 5px;
    /* display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap; */
    background-color: var(--primary-color);
}
.topbar .warenkorbzeile{
    float: right;
    margin-right: 150px;
    display: flex;
    flex-direction:column;
    flex-wrap:wrap;
}
.topbar .warenkorbzeile img{
    width: 30px;
    margin-right: 5px;
}
.topbar .warenkorbzeile .warenkorbsumme{
    text-decoration: none;
    color: var(--main-brand-color);
    position: relative;
    top: -1px;
}
.topbar .warenkorbzeile .warenkorbsumme img{
    vertical-align: middle;
    margin-right: 5px;
}
.topbar .sprache{
    float: left;
    margin-left: 150px;
}
.topbar .sprache img{
    width: 20px;
    height: 20px;
}
.topbar .container {
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
}
.topbar form{
    /* display: flex;
    align-items: center; */
    display: inline-block;
}
.topbar input[type=text]{
    background-color: var(--primary-color);
    border: none;
    height: 22px;
    width: 200px;
    text-align: center;
}
.topbar input[type=text]:focus {
    border: 1.5px solid var(--main-brand-color);
    outline: none !important;
    width: 200px;
    border-radius: 20px;
}
.topbar button{
    background-color: var(--primary-color);
    margin-left: -26px;
    height: 15px;
}

.header_text{
    width: 850px;
}
.circle{
    margin-top: 15px;
    height: 140px;
    width: 140px;

    max-height: 80vw;
    max-width: 80vw;

    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--main-brand-color);

    display: flex;
    justify-content: center;
    align-items: center;
}
.circle img{
    width:65%; 
}

nav{
    margin-bottom: 120px;

}
nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
nav li{
    list-style: none;
}
nav .nav_topline{
    display: none;
}
/* .nav_topline ul{
    display: none;
} */
nav li .nav_topline {
    display: none;
}
nav a{
    color: var(--secondary-text-color);
    text-decoration: none;
    position:relative;
    padding: 3px;
}
nav a:hover{
    color: var(--text-color)
}
nav a::after{
    content:'';
    height: 2px;
    width: 0;
    background: var(--main-brand-color);
    position: absolute;
    bottom:0;
    left:0;
    transition: 150ms ease-in-out;
}
nav a:hover::after{
    width: 100%;
}
#toggle_button{
    display: none;
}
label[for="toggle_button"] span{
    display:none;
}
label[for="toggle_button"] span{
    font-size: 60px;
}
footer{
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    position: relative;
    bottom: 0;
    right: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */

    transform: translate( -50%);
}
.button {
    /* background-color: #4CAF50; Green */
    background-color: var(--secondary-color);
    border: 1.5px solid var(--main-brand-color);
    border-radius: 10px;
    color: white;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
}
.shoppingcardbutton{
    /* background-color: #4CAF50; Green */
    background-color: var(--secondary-color);
    border: 1.5px solid var(--main-brand-color);
    height: 30px;
    border-radius: 5px;
    color: white;
    padding: 2px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
}
.textinput {
    background-color: var(--secondary-color);
    border: 1.5px solid var(--main-brand-color);
    border-radius: 15px;
    color: white;
    padding: 5px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
}
footer ul{
    list-style: none;
    display: flex;
    gap: 10px;
}
footer li{
    list-style: none;
}
.warenkorbzeile{
    float: right;
}
.warenkorbzeile img{
    width: 10%;
}
@media(max-width: 750px){

    .topbar .warenkorbzeile{
        display: none;
    }
    .topbar .warenkorbzeile img{
        display: none;
    }
    .topbar .warenkorbzeile .warenkorbsumme{
        display: none;
    }
    .topbar .warenkorbzeile .warenkorbsumme img{
        display: none;
    }
    .topbar .sprache{
        display: none;
    }
    .topbar .sprache img{
        display: none;
    }

    .topbar input[type=text]{
        background-color: var(--primary-color);
        border: none;
        /* width: 100%; */
        width: calc(100% - 30px);
        height: 22px;
    }
    .topbar input[type=text]:focus {
        border: 1.5px solid var(--main-brand-color);
        outline: none !important;
        border-radius: 20px;
        /* width: 100%; */
        width: calc(100% - 30px);
        height: 22px;
    }
    .topbar button{
        background-color: var(--primary-color);
        /* margin-left: -26px; */
        margin-left: -30px;
        height: 15px;
    }

    .circle{
        margin-top: 10px;
        height: 120px;
        width: 120px;
    
        max-height: 80vw;
        max-width: 80vw;
    
        overflow: hidden;
        border-radius: 50%;
        border: 5px solid var(--main-brand-color);
    
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .circle img{
        width:65%; 
    }
    .sprache{
        display: none;
    }
    /* .nav_topline{
        width: 100%;
        /* justify-content: space-between;
        align-items: center;
        width: 100%; 
    }
    .nav_topline ul{
        width: 100%;
        list-style: none;
        display:block;
        width: 100%;
        flex-direction: row;
        /* list-style: none;
        display: flex;
        gap: 20px; 
    }
    .nav_topline li{
        width: 100%;
        /* list-style: symbols();
        list-style: none; 
    } */
    nav{
        position: absolute;
        top: 0;
        left: 0;
        background: var(--primary-color);
        padding: 15px;
        border-radius: 0 0 25px 0;

    }
    nav ul{
        list-style: none;
        display: none;
        width: 100%;
        flex-direction: column;
        padding-left: 0;
    }
    nav li{
        list-style: none;
    }

    nav .nav_topline{
        width: 100%;
        /* justify-content: space-between;
        align-items: center;
        width: 100%; */
    }
    nav li .nav_topline{
        width: 100%;
        list-style: none;
        display:block;
        width: 100%;
        flex-direction: row;
        /* list-style: none;
        display: flex;
        gap: 20px; */
    }
    /* .nav_topline li{
        width: 100%;
        /* list-style: symbols();
        list-style: none; 
    } */

    #toggle_button:checked ~ ul{
        display: flex;
        width: 100%;
    }
    #toggle_button{
        display: none;
    }
    
    label[for="toggle_button"] span{
        display: block;
        font-size: 40px;
    }


    .button {
        /* background-color: #4CAF50; Green */
        width: 100%;
        background-color: var(--secondary-color);
        /* border: 1.5px solid var(--main-brand-color); */
        border: 1.5px solid var(--primary-color);
        border-radius: 10px;
        color: white;
        padding: 12px 25px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        margin: 4px 2px;
        cursor: pointer;
    }
    .shoppingcardbutton{
        /* background-color: #4CAF50; Green */
        background-color: var(--secondary-color);
        border: 1.5px solid var(--main-brand-color);
        border-radius: 10px;
        color: white;
        padding: 12px 25px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        margin: 4px 2px;
        cursor: pointer;
    }
    .textinput {
        width: 100%;
        background-color: var(--secondary-color);
        /* border: 1.5px solid var(--main-brand-color); */
        border: 1.5px solid var(--primary-color);
        border-radius: 15px;
        color: white;
        padding: 5px 12px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        margin: 4px 2px;
        cursor: pointer;
    }
    .warenkorbzeile{
        display: none;
    }
    /* .warenkorbzeile img{
        width: 25%;
    } */
}