/*
*** QUICK CART SIDEBAR

/* Mini-Cart: Quantity unter dem Titel beginnen (rechts neben Thumbnail) */
.uicore-asside-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li{
  flex-direction: column;
}

/* Quantity: unter Titel, aber höher (weniger Abstand zum Link) */
.uicore-asside-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li > span.quantity {
  margin-left: calc(70px + 5px) !important;
  margin-top: -20px !important;
  padding-left: 0 !important;
  text-align: left !important;
  align-self: flex-start !important;
}
/* Breite der Sidebar */
.uicore-asside-cart {
  max-width: 480px!important;
}
/* Quantity Styles */
.wc-block-cart-item__wrap a.wc-block-components-product-name {
  font-size: var(--wp--preset--font-size--small, 18px)!important;
  color: var(--uicore-body-color);
  font-weight: 500;
}

/*
*** General Shop Styles */

/* Anzahl und Warenkorb Button nebeneinander */
.woocommerce div.product.product-type-simple form.cart, .woocommerce .product-type-variable form.cart .variations_button {
    display: flex!important;
}
/* Abstände auf der Produktseite */
.uicore-summary-wrapp {
  margin-bottom: 0!important;
}
/* Warenkorb Größe der Gesamtsumme anpassen */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label, .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: var(--wp--preset--font-size--medium, 16px)!important;
    line-height: 30px!important;
}
/* Anzahl Pill in der Kasse */
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    background: #000000!important;
    box-shadow: none!important;
    color: #ffffff!important;
    font-size: 12px!important;
    font-weight: 500!important;
}
/* Headline Größe Kasse */
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    font-size: var(--wp--preset--font-size--medium, 16px)!important;
    font-weight: 600!important;
    text-transform: uppercase!important;
}
.wc-block-components-title.wc-block-components-title {
    font-size: var(--wp--preset--font-size--medium, 16px)!important;
    font-weight: 600!important;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
    font-weight: 500!important;
}
/* Preis Padding Kasse */
span.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value.wc-block-components-order-summary-item__individual-price {
    margin: 10px 0!important;
    display:block;
}
.wc-block-components-order-summary-item__total-price {
    display: none!important;
}
/* Englische Beschreibung von Paypal entfernen */
.ppcp-place-order-description {
  display:none;
}
/* Karte speichern Checkbox Padding */
.wc-block-components-checkbox.wc-block-components-payment-methods__save-card-info {
  margin-top: 10px;
}