﻿

#menubar {
    position: relative;
    display: inline-flex;
    max-height: 50px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

#menu {
    display: block;
    margin: 0;
    background-color: transparent;
    padding-left: 20px;
    padding-right: 70px;
}

ul#menu {
    font-size: 0.875em;
    font-weight: 400;
    text-align: center;
}

    ul#menu li {
        display: inline;
        list-style: none;
        padding: 15px;
    }

        ul#menu li a {
            background: none;
            color: #000;
            text-decoration: none;
        }

            ul#menu li a:hover {
                color: #333;
                text-decoration: none;
            }

#cartmenubtn {
    position: absolute;
    top: 1px;
    right: 1px;
    height: 45px;
    min-width: 45px;
    background-image: url("../images/List_Contents_4.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.dropdown {
    float: right;
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: fixed;
    top: 40px;
    right: 1%;
    Width: 70%;
    /*    padding: 10px; */
    text-align: center;
    background-color: white;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 100000;
}

.dropdown-contentsquare {
    position: relative;
    width: 15.9%;
    height: 45px;
    float: left;
    margin: 2%;
    padding: 0%;
    border: 0;
    border-spacing: 0;
    border-style: solid;
    border-color: whitesmoke;
    background-color: WHITE;
}

    .dropdown-contentsquare img {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

.show {
    display: block;
}

.smaller {
    background-color: black;
    border-color: white;
    border-style: solid;
    border-width: 0 0 1px 0;
    height: 38px;
    opacity: 0.6;
}

    .smaller:hover {
        opacity: 1;
    }

    .smaller #menubar {
        max-height: 35px;
    }

    .smaller .site-title {
        width: 70px;
        height: 45px;
        background-image: url("../images/Logo02_smaller3.svg");
        background-repeat: no-repeat;
    }

    .smaller ul#menu li a {
        background: none;
        color: white;
        text-decoration: none;
    }

/*************************************************************************************************************************************************************/
@media only screen and (max-width: 1200px) {

    .dropdown-content {
        Width: 95%;
        max-height: 95%;
    }

    .dropdown-contentsquare {
        width: 16%;
        height: 40px;
        margin: 2%;
        padding: 0%;
    }
}

/*************************************************************************************************************************************************************/
@media only screen and (max-width: 600px) {

    #menubar {
        max-height: 45px;
        width: 100%;
        align-items: center;
        justify-content: flex-end;
    }

    #menu {
        padding-left: 0px;
        padding-right: 50px;
    }

    ul#menu li {
        padding: 3px;
    }

    .smaller {
        height: 30px;
    }

        .smaller #menubar {
            align-items: center;
            height: 25px;
        }

    .dropdown-content {
        Width: 95%;
        top: 50px;
    }

    .smaller .dropdown-content {
        top: 30px;
    }

    .dropdown-contentsquare {
        width: 27.3%;
        height: 45px;
        margin: 3%;
        padding: 0%;
    }
}

/*************************************************************************************************************************************************************/
@media only screen and (max-width: 380px) {

    .smaller {
        height: 30px;
    }

        .smaller .site-title {
            width: 55px;
            height: 35px;
        }

        .smaller #cartmenubtn {
            height: 35px;
            min-width: 35px;
        }

        .smaller #menubar {
            align-items: center;
            height: 25px;
        }

        .smaller #menu {
            padding-right: 40px;
        }

    #menubar {
        align-items: flex-end;
        height: 50px;
    }

    #menu {
        padding: 0;
    }

    ul#menu {
        font-size: 0.875em;
        font-weight: 400;
        margin: 0;
        padding: 0px;
        text-align: right;
        background-color: transparent;
        width: 100%;
    }

        ul#menu li {
            padding-left: 10px;
            padding-Right: 0px;
        }

    #cartmenubtn {
        height: 33px;
        min-width: 33px;
    }

    .dropdown-content {
        top: 60px;
    }

    .smaller .dropdown-content {
        top: 30px;
    }
}

