/* #Cart panel
--------------------------------------------------------------- */
#nm-cart-panel {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  width: calc(100% - calc(var(--nm--page-column-spacing) + 5px));
  max-width: 500px;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  background: #fff;
}
.touch-orientation-change #nm-cart-panel {
  visibility: hidden;
}
.cart-panel-open #nm-cart-panel {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
/*.nm-cart-panel-inner {
    width: auto;
    height: 100%;
    overflow-x: hidden;
	overflow-y: scroll;
}
.touch .nm-cart-panel-inner {
	-webkit-overflow-scrolling: touch;
}*/
/*.touch .nm-cart-panel-inner::-webkit-scrollbar { /* Hide scrollbar in webKit browsers */
/*-webkit-appearance: none;
	width: 0 !important;
}*/
/* Header */
.nm-cart-panel-header {
  position: relative;
  z-index: 106;
  font-size: 16px;
  line-height: 1;
  color: #282828;
  width: 100%;
  padding: 0 37px;
}
.nm-cart-panel-header-inner {
  position: relative;
  height: 79px;
  /*overflow: hidden;*/
  border-bottom: 1px solid #e3e3e3;
}
/* Header: Cart title */
.nm-cart-panel-title {
  /*display: none;*/
  opacity: 0.5;
}
/*.nm-cart-panel-title .count:before {
    display: inline;
    content: "(";
}
.nm-cart-panel-title .count:after {
    display: inline;
    content: ")";
}*/
/* Header: Close button */
#nm-cart-panel-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #282828;
  padding-top: 32px;
  /*overflow: hidden;*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
.nm-cart-panel-close-title {
  margin-left: auto;
}
.nm-cart-panel-close-title i {
  font-size: 20px;
  line-height: 1;
}
/* Cart panel: Container */
#nm-cart-panel .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
/* Cart panel: Cart list */
.nm-cart-panel-list-wrap {
  flex: 1;
  padding: 18px 37px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
}
#nm-cart-panel .product_list_widget {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px 0;
  color: #282828;
  padding: 0;
}
#nm-cart-panel .product_list_widget > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid #e3e3e3;
}
/*.nm-shop-preloader-placeholders #nm-cart-panel .product_list_widget > li:nth-last-child(3),
#nm-cart-panel .product_list_widget > li:nth-last-child(2) {
    border-bottom-color: transparent !important;
}*/
#nm-cart-panel .product_list_widget > li:first-child {
  padding-top: 0;
  border-top: 0 none;
}
#nm-cart-panel .product_list_widget li a {
  display: block;
  color: #282828;
}
/* Cart panel: Cart list - Block overlay */
#nm-cart-panel .product_list_widget .blockOverlay {
  height: 100% !important;
  opacity: 1 !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.82) !important;
}
.cart-panel-dark #nm-cart-panel .product_list_widget .blockOverlay {
  background: rgba(51, 51, 51, 0.82) !important;
}
/* Cart panel: Cart list - Loader */
/*.nm-cart-item-loader {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    height: auto;
    opacity: 0;
    background: #fff;
    transition: opacity 0.2s ease;
}*/
/* Cart panel: Cart list - "Remove" button */
#nm-cart-panel .product_list_widget .remove {
  position: absolute;
  top: 7px;
  right: -1px;
  z-index: 100;
  display: block;
  font-size: 16px;
  line-height: 30px;
  width: 28px;
  height: 28px;
  text-align: right;
  opacity: 0.5;
}
#nm-cart-panel .product_list_widget .woocommerce-mini-cart-item:first-child .remove {
  top: -7px;
}
.no-touch #nm-cart-panel .product_list_widget .remove:hover {
  opacity: 1;
}
/* Cart panel: Cart list - Thumbnail */
.nm-cart-panel-item-thumbnail {
  align-self: flex-start;
  width: 60px;
}
.nm-cart-panel-thumbnail-wrap {
  position: relative;
  overflow: hidden;
}
.nm-cart-panel-thumbnail-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--nm--border-radius-image);
  background: rgba(255, 255, 255, 0.82);
}
.loading .nm-cart-panel-thumbnail-loader {
  display: block;
}
#nm-cart-panel .product_list_widget li img {
  position: static;
  width: 100%;
  max-width: 102px;
  height: auto;
  border-radius: min(5px, var(--nm--border-radius-image));
}
/* Cart panel: Cart list - Details */
.nm-cart-panel-item-details {
  flex: 1;
}
.nm-cart-panel-item-details > *:not(:last-child) {
  margin-bottom: 4px;
}
/* Cart panel: Cart list - Details - Title */
.nm-cart-panel-product-title {
  font-size: 16px;
  line-height: 22px;
  margin-top: 2px;
  padding-right: 20px;
}
.touch .nm-cart-panel-product-title {
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
#nm-cart-panel .nm-cart-panel-quantity-pricing {
  line-height: 22px;
  width: 100%;
  overflow: hidden;
}
/* Cart panel: Cart list - Details - Variations */
#nm-cart-panel .variation {
  display: inline-block;
  line-height: inherit;
  margin: 0 0 4px;
}
#nm-cart-panel .variation li:last-child {
  padding-bottom: 0;
}
/* Cart panel: Cart list - Details - Quantity */
#nm-cart-panel .nm-cart-panel-quantity-pricing > span.quantity, #nm-cart-panel .product-quantity {
  /* Individual products (quantity text only) */
  float: left;
  font-size: 16px;
}
#nm-cart-panel .nm-quantity-wrap {
  width: auto;
  border: 0 none;
  overflow: visible;
}
/*#nm-cart-panel .nm-quantity-wrap label.nm-qty-label-abbrev {
    display: inline-block;
}*/
#nm-cart-panel .nm-quantity-wrap .quantity {
  display: inline-block;
  /*margin-left: -7px;*/
  margin-left: -14px;
}
.cart-panel-qty-throttle .woocommerce-mini-cart-item.loading .quantity {
  /* Prevent quantity change when "throttle" is enabled via filter-hook */
  pointer-events: none;
  opacity: 0.5;
}
#nm-cart-panel .quantity .nm-qty-minus, #nm-cart-panel .quantity .nm-qty-plus, #nm-cart-panel .quantity .qty {
  line-height: inherit;
  height: auto;
}
#nm-cart-panel .quantity .nm-qty-minus, #nm-cart-panel .quantity .nm-qty-plus {
  font-size: 10px;
  line-height: 24px;
  width: 24px;
  vertical-align: top;
  transition: color 0.2s ease;
}
#nm-cart-panel .quantity .nm-qty-minus {
  text-align: right;
}
#nm-cart-panel .quantity .nm-qty-plus {
  text-align: left;
}
#nm-cart-panel .quantity .qty {
  font-size: 16px;
  width: 20px;
}
/* Cart panel: Cart list - Details - Price */
#nm-cart-panel .nm-cart-panel-item-price {
  float: right;
}
#nm-cart-panel .nm-cart-panel-item-price .amount {
  font-size: 16px;
  color: inherit;
  margin-top: 0;
}
#nm-cart-panel .nm-cart-panel-item-price .tax_label {
  display: none;
}
/* Cart panel: Summary */
.nm-cart-panel-summary {
  position: relative;
  z-index: 100;
  color: #282828;
  width: 100%;
  padding: 0 37px 37px;
  box-shadow: 0 0 18px 18px #fff;
}
#nm-cart-panel .total {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid #e3e3e3;
}
#nm-cart-panel .total strong {
  font-weight: inherit;
}
#nm-cart-panel .buttons {
  margin-bottom: 0;
}
#nm-cart-panel .buttons a:first-child {
  color: inherit;
  opacity: 1;
  border: 1px solid #aaa;
  transition: border 0.2s ease;
  background: none;
}
.no-touch #nm-cart-panel .buttons a:first-child:hover {
  border-color: #282828;
}
#nm-cart-panel .buttons .button {
  display: inline-block;
  width: 48%;
  padding: 12px;
}
#nm-cart-panel .buttons .button.checkout {
  float: right;
  padding: 13px;
}
/* Cart panel: Summary - Cart empty */
#nm-cart-panel .nm-cart-panel-empty + .nm-cart-panel-summary .total, #nm-cart-panel .nm-cart-panel-empty + .nm-cart-panel-summary .buttons {
  display: none;
}
/* Cart panel: Summary - Cart empty button */
#nm-cart-panel .buttons.nm-cart-empty-button {
  display: none;
}
.no-touch #nm-cart-panel .buttons.nm-cart-empty-button {
  padding-bottom: 9px;
}
#nm-cart-panel .nm-cart-panel-empty + .nm-cart-panel-summary .buttons.nm-cart-empty-button {
  display: block;
}
#nm-cart-panel .buttons.nm-cart-empty-button .button {
  display: block;
  width: 100%;
}
/* Cart panel: Empty */
#nm-cart-panel .product_list_widget .empty {
  display: none;
  font-size: 16px;
  min-height: none;
  margin-bottom: 0;
  /*padding: 21px 0 36px;*/
  padding: 5vh 0;
  text-align: center;
}
#nm-cart-panel .nm-cart-panel-empty .product_list_widget .empty {
  display: block;
  border-top-color: transparent;
}
#nm-cart-panel .product_list_widget .empty i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 21px;
  padding: 10px;
  text-align: center;
  background: #eee;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  opacity: 0.5;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: 0.25s;
}
.cart-panel-open #nm-cart-panel .product_list_widget .empty i {
  opacity: 1;
  transform: translateY(0);
}
/* Cart panel: Preloading - Spinner */
#nm-cart-panel-loader {
  visibility: hidden;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 105;
  width: 1px;
  height: 1px;
  opacity: 1;
  background: #fff;
}
#nm-cart-panel.loading #nm-cart-panel-loader {
  visibility: visible;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 79px;
  padding-left: 37px;
}
#nm-cart-panel-loader .nm-loader {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #282828;
  margin-top: 21px;
  padding-left: 24px;
}
#nm-cart-panel-loader .nm-loader:after {
  top: 4px;
  right: auto;
  left: 0;
  margin: 0;
}
/* Cart panel: Preloading - Placeholders */
#nm-cart-panel {
  --nm--cart-panel-preloader-color: #eee;
  --nm--cart-panel-preloader-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 70%);
}
.cart-panel-dark #nm-cart-panel {
  --nm--cart-panel-preloader-color: #555;
  --nm--cart-panel-preloader-gradient: linear-gradient(90deg, rgba(51, 51, 51, 0) 30%, rgba(51, 51, 51, 0.6) 50%, rgba(51, 51, 51, 0) 70%);
}
.nm-shop-preloader-placeholders #nm-cart-panel-loader {
  cursor: progress;
  background: none !important;
}
.nm-shop-preloader-placeholders #nm-cart-panel-loader .nm-loader {
  display: none;
}
#nm-cart-panel:not(.loading) .nm-cart-panel-empty .product_list_widget .nm-cart-panel-item-placeholder, #nm-cart-panel .product_list_widget .nm-cart-panel-item-placeholder:not(:first-child) {
  display: none;
}
.nm-shop-preloader-placeholders #nm-cart-panel.loading .product_list_widget > li:before {
  visibility: visible;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 101;
  display: block;
  content: " ";
  opacity: 1;
  border-color: transparent;
  box-shadow: none;
  animation: nmShopPreloading 1.5s infinite;
  background-image: var(--nm--cart-panel-preloader-gradient);
  background-color: transparent;
}
.nm-shop-preloader-placeholders #nm-cart-panel.loading .nm-cart-panel-list-wrap * {
  visibility: hidden;
}
.nm-shop-preloader-placeholders #nm-cart-panel .nm-cart-panel-item-price, .nm-shop-preloader-placeholders #nm-cart-panel .nm-cart-panel-quantity-pricing > .quantity, .nm-shop-preloader-placeholders #nm-cart-panel .product-quantity, .nm-shop-preloader-placeholders #nm-cart-panel .variation, .nm-shop-preloader-placeholders #nm-cart-panel .nm-cart-panel-product-title, .nm-shop-preloader-placeholders #nm-cart-panel .nm-cart-panel-thumbnail-wrap {
  position: relative;
}
.nm-shop-preloader-placeholders #nm-cart-panel.loading .nm-cart-panel-item-price:before, .nm-shop-preloader-placeholders #nm-cart-panel.loading .nm-cart-panel-quantity-pricing > .quantity:before, .nm-shop-preloader-placeholders #nm-cart-panel.loading .product-quantity:before, .nm-shop-preloader-placeholders #nm-cart-panel.loading .variation:before, .nm-shop-preloader-placeholders #nm-cart-panel.loading .nm-cart-panel-product-title:before, .nm-shop-preloader-placeholders #nm-cart-panel.loading .nm-cart-panel-thumbnail-wrap:before {
  visibility: visible;
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: 100;
  display: block;
  content: " ";
  border-radius: min(5px, var(--nm--border-radius-image));
  transition: all 350ms ease;
  background: var(--nm--cart-panel-preloader-color);
}
/* Color scheme: Dark */
.cart-panel-dark #nm-cart-panel-loader, .cart-panel-dark #nm-cart-panel {
  background: #333;
}
.cart-panel-dark #nm-cart-panel, .cart-panel-dark #nm-cart-panel .product_list_widget, .cart-panel-dark #nm-cart-panel .product_list_widget .remove, .cart-panel-dark #nm-cart-panel .variation, .cart-panel-dark #nm-cart-panel ul.variation li > div:first-child, .cart-panel-dark #nm-cart-panel .nm-quantity-wrap .quantity .nm-qty-minus, .cart-panel-dark #nm-cart-panel .nm-quantity-wrap .quantity .nm-qty-plus, .cart-panel-dark #nm-cart-panel .nm-quantity-wrap .quantity .qty {
  color: #a5a5a5;
}
.cart-panel-dark #nm-cart-panel-loader .nm-loader, .cart-panel-dark #nm-cart-panel-close, .cart-panel-dark #nm-cart-panel .product_list_widget .empty, .no-touch .cart-panel-dark #nm-cart-panel .product_list_widget .remove:hover, .cart-panel-dark #nm-cart-panel .nm-cart-panel-item-price .amount, .no-touch .cart-panel-dark #nm-cart-panel .nm-quantity-wrap .quantity .nm-qty-minus:hover, .no-touch .cart-panel-dark #nm-cart-panel .nm-quantity-wrap .quantity .nm-qty-plus:hover, .cart-panel-dark #nm-cart-panel .buttons a:first-child, .cart-panel-dark #nm-cart-panel .product_list_widget li a, .cart-panel-dark .nm-cart-panel-summary {
  color: #eee;
}
.cart-panel-dark #nm-cart-panel .product_list_widget .empty i {
  background-color: #414141;
}
.cart-panel-dark #nm-cart-panel .product_list_widget .remove {
  opacity: 1;
}
.cart-panel-dark .nm-cart-panel-header-inner, .cart-panel-dark #nm-cart-panel .product_list_widget > li, .cart-panel-dark #nm-cart-panel .total {
  border-color: #464646;
}
.cart-panel-dark #nm-cart-panel .buttons .button.border, .cart-panel-dark #nm-cart-panel .buttons a:first-child {
  border-color: #5f5f5f;
}
.no-touch .cart-panel-dark #nm-cart-panel .buttons a:first-child:hover {
  border-color: #777;
}
.cart-panel-dark .nm-cart-panel-thumbnail-loader {
  background: rgba(255, 255, 255, 0.82);
}
.cart-panel-dark .nm-cart-panel-summary {
  box-shadow: 0 0 18px 18px #333;
}
.cart-panel-dark #nm-cart-panel-loader .nm-loader:after {
  border-color: var(--nm--spinner-border-color-light);
}
@media (max-width: 2100px) {
  /* Cart panel: Summary */
  #nm-cart-panel {
    max-width: 410px;
  }
  #nm-cart-panel .buttons .button {
    display: block;
    width: 100%;
  }
  #nm-cart-panel .buttons .button.checkout {
    float: none;
    margin-top: 12px;
    padding: 14px;
  }
}
@media (max-width: 991px) {
  /* Header */
  /* Header: Close button */
  /* Cart panel: Loader overlay */
  .nm-cart-panel-header-inner {
    height: 70px;
  }
  #nm-cart-panel-close {
    padding-top: 28px;
  }
  #nm-cart-panel.loading #nm-cart-panel-loader {
    padding-top: 70px;
  }
}
@media (max-width: 550px) {
  /* Header */
  /* Header: Cart title */
  /* Cart panel: Loader overlay */
  /* Cart panel: Cart list */
  /* Cart panel: Summary */
  #nm-cart-panel {
    max-width: 370px;
  }
  .nm-cart-panel-header {
    padding-right: 21px;
    padding-left: 21px;
  }
  .nm-cart-panel-title {
    display: inline-block;
  }
  #nm-cart-panel.loading #nm-cart-panel-loader {
    padding-left: 21px;
  }
  .nm-cart-panel-list-wrap {
    padding-right: 21px;
    padding-left: 21px;
  }
  #nm-cart-panel .product_list_widget > li {
    gap: 15px;
  }
  .nm-cart-panel-summary {
    padding-right: 21px;
    padding-left: 21px;
    padding-bottom: 21px;
  }
}
@media (max-width: 385px) {
  /*#nm-cart-panel {
        width: 100%;
	}*/
  /* Cart panel: Cart list - Thumbnail */
  /* Cart panel: Cart list - Details - Quantity */
  .loading .nm-cart-panel-thumbnail-loader {
    display: none;
  }
  #nm-cart-panel .nm-quantity-wrap label.nm-qty-label-abbrev {
    display: none;
  }
  #nm-cart-panel .nm-quantity-wrap .quantity {
    margin-left: -14px;
  }
}
