@charset "UTF-8";

.mini-cart .widget_shopping_cart_content {
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cart_list.product_list_widget li::after, .widget_shopping_cart_content .buttons::after, .widget_shopping_cart_content .total::after {
  content: "";
  display: table;
  clear: both;
}

.cart_list.product_list_widget li .remove:after, .mini-cart .mini-cart-icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}


.mini-cart {
  position: relative;
}
.mini-cart .mini-cart__button {
  display: block;
  padding: 0 10px;
}
.mini-cart ul {
  margin: 0;
  padding: 0;
}
.mini-cart.hide-on-empty [data-count="0"] {
  display: none;
}
.mini-cart .mini-cart-icon {
  position: relative;
  display: block;
  width: 33px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
}
.mini-cart .mini-cart-icon:before {
  position: absolute;
  top: 50%;
  right: 0;
  color: inherit;
  content: "\f07a";
  line-height: 0;
  transform: translate(0, -50%);
}
.mini-cart .mini-cart-icon:after {
  position: absolute;
  top: -4px;
  left: 0;
  padding: 0 4px;
  min-width: 20px;
  height: 20px;
  border-radius: 20px;
  color: #fff;
  background: #111;
  content: attr(data-count);
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
}
.mini-cart .widget_shopping_cart_content {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  z-index: 99999;
  visibility: hidden;
  overflow: auto;
  padding: 30px 20px 27px;
  max-height: 80vh;
  width: 360px;
  border: 0;
  border-radius: 5px;
  background-color: var(--edumall-color-sub-menu-background);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
}
.mini-cart .widget_shopping_cart_content li > a:not(.remove) {
  display: block;
  padding-left: 25px;
  font-size: 15px !important;
  font-weight: 500;
}
.mini-cart:hover .widget_shopping_cart_content {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.woocommerce-mini-cart__empty-message {
  text-align: center;
}
.woocommerce-mini-cart__empty-message .empty-basket {
  font-size: 70px;
  color: var(--edumall-color-primary);
}
.woocommerce-mini-cart__empty-message .empty-message {
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-mini-cart__empty-message .button {
  width: 100%;
  height: 48px;
  line-height: 46px;
}

.widget_shopping_cart_content {
  border-bottom-color: var(--edumall-color-primary);
}
.widget_shopping_cart_content .cart-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 2px solid #f3f3f3;
}
.widget_shopping_cart_content .total .amount {
  float: left;
}
.widget_shopping_cart_content .buttons {
  margin: 6px 0 0;
}
.widget_shopping_cart_content .buttons .button {
  padding: 0 20px !important;
  height: 48px;
  width: 48%;
  line-height: 46px;
  text-align: center;
  float: right;
}
.widget_shopping_cart_content .buttons > a {
  margin-top: 10px;
}
.widget_shopping_cart_content .buttons .checkout {
  float: left;
}

.cart_list.product_list_widget li {
  position: relative;
  display: flex;
  align-items: flex-start;
  list-style-type: none;
  padding: 0 0 0 20px;
}
.cart_list.product_list_widget li + li {
  margin-top: 20px !important;
}
.cart_list.product_list_widget li .product-thumbnail {
  flex-shrink: 0;
  width: 80px;
  margin: 0 0 0 10px;
}
.cart_list.product_list_widget li .product-caption {
  flex-grow: 1;
}
.cart_list.product_list_widget li .quantity {
  display: block;
  width: 100%;
}
.cart_list.product_list_widget li .remove {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: inherit !important;
  font-size: 0;
  line-height: 1.5;
}
.cart_list.product_list_widget li .remove:hover {
  background: transparent;
  color: inherit !important;
}
.cart_list.product_list_widget li .remove:after {
  content: "\f00d";
  font-size: 18px;
  position: absolute;
  top: 4px;
  right: 3px;
}
.cart_list.product_list_widget .product-name {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 5px;
}

@media (max-width: 767px) {
  .mini-cart .widget_shopping_cart_content {
    display: none !important;
  }
}