/* Customizations
---------------------------------------------------------------------------- */

/* Site Padding Top */
.woocommerce-page .site-inner {
  padding-top: 150px;
}

/* Add to Cart with Quantity
---------------------------------------------------------------------------- */

/* Normalizations
----------------------------------------------------- */
/* Default Archive */
.product .cart {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	margin-top: 10px;
}
.product .cart button[type="submit"] {
  margin: 0 10px !important;
}

/* Tickera Event Table - e.g. via shortcode */
table.event_tickets td p {
  margin: 0;
}
form.cart {
	display: flex;
	flex-flow: row wrap;
}
form.cart .quantity {
  margin-right: 10px;
}
form.cart .quantity br {
  display: none;
}
form.cart input.qty {
  min-width: 70px;
}
form.cart .added_to_cart {
  display: block;
  flex-basis: 100%;
  text-align: right;
}

/* Make Ajax Icons availlable
----------------------------------------------------- */
.cart button.button.loading,
.cart input.button.loading,
.cart button.button.added,
.cart input.button.added {
  position: relative;
  padding-right: 55px;
}
.cart button.button.loading::after,
.cart input.button.loading::after {
  font-family: WooCommerce;
  content: "\e01c";
  font-weight: 400;
  position: absolute;
  top: calc( 50% - 9px );
  right: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.cart button.button.added::after,
.cart input.button.added::after {
  font-family: WooCommerce;
  content: "\e017";
  position: absolute;
  top: calc( 50% - 9px );
  right: 20px;
}




/* Checkout
---------------------------------------------------------------------------- */

/* Payment Methods
----------------------------------------------------- */
.wc_payment_method label {
  display: inline-block;
  width: 90%;
}

/* Payment: PayPal
----------------------------------------------------- */
/* hide Paypal about label */
.payment_method_paypal .about_paypal {
  display: none;
}


/* Mini Cart in Header - Cart Widget in Header Right Area
---------------------------------------------------------------------------- */

.header-widget-area .widget {
  margin: 0;
}
.header-widget-area h3 {
  display: none;
}

.has-mini-cart {
  margin: 0;
}
.has-mini-cart a {
	position: relative;
	display: block;
  width: 40px;
  height: 40px;
  padding: 12px 15px;
  font-size: 12px;
	line-height: 1;
  font-weight: 400;
	color: #fff;
	text-decoration: none;
  background: url(../img/icon_cart.svg) no-repeat 50% 50%;
  background-size: 24px auto;
}
.has-mini-cart .amount {
	padding-right: 2px;
}

.has-mini-cart .cart-contents-count {
	position: absolute;
	top: 9px;
  left: 31px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--highlight-color);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.widget_shopping_cart .widget_shopping_cart_content {
  display: none;
  position: absolute;
  top: 40px;
  left: -70px;
  z-index: 1;
  width: 300px;
  padding: 0 10px 10px;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.header-widget-area:hover .widget_shopping_cart_content {
  display: block;
}
.woocommerce-mini-cart-item a.remove {
	color: var(--secondary-color)!important;
	font-weight: 500;
}
.woocommerce-mini-cart-item a.remove:hover {
	color: var(--white-color)!important;
	background-color: var(--decoration-color)!important;
}
.woocommerce-mini-cart-item .attachment-woocommerce_thumbnail {
  display: none;
}
.woocommerce-mini-cart__buttons a.button {
  font-size: 15px;
}
.woocommerce-mini-cart__empty-message {
  padding: 20px 0 10px;
}

@media (min-width: 960px) {
  .has-mini-cart .cart-contents-count {
  	top: -10px;
    left: 7px;
  }
  .widget_shopping_cart .widget_shopping_cart_content {
    left: auto;
    right: 0;
  }
}


/* Checkout - Review Order Table */

.woocommerce-checkout-review-order-table .tc_cart_seat_remove {
	display: none;
}
