.topmenu {
    float: right;
    height: inherit;
    /*border-left: 1px solid rgba(0,0,30, 0.5);*/
    /*border-right: 1px solid rgba(255,255,255, 0.1);*/
    position: relative;
    z-index: 10000;
    display: table;
    margin: 0;
}

@media screen and (max-width: 1200px) and (min-width: 1px) {
    .topmenu {
        margin-right: 0;
    }
}

.topmenu ul {
    margin: 0;
    display:table-cell;
    vertical-align: middle;
}

.topmenu li {
    position: relative;
    float: left;
    height: inherit;
    display: block;
}

.topmenu li ul
{
    display: none;
    left: 0;
    background-color: white;
    position: absolute;
    -webkit-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.63);
    -moz-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.63);
    box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.63);
    padding: 7px 0;
    top: 45px;
    z-index: 1;
}

.topmenu ul li:hover ul ul,
.topmenu ul ul li:hover ul ul,
.topmenu ul ul ul li:hover ul ul,
.topmenu ul ul ul ul li:hover ul ul {
    display: none;
}

.topmenu span:first-child {
    height: inherit;
}

.topmenu span {
    display: flex;
}

.topmenu a {
    vertical-align: middle;
    white-space: nowrap;
    padding: 5px 15px 5px 0;
    width: 100%;
    font-weight: normal;
}

#topmenu.topmenu a {
    padding: 5px 15px 5px 15px;
}

.topmenu li:first-child a {

}

.topmenu a:hover {
    color: #777;
    text-decoration: underline;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.topmenu a span
{
    border: 0;
}

.topmenu a span:last-of-type
{
    width: 16px;
    height: 15px;
    border: 0;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    font-size: small;
}

#burger {
    display: none;
    color: black;
    right: 13px;
    top: 13px;
    position: absolute;
    font-size: x-large;
    height: unset !important;
    border: 1px solid black;
    padding: 1px 8px 0 8px;
    border-radius: 6px;
    cursor: pointer;
}

.topmenu #close {
    display: none;
    color: black;
    position: absolute;
    right: 13px;
    top: 13px;
    z-index: 1;
    font-size: xx-large;
    margin: 0 4px;
    cursor: pointer;
}

#cartpicon {
    padding: 5px 15px 5px 5px;
    float: right
}

@media screen and (max-width: 800px) and (min-width: 1px)
{
    #top .topmenu {
        padding-left: 0;
        right: 0;
        -webkit-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.63);
        -moz-box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.63);
        box-shadow: 0px 13px 18px -8px rgba(0,0,0,0.63);
        display: none;
    }
    #top .topmenu ul {
        text-align: left;
        top: 0;
        transform: translateX(calc(-100% + 1px));
    }
    #top .topmenu > ul {
        display: unset;
    }
    #top .topmenu li {
        clear: both;
        width: 100% !important;
        position: relative;
        border-radius: 0;
        background-color: white;
    }
    #top .topmenu a span:last-of-type {
        transform: rotate(90deg);
        left: 7px;
    }

    #top #burger {
        display: block;
    }

    #cartpicon {
        margin-right: 50px;
        padding-top: 15px;
    }
}


