.navbar-web {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    padding: 0 10px;
}

.navbar-left, .navbar-right {
    display: flex;
    align-items: center;
    margin: 0;
}

.navbar-logo {
    height: 40px;
}

.navbar-items, .navbar-item {
    list-style-type: none;
}

.navbar-items {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-item {
    display: flex;
    margin-left: 20px;
    position: relative;
}

.navbar-item-active {
    border-bottom: 2px solid #D9D7FF;
}

.navbar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.navbar-link > img {
    width: 25px;
}

.navbar-title {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 300;
    color: #111111;
}

.navbar-dropdown-icon {
    color: #111111b8;
    font-size: 0.5rem;
    margin-left: 2px;
}

.navbar-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    width: 160px;
    top: 47px;
    left: -39.4px;
    margin: 0 10px;
    padding: 0 10px;
    background-color: #FFF;
    border: 1px solid #A6A6A6;
    border-radius: 5px;
    z-index: 3;
}

.navbar-dropdown a, .navbar-dropdown span {
    text-decoration: none;
    font-size: 1rem;
    color: #111111;
    font-weight: 300;
    padding: 6px 0;
    border-bottom: 1px solid #DDD;
}

.navbar-dropdown a:last-of-type {
    border-bottom: none;
}

.navbar-dropdown-item:hover .navbar-dropdown{
    display: flex;
}

.navbar-dropdown:hover {
    display: flex;
}

.navbar-shoppingcart-quantity {
    position: absolute;
    top: -8px;
    right: 20px;
    background-color: #D9D7FF;
    color: #111;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1rem;
}

.navbar-mobile-top, .navbar-mobile-bottom {
    display: none;
}

@media screen and (max-width: 768px) {
    .navbar-web {
        display: none;
    }

    .navbar-mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        width: 100%;
        border-bottom: 1px solid #DDDDDD;
        padding: 0 10px;
    }

    .navbar-mobile-bottom {
        position: sticky;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        background-color: #FFF;
        border-top: 1px solid #DDDDDD;
        z-index: 3;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-items {
        align-items: center;
        justify-content: space-evenly;
        margin: 0;
    }

    .navbar-item {
        margin: 0;
    }

    .navbar-link {
        height: 50px;
        width: 19vw;
        justify-content: end;
    }

    .navbar-link > img {
        width: 25px;
    }

    .navbar-shoppingcart-quantity {
        right: 5vw;
    }
}

@media screen and (max-width: 630px) {
    .navbar-shoppingcart-quantity {
        right: 4vw;
    }
}

@media screen and (max-width: 500px) {
    .navbar-shoppingcart-quantity {
        right: 3vw;
    }
}

@media screen and (max-width: 430px) {
    .navbar-shoppingcart-quantity {
        right: 2vw;
    }
}

@media screen and (max-width: 370px) {
    .navbar-shoppingcart-quantity {
        right: 1vw;
    }
}