/* Custom content */
.product__details-wrapper {
  margin-top: 0;
}
.product__details-container summary {
  align-items: center;
}
.product__details-container summary .icon-accordion {
  width: 24px;
  height: 24px;
}
.product__details-container summary .icon-accordion svg {
  width: 24px;
  height: 24px;
}
.product__details-container summary .accordion__title {
  line-height: 24px;
}
/* Product info */
.product__info-container > * + * {
  margin: 10px 0;
}
.product__info-container .product__info-description {
  max-width: 100%;
  overflow-x: auto;
}
@media screen and (min-width: 960px) {
  .product__column-sticky {
    display: block;
    position: sticky;
    top: 20px;
    z-index: 2;
  }

  /* product_image_pc_position */
  .product--left .product__info-wrapper {
    padding-left: 60px;
  }

  .product--left .product__media-wrapper {
    padding-right: 0px;
  }

  .product--right .product__info-wrapper {
    padding-right: 60px;
  }

  .product--right .product__media-wrapper {
    padding-left: 0px;
  }

  /* product_image_size */
  .product--large .product__media-wrapper {
    max-width: 66%;
    width: 66%;
  }

  .product--large .product__info-wrapper {
    max-width: 34%;
    width: 34%;
  }

  .product--medium .product__media-wrapper,
  .product--medium .product__info-wrapper {
    max-width: 50%;
    width: 50%;
  }

  .product--small .product__media-wrapper {
    max-width: 34%;
    width: 34%;
  }

  .product--small .product__info-wrapper {
    max-width: 66%;
    width: 66%;
  }
}
@media screen and (max-width: 959px) {
  .product__media-wrapper {
    padding: 0;
    /* margin: 0 -10px; */
    /* width: calc(100% + 20px); */
    /* max-width: calc(100% + 20px); */
  }
  .product-form .product-form__buttons > * {
    /* margin-bottom: 10px; */
    width: 100% !important;
  }
}
/* Product form */
.product-form {
  display: block;
}
.product-form .product-form__error-message-wrapper:not([hidden]) {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgb(var(--color-discount-tag-background));
}
.product-form .product-form__error-message-wrapper:not([hidden]) .icon-error {
  margin-right: 5px;
}
.product-form .product-form__buttons > * {
  /* margin-bottom: 10px; */
  width: 50%;
}
.product-form .product-form__buttons .pay-button-buy-now {
  overflow: unset;
}
button.btn.btn-primary.pay-button-common-item.pay-button-buy-now.button{
  background-color: #000 !important;
}
.quantity-input-label {
  margin-bottom: 10px;
}
/* Form Elements */
.product-form__input {
  flex: 0 0 100%;
  padding: 0;
  margin: 0 0 20px 0;
  max-width: 100%;
  min-width: fit-content;
  border: none;
}
variant-radios .product-form__input {
  margin-bottom: 10px;
}
variant-radios,
variant-selects {
  display: block;
}
fieldset.product-form__input .form__label {
  margin-bottom: 10px;
}
/* variant-radios */
.product-form__input input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}
.product-form__input input[type="radio"] + label {
  border: var(--sku-selector-border-thickness) solid
    rgba(var(--color-text), var(--sku-selector-border-opacity));
  background-color: rgb(var(--color-page-background));
  color: rgba(var(--color-text));
  border-radius: var(--sku-selector-border-radius);
  display: inline-block;
  margin-right: 6px;
  padding: 7.5px 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 10px;
}
.product-form__input input[type="radio"] + label::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: var(--sku-selector-border-radius);
  box-shadow: var(--sku-selector-shadow-offset-x)
    var(--sku-selector-shadow-offset-y) var(--sku-selector-shadow-blur)
    rgba(var(--color-text), var(--sku-selector-shadow-opacity));
  z-index: -1;
}
.product-form__input input[type="radio"] + label::after {
  content: "";
  width: calc(100% + 2px + var(--sku-selector-border-thickness) * 2);
  height: calc(100% + 2px + var(--sku-selector-border-thickness) * 2);
  position: absolute;
  top: calc(var(--sku-selector-border-thickness) * -1 - 1px);
  left: calc(var(--sku-selector-border-thickness) * -1 - 1px);
  border: 1px solid transparent;
  border-radius: var(--sku-selector-border-radius-outset);
}
.product-form__input input[type="radio"] + label:hover::after {
  border-color: rgba(var(--color-text), var(--sku-selector-border-opacity));
}
.product-form__input input[type="radio"]:checked + label #select-box  {
  background-color: #08DBAF;
  /* background-color: rgba(var(--color-button-background));
  color: rgba(var(--color-button-text)); */
}
div#select-box {
  content: "";
  width: 12Px;
  height: 12px;
  border-radius: 50%;
  margin-right: 11px;
  display: inline-block;
  border: 2px solid #000;
}
.product-form__input input[type="radio"]:checked + label:hover::after {
  border-color: transparent;
}
/* variant-selects */
variant-selects .field::after,
variant-selects .field:hover::after,
variant-selects .field:focus::after,
variant-selects .field:focus-within::after {
  border-color: rgba(var(--color-text));
}
.product-sell-info {
  margin-bottom: 0 !important;
}
.product-sell-info .product-sell-box {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.product-sell-info .product-sell-box:last-child {
  margin-bottom: 0;
}
.product-sell-info .product-sell-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  color: var(--color-text);
  stroke: currentColor;
  line-height: 1;
}
.product-sell-info .product-sell-icon svg {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .product-sell-info .product-sell-icon {
    width: 20px;
    height: 20px;
  }
}
.product-sell-info .product-sell-text {
  margin-left: 16px;
  color: var(--color-text);
}
/* Product popup */
.product-popup-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  background-color: rgba(var(--color-text), 0.3);
  height: 100%;
}
.product-popup-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.product-popup-modal__content {
  border-radius: var(--menu-modal-border-radius);
  background-color: rgb(var(--color-page-background));
  overflow: auto;
  height: calc(100% - 120px);
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 40px 60px 40px 40px;
  border-color: rgba(var(--color-text), var(--menu-modal-border-opacity));
  border-style: solid;
  border-width: var(--menu-modal-border-thickness);
  box-shadow: var(--menu-modal-shadow-offset-x)
    var(--menu-modal-shadow-offset-y) var(--menu-modal-shadow-blur)
    rgba(var(--color-text), var(--menu-modal-shadow-opacity));
}
@media screen and (max-width: 959px) {
  .product-popup-modal__content {
    padding: 20px 40px 20px 20px;
    width: 335px;
    height: 60%;
    max-height: 380px;
  }
}
.product-popup-modal__content img {
  max-width: 100%;
}
@media screen and (max-width: 959px) {
  .product-popup-modal__content table {
    display: block;
    max-width: fit-content;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0;
  }
}
.product-popup-modal__content-info > * {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .product-popup-modal__content-info > * {
    max-height: 100%;
  }
}
.product-popup-modal__toggle {
  background-color: rgb(var(--color-page-background));
  border: 1px solid rgba(var(--color-text), 0.05);
  border-radius: 50%;
  color: rgba(var(--color-text), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  padding: 14px;
  width: 40px;
}
@media screen and (max-width: 959px) {
  .product-popup-modal__toggle {
    top: 10px;
    right: 10px;
    padding: 9px;
    width: 30px;
  }
}
.product-popup-modal__toggle:hover {
  color: rgba(var(--color-text), 0.75);
}
.product__inventory .low-stock,
.product__inventory .in-stock,
.product__inventory .out-stock {
  display: inline-flex;
  align-items: flex-start;
}
.product__inventory .low-stock::before,
.product__inventory .in-stock::before,
.product__inventory .out-stock::before {
  --icon-size: 10px;
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  background-color: currentColor;
  margin: calc((1em * var(--body-line-height) - var(--icon-size)) / 2) 0;
  margin-right: 8px;
  flex-shrink: 0;
}
.product__inventory .low-stock::before {
  background-color: #fe9e0f;
}
.product__inventory .in-stock::before {
  background-color: #35c08e;
}
.product__inventory .out-stock {
  color: #f86140;
}

/* CUSTOM STYLING */
.product-parent {
  padding-inline: 0;
  /* background-color: #EEE */
}

/* Glide Carousel Styles */

.custom__product-media-parent .glide__slide img {
  width: 100%;
  height: auto;
}

.custom__product-media-parent .glide__arrow {
  background-color: #05A886;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  color: #FFF;
}

.custom__product-media-parent .glide__arrow:hover {
  opacity: .8;
}

/* Additional items styling */
.custom__product-media-parent .additional-items {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 22px;
  /* background-color: beige; */
}

.custom__product-media-parent .additional-item {
  width: calc(100% / 3 - 15px);
  height: auto;
  /* border: 1px solid #000; */
  object-fit: fill;
  mix-blend-mode: multiply;
}

.custom__product-media-parent .additional-item img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #FAF8F8;
}

.custom__product-media-parent .glide__slide {
  height: 692px;
  margin-bottom: 15px;
  mix-blend-mode: multiply;
}

.custom__product-media-parent .glide__slide img {
  background-color: #FAF8F8;
  object-fit: contain;
}

.custom__product-media-parent .glide__arrow--right {
    transform: rotate(-90deg);
}
.custom__product-media-parent .glide__arrow--left {
  transform: rotate(90deg);
}

.product__details-collection-url {
  color: var(--text-gray);
  font-weight: 400;
  font-size: 14px;
}

.product__details-logo {
  width: 83px;
  height: auto;
}

.product__details-logo img {
  width: 100%;
  height: 100%;
}

.product__details-pr-title {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 30px;
  margin: 1rem 0;
}

.product__details-pr-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-gray);
}

.product__details-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1rem 0 2rem;
}

.product__details-note .note-logo {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.product__variant-label label,
.product-form__input legend,
.quantity__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: .7rem;
}

.product__variant-wrapper {
  width: 210px;
  height: 50px;
  margin-bottom: 2.5rem;
}

.product__variant-wrapper select {
  width: 100%;
  height: 100%;
  outline: none;
  border: 2px solid #3C3A3A;
}

.dexterity-options {
  display: flex;
  gap: 10px;
  border: none;
  padding: 0;
}

.dexterity-options input[type="radio"] {
  display: none; /* Hide the actual radio input */
}

.dexterity-label {
  position: relative;
  align-items: center;
  justify-content: center;
  width: 210px; /* Set the width */
  height: 50px; /* Set the height */
  font-weight: bold;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  display: flex !important;
  align-items: center;
  gap: 1rem;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  border: 2px solid #3C3A3A !important;
}

.quantity {
  width: 210px; /* Set the width */
  height: 50px; /* Set the height */
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-gray);
  border: 2px solid #3C3A3A;
  padding: 0 10px;
}

.dexterity-label .circle {
  display: block;
  min-width: 14px;
  min-height: 14px;
  width: 14px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #000
}

.dexterity-options input[type="radio"]:checked + .dexterity-label .circle {
  background-color: green; /* Green when selected */
}

/* popular product section */
.pr-popular-products {
  width: 90%;
  padding-inline: 0;
  margin-bottom: 2.5rem;
  padding-top: 0 !important;
}

.pr-product-recommendations-title {
  font-size: 20px;
  font-weight: 400;
  border-bottom: 3px solid var(--main-color) !important;
}

@media screen and (max-width: 1121px) {
  .product-parent {
    padding: 0;
    display: block;
  }

  .product__media-wrapper {
    min-width: 100%;
  }

  .product__info-wrapper {
    min-width: 100%;
  }
        
}
@media screen and (min-width: 981px) {
  #GalleryViewer-main-product-info{
    min-height: 580px;
  }

}
@media screen and (max-width: 1121px) {
  .product-parent {
    padding: 0;
    display: block;
  }

  .product__media-wrapper {
    min-width: 100%;
  }

  .product__info-wrapper {
    min-width: 100%;
  }
        
}

@media screen and (max-width: 767px) {

  .product__media-wrapper {
    min-width: 100%;
  }

  .additional-item {
    display: none;
  }

  .pr-product-recommendations-title {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 5px !important;
    margin-bottom: 30px !important;
  }
        
}
.product-description-section ul li {
    font-size: 18px;
}

.product-description-section .tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 37px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.product-description-section .tab-button::after {
  width: 100%;
opacity: 70%;
}

@media screen and (max-width: 587px) {

  .product-parent {
    position: relative;
  }

  .product__details-collection-url {
    /* position: absolute; */
    top: -25px;
    right: 0;
    font-size: 10px !important;
    font-weight: 400;
  }

  /* .product__media-wrapper {
    height: 323px;
  } */

  .product__media-wrapper .custom__product-media-parent {
    height: 100%;
  }

  .product__media-wrapper .custom__product-media-wrapper {
    height: 100%;
  }

  .product__media-wrapper .custom__product-media-wrapper > .glide__track {
    height: 100%;
  }

  .custom__product-media-parent .glide__slide img {
    object-fit: fill;
  }

  .product__info-item .product__details-pr-title {
    font-size: 20px;
    font-weight: 500;
  }

  .product__details-note {
    font-size: 13px;
    font-weight: 400;
  }

  .product__variant-label label,
  .product-form__input legend,
  .quantity__title {
    font-size: 12px;
    font-weight: 500;
  }

  .product__details-form .product-form__buttons {
    flex-direction: column;
  }

  .product__details-form .product-form__buttons .product-form__submit,
  .product__details-form .product__details-payment-btn {
    width: 100% !important;
  }

  .product__details-shipping-text {
    justify-content: center;
  }

  .product-form__buttons button.product-form__submit {
    background-color: #05A886 !important;
  }

  /* .product__details-form .product-form__buttons .product-form__submit  */

  .product-description-section {
    margin-bottom: 2rem;
  }

  .product-description-section .tab-content p {
    font-size: 13px !important;
    font-weight: 300;
    color: var(--black);
    width: 90%;
  }

  .product__variant-wrapper,
  .dexterity-label,
  .quantity {
    width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .dexterity-label .circle {
    min-width: 12px;
    min-height: 12px;
  }

  .custom__product-media-parent .glide__arrow--left {
    left: 1em;
  }

  .custom__product-media-parent .glide__arrow--right {
    right: 1em;
  }

  .product-description-section .tabs {
    gap: 3px;
  }

  .product-description-section .tabs .tab-button {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 5px !important;
  }
      
}

.product__details-collection-url #breadcrumbs{
  padding-inline: 0px !important;
  font-size: 14px !important;
  font-weight: 300;
}

.thumbnail-slider  .slider-button--next  svg
 {
  rotate: -90deg !important;
 }
 .thumbnail-slider  .slider-button--prev  svg
 {
  rotate: 90deg !important;
 }
 .trade-account-section {
  margin-bottom: 80px;
}
.product-form__buttons button {
  border-radius: 0px !important;
}
.sales-currency-object{
    color: #000 !important;
}
._btn_y7r8s_11._primary_y7r8s_18{
    border-radius: 0px !important;
    padding-block: 16px !important;
    text-transform: capitalize !important;
}
._btn_f875w_11._square_f875w_51{
        padding-block: 16px !important;
            text-transform: capitalize !important;
}

.edd-sb-add-to-cart-button button{
    border-radius: 0px !important;
    padding: 16px 10px !important;
    background-color: #05a886 !important;
    border: none !important;
    color: white;

}
.edd-sb-add-to-cart-button button span {
    font-size: 18px;
    font-weight: 500;
}


/* The ipad end responds to the mobile end in vertical screen */
/* @custom-media --tablet (max-width: 959px); */
/* @custom-media --gt-mobile (min-width: 751px); */
/* detectingScreen need to consider the configuration of the tablet */
