/**
 * 8am B2B List Frontend Styles
 */
/* General Styles */
.eightam-b2b-list-container {
  margin-bottom: 30px;
}
.eightam-b2b-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.eightam-b2b-list-empty {
  padding: 30px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #666;
}
.eightam-b2b-list-empty p {
  margin: 0 0 15px 0;
  font-size: 1.1em;
}
/* Tabs Navigation */
.eightam-b2b-list-tabs {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.eightam-b2b-list-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 -1px 0;
  gap: 8px;
}
.eightam-b2b-list-tabs-nav .eightam-b2b-list-create-button-wrap {
  margin-left: auto;
}
.eightam-b2b-list-tabs-nav .eightam-b2b-list-create-button-wrap .eightam-b2b-list-create-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  /* Hide the text, only show the icon */
}
.eightam-b2b-list-tabs-nav .eightam-b2b-list-create-button-wrap .eightam-b2b-list-create-button:hover {
  background-color: #e9e9e9;
}
.eightam-b2b-list-tabs-nav .eightam-b2b-list-create-button-wrap .eightam-b2b-list-create-button .dashicons-plus {
  margin-top: 4px;
}
.eightam-b2b-list-tabs-nav .eightam-b2b-list-create-button-wrap .eightam-b2b-list-create-button span:not(.eightam-b2b-list-svg-icon) {
  display: none;
}
.eightam-b2b-list-tabs-nav li {
  margin: 0;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 20px;
  background-color: #f5f5f5;
}
.eightam-b2b-list-tabs-nav li:hover {
  background-color: #e9e9e9;
}
.eightam-b2b-list-tabs-nav li.active {
  background-color: #fff;
  border: 2px solid #933C0E;
}
@media (min-width: 768px) {
  .eightam-b2b-list-tabs-nav li.eightam-b2b-list-local + li.eightam-b2b-list-global {
    margin-left: 1.5em;
  }
  .eightam-b2b-list-tabs-nav li.eightam-b2b-list-local + li.eightam-b2b-list-global:before {
    content: "";
    border: 1px solid #e9e9e9;
    margin-left: -1em;
    margin-right: 1em;
  }
}
.eightam-b2b-list-tabs-nav li.eightam-b2b-list-global > span > a {
  color: var(--theme-palette-color-5);
  font-weight: 500;
}
.eightam-b2b-list-tabs-nav li.eightam-b2b-list-global.active > span > a {
  color: #444546;
}
.eightam-b2b-list-tabs-nav li > span {
  display: inline-block;
  text-decoration: none;
  color: #444546;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.eightam-b2b-list-tabs-nav li > span a {
  color: #444546;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  transition: all 0.2s ease;
  text-decoration: none;
}
/* Mobile tabs dropdown */
.eightam-b2b-list-mobile-tabs-dropdown {
  display: none;
  position: relative;
  margin-left: 8px;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-button {
  background-color: #f5f5f5;
  border: none;
  border-radius: 20px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-button:hover {
  background-color: #e9e9e9;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-button .eightam-b2b-list-svg-icon {
  width: 16px;
  height: 16px;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 20px;
  margin-top: 5px;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-content.show {
  display: block;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-content a {
  color: #444546;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ddd;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-content a:last-child {
  border-bottom: none;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-content a:hover {
  background-color: #f0f0f0;
}
.eightam-b2b-list-mobile-tabs-dropdown .eightam-b2b-list-mobile-tabs-content a.active {
  font-weight: 600;
  color: #933C0E;
}
/* Edit toggle and dropdown */
.eightam-b2b-list-edit-toggle {
  display: none;
  background: none;
  cursor: pointer;
  border: none;
  padding: 0 5px;
  vertical-align: middle;
  padding-right: 15px;
  transition: all 0.2s ease;
}
.eightam-b2b-list-tabs-nav > li.active .eightam-b2b-list-edit-toggle {
  display: inline-block;
}
.eightam-b2b-list-tabs-nav li .eightam-b2b-list-edit-wrap {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: fit-content;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  z-index: 100;
  display: none;
  padding: 5px 0;
  transition: all 0.2s ease;
  margin-top: 5px;
}
.eightam-b2b-list-tabs-nav li .eightam-b2b-list-edit-wrap.active {
  display: block;
}
.eightam-b2b-list-tabs-nav li .eightam-b2b-list-edit-wrap > a {
  display: block;
  padding: 8px 12px;
  margin: 0;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  color: var(--theme-palette-color2);
  transition: all 0.2s ease;
}
.eightam-b2b-list-tabs-nav li .eightam-b2b-list-edit-wrap > a:hover {
  background-color: #f5f5f5;
}
.eightam-b2b-list-tabs-nav li .eightam-b2b-list-edit-wrap .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}
/* List Content */
.eightam-b2b-list-tabs-content {
  background-color: #fff;
  padding: 2em;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  margin-top: 15px;
  outline: 2px #F0EEEF solid;
  outline-offset: -2px;
}
@media (max-width: 689.98px) {
  .eightam-b2b-list-tabs-content {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    padding: 1em 0;
    outline: none;
  }
  .eightam-b2b-list-tabs-content .eightam-b2b-list-items-table .product-thumbnail {
    width: 0;
    padding: 0;
  }
  .eightam-b2b-list-tabs-content .product-thumbnail .eightam-b2b-list-thumbnail-wrapper img {
    display: none;
  }
  .eightam-b2b-list-tabs-content .eightam-b2b-list-selection-indicator {
    left: -20px;
    top: -20px;
  }
}
.eightam-b2b-list-info {
  margin-bottom: 20px;
}
.eightam-b2b-list-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0;
}
.eightam-b2b-list-header-actions h1 {
  margin: 0;
  font-size: 28.9px;
  font-weight: 500;
  color: #595A5B;
}
.eightam-b2b-list-description {
  color: #444546;
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1em;
  margin-bottom: 40px;
}
/* Action buttons styling */
.eightam-b2b-list-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Action message styling */
.eightam-b2b-list-action-message {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.eightam-b2b-list-action-message.success {
  color: #1C9800;
}
.eightam-b2b-list-action-message.error {
  color: #e53935;
}
/* Icon buttons */
.eightam-b2b-list-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 400;
  gap: 10px;
  background-color: #fff;
  color: #444546;
  border: 2px solid rgba(217, 217, 217, 0.5);
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  /* Success state for visual confirmation */
}
.eightam-b2b-list-icon-button:hover {
  background-color: #fff;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  opacity: 0.9;
}
.eightam-b2b-list-icon-button:active {
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  opacity: 0.8;
}
.eightam-b2b-list-icon-button svg,
.eightam-b2b-list-icon-button .dashicons {
  width: 20px;
  height: 20px;
}
.eightam-b2b-list-icon-button svg {
  fill: currentColor;
}
.eightam-b2b-list-icon-button.icon-only {
  padding: 6px;
  width: 36px;
  height: 36px;
}
.eightam-b2b-list-icon-button.icon-only svg,
.eightam-b2b-list-icon-button.icon-only .dashicons {
  margin-right: 0;
}
.eightam-b2b-list-icon-button:hover {
  background-color: #f5f5f5;
}
.eightam-b2b-list-icon-button.success {
  background-color: #1C9800;
  border-color: #1C9800;
  color: white;
}
.eightam-b2b-list-icon-button.success svg path {
  fill: white;
}
.eightam-b2b-list-icon-button.success .dashicons {
  color: white;
}
.eightam-b2b-list-icon-button.success .eightam-b2b-list-cart-icon svg path {
  fill: white;
}
/* Go to cart button styling */
.eightam-b2b-list-go-to-cart {
  margin-right: 10px;
  background-color: #1C9800;
  border-color: #1C9800;
  color: white;
}
.eightam-b2b-list-go-to-cart img.eightam-b2b-list-icon {
  filter: brightness(0) invert(1);
}
.eightam-b2b-list-go-to-cart:hover {
  background-color: #177f00;
  border-color: #177f00;
}
.eightam-b2b-list-cart-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.eightam-b2b-list-cart-icon svg {
  width: 100%;
  height: 100%;
}
.eightam-b2b-list-delete-icon {
  width: 20px;
  height: 20px;
}
/* Icon styling */
.eightam-b2b-list-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
/* Add to cart button dots */
.eightam-b2b-list-add-to-cart {
  color: #933C0E;
  border-color: #933C0E;
}
.eightam-b2b-list-add-to-cart[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.eightam-b2b-list-trash-icon {
  background-color: #F0EEEF;
  width: 79px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444546;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.eightam-b2b-list-trash-icon:hover {
  background-color: #e9e9e9;
}
.eightam-b2b-list-trash-icon svg path {
  fill: #444546;
}
/* Product table styling */
.eightam-b2b-list-items-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 20px;
  border: none;
}
.eightam-b2b-list-items-table thead th {
  background-color: transparent;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #000;
  color: #444546;
}
.eightam-b2b-list-items-table tbody tr {
  border-bottom: 1px solid #444546;
  transition: all 0.2s ease;
  height: 102px;
}
.eightam-b2b-list-items-table tbody tr:nth-child(even) {
  background-color: rgba(217, 217, 217, 0.32);
}
.eightam-b2b-list-items-table tbody tr:hover {
  background-color: rgba(217, 217, 217, 0.5);
}
.eightam-b2b-list-items-table tbody tr[data-selected="true"] {
  background-color: rgba(217, 217, 217, 0.32);
}
.eightam-b2b-list-items-table tbody tr[data-selected="true"]:hover {
  background-color: rgba(217, 217, 217, 0.5);
}
.eightam-b2b-list-items-table tbody tr[data-selected="true"] .eightam-b2b-list-selection-indicator {
  opacity: 1;
  background-color: white;
}
.eightam-b2b-list-items-table td {
  padding: 15px;
  vertical-align: middle;
}
.eightam-b2b-list-items-table .product-thumbnail {
  width: 70px;
  cursor: pointer;
  text-align: center;
}
.eightam-b2b-list-items-table .product-thumbnail .woocommerce-placeholder {
  width: 70px;
  height: 70px;
}
.eightam-b2b-list-items-table .product-thumbnail img {
  max-width: 70px;
  height: auto;
  transition: all 0.2s ease;
}
.eightam-b2b-list-items-table .product-details {
  width: 30%;
}
.eightam-b2b-list-items-table .product-details h4 {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #444546;
}
.eightam-b2b-list-items-table .product-price-total {
  text-align: left;
  font-weight: normal;
  color: #444546;
  width: 100px;
}
.eightam-b2b-list-items-table .product-quantity {
  width: 80px;
  text-align: center;
  font-weight: 600;
  color: #444546;
}
.eightam-b2b-list-items-table .product-quantity .eightam-b2b-list-quantity {
  width: 3.5em;
  font-size: 1.25em;
  background-color: transparent;
  border: none;
}
.eightam-b2b-list-items-table .product-quantity input[type=number]::-webkit-inner-spin-button,
.eightam-b2b-list-items-table .product-quantity input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.eightam-b2b-list-items-table .selection-header {
  width: 30px;
  position: relative;
}
.eightam-b2b-list-items-table .selection-header svg {
  width: 30px;
  height: 30px;
}
.eightam-b2b-list-items-table .selection-header svg path {
  fill: #444546;
}
.eightam-b2b-list-items-table input,
.eightam-b2b-list-items-table button,
.eightam-b2b-list-items-table a,
.eightam-b2b-list-items-table .quantity {
  cursor: default;
}
.eightam-b2b-list-items-table button,
.eightam-b2b-list-items-table a {
  cursor: pointer;
}
/* Product add-ons styling */
.product-addons {
  margin-top: 8px;
}
.product-addons .variation {
  margin: 0;
  color: #444546;
}
.product-addons .variation dt {
  display: inline;
  font-weight: 600;
  margin-right: 0;
}
.product-addons .variation dd {
  display: inline;
  margin: 0;
  font-weight: 400;
}
/* Selection indicator */
.eightam-b2b-list-thumbnail-wrapper {
  position: relative;
  display: inline-block;
}
.eightam-b2b-list-selection-indicator {
  position: absolute;
  top: 33%;
  left: -16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.eightam-b2b-list-selection-indicator svg {
  fill: currentColor;
  width: 26px;
  height: 26px;
}
.eightam-b2b-list-selection-indicator .eightam-b2b-list-svg-icon {
  background-color: #1C9800;
  width: 26px;
  height: 26px;
}
/* Checkbox styling for selection */
.eightam-b2b-list-selection-checkbox {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Quantity controls */
.eightam-b2b-list-quantity-controls {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.eightam-b2b-list-quantity-controls button {
  background: none;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
}
.eightam-b2b-list-quantity-controls button:hover {
  color: #933C0E;
}
.eightam-b2b-list-quantity-wrapper {
  position: relative;
  display: inline-block;
}
/* Modal Styles */
#main .eightam-b2b-list-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
#main .eightam-b2b-list-modal .eightam-b2b-list-modal-title {
  font-size: 1.4em;
  font-weight: 600;
}
#main .eightam-b2b-list-modal-content {
  margin: 10% auto;
  width: 50%;
  max-width: 500px;
  position: relative;
  background-color: #fff;
  padding: 2em;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  outline: 2px #F0EEEF solid;
  outline-offset: -2px;
}
#main .eightam-b2b-list-modal-content .form-row {
  margin-bottom: 20px;
}
.eightam-b2b-list-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.eightam-b2b-list-close:hover,
.eightam-b2b-list-close:focus {
  color: black;
  text-decoration: none;
}
.eightam-b2b-list-form {
  margin-top: 20px;
}
.eightam-b2b-list-form .form-row {
  margin-bottom: 20px;
}
.eightam-b2b-list-form .form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.eightam-b2b-list-form .form-row input[type="text"],
.eightam-b2b-list-form .form-row textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.eightam-b2b-list-form .form-row textarea {
  height: 100px;
}
.eightam-b2b-list-form .button-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
/* Dropdown styling */
#main .eightam-b2b-list-dropdown {
  position: relative;
  display: block;
  float: right;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-button {
  background-color: var(--theme-palette-color-8);
  font-family: var(--theme-font-family);
  text-transform: unset;
  letter-spacing: 0;
  color: #933C0E;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-button .eightam-b2b-list-svg-icon {
  margin-right: 5px;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 20px;
  margin-top: 5px;
  left: 0;
  transform: none;
  opacity: 1;
  visibility: visible;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-content.show {
  display: block;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item {
  color: #444546;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item:last-child {
  border-bottom: none;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item:hover {
  background-color: #f0f0f0;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item .eightam-b2b-list-svg-icon.checkmark {
  display: none;
  background-color: #1C9800;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item.selected .eightam-b2b-list-svg-icon.checkmark {
  display: inline-block;
}
/* WooCommerce Account Navigation Styling */
@media (min-width: 992px) {
  #main .ct-acount-nav {
    width: 180px;
    min-width: 140px;
    margin-inline-end: 30px;
  }
}
@media (min-width: 690px) and (max-width: 991.98px) {
  #main .ct-acount-nav {
    width: 60px;
    min-width: 60px;
  }
}
.woocommerce-account {
  /* Common styles for all navigation items */
  /* Desktop styles (default) */
  /* Tablet styles - icon-only narrow sidebar */
  /* Mobile styles - horizontal icon bar */
  /* Clear floats */
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li {
  margin: 0;
  position: relative;
  /* Dashboard icon */
  /* Orders icon */
  /* Downloads icon */
  /* Addresses icon */
  /* Account details icon */
  /* Product lists icon */
  /* Logout icon */
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.is-active a {
  background-color: #933C0E;
  color: white;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #444546;
  transition: all 0.2s ease;
  /* Add icons for each menu item */
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li a:hover {
  color: #933C0E;
  background-color: #e9e9e9;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li a:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard a:before {
  -webkit-mask-image: url('../images/dashboard.svg');
  mask-image: url('../images/dashboard.svg');
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders a:before {
  -webkit-mask-image: url('../images/orders.svg');
  mask-image: url('../images/orders.svg');
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads a:before {
  -webkit-mask-image: url('../images/download.svg');
  mask-image: url('../images/download.svg');
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address a:before {
  -webkit-mask-image: url('../images/address.svg');
  mask-image: url('../images/address.svg');
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account a:before {
  -webkit-mask-image: url('../images/user.svg');
  mask-image: url('../images/user.svg');
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--product-lists a:before {
  -webkit-mask-image: url('../images/list.svg');
  mask-image: url('../images/list.svg');
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  -webkit-mask-image: url('../images/logout.svg');
  mask-image: url('../images/logout.svg');
  color: #933C0E;
}
@media (min-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    float: left;
    margin-right: 30px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid #ddd;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li a {
    padding: 12px 15px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li a:before {
    margin-right: 10px;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    float: right;
  }
}
@media (min-width: 690px) and (max-width: 991px) {
  .woocommerce-account #main .woocommerce-MyAccount-navigation {
    width: 60px;
    float: left;
    margin-right: 20px;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation ul {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid #ddd;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li a {
    padding: 12px;
    font-size: 0;
    justify-content: center;
    /* Hide text on tablet */
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li a:before {
    margin-right: 0;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li a span {
    display: none;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 80px);
    float: right;
  }
}
@media (max-width: 689.98px) {
  .woocommerce-account #main .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 0;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: space-between;
    -webkit-overflow-scrolling: touch;
    background-color: #f5f5f5;
    border-radius: 20px;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
    flex-grow: 1;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li a {
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 0;
    /* Hide text on mobile */
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li a:before {
    margin: 0;
  }
  .woocommerce-account #main .woocommerce-MyAccount-navigation li a span {
    display: none;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }
}
.woocommerce-account .woocommerce-account:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .eightam-b2b-list-header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .eightam-b2b-list-actions {
    width: 100%;
    justify-content: space-between;
  }
  .eightam-b2b-list-items-table .product-details {
    width: auto;
  }
  .eightam-b2b-list-tabs-nav {
    padding-bottom: 5px;
    flex-wrap: nowrap;
    /* Show only active tab on mobile */
  }
  .eightam-b2b-list-tabs-nav li:not(.active):not(.eightam-b2b-list-create-button-wrap) {
    display: none;
  }
  /* Show mobile tabs dropdown */
  .eightam-b2b-list-mobile-tabs-dropdown {
    display: block;
  }
  /* Make list entries more compact */
  .eightam-b2b-list-items-table tbody tr {
    height: auto;
    min-height: 70px;
  }
  .eightam-b2b-list-items-table td {
    padding: 8px;
  }
  .eightam-b2b-list-items-table .product-thumbnail {
    width: 50px;
  }
  .eightam-b2b-list-items-table .product-thumbnail .woocommerce-placeholder {
    width: 50px;
    height: 50px;
  }
  .eightam-b2b-list-items-table .product-thumbnail img {
    max-width: 50px;
  }
  .eightam-b2b-list-items-table .product-details h4 {
    font-size: 0.95em;
    margin-bottom: 3px;
  }
  .eightam-b2b-list-items-table .product-price-total {
    width: 80px;
    font-size: 0.9em;
  }
  .eightam-b2b-list-items-table .product-quantity {
    width: 60px;
  }
  .eightam-b2b-list-items-table .product-quantity .eightam-b2b-list-quantity {
    width: 2.5em;
    font-size: 1em;
  }
  .eightam-b2b-list-modal-content {
    width: 90%;
    margin: 5% auto;
  }
}
@media (max-width: 689.98px) {
  .eightam-b2b-list-header-actions h1 {
    display: none;
  }
  .eightam-b2b-list-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .eightam-b2b-list-actions .eightam-b2b-list-action-message,
  .eightam-b2b-list-actions .eightam-b2b-list-go-to-cart {
    width: 100%;
    flex-grow: 1;
  }
  .eightam-b2b-list-actions .eightam-b2b-list-icon-button {
    flex-grow: 1;
  }
  .eightam-b2b-list-toggle-all {
    margin-top: 0.5em;
  }
}
/* SVG Icons with mask-image for color styling */
.eightam-b2b-list-svg-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.eightam-b2b-list-svg-icon.add-to-list-icon {
  -webkit-mask-image: url('../images/add-to-list.svg');
  mask-image: url('../images/add-to-list.svg');
}
.eightam-b2b-list-svg-icon.check-icon {
  -webkit-mask-image: url('../images/check.svg');
  mask-image: url('../images/check.svg');
}
.eightam-b2b-list-svg-icon.delete-icon {
  -webkit-mask-image: url('../images/delete.svg');
  mask-image: url('../images/delete.svg');
}
.eightam-b2b-list-svg-icon.edit-icon {
  -webkit-mask-image: url('../images/edit.svg');
  mask-image: url('../images/edit.svg');
}
.eightam-b2b-list-svg-icon.plus-icon {
  -webkit-mask-image: url('../images/plus.svg');
  mask-image: url('../images/plus.svg');
}
.eightam-b2b-list-svg-icon.three-dots-icon {
  -webkit-mask-image: url('../images/three-dots.svg');
  mask-image: url('../images/three-dots.svg');
}
.eightam-b2b-list-svg-icon.error-icon {
  -webkit-mask-image: url('../images/error.svg');
  mask-image: url('../images/error.svg');
}
.eightam-b2b-list-svg-icon.select-all-icon {
  -webkit-mask-image: url('../images/select-all.svg');
  mask-image: url('../images/select-all.svg');
}
/* Hamburger with plus icon */
.eightam-b2b-list-hamburger-plus {
  position: relative;
  width: 16px;
  height: 16px;
}
.eightam-b2b-list-hamburger-plus .line {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: white;
  left: 0;
}
.eightam-b2b-list-hamburger-plus .line:nth-child(1) {
  top: 3px;
}
.eightam-b2b-list-hamburger-plus .line:nth-child(2) {
  top: 7px;
}
.eightam-b2b-list-hamburger-plus .line:nth-child(3) {
  top: 11px;
}
.eightam-b2b-list-hamburger-plus .plus {
  position: absolute;
  width: 8px;
  height: 8px;
  right: -4px;
  top: 4px;
}
.eightam-b2b-list-hamburger-plus .plus:before,
.eightam-b2b-list-hamburger-plus .plus:after {
  content: '';
  position: absolute;
  background-color: white;
}
.eightam-b2b-list-hamburger-plus .plus:before {
  width: 8px;
  height: 2px;
  top: 3px;
  left: 0;
}
.eightam-b2b-list-hamburger-plus .plus:after {
  width: 2px;
  height: 8px;
  left: 3px;
  top: 0;
}
/* Dropdown styling */
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-button .eightam-b2b-list-svg-icon {
  margin-right: 5px;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  border-radius: 20px;
  margin-top: 5px;
  left: 0;
  transform: none;
  opacity: 1;
  visibility: visible;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-content.show {
  display: block;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item {
  color: #444546;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item:last-child {
  border-bottom: none;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item:hover {
  background-color: #f0f0f0;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item .eightam-b2b-list-svg-icon.checkmark {
  display: none;
  background-color: #1C9800;
}
#main .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-item.selected .eightam-b2b-list-svg-icon.checkmark {
  display: inline-block;
}
.product_meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: start;
}
@media (max-width: 768px) {
  .product_meta {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* Put all elements except the dropdown in the left column */
.product_meta > *:not(.eightam-b2b-list-dropdown) {
  grid-column: 1;
}
/* Put the dropdown in the right column and ensure it appears above other elements */
.product_meta > .eightam-b2b-list-dropdown {
  grid-column: 2;
  grid-row: 1 / span 99;
  /* Make it span all rows */
  /* Ensure dropdown appears above other elements */
}
.product_meta > .eightam-b2b-list-dropdown .eightam-b2b-list-dropdown-content {
  position: fixed;
  z-index: 999999;
}
@media (max-width: 768px) {
  .product_meta > .eightam-b2b-list-dropdown {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-bottom: 1em;
  }
}
