html {
    font-size: 14px;
}

body {
    height: 100%;
    background: white;
}

header {
    border-bottom: 1px solid #dee2e6;
    background: white;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    width: 100%;
    z-index: 4;
}

    header a {
        color: black;
        text-decoration: none;
        margin: 0 10px;
    }




nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    flex: 1;
}

    nav div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    nav a {
        text-align: center;
    }

    nav .menu-btn {
        display: none;
        padding: 12px;
        cursor: pointer;
    }

        nav .menu-btn .line {
            padding: 0;
            width: 30px;
            background: black;
            height: 2px;
            margin: 5px 0;
            transition: all 700ms cubic-bezier(.9, 0, .33, 1);
        }

            nav .menu-btn .line.line1 {
                width: 30px;
                transform: rotate(0) translateY(0);
            }

                nav .menu-btn .line.line1.line-cross {
                    width: 30px;
                    transform: rotate(45deg) translateY(10px);
                }

            nav .menu-btn .line.line2 {
                width: 28px;
                transform: translateX(0);
            }

                nav .menu-btn .line.line2.line-fade-out {
                    width: 28px;
                    transform: translate(30px);
                    opacity: 0;
                }

            nav .menu-btn .line.line3 {
                width: 20px;
                transform: rotate(0) translateY(0);
            }

                nav .menu-btn .line.line3.line-cross {
                    width: 30px;
                    transform: rotate(-45deg) translateY(-10px);
                }

    nav .nav-links {
    }

        nav .nav-links.fade-in {
            max-height: 1000px;
            width: 100%;
            border-radius: 0px;
            border-bottom: 1px solid #dee2e6;
        }

        nav .nav-links a {
            padding: 10px;
        }

    nav a:hover {
        color: red;
    }


.cl-effect-1 a::before,
.cl-effect-1 a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}

.cl-effect-1 a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}

.cl-effect-1 a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}

.cl-effect-1 a:hover::before,
.cl-effect-1 a:hover::after,
.cl-effect-1 a:focus::before,
.cl-effect-1 a:focus::after {
    opacity: 1;
    color: red;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}



#infoNavBar {
    display: flex;
    flex-direction: row;
    background: orange;
    color: black;
    justify-content: space-around;
}

    #infoNavBar a {
        color: black;
        text-decoration: none;
        margin: 0;
    }

    #infoNavBar svg {
        margin-right: 10px;
    }

    #infoNavBar .element {
        display: flex;
        align-items: center;
        padding: 10px;
    }

#accountInfo {
    display: flex;
    flex-direction: column;
}

    #accountInfo a {
        display: block;
        padding: 0px 10px;
    }

        #accountInfo a:hover {
            background: white;
        }

header #cart {
    font-size: 14px;
}

header #account {
    width: 100%;
    height: 100%;
}

header #accountInfo {
    display: none;
}

#accountContainer:hover > #accountInfo {
    display: block;
    position: absolute;
    background: orange;
    top: 100%;
    right: 0;
    padding: 10px;
}

h1 {
    margin-top:50px;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

.pageContainer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer {
    display: sticky;
    bottom: 0;
    padding: 10px;
    text-align: center;
    background: white;
    color: black;
    z-index: 3;
}

@media(max-width: 768px) {
    nav .logo {
        display: block;
        flex: 1;
        align-content: center;
        text-align: center;
    }

    nav .menu-btn {
        display: block;
    }

    nav .nav-links {
        position: absolute;
        top: 51px;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        background: orange;
        transition: all 700ms cubic-bezier(.9, 0, .33, 1);
        border-radius: 0 0 500px 500px;
    }
}

#infoCookies {
    position: fixed;
    top: 100%;
    transform: translateY(-100%);
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 100;
    transition: width 1s, all 0s;
}

#infoCookiesContent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#infoCookiesText {
    margin-right: 30px;
}

#infoCookies.accept {
    position: absolute;
    left: 50%;
    width: 100px;
    height: 50px;
    background: transparent;
    background-image: url('/src/pszczola.png');
    background-size: contain;
    background-position-x: 50%;
    background-repeat: no-repeat;
}
