
div.product-thumbnail img {
  min-width: 164px;
  max-width: 164px;
  border-radius: 12px;
}

.woocommerce-cart-form__cart-item {
  background-color: #18181b;
  border-radius: 12px;
}

.woocommerce-cart-form__cart-item div {
  border: none;
}

.woocommerce_tbody {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
}

.product-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.product-name a {
  font-size: 24px;
  font-weight: 550;
  color: #e4e4e7;
}

div.product-name {
  vertical-align: top;
}

.woocommerce-cart_product-card {
  display: flex;
  gap: 16px;
  padding: 16px;
}

.cart-count {
  color: white !important;
  font-size: 32px !important;
  font-weight: 550 !important;
  margin-bottom: 16px !important;
}

.vat-included {
  font-size: 15px;
  font-weight: 350;
  color: #71717a;
}

.cart_item_discount {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 350;
}

.cart_item_discount_percentage {
  color: #b3e100;
  background-color: #475900;
  font-size: 13px;
  border-radius: 4px;
  padding: 2px 4px;
  text-align: center;
}

.sale-percentage {
  color: #b3e100;
  background-color: #475900;
  font-size: 11px;
  border-radius: 2px;
  padding: 1px 2px;
  text-align: center;
  font-weight: 450;
}

.cart_item_regular_price {
  font-size: 17px;
  color: #71717a;
  text-decoration: line-through;
}

.regular-price {
  font-size: 11px;
  color: #71717a;
  text-decoration: line-through;
  font-weight: 400;
}

.cart_remove {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-controls {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.cart-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.wd-cart-totals {
  background-color: #18181b;
  border-radius: 12px;
  padding: 16px;
}

.products-you-may-like-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
}

.woocommerce-loop-product__title {
  font-size: 17px !important;
  font-weight: 550  !important;
  color: #e4e4e7  !important;
  white-space: nowrap  !important;
  overflow: hidden  !important;
  text-overflow: ellipsis  !important;
}

.product-item {
  background-color: #18181b;
  border-radius: 12px;
}

.product-item img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.thumbnail-wrapper {
  position: relative;
}

.add_to_cart_button {
  position: absolute  !important;
  bottom: 8px !important;
  right: 8px !important;
  background-color: #b3e100 !important;
  color: #18181b !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 8px 16px !important;
  font-size: 15px !important;
  font-weight: 550 !important;
  cursor: pointer !important;
}

.cart-totals-inner {
  padding: 16px;
}
.wd-coupon-form .button[name='apply_coupon'] {
  background-color: #18181b !important;
  border: 1px solid white !important;
  border-radius: 8px !important;
  padding: 4px !important;
  font-size: 12px !important;
  font-weight: 550 !important;
  cursor: pointer !important;
  position: absolute;
  right: 8px !important;
  top: 50%;
  transform: translateY(-50%);
  min-height: 40% !important;
}
body.rtl .wd-coupon-form .button[name='apply_coupon'] {
  right: auto !important;
  left: 8px !important;
}
.wd-coupon-form .input-text {
  background-color: transparent !important;
  color: #e4e4e7 !important;
  border: 1px solid #ffffff33 !important;
  border-radius: 8px !important;
  padding: 12px !important;
  font-size: 15px !important;
  font-weight: 550 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.checkout-button {
  background-color: #b3e100 !important;
  color: #18181b !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px !important;
  font-size: 15px !important;
  font-weight: 550 !important;
  cursor: pointer !important;
  width: 100% !important;
}

.quantity select {
  background-color: transparent !important;
  color: #71717a !important;
  font-size: 17px !important;
  font-weight: 350 !important;
  border: 1px solid #ffffff66 !important;
  border-radius: 12px !important;
}

.quantity-mobile {
  display: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .cart-wrapper {
    flex-direction: column-reverse;;
    gap: 16px;
  }

  /* .product-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
    gap: 16px;
  } */

  .woocommerce_tbody {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .wd-cart-totals {
    padding: 8px;
  }

  .products-you-may-like-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .product-name a {
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-thumbnail img {
    min-width: 100px;
    max-width: 100px;
  }

  .quantity-mobile {
    display: block;
    width: 100%;
  }

  .quantity-desktop {
    display: none;
  }

  .cart-count {
    font-size: 24px;
  }

  .vat-included,
  .cart_item_regular_price,
  .regular-price,
  .woocommerce-loop-product__title {
    font-size: 13px;
  }
    .products-you-may-like {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  div.product-thumbnail img {
    min-width: 80px !important;
    max-width: 80px !important;
  }

  .cart-count {
    font-size: 18px;
  }

  .woocommerce-cart_product-card {
    gap: 8px;
  }

  .woocommerce_tbody {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .wd-cart-totals {
    padding: 4px;
  }

  .products-you-may-like-grid {
    gap: 8px;
  }
}

.vendor-url{
  text-decoration: underline !important;
  font-size: 14px !important;
  font-weight: 550 !important;
}


.products-you-may-like {
  margin: 0;
  font-size: 32px;
}

.order-details {
  font-size: 24px !important;
}

/* style add to wishlist in cart page */ 
.wd-wishlist-btn {
  position: absolute !important;
  top: 6px !important;
  right: 6px !important;
  background-color: rgba(24, 24, 27, 0.2) !important;
  border-radius: 8px !important;
}

.wd-wishlist-btn a {
  width: 34px !important;
  height: 34px !important;
  background-color: rgba(24, 24, 27, 0.2) !important;
  border-radius: 8px !important;
}

.product-thumbnail {
  position: relative;
}

#description-content {
    max-height: 200px; /* Adjust the height as needed */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

#description-content.expanded {
    max-height: none;
}

#toggle-description {
    margin-top: 10px;
    background-color: transparent;
    color: #fff;
    border: none;
    text-decoration: underline;
    padding: 10px;
    cursor: pointer;
    display: block;
}

.single-product .single-product-info .wd-wishlist-btn, .single-product  .single-product-head .wd-wishlist-btn{
   position:relative !important;
   top: 0px !important;
   right: 0px !important;
}
.cart_totals {
  background-color: #18181b;
  border-radius: 12px;
  padding: 16px;
}

.coupon-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 40px;
}

.coupon-input-wrapper .input-text {
  padding-right: 100px;
}

/* Orders Template */
    .wd-woocommerce-orders-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
}

.wd-woocommerce-orders-title h1 {
    line-height: 28px;
    /* font-family: Gellix TRIAL; */
    font-weight: 550;
    font-size: 24px;
    margin-bottom: 0;
}
.wd-woocommerce-orders-title p {
    color: #A1A1AA;
    font-weight: 400;
    font-size: 15px;
    margin-top:10px;
    line-height: 19.5px;
    margin-bottom: 0 !important;
}
.wd-woocommerce-orders-filters {
    margin-bottom: 32px;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.filter-button {
    font-weight: 400;
    line-height: 16px;
    font-size: 14px;
    color: #A1A1AA !important;
    background: none !important;
    border: 1px solid #ffffff69;
    padding: 8px 12px;
    border-radius: 100px !important;
    cursor: pointer;
}

.filter-button.active {
    color: #E4E4E7 !important;
    border: 2px solid #E4E4E7;
}


.woocommerce-account.woocommerce-page.woocommerce-orders .woocommerce-MyAccount-content {
    background: none !important;
    padding-top: 15px;
    padding-bottom: 25px;
    border-radius: 15px;
}

.wd-woocommerce-order-section {
    margin-bottom: 32px;
    border: 1px solid #ffffff32;
    border-radius: 8px;
}


.wd-order-header {
    border-radius: 8px 8px 0px 0px;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0px !important;
    background-color: #18181B;
    padding: 16px;
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.wd-order-details {
    gap:5px;
    align-items: center;
    display: flex;
}
.rtl .wd-order-details svg {
  transform: rotate(180deg);
}
  

.wd-order-card {
    border-bottom: 1px solid #ffffff32;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 16px;
}

.wd-order-info {
    padding: 16px;
    justify-content: end;
    display: flex;
    width: 100%;
    gap: 8px;
}
.wd-order-info span {
    color: #A1A1AA;
    line-height: 16px;
    font-size: 14px;
}

.order-items {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
	width:78%;
}

.order-items-slider {
    display: flex;
    gap: 0px;
    max-width: 100%;
    overflow: hidden;
}

.order-item img {
	margin-bottom: 0px !important;
    max-width: 130px;
    border-radius: 5px;
}

.wd-order-actions .wd-button.track {
    background-color: #F4F4F5;
    color: #27272A;
}
.wd-button.wd-details {
    line-height: 16px;
    font-size: 12px;
    background: none;
    color: #E4E4E7;
    padding: 0px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
}
.wd-order-actions .wd-button, .wc-forward.wd-button{
    line-height: 16px;
    font-size: 14px;
    background: none;
    color: #E4E4E7;
    padding: 8px 16px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    border:1px solid #E4E4E7;
}

.slick-slide {
    max-width: 150px;
    padding: 0px;
}

button.slick-arrow {
    background: none;
    height: 105%;
    padding: 23px;
}

.slick-prev, .slick-next {
    border: none;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.slick-prev{
    background: linear-gradient(90deg, black 50%, transparent 100%) !important;
    left: 0px;
}
.slick-next {
    background: linear-gradient(-90deg, black 50%, transparent 100%) !important;
    right: 0px;
}

.slick-prev:hover, .slick-next:hover {
    color: #0071a1;
}

.slick-track {
	width: 100vw !important;
	display: flex !important;
}

.wd-order-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.no-orders {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.no-orders img {
    margin: 3em;
    width: 11em;
}

.no-orders h3 {
    line-height: 28px;
    /* font-family: Gellix TRIAL; */
    font-weight: 30;
    font-size: 18px;
    margin-bottom:5px;
}

.no-orders p {
    color: #A1A1AA;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.5px;
    margin-bottom:8px;
}
@media only screen and (max-width: 768px){
	.wd-order-card {
    flex-direction: column;
    gap:25px;
    }
    .order-items {
    width: 100%;
    }
    button.slick-arrow {
    padding: 10px;
    }
    .wd-order-info {
    flex-wrap: wrap;
    padding: 16px;
    justify-content: start;
    display: flex;
    width: 100%;
    gap: 8px;
}
.wd-order-actions .wd-button {
    font-size: 12px;
    padding: 4px;
}
.wd-order-info span {
    line-height: 14px;
    font-size: 12px;
}
.filter-button {
    font-size: 12px;
    padding: 0px 8px;
}
.slick-track {
    gap: 10px;
}
.wd-order-actions {
    flex-direction: row;
    gap: 15px;
}
}

/* Order-details Template */
/* Custom Order Details Styles */

body.woocommerce-account.woocommerce-page.woocommerce-view-order .woocommerce-MyAccount-content section.woocommerce-order-details {
    background-color: black !important;
}

body.woocommerce-account.woocommerce-page.woocommerce-view-order .woocommerce-MyAccount-content > p {
    display: none;
    font-weight: 400 !important;
    color: #fff;
    background-color: #18181b;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
}

body.woocommerce-account.woocommerce-page.woocommerce-view-order .woocommerce-MyAccount-content section.wd-woocommerce-order-details header, body.woocommerce-account.woocommerce-page.woocommerce-view-order .woocommerce-MyAccount-content section.wd-woocommerce-order-details .responsive-table, body.woocommerce-account.woocommerce-page.woocommerce-view-order .woocommerce-MyAccount-content section.wd-woocommerce-order-details .dokan-info {
    display: none;
}

.custom-order-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1b1b1b;
    color: #f1f1f1;
}

a.back-to-orders {
    color: #A1A1AA;
    display:inline-block;
    margin-bottom: 16px !important;
    line-height: 16px;
    font-size: 14px;
}

h2.wd-order-title {
    line-height: 28px;
    margin-bottom: 0px;
    font-size: 24px;
}

.wd-order-date {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 19.5px;
    color: #A1A1AA;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.left-column {
    flex: 2;
    margin-right: 20px;
}

.right-column {
    flex: 1;
    background-color: black;
    padding: 0px;
    border-radius: 8px;
}

.wd-product-card {
    display: flex;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    align-items: flex-start;
    border:1px solid #ffffff33;
}

.wd-product-image img {
    border-radius: 8px;
    max-width: 150px;
    margin-right: 15px;
}


.rtl .wd-product-image img {
  margin-left: 15px;
}

.woocommerce-account .wd-order-summary ,.woocommerce-account .dokan-customer-shipment-list-area{
  display:none;
  }
  
.wd-product-info {
    gap:3.5em;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    flex: 1;
}

.wd-sold-by,
.wd-product-rating,
.wd-product-price {
    margin-bottom: 5px;
    line-height: 20px;
    color: #A1A1AA;
    font-size: 16px;
}

.wd-product-name {
    font-weight: 600;
    margin: 5px 0;
    color: #E4E4E7;
    font-size: 18px;
    line-height: 24px;
}

.wd-sold-by span{
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #E4E4E7;
}

.wd-product-price {
    color: #9bff00;
}

.wd-product-actions {
    gap: 16px;
    flex-direction: column;
    display: flex;
}

.wd-product-actions .wd-button {
    line-height: 16px;
    font-size: 14px;
    background: none;
    color: #E4E4E7;
    padding: 8px 46px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    border:1px solid #E4E4E7;
}

.wd-invoice-con {
    display:flex;
    justify-content:space-between;
}
.wd-invoice-con .amount {
    font-weight:100;
    
}
.wd-invoice-con.wd-total .amount {
    font-weight: 400;
    font-size: 1.2em;
}
.wd-invoice-con.wd-total span {
    font-size: 1.2em;
}
.wd-order-summary, .wd-payment-method, .wd-delivery-address {
    border-radius: 12px;
    background: #18181B;
    padding: 16px;
    margin-bottom: 16px;
}

.wd-order-summary h3, .wd-payment-method h3, .wd-delivery-address h3 {
    line-height: 28px;
    color: #E4E4E7;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
}

.wd-order-summary p, .wd-delivery-address p {
    line-height: 16px;
    font-size: 14px;
    color: #A1A1AA;
    margin: 5px 0;
}

.wd-payment-method p {
    line-height: 30px !important;
    font-size: 16px ;
    color: #E4E4E7;
    margin: 5px 0;
}

.right-column hr {
    max-width: 100% !important;
}

@media only screen and (max-width: 768px){
.wd-order-date {
    margin-bottom: 20px;
}
.wd-product-card {
    flex-wrap:wrap;
}
.wd-product-actions {
    flex-direction: row;
}
.wd-sold-by span {
    font-size: 11px;
}
.wd-product-name {
    font-size: 15px;
    line-height: 24px;
}
.wd-sold-by, .wd-product-rating, .wd-product-price {
    line-height: 20px;
    font-size: 12px;
}
.wd-product-actions .wd-button {
    line-height: 16px;
    font-size: 11.5px;
    padding: 8px;
    margin-top: 10px;
}
.wd-product-image img {
    max-width: 100px;
}
.wd-product-info {
    gap: 0em;
}


}

/* Single Store Template */
/* Custom Single Store Styles */
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper {
  height: 110px !important;
  position: relative !important;
  background-color: #18181B !important;
  color: inherit !important;
  border: none !important;
  padding: 0 15px !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery {
  align-items: flex-end !important;
  justify-content: space-between !important;
  display: flex !important;
  color: #444 !important;
  width: 100% !important;
  margin-top: -55px !important;
  padding: 0 !important;
  position: relative !important;
  background: none !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .store-name {
  margin: 0px 0 5px 15px !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info-head {
  flex: none !important;
  float: left !important;
}
.dokan-single-store .profile-info-summery-con {
  display: flex !important;
  align-items: flex-end !important;
}
.dokan-single-store .dokan-store-products-filter-area .product-name-search {
  border: solid 1px #FFFFFF33 !important;
  border-radius: 10px !important;
}
input.product-name-search.dokan-store-products-filter-search::placeholder {
  font-weight: 300 !important;
  font-size: 17px !important;
  color: #71717A !important;
}
.dokan-single-store .dokan-store-products-filter-area .orderby-search {
  border: 1px solid #FFFFFF33 !important;
  border-radius: 10px !important;
  font-weight: 300 !important;
  color: #71717A !important;
  font-size: 17px !important;
}
.dokan-single-store .store-filters-and-products {
  padding: 40px 120px !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper {
  padding: 0 120px !important;
   border-radius: 0px 0 20px 20px !important;
}
.dokan-single-store .store-filters-and-products input.search-store-products.dokan-btn-theme {
  display: none !important;
}
.dokan-single-store .store-right-column-head {
  display: flex !important;
  justify-content: space-between !important;
  position: relative !important;
  z-index: 2 !important;
}
.dokan-single-store .store-filters-and-products #product-list {
  transform: translateY(-75px) !important;
}
.dokan-store .main-page-wrapper {
  padding: 0px !important;
}
.dokan-store .site-content {
  padding: 0px !important;
}
.dokan-store-wrap {
  display: flex !important;
  margin: 0 !important;
  flex-direction: column !important;
}
.dokan-single-store .store-filters-and-products .wd-grid-g {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.dokan-single-store .selected-filters {
  flex-wrap: wrap !important;
  gap: 10px !important;
  display: flex !important;
}
.store-filters h4, .store-filters h5 {
  font-weight: 300 !important;
  font-size: 24px !important;
}
h5.filter-section-price, h5.filter-section-review {
  margin-top: 18px !important;
}
html:lang(en) .dokan-single-store .selected-filters-element {
  height: 40px;
  font-size: 17px !important;
  border-radius: 100px !important;
  border: 2px solid #FFFFFFCC !important;
  padding: 0 0 0 10px !important;
  font-weight: 100 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
html:lang(ar) .dokan-single-store .selected-filters-element {
  height: 40px;
  font-size: 17px !important;
  border-radius: 100px !important;
  border: 2px solid #FFFFFFCC !important;
  padding: 0 10px 0 0px !important;
  font-weight: 100 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.dokan-single-store button.remove-filter {
  font-size: 22px !important;
  transform: scale(0.45) !important;
  padding: 0 12px !important;
  color: black !important;
  background: #E4E4E7 !important;
  border-radius: 100% !important;
}
.dokan-single-store button.clear-filters {
  text-decoration: underline;
  background: none !important;
  padding: 0px !important;
  color: #C2E733 !important;
  font-size:14px !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info {
  font-weight: 100;
  color: #FF7F29 !important;

}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info-head .profile-img img {
  border-radius: 10px !important;
}
.dokan-single-store .profile-frame .profile-info-box .profile-info-img.dummy-image {
  border-radius: 20px 20px 0 0 !important;
}
.dokan-single-store .profile-frame .profile-info-box {
  background: black !important;
}
.dokan-single-store .dokan-store-tabs ul.dokan-modules-button {
  border: none;
}
.dokan-single-store button.dokan-share-btn.dokan-btn.dokan-btn-theme.dokan-btn-sm {
  background: #FFFFFF1A !important;
  border-radius: 10px !important;
}
.dokan-single-store a.button.load-more-button {
  margin-top: 20px !important;
  border-radius: 50px !important;
  border: 1px solid;
  background: none;
}
.dokan-single-store .store-left-column {
width: 30% !important;
}
.dokan-single-store .store-right-column {
width: 70% !important;
}
.dokan-single-store h3.reta {
  font-weight: 300 !important;
  font-size: 24px !important;
}
.filter-section label {
  display: block !important;
  margin-bottom: 5px !important;
  color: var(--wd-title-color);
  vertical-align: middle;
  font-weight: 400 !important;
  font-size: 17px;
}
html:lang(en) .dokan-single-store input[type="radio"], html:lang(en) input[type="checkbox"] {
  margin: 4px 15px 4px 0px;
  appearance: none;
  -webkit-appearance: none;
  background-color: black;
  border: 1px solid #FFFFFFCC !important;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: inline-block !important;
  position: relative !important;
  cursor: pointer;
}
html:lang(ar) .dokan-single-store input[type="radio"], html:lang(ar) input[type="checkbox"] {
  margin: 4px 0px 4px 15px;
  appearance: none;
  -webkit-appearance: none;
  background-color: black;
  border: 1px solid #FFFFFFCC !important;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: inline-block !important;
  position: relative !important;
  cursor: pointer;
}
.dokan-single-store input[type="checkbox"]:checked::before {
          content: "✔" !important; 
          display: block !important;
          font-size: 14px !important;
          color: #111 !important; 
          position: absolute !important;
          top: 65% !important;
          left: 50% !important;
          transform: translate(-50%, -50%) !important;
      }
.dokan-single-store input[type="checkbox"]:checked {
          background-color: #fff !important;
      }
.dokan-single-store .store-filters hr {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  max-width: 100% !important;
  border: none !important;
  border-bottom: 1px solid #FFFFFF33 !important;
  opacity: 1 !important;
}
.price-range-container h5 {
    margin-bottom: 0px;
    font-weight: 300 !important;
    font-size: 24px !important;
}

.price-range-container .price-labels {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    font-weight: 100 !important;
    color: #A1A1AA !important;
    font-size: 15px;
}

input[type="range"] {
   -webkit-appearance: none;
    width: 90%;
    height: 6px;
    background: #444;
    outline: none;
    opacity: 0.7;
    border-radius: 10px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: black;
    border: 1px solid #FFFFFFCC;
    cursor: pointer;
    border-radius: 2px;

}

span.filter-price-marker {
    z-index: 2;
    pointer-events: none;
    width: 20px;
    height: 20px;
    border: 1px solid #FFFFFFCC;
    border-radius: 2px;
    margin-top: 3px !important;
    position: absolute;
    background: black;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #000;
    cursor: pointer;
    border-radius: 10%;
}
.dokan-single-store .filter-icon-button, h2.store-filters-title, .mobile-filters-btn {
    display:none;
}
@media only screen and (max-width: 768px){
.dokan-single-store .store-filters-and-products .wd-grid-g {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.dokan-single-store .store-filters-and-products {

padding: 5px !important;
display: block;
        width: 100%;
}


.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper {
padding: 0px !important;
border-radius: 0px 0 20px 20px !important;
}
.dokan-single-store .store-filters-and-products #product-list {
transform: translateY(0px) !important;
}
.dokan-single-store .store-left-column {
    display: none;
width: 100% !important;
}
.dokan-single-store .store-right-column {
width: 100% !important;
}
.dokan-single-store .store-filters-and-products.show-filters .store-left-column {
    display: block;
        width: 100%;
        margin-top:58px;
        font-weight:200;
}
.dokan-single-store .store-filters-and-products.show-filters .store-right-column {
display: none;
}
.dokan-store-products-filter-area select.orderby.orderby-search {
    height: 48px !important;
    flex-basis: 40px !important;
    width:40px !important;
    margin-top: 0px;
    padding: 0px 28px;
    background-image: url(https://webook-shop.yasmineali.online/wp-content/uploads/2024/09/vector.svg);
    background-position: center;
    border-radius: 8px !important;
    border: none !important;
    background-repeat: no-repeat;
    background-color: #FFFFFF1A;
}
.dokan-store-products-ordeby .product-name-search {
    width: 100% !important;
    height: 48px;
    margin: 0px !important;
}
.dokan-single-store .store-right-column-head {
    transform: translateY(60px);
}

.dokan-single-store h3.reta {
    margin: 16px 0 26px !important;
    transform: translateY(-50px);
}

.dokan-store-products-filter-area .dokan-store-products-ordeby {
    gap: 16px;
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}
html:lang(en) .dokan-store-products-filter-area {
            width: -webkit-fill-available;
    margin: 0px 16px 0px 0px !important;
}
html:lang(ar) .dokan-store-products-filter-area {
            width: -webkit-fill-available;
    margin: 0px 0px 0px 16px !important;
}
.dokan-single-store .filter-icon-button {
    display: block;
    background-color: #FFFFFF1A !important;
    border-radius: 8px !important;
}
.store-filters h4 {
    margin-bottom: 10px;
}
h2.store-filters-title {
    display:block;
    font-size: 17px;
    text-align: center;
    color:#E4E4E7;
    margin-bottom: 25px;
}

.mobile-filters-btn {
    right: 0px;
    bottom: 0px;
    position: fixed;
    border-top: 1px solid #FFFFFF33;
    gap: 16px;
    padding: 16px;
    width: -webkit-fill-available;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #18181B;
    height: 78px;
    z-index:3;
}
button#apply-filters-btn {
    padding: 12px 24px;
    font-size: 18px;
    color: #09090B;
    border-radius: 8px;
    background: #B3E100;
    width: -webkit-fill-available;
}
button.clear-filters.clear-btn {
    font-weight: 200;
    text-decoration: none;
    font-size: 18px !important;
    width: -webkit-fill-available;
    border-radius: 8px;
    border: 1px solid #FFFFFFCC !important;
    padding: 12px !important;
    color: #E4E4E7 !important;
}
    .dokan-single-store {
        margin-bottom: 0px;
    }
}

/* Team Store Template */
/* Custom Team Store Styles */

.team-banner {
    margin-bottom: 30px !important;
}

.team-banner img {
    width: 100% !important;
}

.mobile-team-banner {
    display: none;
}

.team-vendor-categories-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px;
}

.category-card {
    text-align: center !important;
    max-width: 120px !important;
}

.category-card h3 {
    color: #E4E4E7 !important;
    font-size: 16px !important;
    padding-top: 12px !important;
}

.category-card img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}
.team-vendor-categories-section .wd-grid-g {
    overflow-x: clip !important;
}

.products-section-slider {
    position: static !important;
    width: 90vw !important;
}

.team-vendor-categories-section .category-section-card:nth-child(odd) .products-section-slider .slick-slide {
    max-width: 18vw; 
    width: 18vw !important; 
}

.team-vendor-categories-section .category-section-card:nth-child(odd) .products-section-slider .wd-product.wd-hover-tiled .product-wrapper {
    width: 18vw !important; 
    height: 350px !important;
}

.team-vendor-categories-section .category-section-card:nth-child(even) .products-section-slider .slick-slide {
    max-width: 525px !important; 
    width: 525px !important; 
}

.team-vendor-categories-section .category-section-card:nth-child(even) .products-section-slider .wd-product.wd-hover-tiled .product-wrapper {
    width: 525px !important; 
    height: 570px !important;
}

.products-section-slider .slick-track {
    gap: 25px !important;
    display: flex !important;
}

.category-section-card-header {
    align-items: center !important;
    justify-content: space-between;
    display: flex !important;
}

html:lang(ar) .category-section-card-header a {

    font-size: 12px !important;
    margin-left: 80px !important;
}

html:lang(en) .category-section-card-header a {

    font-size: 12px !important;
    margin-right: 85px !important;
}

.category-section-card {
    margin-bottom: 50px !important;
}

.category-section-card-header h3 {
    font-weight: 500 !important;
    line-height: 28px !important;
    font-size: 24px !important;
}

.team-vendor-categories-section button.slick-arrow {
    background: none !important;
    height: auto !important;
    padding: 0px !important;
}

html:lang(ar) .team-vendor-categories-section .slick-prev {
    /* position: relative; */
    transform: scaleX(-1) !important;
    transform-origin: center;
    background: linear-gradient(90deg, black 50%, transparent 100%) !important;
    left: 40px !important;
    top: -50px !important;
}

html:lang(ar) .team-vendor-categories-section .slick-next {
    transform: scaleX(-1) !important;
    background: linear-gradient(-90deg, black 50%, transparent 100%) !important;
    right: 97% !important;
    top: -50px !important;
}

html:lang(en) .team-vendor-categories-section .slick-prev {
    background: linear-gradient(90deg, black 50%, transparent 100%) !important;
    left: 93.7% !important;
    top: -27px !important;
}

html:lang(en) .team-vendor-categories-section .slick-next {
    background: linear-gradient(-90deg, black 50%, transparent 100%) !important;
    right: 0px;
    top: -27px !important;
}


@media only screen and (max-width: 768px){
.category-card img {
    width: 80px !important;
    height: 80px !important;
}

.team-vendor-categories-section .category-section-card:nth-child(odd) .products-section-slider .slick-slide, .team-vendor-categories-section .category-section-card:nth-child(even) .products-section-slider .slick-slide {
    max-width: 270px !important; 
    width: 270px !important; 
}

.team-vendor-categories-section .category-section-card:nth-child(odd) .products-section-slider .wd-product.wd-hover-tiled .product-wrapper, .team-vendor-categories-section .category-section-card:nth-child(even) .products-section-slider .wd-product.wd-hover-tiled .product-wrapper {
    width: 280px !important; 
    height: 380px !important;
}

html:lang(ar) .category-section-card-header a {
    font-size: 12px;
    margin-left: 100px !important;
}

html:lang(en) .category-section-card-header a {
    font-size: 12px;
    margin-right: 104px !important;
}

html:lang(ar) .team-vendor-categories-section .slick-next {
    right: 90% !important;
}

html:lang(ar) .team-vendor-categories-section .slick-prev {
    left: 55px !important;

}

.team-vendor-categories-row svg {
    width: 20px !important;
}

html:lang(en) .team-vendor-categories-section .slick-prev {
    left: 82% !important;
}
html:lang(en) .team-vendor-categories-section .slick-next {
    right: 15px !important;
}
    
}


.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget .widget-title {
    flex-direction: row-reverse;
    border-radius: 8px 8px 0px 0px;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0px !important;
    background-color: #18181B;
    padding: 16px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    font-weight: bold;
    font-size: 15px;
    border: none;
    padding: 15px;
    margin-bottom: 6px;
}

.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget {
    padding: 0px;
    margin-bottom: 32px;
    border: 1px solid #ffffff32;
    border-radius: 8px;
    background: transparent !important;
}

.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget ul {
    padding: 15px;
}

.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dokan-dash-left, .dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dokan-dash-right {
    width: -webkit-fill-available !important;
    padding: 0px;
}
.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .chart-container {
    padding: 15px !important;
}
.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .chart.chart-legend-container {
    width: 100% !important;
}
.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.big-counter .count {
    border-bottom: 1px solid #ffffff32;
    color: #CFCFCF !important;
}
.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.big-counter .title {
    color: #CFCFCF !important;
}

.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.orders #order-stats {
    height: 240px !important;
    width: 240px !important;
    padding: 20px;

}

.dokan-theme-woodmart :is(.dokan-alert,.dokan-message,.dokan-info,.dokan-error) {
    font-weight: 400;
    line-height: 16px;
    font-size: 14px;
    color: #A1A1AA !important;
    background: none !important;
    border: 1px solid #ffffff69;
    padding: 8px 12px;
    border-radius: 100px !important;
    cursor: pointer;
    text-align: right;
    margin-top: 0px;
}

.dokan-panel-body {
    padding: 0px;
}

.dokan-progress {
    display: none;
}

.dokan-panel-default {
    border: none;
    background-color: transparent !important;
}

.dokan-dash-sidebar:has(> div#dokan-navigation) {
    background: black !important;
}

#dokan-navigation ul.dokan-dashboard-menu {
    background: black !important;
}

#dokan-navigation ul.dokan-dashboard-menu li.active, #dokan-navigation ul.dokan-dashboard-menu li:not(.dokan-common-links):hover, #dokan-navigation ul.dokan-dashboard-menu li.dokan-common-links a:hover {
    background-color: #18181b !important;
    border-radius: 5px;
}
.dokan-dashboard .dokan-dash-sidebar #dokan-navigation #toggle-mobile-menu {
    -webkit-appearance: none !important;
    display: none !important;
}

#dokan-navigation ul.dokan-dashboard-menu li.active:after{
    display: none !important;
}
#dokan-navigation ul.dokan-dashboard-menu li ul.navigation-submenu li:hover:before, #dokan-navigation ul.dokan-dashboard-menu li ul.navigation-submenu li.current:before {
    display:none !important;
}
#dokan-navigation ul.dokan-dashboard-menu li:hover:not(.active):after {
    display:none;
}
#dokan-navigation ul.dokan-dashboard-menu ul.navigation-submenu, #dokan-navigation ul.dokan-dashboard-menu li ul.navigation-submenu li {
    border-radius: 10px;
    background: #09090B !important;
}
#dokan-navigation ul.dokan-dashboard-menu li:hover:not(.active) ul.navigation-submenu {
    border: 1px solid #ffffff32;
    border-radius: 10px;
    background: #09090B !important;
}

.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li a {
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 10px 0 10px 18px;
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}

.dokan-dashboard .dokan-dashboard-content {
    padding: 0 30px 10px;
}

.team-vendor-categories {
    justify-content:center;
    display: flex;
    gap: 20px;
}

.cat-card {
    width: -webkit-fill-available;
    height: 578px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease !important;
}

.cat-card:hover {
    transform: scale(1.05) !important;
}

.cat-card a {
    text-decoration: none !important;
    color: inherit;
}

.card-image img {
    object-fit: cover !important;
    width: 100%;
    height: 578px;
}

.card-info {

    padding: 10px !important;
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)) !important;
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
}

.card-info h3 {
    margin: 0;
    font-size: 18px;
        font-weight:100;
    font-size: 40px;
    line-height:48px;
}

.badge {
    color: #fff;
    font-weight:100;
    font-size: 24px;
    line-height:28px;

}

html:lang(ar) .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .store-name {
    margin: 0px 15px 5px 0px !important;
}
.category-section-card .slick-track{
	margin-left:-25px;
}
.rtl .category-section-card .slick-track{
	margin-right:-25px;
}
@media only screen and (max-width: 768px){
    .team-banner {
    display: none !important;
}

.mobile-team-banner {
    display: block;
    margin-top: 20px !important;
}
.mobile-team-banner img {
    width: 100% !important;
}

    .dokan-dashboard-wrap :is(.dokan-alert,.dokan-message,.dokan-info,.dokan-error) {
    margin-top: 0px !important;
}

.dokan-dashboard .dokan-dashboard-content article.dashboard-content-area .dashboard-widget.orders #order-stats {
    height: 170px !important;
    width: 170px !important;
}

.dokan-dashboard .dokan-dash-sidebar, .dokan-dashboard .dokan-dashboard-content {
    padding: 0px;
}

body.dokan-dashboard .dokan-dashboard-content {
    padding: 0px;
}

.team-vendor-categories {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    gap: 20px !important;
}

.cat-card {
    height: 320px !important;
    width: 300px !important;
}

.card-image img{
    object-fit:cover;
    width: 300px !important;
    height: 320px !important;
}
html:lang(ar) .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .profile-info .dokan-store-info {
    padding: 0px 25px 0px 0px !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery {
    justify-content: center !important;
}
.dokan-single-store .profile-info-summery-con {
    width: 80% !important;
}
.dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .store-name {
    color:white !important;
}
html:lang(ar) .dokan-single-store .profile-frame .profile-info-box.profile-layout-layout1 .profile-info-summery-wrapper .profile-info-summery .store-name {
    margin: 0px 0px 5px 0px !important;
}


}

@media only screen and (max-width: 415px) {
    .dokan-single-store .dokan-store-tabs {
    display: none;
}
.dokan-single-store .profile-info-summery-con {
    width: 90% !important;
}
    html:lang(ar) .team-vendor-categories-section .slick-prev {
        left: 45px !important;
    }
    html:lang(en) .team-vendor-categories-section .slick-prev {
    left: 75% !important;
}
}
@media only screen and (min-width: 1850px) {
    .team-vendor-categories-section .category-section-card:nth-child(odd) .products-section-slider .wd-product.wd-hover-tiled .product-wrapper {
    width: 15.6vw !important;
    height: 350px !important;
}
.team-vendor-categories-section .category-section-card:nth-child(odd) .products-section-slider .slick-slide {
    max-width: 15.6vw;
    width: 15.6vw !important;
}
}

#select_player_section, #personalize_section {
    margin-top: 20px !important;
}

#personalize_section input#custom_name  {
    margin-bottom:10px !important;
}
#personalize_section input#custom_name, #personalize_section input#custom_number, select#player_name  {
    background-color: transparent !important;
    color: #71717a !important;
    font-size: 17px !important;
    font-weight: 350 !important;
    border: 1px solid #ffffff66 !important;
    border-radius: 12px !important
}


#personalize_section input#custom_name::placeholder, #personalize_section input#custom_number::placeholder {
    color: #71717a !important;
    font-size: 17px !important;
    font-weight: 350 !important;
}
label.name-number-title, #select_player_title {
    margin-bottom: 6px !important;
    line-height: 1.6 !important;
    font-size: 20px !important;
    color: #fff !important;
}

.name-number-section {
    margin: 24px 0px !important;
}

.name-number-options {
  display: flex !important;
  gap: 10px !important;
}

    .name-number-button {
        height: 28px !important;
        padding: 20px 15px !important;
        border: 2px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 100px !important;
        background-color: transparent !important;
        cursor: pointer !important;
        font-size: 17px !important;
        font-weight: 100 !important;
    }

    .name-number-button.active {
        background-color: #333 !important;
        color: #fff !important;
        border-color: #007cba !important;
    }

    .name-number-button:hover {
        background-color: #333 !important;
        color: #fff !important;
    }
    
/* guide size */
div#wd_sizeguide {
  max-width: 800px;
  margin: auto;
  background-color: #3F3F46;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-family: "Readex Pro", Arial, Helvetica, sans-serif !important;
}

div#wd_sizeguide h4.wd-sizeguide-title {
    text-align: -webkit-auto;
    font-size: 24px;
    line-height: 36px;
    color: #E4E4E7;
}

div#wd_sizeguide  button.mfp-close {
    margin: 0 20px;
    top: 11px;
}

.size-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.size-chart-header h2 {
  margin: 0;
  font-size: 24px;
  color: #E4E4E7;
}


.size-chart-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}

.size-chart-table th, .size-chart-table td {
  padding: 16px 12px;
  text-align: center;
  font-weight: 100;
  height: 56px;

  color: #E4E4E7;
}


.size-chart-table .size-title {
    border-bottom: 12px solid #3F3F46;
    background-color: #18181B;
    font-size: 18px !important;
    line-height: 24px !important;
}

.size-chart-table .size-side {
    border-bottom: 5px solid #3F3F46;
    background-color: #18181B; 
    font-size: 18px !important;
    line-height: 24px !important;
}

.size-chart-table .size-value {
    padding: 0px 5px;
    border-bottom: 5px solid #3F3F46;
    background-color: #27272A;
    font-size: 16px !important;
    line-height: 20px !important;
}



.measurement-instructions {
  margin-top: 32px;
}

.measurement-instructions h2 {
  font-size: 24px;
  color: #E4E4E7;
  margin-bottom: 24px;
}

.instructions {
  display: flex;
  align-items: flex-start;
}

.figure {
  flex: 1;
  margin-right: 16px;
}

.instruction-list {
  flex: 2;
}

.instruction-list p {
  margin: 5px 0;
  color:#FFFFFF;
  font-size: 20px;
  Line-height: 30px;
  font-weight:100;
}

.instruction-list ul {
  list-style-type: none;
  padding-left: 0;
}

.instruction-list ul li {
  margin: 5px 0;
  font-size: 16px;
  font-weight:200;
  line-height: 25px;
}

.instruction-list ul li span {
  font-weight:100;
  font-size: 14px;
}


.unit-toggle button {
    font-size: 14px;
    font-family: "Readex Pro", Arial, Helvetica, sans-serif !important;
  background: transparent;
  border: 1px solid #FFFFFF66;
  padding: 8px 12px;
  color: #A1A1AA;
  cursor: pointer;
  border-radius: 100px;
  width: 72px;
  height: 36px;
  font-weight: 100;
}

.unit-toggle button:hover, .unit-toggle button.active {
  color: #E4E4E7;
  border: 2px solid #E4E4E7;
  background: transparent;
}

@media only screen and (max-width: 768px){
    .size-chart-table th, .size-chart-table td {
    padding: 2px;
}
.instruction-list ul li {
    font-size: 12px;
    line-height: 15px;
}
.instruction-list ul li span {
    font-size: 12px;
}
.instruction-list p {
    font-size: 12px;
    Line-height: 15px;
}
div#wd_sizeguide {
    padding: 20px 10px;
}
div#wd_sizeguide h4.wd-sizeguide-title {
    font-size: 20px;
    line-height: 30px;
}
.size-chart-header h2, .measurement-instructions h2 {
    font-size: 20px;
}
.size-chart-table .size-value {
    font-size: 10px !important;
    line-height: 20px !important;
}
.size-chart-table .size-side {
    font-size: 12px !important;
    line-height: 15px !important;
}
.size-chart-table .size-title {
    font-size: 12px !important;
    line-height: 15px !important;
}

}




.woodmart-archive-shop .wd-product .product-wrapper .product-element-top .product-image-link img  {
    object-fit: cover;
    height: 300px;
    width: 100%;
}


.products.wd-products.grid-columns-4.elements-grid.title-line-one.wd-grid-g.wd-stretch-cont-lg img, .wd-carousel.wd-grid.wd-stretch-cont-lg.wd-initialized.wd-horizontal.wd-rtl.wd-watch-progress img  {
    object-fit: cover;
    height: 450px;
}

@media only screen and (max-width: 415px) {
   .products.wd-products.grid-columns-4.elements-grid.title-line-one.wd-grid-g.wd-stretch-cont-lg img, .wd-carousel.wd-grid.wd-stretch-cont-lg.wd-initialized.wd-horizontal.wd-rtl.wd-watch-progress img  {
    object-fit: cover;
    height: 300px;
} 
}


