﻿@font-face {
    font-family: "BraunBold";
    src: url('BraunLinear-Bold.woff2') format('woff2');
}

@font-face {
    font-family: "BraunRegular";
    src: url('BraunLinear-Regular.woff2') format('woff2');
}

:root {
    --nav-height: 70px;
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    /*font-family: BrandonGrotesque-Light,Arial,"sans-serif";*/
    min-height: 100%;
    padding-top: var(--nav-height);
    font-family: "BraunRegular";
    font-size: 1.2rem;
    line-height: 2rem;
    background: #fff;
    color: #000;
    position: relative;
}

table {
    width: 100%;
}

table th {
    text-align: center;
}

.promotionHeader span:before {
    transition: all .5s ease 0s;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: BraunBold;
    position: absolute;
    background-color: #000;
    color: white;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 25px;
    padding-left: 25px;
    border-radius: 25px;
    text-decoration: none;
}

.promotionHeader span {
    transition: all .5s ease 0s;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: BraunBold;
    background-color: #000;
    color: white;
    padding-right: 25px;
    padding-left: 25px;
    border-radius: 25px;
    text-decoration:none;
}

    .promotionHeader span:hover {
        background-color: #fff;
        color: #000;
        text-decoration: none !important;
    }

#validierung, #produktAuswahl, #kaufangaben, #kontaktdaten, #zubehoerauswahl {
    scroll-margin-top: 80px;
}

.rowUnderHeader {
    height: 4rem;
}

.rowBeforeFooter {
    height: 18rem;
}

a {
    text-decoration: underline;
    color: black;
    font-weight: bold;
}

/* --- table --- */


td, th {
    border: 1px solid black;
    padding-inline: 10px; 
}

th {
    background-color: black;
    color: white;
}

.tableBg {
    background-color: #eee;
}

a:hover {
    color: #333;
}

.navbar {
    height: var(--nav-height);
}

.nav-link {
    display: inline-block;
    vertical-align: middle;
    background-image: -webkit-gradient(linear,left top,right top,from(black),to(black));
    background-image: linear-gradient(90deg,black,black);
    background-repeat: no-repeat;
    background-size: 0 .1rem;
    background-position: bottom;
    -webkit-transition: background-size .4s cubic-bezier(.525,0,.185,1);
    transition: background-size .4s cubic-bezier(.525,0,.185,1);
    text-decoration: none;
}


.footerLink {
    display: inline-block;
    vertical-align: middle;
    background-image: -webkit-gradient(linear,left top,right top,from(white),to(white));
    background-image: linear-gradient(90deg,white,white);
    background-repeat: no-repeat;
    background-size: 0 .1rem;
    background-position: bottom;
    -webkit-transition: background-size .4s cubic-bezier(.525,0,.185,1);
    transition: background-size .4s cubic-bezier(.525,0,.185,1);
}

.tiniFont {
    font-family: MontserratRegular, Arial, sans-serif;
}

hr {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0), rgba(0, 0, 0, 0));
    height: 1px;
    border: 0;
}

.footerHr {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
    height: 1px;
    border: 0;
}

h1, h2, h3, h4, h5 {
    font-family: "BraunBold", Arial, sans-serif;
}

.buttonDisabled {
    pointer-events: auto !important;
    opacity: 1 !important;
}

/* --- Verlinkungen --- */
.linkText {
    text-decoration: underline;
    color: black !important;
    box-shadow: inset 0 0 0 0 black;
    color: #54b3d6;
    padding: 0 .25rem;
    margin: 0 -.25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.linkText:hover, .linkText:focus, .linkText:active {
    color: white !important;
    box-shadow: inset 600px 0 0 0 black;
    cursor: pointer;
}

.disabled {
    pointer-events: none!important;
}

.checkmark {
    width: 25px;
    border-radius: 5px;
    height: 25px;
    display: block;
    border: 2px solid black;
    background-color: white;
    margin-top: 5px;
}

.checkmark:hover {
    cursor: pointer;
}

.checkbox-style:checked ~ .checkmark {
    background-color: black !important;
    width: 25px;
    height: 25px;
    display: block;
    border: 2px solid black;
    background-image: url(img/check.png);
    background-color: green;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 4px;
}

.checkboxLabel:hover {
    cursor: default!important;
}

.btn-link {
    text-decoration: none!important;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    border: 2px solid black;
    background: #131313;
    color: #fff;
    font-family: "BraunBold", Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.7rem;
    text-align: center;
    text-transform: uppercase;
    padding: 0.8rem 1rem;
    min-width: 11.5rem;
    position: relative;
    z-index: 0;
    cursor: pointer;
    -webkit-transition: color .4s cubic-bezier(.525,0,.185,1);
    transition: color .4s cubic-bezier(.525,0,.185,1);
}


.btn-primary svg {
        -webkit-transition: color .4s cubic-bezier(.525,0,.185,1);
    transition: color .4s cubic-bezier(.525,0,.185,1);
}

    .btn-primary:focus, .btn-primary:hover {
        color: #000;
        background: #131313;
        border: 2px solid black;
    }
    .btn-primary:focus, .btn-primary:hover svg {
        fill: black;
    }

        .btn-primary:focus::after, .btn-primary:hover::after {
            height: 100%;
        }

    .btn-primary::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: .2rem;
        background: white;
        -webkit-transition: height .4s cubic-bezier(.525,0,.185,1);
        transition: height .4s cubic-bezier(.525,0,.185,1);
        z-index: -1;
    }


#restZahlAnzeige {
    background-color: #f5f5f5;
    padding: 20px 70px;
    border-radius: 5px;
}

.restZahl {
    background-color: black;
    border-radius: 100%;
    height: 60px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: white;
    width: 60px;
    font-weight: bolder;
    font-size: 1.4rem;
}

#restZahlAnzeige h3 {
    
}

#bewertungLink svg {
    -webkit-transition: fill .4s cubic-bezier(.525,0,.185,1);
    transition: fill .4s cubic-bezier(.525,0,.185,1);
}

/* --- howTo --- */

#howTo {
    background-color: #f5f5f5;
    font-family: "BraunRegular", Arial, sans-serif;
    border-radius: 10px;
}

#howTo span {
    font-size: 1.1rem;
}

.howToNumber {
    border-radius: 100%;
    background-color: #ffdda5;
    color: black;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.validation-summary-errors {
    color: red;
}

.validation-summary-errors::before {
    content: "Folgende Fehler sind aufgetaucht:"
}

.howToText {
    font-size: 1.8rem;
    background: linear-gradient(95.86deg,#fdd173 3.65%,#fed687 23.1%,#ffe1ad 43.97%,#fed47e 61.99%,#ae7b33 94.71%);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}


/* --- Form --- */

#Kassenbon_0__KassenbonZeit {
    border: none !important;
}

.k-widget.k-datepicker.form-control {
    border: none!important;
}

#participate {
    background-color: #f5f5f5;
    padding: 1rem;
    scroll-margin-top: 100px;
    border-radius: 10px;
}

.form-horizontal label {
    font-family: BraunRegular, Arial, sans-serif;
    margin-bottom: 0;
}

.form-control, .k-picker-wrap.k-state-default, .k-state-focused > .k-select {
    background-color: white !important;
    border: 2px solid grey !important;
    color: black;
}

.form-control:focus, .k-picker-wrap.k-state-default:focus, .k-state-default > .k-select:focus {
    background-color: white !important;
    color: black;
    border-color: black !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25) !important;
}

.k-i-calendar::before {
    color: grey;
}

.checkboxLabel {
    margin-left: 8px;
}

    .checkboxLabel:hover {
        cursor: pointer;
    }

input[type=checkbox] {
    accent-color: #ffdda5;
    color: red;
}

.k-widget.k-upload.k-header {
    background-color: #131313;
}

.k-upload-status.k-upload-status-total {
    color: white !important;
}

#inputForm {
    background-color: #f5f5f5;
}

/* --- Navigation --- */
#logo {
    width: 8rem;
}

nav {
    padding: 3.6rem 0;
    background-color: #000;
    color:#fff;
    border-bottom: 1px solid;
    transition: ease-in-out 0.3s;
    height: 4rem;
}

    nav li a {
        color: #fff;
        display: block;
        font-size: 1.4rem;
        line-height: 1;
        letter-spacing: .08rem;
        text-transform: uppercase;
        font-family: "BraunBold", Arial, sans-serif;
    }

        nav li a:hover {
            background-size: 100% .2rem;
        }

.unpinned {
    transform: translateY(-14.3rem) !important;
    transition: ease-in-out;
}

#navTogglerLine1, #navTogglerLine2, #navTogglerLine3 {
    transition: all 0.4s;
}

    #navTogglerLine3.selected {
        top: 74%;
        transform: rotate(45deg) translateX(-70%);
        height: 3px;
    }

    #navTogglerLine2.selected {
        opacity: 0;
    }

    #navTogglerLine1.selected {
        top: 24%;
        transform: rotate(-45deg) translateX(-70%);
        height: 3px;
    }

/* --- Footer --- */

footer {
    padding: 3.6rem 0;
    background-color: black;
    color: #ffcc8b;
    position: absolute;
    width: 100%;
    bottom: 0;
    height: auto;
}

    footer a {
        color: #fff;
        font-size: 0.9rem;
        line-height: 0.8rem;
        letter-spacing: .05rem;
        text-transform: uppercase;
        background-size: 0 .1rem;
           font-family: BraunBold;
    }

        footer a:hover {
            color: #333;
            background-size: 100% .2rem;
        }

    footer::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: .1rem;
        background: -webkit-gradient(linear,left top,left bottom,from(#ffdda5),to(#c28d46));
        background: linear-gradient(180deg,#ffdda5,#c28d46);
    }

.footer-nav {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 4rem;
}

footer .navbar-nav {
    flex-direction: row;
}

.footer-space {
    margin-inline: 25px;
}

.footer-span {
    margin-inline: 5px;
    font-size: 1.1rem;
    color: white;
}

.footer-legal a, .footer-legal span {
    color: white;
    font-size: 0.7rem;
    display: inline-block;
    vertical-align: middle;
}

.svg-icon__fill {
    fill: grey !important;
}

.svg-icon:hover .svg-icon__fill {
    transition: fill .4s cubic-bezier(.525,0,.185,1);
    fill: white !important;
}

/* --- Mobile Navbar --- */

.disable-scroll {
    overflow: hidden !important;
}

.openNav {
    right: 0% !important;
}

#mobile-nav-content {
    z-index: 5;
    background-color: white;
    height: 100vh;
    width: 100%;
    position: fixed;
    padding-top: 1rem;
    position: fixed;
    right: -100%;
    transition: ease-in-out 0.3s;
}

#navbar-toggler {
    width: 3.5rem;
    height: 3.5rem;
    border: 2px solid black;
    position: relative;
}

.nav-toggler-line {
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

#navTogglerLine1 {
    top: 30%;
}

#navTogglerLine2 {
    top: 50%;
}

#navTogglerLine3 {
    top: 70%;
}

#mobile-nav-content {
}

/* --- Accordeon / Hilfe Seite --- */
.myaccordion .btn .icon {
    max-width: 40px;
    height: 40px;
    z-index: 0;
    background: transparent;
    border: 2px solid #000;
    border-radius: 100%;
    align-self: normal;
}


.card-header {
    background-color: #000;
}

.myaccordion .btn {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    font-weight: normal;
    color: #fff;
    background-color: #000;
    padding-left: 0px;
    letter-spacing: 0;
    font-size: 18px;
    border-radius: 0 !important;
    border: none;
    position: relative;
    -webkit-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.32);
}

#accordion .card {
    background-color: transparent;
    margin-bottom: 20px;
}

.accordion-cross {
    width: 20px;
    height: 20px;
    transition: ease-in-out 0.3s;
}

[data-toggle="collapse"] .fa::before {
    font-family: "Ionicons";
    font-style: normal;
}

button[aria-expanded="true"] .accordion-cross {
    transform: rotate(45deg);
    color: #37c46f !important;
}


/* --- Media Queries --- */
/* --- Desktop --- */
@media screen and (min-width: 1080px) {
    /* Navigation */
    nav, footer {
        padding-inline: 250px !important;
    }
}


@media screen and (min-width: 768px) and (max-width: 1280px) {
    nav, footer {
        padding-inline: 50px !important;
    }

    .headerItemText {
        bottom: 4% !important;
    }

        .headerItemText h4 {
            font-size: 1.2rem;
        }

        .headerItemText h5 {
            font-size: 1rem;
        }
}


/* --- Smartphones --- */
@media screen and (max-width: 768px) {
    /* Navigation */
    .title {
        font-size: 2rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        line-height: 1rem;
        min-width: 8rem;
    }

    .footer-nav ul {
        flex-direction: column;
        text-align: center;
        margin: auto;
    }

    #restZahlAnzeige {
        padding: 20px 50px;
    }

        #restZahlAnzeige h3 {
            padding-inline: 0px;
        }

    .myaccordion .btn .icon {
        max-width: 30px;
        height: 34px;
        align-self: center;
    }

    .myaccordion h3 {
        font-size: 1.3rem;
    }

    .accordion-cross {
        width: 10px;
        height: 10px;
    }

    .footer-nav {
        margin-bottom: 2rem;
    }

    footer .navbar-nav {
        flex-direction: column;
    }

    .footer-legal {
        margin: auto;
        display: flex;
        text-align: center;
    }
    #howTo span {
        font-size: 1.3rem;
    }
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.selection-item {
    background-color: white;
    border: 2px solid gray;
    border-radius: 20px;
    padding-inline: 15px;
    font-size: 0.9rem;
    line-height: 1.3rem;
    padding-bottom: 10px;
    min-width: 100%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.selection-item:hover {
    cursor: pointer;
}

.selection-item img {
    max-height: 200px;
    display: block;
    margin: 10px auto -10px auto;
}

#plz, #ort {
    height: 100% !important;
    padding: 0;
    border: none!important;
}

.item-selected {
    border: 2px solid #000 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .6) !important;
    outline: 2px solid #000 !important;
}

.not-selectable {
    opacity: .3;
    pointer-events: none;
}

.zubehoerAnzahl {
    position: absolute;
    right: 11%;
    top: 5%;
    font-size: 24px;
}

@media screen and (min-width: 1200px) {
    .carousel-item {
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .k-button {
        width: 100% !important;
    }

    .control-checkbox {
        display: flex;
        align-items: baseline;
    }
    h1 {
        font-size: 2rem;
    }
    #header {
        margin-top: 6rem;
    }
    .zubehoerAnzahl {
        right: 12%;
    }
    .promotionHeader span {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-inline: 10px;
        bottom: -8%;
    }
}

@media screen and (max-width: 1200px) {
    .carousel-inner {
        width: 70%;
        margin-inline: auto;
    }

    .carousel-item {
        width: 100% !important;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 60px;
        height: 60px;
    }
    .carousel-control-prev {
        left: -5%;
    }
    .carousel-control-next {
        right: -5%;
    }
    .headerItemText {
        bottom: 6%;

    }
    .headerItemText h5 {
        font-size: 1rem;
        line-height: 1;
    }
    .headerItemText h4 {
        font-size: 1.2rem;
        line-height: 1;
    }
    table {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 992px) {
    body {
        margin-top: 6rem;
    }
    .navbar {
        padding-inline: 35px;
        height: 6rem;
    }
    .rowBeforeFooter {
        height: 30rem;
    }
    .zubehoerAnzahl {
        right: 13%;
        top: 6%;
    }
}

@media screen and (max-width: 576px) {
    .zubehoerAnzahl {
        right: 7%;
    }
}

