section {
    position: relative;
    overflow: hidden;
}

/* SVGs */
.logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Menu */

.menu .menu_entries .right {
    color: #000;
}

.menu .button.normal {
    box-shadow: inset 0 0 0 0.15rem #fff;
}

    .menu .button.normal:hover {
        background: #fff;
    }

/* Shop */
h1 {
    font-size: 2.62rem;
    margin: 0 auto;
}

.button.go-top {
    padding: 0.5em 1.25em;
    position: fixed;
    bottom: 2em;
    left: 50%;
    box-shadow: 5px 2.5px 0.77rem rgba(0, 0, 0, .2);
    transform: translate(-50%, calc(100% + 2em + 0.77rem));
    transition: transform ease-in-out 0.2s;
}

.button.go-top.show {
    transform: translateX(-50%);
}

.shop {
    /*align-items: center;*/
}

    .shop > div {
        /*width: 100%;*/
        flex-shrink: 0;
    }

    .shop .container {
        width: 100%;
        align-items: center;
        margin-bottom: 1.88rem;
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
        padding: 1.35rem;
        border-radius: 1rem;
    }

        .shop .container .padding {
            padding: 1.35rem;
            padding-bottom: 0;
            width: 100%;
        }

        .shop .container h2 {
            font-weight: bold;
            font-size: 1rem;
            margin: 0 0 1.35rem 0;
        }

        .shop .container .button {
            width: 100%;
            padding: 0.4rem 0;
            border-radius: 1rem;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            max-width: initial;
            box-shadow: none;
        }

        .shop .container ul {
            margin: 0;
            font-size: 0.75rem;
            align-self: flex-start;
            padding-left: 0.8rem;
            line-height: 1.31rem;
            user-select: none;
        }

        .shop .container ul li {
            cursor: pointer;
        }

            .shop .container ul li:not(.expand) ul {
                display: none;
            }
            
            .shop .container ul li.selected {
                font-weight: bold;
            }

            .shop .container ul li a {
                float: right;
                margin-left: 1em;
            }

    .shop .cart {
        padding: 0;
    }

        .cart .items {
            align-items: center;
            align-self: flex-start;
        }

            .cart .items img {
                width: 1.88rem;
            }

    .shop .search {
        padding: 0.75rem 1.35rem;
    }    

        .search .bar {
            align-self: flex-start;
            align-items: center; 
        }    

            .search .bar input {
                font-size: 0.75rem;
                outline: none;
                border: none;
                background: none;
                width: 100%;
            }

            .search .bar img {
                width: 1.15rem;
            }

    
    .shop .content {
        margin-left: 3.72rem;
        flex-wrap: wrap;
        flex: 1;
    }

        .content .product {
            padding: 0;
            width: auto;
            margin-right: auto;
            margin-left: auto;
            height: fit-content;
            width: 12vw;
            /*flex-grow: 1;*/
            position: relative;
        }

            .content .product .padding {
                padding-top: 0.75rem;
                padding-bottom: 0.5rem;
            }

       /* .content .product:last-child {
            margin-left: 0;
        }*/

            .content .product span {
                margin-top: 0.5rem;
                font-weight: normal;
                margin-bottom: 0.5rem;
                text-align: center;
                display: block;
                font-size: 0.75rem;
            }   

            .content .product .image {
                width: 100%;
                background-position: center !important;
                background-size: contain !important;
                background-repeat: no-repeat !important;
            }   

            .content .product ul {
                user-select: none;
                font-size: 0.6rem;
                line-height: 0.9rem;
            }

                .content .product ul .dropdown {
                    position: relative;
                }

                .content .product ul .dropdown.expand:after {
                    content: "";
                    width: 0; 
                    height: 0; 
                    border-left: 5px solid transparent;
                    border-right: 5px solid transparent;
                    border-bottom: 5px solid #000;
                    position: absolute;
                    right: 0;
                    top: 0.25rem;
                }

                .content .product ul .dropdown:not(.expand):after {
                    content: "";
                    width: 0; 
                    height: 0; 
                    border-left: 5px solid transparent;
                    border-right: 5px solid transparent;
                    border-top: 5px solid #000;
                    position: absolute;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                }

            .content .product li:not(.expand) ul {
                display: none;
            }
        
            .content .product a {
                position: absolute;
                top: 0.4rem;
                right: 0.75rem;
                font-size: 0.9rem;
            }
    
/* Footer */
    .footer .logo {
        position: relative;
        left: 0;
    }        
