.rz_menu_link {
    min-width: 250px;
}
#rz-cart-container {
    display: flex;
    background-color: green;
    width: 100px;
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#rz-cart-link {
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.rz_cart_image {
    width: 80%;
}
#rz-cart-num {
    color: white;
    position: absolute;
    top: 0px;
    right: 20px;
    display: flex;
    font-size: 20px;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    font-weight: 900;
}

/** Animazione Cart */
.rz_cart_image.rz_cart_image_in {
    transform: rotateZ(-15deg);
    transition: 2s;
}
.rz_cart_image.rz_cart_image_out {
    transform: rotateZ(0deg);
    transition: 2s;
}

/** MOBILE **/
@media only screen and (max-width: 767px) {
    #rz-cart-container  {
        width: 60px;
        order: 2;
    }
    #rz-cart-num {
        font-size: 15px;
        top: -2px;
        right: 10px;
    }
}