.widget-cat-filter ul li:not(:last-child) {
  margin-bottom: 10px;
  padding: 5px 0;
  position: relative;
  border-bottom: 1px solid var(--bic-border-color);
}

.widget-cat-filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-cat-filter ul li {
  position: relative;
}

.widget-cat-filter ul li a {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: var(--bic-text-color);
  text-decoration: none;
  transition: color 0.1s ease;
}

.widget-cat-filter ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--bic-border-color);
  border-radius: var(--bic-border-radius);
  transform: translateY(-50%);
  transition: all 0.1s ease;
}

.widget-cat-filter ul li a:hover {
  color: var(--bic-primary-color);
}

.widget-cat-filter ul li a:hover::before {
  width: 15px;
  height: 6px;
  background-color: var(--bic-primary-color);
}

.woocommerce-notices-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {

}

.woocommerce-error {
  padding: 15px 20px !important;
  margin: 0 0 30px;
  position: relative;
  overflow: hidden;
  background-color: #f6f5f8;
  color: #515151;
  border-top: 3px solid green;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  color: red;
}

.woocommerce-info,
.woocommerce-message {
  padding: 15px 20px !important;
  margin: 0 0 30px;
  position: relative;
  overflow: hidden;
  background-color: #f6f5f8;
  color: #515151;
  border-top: 3px solid green;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  color: green;
}

.checkout-inline-error-message {
  color: red;
}

.woocommerce-message a {
}

.woocommerce-info,
.woocommerce-message {
  max-width: calc(var(--bic-container-width) - (var(--bic-grid-gap) * 2));
  padding: 1em 2em 1em 3.5em;
  margin: 0 auto;
  position: relative;
  background-color: #f7f6f7;
  color: #515151;
  border-top-color: #8fae1b;
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  margin-bottom: 50px;
}

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
  float: right;
}

.woocommerce-notices-wrapper a.button {

}

.woocommerce-notices-wrapper a.button:hover {
  opacity: 0.7;
}

.woocommerce-notices-wrapper a.restore-item {
  color: var(--bic-primary-color);
  font-weight: 600;
}

.woocommerce .woocommerce-Button.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce-Address-title a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  background: var(--bic-primary-color);
  font-size: var(--bic-size-16);
  color: #fff;
  padding: 16px 20px;
  min-width: 180px;
  border: 1px solid var(--bic-primary-color);
  border-radius: var(--bic-border-radius);
  transition: background-color 0.3s ease, color 0.3s ease,
  border-color 0.3s ease;
}

.woocommerce .button:focus,
.woocommerce .button:hover {
  opacity: 0.9;
}

.woocommerce a.button.loading {
  cursor: progress;
  opacity: 0.9;
}

.woocommerce-privacy-policy-link {
  color: var(--bic-primary-color);
}

.onsale {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 20px;
  background: red;
  color: #fff;
  font-size: var(--bic-size-14);
  line-height: 1;
  padding: 6px 10px;
}

form.woocommerce-ordering {
  display: flex;
}

del .amount,
ins .amount {
  font-weight: 600;
}

del .amount {
  color: #ddd !important;
}

ins .amount {
  color: red !important;
  font-weight: 700;
}

.woocommerce .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}

.woocommerce label.qty-label {
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

.woocommerce .quantity .qty,
.woocommerce .quantity button {
  height: 40px;
  background: 0 0;
  border: 1px solid var(--bic-border-color);
  text-align: center;
  line-height: 1;
}

.woocommerce .quantity button {
  width: 32px;
  font-weight: 600;
  color: var(--bic-text-color);
}

.woocommerce .quantity .qty {
  -moz-appearance: textfield;
  appearance: textfield;
  width: 36px;
  color: var(--bic-text-color);
  font-weight: 700;
  margin-left: 8px;
  margin-right: 8px;
}

.woocommerce .quantity input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.woocommerce .quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.woocommerce .buy-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 30px;
}

.woocommerce .buy-actions button {
  width: calc(100% / 2 - 15px);
}

.woocommerce-product-gallery {
}

ol.flex-control-nav.flex-control-thumbs {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 10px;
}

.flex-viewport {
  margin-bottom: 20px;
  margin-bottom: 20px;
  border-radius: 1rem;
}

.woocommerce-product-gallery__image {
  border-radius: 1rem;
  overflow: hidden;
}

.flex-control-thumbs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 0 0 100px;
  max-width: 100px;
  max-height: 350px;
  align-items: start;
  display: block;
  overflow-y: auto;
}

.flex-control-thumbs li {
  position: relative;
  cursor: pointer;
  height: 80px;
  display: flex;
  margin-bottom: 10px;
  max-width: 80px;
  flex: 0 0 80px;
}

.flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  pointer-events: auto;
}

.flex-control-thumbs li img:not(.flex-active) {
  opacity: 0.5;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

h1.product_title.entry-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.prod_origin {
  font-weight: 600;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e0d8;
  display: none;
}

.product_meta {
  margin-top: 16px;
}

.product-detail-btn {
  margin-top: 32px;
}


.sidebar-gingle-prod  ._item_product {
  margin-bottom: 20px;
}

.product-detail-btn a {
  color: #fff;
}

.product-detail-btn a:hover {
  color: #fff;
}
.wc-tabs-wrapper {
  margin-top: var(--bic-gap);
}

ul.woocommerce-widget-layered-nav-list li.chosen span,
ul.woocommerce-widget-layered-nav-list li.chosen a {
  color: var(--bic-primary-color);
  font-weight: 600;
}

ul.brand-filter-list {
  max-height: 500px;
  overflow-y: auto;
  padding-left: 22px;
  margin-left: 0;
}

.brand-filter-item {
  margin-bottom: 10px;
}

li.brand-filter-item.chosen a {
  color: var(--bic-primary-color);
  font-weight: 600;
}

.content-sidebar.sidebar-gingle-prod h3 {
  font-size: 26px;
}

.contact-prod {
  padding: 20px;
  background-color: rgb(239, 241, 247);
  border-radius: 6px;
  margin: 30px 0;
}

.policy-prod-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
}

.policy-prod-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--bic-primary-color);
}

.contact-prod a {
  color: var(--bic-primary-color);
  font-weight: 600;
}

.woocommerce-product-details__short-description {
  margin-bottom: 20px;
}

.related-products  ._item_product {
  height: 100%;
}

ul.tabs.wc-tabs {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--bic-border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  overflow-x: auto;
}

ul.tabs.wc-tabs li a {
  display: block;
  color: rgba(27, 27, 27, 0.4);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 3px solid transparent;
}

ul.tabs.wc-tabs li {
  vertical-align: top;
  padding: 0;
  margin-right: 30px;
  white-space: nowrap;
}

ul.tabs.wc-tabs li::before {
  display: none;
}

ul.tabs.wc-tabs li.active a,
ul.tabs.wc-tabs li:hover a {
  color: var(--bic-primary-color);
  border-color: var(--bic-primary-color);
}

.product-item {
  position: relative;
  height: initial;
}

.product-item-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--bic-border-color);
  padding: 10px;
  border-radius: var(--bic-border-radius);
}

.product-item-thumbnail {
  display: block;
  position: relative;
  padding-top: 100%;
}

.product-item-thumbnail a {
  position: absolute;
  top: 15px;
  left: 15px;
  bottom: 15px;
  right: 15px;
}

.product-item:hover .product-item-thumbnail img {
  transform: translateY(-3px);
}

.product-item-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 0px;
}

.product-item-title {
  font-size: var(--adt-font-size);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  color: var(--adt-primary-color);
}

.product-item-title a {
  color: currentColor;
  display: block;
}

.product-item-excerpt {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  min-height: 60px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-bottom: 10px;
}

.product-item-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--adt-primary-color);
  font-weight: 600;
}

.product-item-btn a i {
  transition: var(--adt-transition);
  color: var(--adt-secondary-color);
}

.product-item:hover .product-item-btn a i {
  transform: translateX(5px);
}

.related-products {
  position: relative;
  margin-top: var(--adt-gap);
}

.related-products .swiper {
  padding: 30px 2px;
}

.widget-filter ul li a {
  position: relative;
  padding-left: 28px;
}

.widget-filter ul li a.active {
  color: var(--adt-primary-color);
  font-weight: 600;
}

.widget-filter ul li a::before {
  content: "";
  position: absolute;
  font-family: icomoon, fantasy !important;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid var(--bic-border-color);
}

.widget-filter ul li a::after {
  content: "\e932";
  position: absolute;
  font-family: icomoon, fantasy !important;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 1px;
  color: currentColor;
  opacity: 0;
}

.widget-filter ul li a.active::after,
.widget-filter ul li a:hover::after {
  opacity: 1;
}

.list-prod-cat.row {
  row-gap: 30px;
}

.sidebar-gingle-prod ._item_product {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sidebar-gingle-prod ._item_product a {
  position: unset;
}

.sidebar-gingle-prod ._content_product {
  margin-top: 0;
}

.sidebar-gingle-prod ._image_product {
  flex: 0 0 120px;
  max-width: 120px;
  padding: unset;
}

.sidebar-gingle-prod ._image_product img {
  position: unset;
  transform: unset;
}

.related-products.slide5 .swiper {
  margin: 0;
}

@media only screen and (min-width: 1441px) and (max-width: 1536px) {
  .product-item-excerpt {
    min-height: 48px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .product-item-excerpt {
    min-height: 45px;
  }

  
  .shop_table .product-thumbnail img {
    width: 50px !important;
    height: 50px !important;
  }

  tr.woocommerce-cart-form__cart-item.cart_item .product-subtotal, tr.woocommerce-cart-form__cart-item.cart_item .product-price, .woocommerce-cart span.woocommerce-Price-amount.amount {
    font-size: 14px !important;
  }

  .sidebar-gingle-prod ._image_product {
    flex: 0 0 90px;
    max-width: 90px;
  }

  .single-product .content-area.col-12.col-lg-8 {
    flex: 0 0 73%;
    max-width: 73%;
  }

  .single-product .content-sidebar.sidebar-gingle-prod.col-12.col-lg-4 {
    flex: 0 0 27%;
    max-width: 27%;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .product-item-excerpt {
    min-height: 45px;
  }

  h1.product_title.entry-title {
    font-size: 20px;

  }

  .content-sidebar.sidebar-gingle-prod h3 {
    font-size: 18px;
  }

  h2.title {
    font-size: 28px;
  }

  .related-products .swiper {
    padding: 0 2px;
  }

  .single-product .cart {
    flex-wrap: wrap;
  }

  .shop_table .product-thumbnail img {
    width: 50px !important;
    height: 50px !important;
  }

  tr.woocommerce-cart-form__cart-item.cart_item .product-subtotal, tr.woocommerce-cart-form__cart-item.cart_item .product-price, .woocommerce-cart span.woocommerce-Price-amount.amount {
    font-size: 14px !important;
  }

  .sidebar-gingle-prod ._image_product {
    flex: 0 0 90px;
    max-width: 90px;
  }
}

@media only screen and (max-width: 1024px) {
  .summary.entry-summary {
    margin-top: var(--adt-gap);
  }

  .woocommerce-product-gallery {
    display: block;
  }

  ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    max-width: unset;
    max-height: unset;
    overflow-x: auto;
  }

  form.woocommerce-cart-form {
    width: 100% !important;
    margin: 0;
  }

  .cart-collaterals {
    width: 100% !important;
  }

}



@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .product-item-excerpt {
    min-height: 48px;
  }

  .policy-prod {
    margin-bottom: 30px;
  }


  .sidebar-gingle-prod {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .product-item-title a {
    display: -webkit-box;
    max-width: 100%;
    min-height: 43px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-item-excerpt {
    min-height: 48px;
  }
}

@media only screen and (max-width: 576px) {
  .woocommerce p.stars a::before{
    font-size: 16px !important;
  }
  .product-item-info {
    padding: 15px 10px;
  }

  .single-product .cart {
    align-items: center !important;
    justify-content: start !important;
    gap: 10px;
  }

  .contact-prod {
    text-align: center;
  }

  .contact-prod span {
    font-size: 20px;
    font-weight: 600;
  }

  .policy-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--bic-primary-color);
  }

  .policy-prod-list {
    gap: 10px;
  }

  .policy-prod {
    margin-bottom: 30px;
  }

  div#review_form_wrapper {
    padding: 30px 15px !important;
  }

  h2.title {
    font-size: 24px;
  }
  .related-products .swiper {
    padding: 0;
  }

  .woocommerce-cart .button.wc-forward {
    float: left !important;
    border: none ;
    padding: 0 !important;
    justify-content: left;
  }

  button.single_add_to_cart_button.button.alt {
    text-transform: unset;
  }

  h1.product_title.entry-title {
    font-size: 18px;
    margin-top: 30px;
    
  }

  .custom-stars i::before {
    font-size: 18px !important;
  }

  .page .woocommerce .woocommerce-cart-form {
    width: 100% !important;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .cart-collaterals {
    width: 100% !important;
    position: relative;
    background-color: #f7f7f7;
    border: 2px solid var(--border);
    height: 100%;
    padding: 30px 15px;
    text-align: center;
  }

  .cart_totals {
    background: transparent;
    border: none !important;
    padding: 0 !important;
  }

  table.cart td.actions {
    padding-top: 20px !important;
    text-align: left !important;
  }

  .blog-detail__content.ContentBody {
    margin-bottom: 30px;
  }

  .woocommerce-cart .button.wc-forward {
    padding: 10px 20px !important;
  }

  .shop_table .product-thumbnail img {
    max-width: 70px;
    height: 70px !important;
  }

  th.product-thumbnail {
    min-width: 90px;
  }

  .woocommerce-cart-form .product-name {
    min-width: 220px !important;
  }

  .woocommerce-info, .woocommerce-message {
    padding: 20px 15px;
  }

  form.checkout.woocommerce-checkout {
    display: block;
  }

  .checkout.woocommerce-checkout #customer_details, .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  table.shop_table.woocommerce-checkout-review-order-table {
    margin-top: 30px;
  }

  .woocommerce-checkout .ContentBody p {
    margin-bottom: 14px;
  }

  .sidebar-gingle-prod {
    display: none;
  }
}

/* Giỏ hàng */
tr.woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
  width: 17%;
  padding: 15px 0;
}
tr.woocommerce-cart-form__cart-item.cart_item .product-name {
  width: 26%;
  text-align: left;
}
tr.woocommerce-cart-form__cart-item.cart_item .product-price,
tr.woocommerce-cart-form__cart-item.cart_item .product-subtotal {
  width: 22%;
}

tr.woocommerce-cart-form__cart-item.cart_item td.product-quantity {
  width: 10%;
}

tr.woocommerce-cart-form__cart-item.cart_item .product-subtotal,
tr.woocommerce-cart-form__cart-item.cart_item .product-price,
.woocommerce-cart span.woocommerce-Price-amount.amount {
  font-size: 16px;
  font-weight: 700;
  color: red;
}

.content-area.col-12.col-md-9 {
  max-width: 100% !important;
  flex: 0 0 100%;
}

table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents
tr:nth-child(even) {
  background: transparent;
}

.shop_table .coupon input {
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.shop_table .coupon button {
  width: auto;
  min-width: unset;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.woocommerce-cart button:hover {
  color: #fff !important;
}

table.cart thead {
  border-bottom: 1px solid var(--border);
  background: #F7F7F7;
}

.shop_table thead {
  text-align: center;
}

.shop_table .product-remove {
  text-align: center;
}

table.cart td,
table.cart th {
  padding: 15px 15px 15px 0;
}

table.cart,
table.cart td,
table.cart th {
  border-collapse: unset;
  border: none;
  text-align: center;
}

.shop_table tbody td {
  vertical-align: middle;
  padding: 0.75rem;
  text-align: left;
}

.shop_table .product-remove a {
  width: 25px;
  height: 25px;
  background: var(--text-color);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 600;
}

.shop_table .product-thumbnail img {
  width: 80px;
  height: 80px;
  margin: 0;
}

.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
  float: none;
  margin-right: 0;
  transition: opacity 0.6s ease;
}

table.cart td.product-name {
  width: 30%;
}

esponsive.cart.woocommerce-cart-form__contents {
  border: none;
}

.woocommerce-cart-form .product-name {
  min-width: 140px;
  text-align: left;
}

table.cart td.product-name a {
  font-weight: 500;
  color: var(--text-color);
  box-shadow: none;
}

.shop_table .product-price {
  text-align: center;
}

.page .quantity {
  padding: 0;
  width: 78px;
}

.woocommerce-cart-form .quantity {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  min-height: 50px;
  margin-right: 10px;
  padding: 0 15px;
  border-radius: 4px;
}

.shop_table .quantity .screen-reader-text {
  display: none;
}
._new_price .woocommerce-Price-amount.amount {
  color:rgba(221, 40, 49, 1) !important ;
  opacity: 1;
}
.woocommerce-Price-amount.amount,
.shop_table .woocommerce-Price-amount.amount {
  color: red;
  font-weight: 600;
}

.single-product .entry-summary .woocommerce-Price-amount.amount {
  font-size: 22px;
}

._old_price .woocommerce-Price-amount.amount {
  display: unset;
  color: #7a7a7a;
  opacity: 0.6;
}

.single_add_to_cart_button.button.alt {
  text-transform: unset;
}


.single-product .entry-summary .woocommerce-Price-amount.amount {
  font-size: 20px;
}

.single_add_to_cart_button.button.alt:hover {
  color: #fff;
}

table.cart td.actions {
  padding-top: 50px;
  text-align: right;
}

.shop_table .actions {
  text-align: right;
}

.shop_table .coupon {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page .woocommerce .cart-collaterals {
  width: 31.1827956989%;
  margin-right: 0;
}

.cart_totals {
  padding: 40px 30px 30px;
  position: relative;
  background-color: #f7f7f7;
  border: 2px solid var(--border);
}

.cart-collaterals h2 {
  font-weight: 600;
  padding-left: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 30px;
}

.wc-proceed-to-checkout {
  text-align: right;
  margin: 40px 0 20px;
}

.wc-proceed-to-checkout .wc-forward {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 22px;
  border-radius: 3px;
  background-color: red;
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.page .woocommerce .woocommerce-cart-form {
  width: 65.5913978495%;
  margin-right: 3.2258064516%;
}

.woocommerce-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
}

.content-single.padding {
  overflow: hidden;
}


/* checkout */
.checkout.woocommerce-checkout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  width: 100%;
}

.checkout.woocommerce-checkout #customer_details,
.checkout.woocommerce-checkout .woocommerce-checkout-review-order {
  flex: 0 0 50%;
  max-width: 48%;
}

.checkout.woocommerce-checkout #customer_details .col-1,
.checkout.woocommerce-checkout #customer_details .col-2 {
  flex: 0 0 100%;
  max-width: 100%;
}

.checkout.woocommerce-checkout
#customer_details
.col-2
.woocommerce-additional-fields:last-child
h3,
#order_review_heading,
button.button.buy-now-btn {
  display: none;
}

.checkout.woocommerce-checkout
#customer_details
.col-2
.woocommerce-additional-fields:last-child {
  margin-top: 20px;
}

p.stock.in-stock {
  color: green;
}

/* Single-product */
.single-product .cart {
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
}

.qty {
  width: 60px !important;
}

.minus svg,
.plus svg {
  display: block;
}

.minus,
.plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #f2f2f2;
  border: none;
  cursor: pointer;
}

.woocommerce-cart .minus,
.woocommerce-cart .plus,
.blog-detail__meta,
.blog-detail__foo {
  display: none;
}

.woocommerce-cart .blog-detail {
  max-width: 100%;
  width: 100%;
}

.wc_payment_methods.payment_methods.methods,
.payment_box.payment_method_cod {
  list-style: none;
}

.pd-t80 {
  padding-top: var(--bic-gap);
}

/* form review */
#comments .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment_container {
  display: flex;
  justify-content: start;
  column-gap: 15px;
}

.comment_container img {
  height: auto;
  object-fit: cover;
  margin: 0;
}

.comment_container .comment-text p.meta {
  margin-bottom: 0;
  font-size: 16px;
}

.woocommerce p.stars a {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  position: relative;
}

.woocommerce p.stars a::before {
  font-size: 22px;
  line-height: 1;
}

.woocommerce p.stars a::before,
.woocommerce p.stars a:hover ~ a::before,
.woocommerce p.stars:hover a::before,
.woocommerce p.stars.selected a:not(.active)::before,
.woocommerce p.stars.selected a.active::before,
.woocommerce p.stars.selected a.active ~ a::before {
  content: "\f154";
  font-family: dashicons;
  text-transform: uppercase;
  font-size: 22px;
  width: 2rem;
  height: 2rem;
  line-height: 1;
  color: #f0c420;
}

.woocommerce p.stars.selected a:not(.active)::before,
.woocommerce p.stars.selected a.active::before {
  content: "\f155";
  color: #f0c420;
}

.star-rating span,
.woocommerce .star-rating span,
.product_list_widget .star-rating span,
.woocommerce p.stars:hover a,
.woocommerce p.stars.selected a,
.woocommerce .star-rating span:before,
.ts-testimonial-wrapper .rating span:before,
blockquote .rating span:before {
  color: #f0c420 !important;
}

div#review_form_wrapper {
  border: 1px solid var(--bic-border-color);
  padding: 30px;
  border-radius: var(--bic-border-radius);
  margin-top: 30px;
}

#comments .woocommerce-Reviews-title {
  font-size: 18px;
}

.custom-stars i {
  font-style: normal;
}

.custom-stars i::before {
  content: "\f155";
  font-family: dashicons;
  color: #f0c420;
  font-size: 24px;
  margin-right: 2px;
  display: inline-block;
}

.woocommerce-product-rating {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
}

.post-type-archive-product .woocommerce-Price-amount.amount {
  color: var(--bic-primary-color);
  font-weight: 700;
}

.woocommerce-terms-and-conditions-wrapper {
  display: none;
}
.single-product .woocommerce-Price-amount.amount {
}

.single-product .related-products .product-item-inner ._rating {
  display: none;
}
.single-product .related-products .product-item-inner span.price {
  display: flex;
  align-items: center;
}

.woocommerce-product-gallery__wrapper {
}

.post-type-archive-product ._add_to_cart {
  display: none;
}



@media (min-width: 1280px) and (max-width: 1440px){
  h1.product_title.entry-title,
  .content-sidebar.sidebar-gingle-prod h3, .sec-head__title .title, .page-title, .ContentBody h2 {
    font-size: 24px !important;
  }
}


.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;

}

@media (min-width: 1200px) {
  .blog-detail {
    max-width: 100% !important;
    width: 100%;
  }
  #customer_details .col-1,  #customer_details .col-2  {
    padding: 0;
  }
}

@media (max-width: 576px){
  .single-product .woocommerce-message .button {
    background: transparent;
    color: var(--bic-text-color);
    border: none;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: start;
    padding: 0;
    font-size: 14px;;
  } 
  .woocommerce-cart .blog-detail,
  .woocommerce-checkout .blog-detail {

    padding: 0 10px;
            width: 100%;
  }
  .woocommerce-cart .bic-breadcrumb,
  .woocommerce-checkout .bic-breadcrumb{
    display: none;
  }
  #customer_details .col-1, #customer_details .col-2{
    padding: 0;
  }
  #payment ul.wc_payment_methods.payment_methods.methods {
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 576px) and (max-width: 1024px){
  h1.product_title.entry-title, .ContentBody h2, .sec-head__title .title, .page-title {
    font-size: 18px !important;
  }
  .comment-title, .comment-reply-title {
    font-size: 16px;
}
 .single-product .woocommerce-message .button {
    background: transparent;
    color: var(--bic-text-color);
    border: none;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: start;
    padding: 0;
    font-size: 14px;;
  } 
  .woocommerce-cart .blog-detail,
  .woocommerce-checkout .blog-detail {

    padding: 0 10px;
            width: 100%;
  }
  .woocommerce-cart .bic-breadcrumb,
  .woocommerce-checkout .bic-breadcrumb{
    display: none;
  }
  #customer_details .col-1, #customer_details .col-2{
    padding: 0;
  }
  #payment ul.wc_payment_methods.payment_methods.methods {
    padding: 0;
    margin: 0;
  }
  button#place_order {
    margin-top: 20px;
}
.woocommerce-checkout .blog-detail__header .page-banner__info {
    padding-bottom: 0;
}
}