#primary > div.smew-woocommerce-page {
    position: relative !important;
}

.cart-icon {
    position: absolute;
    top: 10px;
    right: 30px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10000;
}
.cart-count {
    background: red;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 14px;
    margin-left: 5px;
    width: 20px;
    height: 20px;
}
.mini-cart-widget {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 350px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 40px 15px 15px 15px;
    z-index: 9999;
    display: none;
}
.mini-cart-widget.show {
    display: block;
}

#mini-cart {
    list-style: none;
    padding-left: 10px;
    color: black;
    font-size: 14px;
    line-height: 18px;
    li {
        padding: 10px 0px;
    }
}

#clear-cart.button {
    margin-top: 20px;
    align-self: center;
    transition: 0.3s ease all;
    border: 1px solid black;
    border-radius: 8px;
}
#clear-cart.button:hover {
    background-color: white;
    color: black;
}
