.product-main__image {
  width: 46%;
}
html .woocommerce div.product form.cart .button {
  border-radius: 30px;
  padding: 10px 25px;
  background: #d50057;
}
html .woocommerce div.product form.cart input[type="number"] {
  width: 60px;
  padding: 7px 2px;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 6px;
}
html .woocommerce div.product form.cart input::-webkit-outer-spin-button,
html .woocommerce div.product form.cart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* One Time Purchase */
.onetime-purchase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.onetime-purchase-price {
  color: #d50057 !important;
  font-size: 1.75rem !important;
  font-weight: bold !important;
  margin: 0 !important;
}
.onetime-purchase-detail {
  /* font-weight: 500; */

  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  line-height: 24px;
  margin-bottom: 8px;
}
.onetime-purchase-discount {
  color: #d50057 !important;
}

.supscribtion-simple {
  border: 1.5px solid #efefef;
  border-radius: 9px;
  padding: 22px 17px 22px 7px;
  max-width: 440px;
  margin-bottom: 10px;
  position: relative;
}
.supscribtion-simple h3 {
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.supscribtion-simple h3 .save {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #89c225;
  padding: 2px 6px;
  display: inline-block;
  /* margin-top: -10px; */
  margin-left: 10px;
}
/* Customize the label (the container) */
.label_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.product .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #1276ce;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16.5px;
  height: 16.5px;
  border-radius: 50%;
  background: white;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}
.supscribtion-simple-top {
  display: flex;
  justify-content: space-between;
}
html .supscribtion-simple-top h3 {
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}
.supscribtion-simple-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.01em;
  color: #282727;
  font-family: Inter;
  margin-bottom: 8px;
}

.supscribtion-simple-content strong.replacement {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  line-height: 24px;
  margin-bottom: 8px;
}

.supscribtion-simple-content strong.replacement span {
  color: #d81b60;
}

.supscribtion-simple-deliver {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}
/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #fff;
  margin-bottom: 8px;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 23px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 17px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
  text-align: left;
}
.select-items div {
  background: #fff;
  border: none;
  border-radius: 0;
  font-size: 14px;
  padding: 8px 20px;
}
/* Style items (options): */
.select-items {
  position: absolute !important;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #000;
  border-radius: 3px;
  position: relative;
  overflow-y: auto;
  max-height: 300px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.supscribtion-simple-btn {
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 12px 25px;
  background: #d50057;
  outline: none !important;
  cursor: pointer;
  border: none;
  margin-bottom: 8px;
  width: 100%;
  transition: all 0.1s;
}
.supscribtion-simple-btn:hover {
  opacity: 0.8;
}
.supscribtion-simple-btn.yellow {
  background: #ff8d0c;
  color: #353535;
  margin-bottom: 0;
}
.one-time-purchase-simple {
  border: 1px solid #000;
  border-radius: 9px;
  padding: 12px 17px;
  max-width: 420px;
  margin-left: 10px;
}
.one-time-purchase-simple .price {
  font-weight: 700;
  font-size: 31px;
  line-height: 77%;
  color: #000;
  margin-bottom: 10px;
}
.one-time-purchase-simple .supscribtion-simple-top h3 {
  margin-bottom: 15px;
}
.buy-now {
  margin-top: 10px;
  padding: 22px;
  max-width: 344px;
}
.buy-now h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 5px;
}
.buy-now-bottom .text {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.buy-now-bottom .text p {
  font-weight: 500;
  font-size: 12px;
  line-height: 183%;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 5px;
}
.buy-now-bottom .text img {
  max-height: 72px;
}

.custom-select:disabled,
.custom-select[disabled],
button:disabled,
button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.layers {
  position: relative;
  width: 100%;
  height: 300px;
}
.layers .layer {
  position: absolute;
}
.product .colours-section h3 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}
.colours-section .custom-select {
  max-width: 320px;
  margin-bottom: 20px;
}
.colours-section .custom-select .select-selected {
  border: 1px solid #282727;
  border-radius: 4px;
  padding: 6px 16px;
  font-weight: 500;
  font-size: 12px;
  color: #282727;
}
.colours-section .custom-select .select-items div {
  font-size: 12px;
  padding: 6px 16px;
  color: #282727;
}
.colours-section .custom-select .select-selected:after {
  top: 11px;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.colours-section .custom-select .select-selected:after {
  top: 11px;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.1s;
}

.colours-section .custom-select .select-selected.select-arrow-active:after {
  top: 14px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.colours-section .colors-line {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-bottom: 5px;
}
.colors {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.colors .color {
  width: 53px;
  height: 53px;
  border-radius: 100%;
  fill: #1853b1;
  border: 3px solid #d3d3d3;
  display: inline-block;
}
.colors .color.active {
  border: 3px solid #0b82eb;
}
.palette-item__color.active {
  border: 3px solid #0b82eb;
}
.colors .color-layer {
  margin-bottom: 10px;
}
.colors .color-layer p {
  font-weight: 500;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.01em;
  color: #282727;
  margin-bottom: 5px;
}
.woocommerce div.product form.cart {
  margin-top: 20px;
}
.colors-line .color {
  cursor: pointer;
}
.blackOverlay {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-img-popup {
  display: none;
  background: #fff;
  position: fixed;
  top: 10%;
  left: 20%;
  width: 60%;
  height: 70%;
  margin-left: 0;
  z-index: 10;
  border: 2px solid #000;
}
.product-single__thumb {
  position: sticky;
  top: 0;
}
.closePopup {
  float: right;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}

.product-img-popup img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: 100% !important;
}
.content-popup {
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
}

.content-popup a {
  width: auto;
  display: block;
  height: 100%;
  margin: auto;
  position: relative;
  display: flex;
  align-content: space-around;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.content-popup a img {
  position: inherit !important;
  left: 0 !important;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.product-single__gallery--item {
  cursor: pointer;
}
/* .woocommerce-product-gallery__image a { */
/*   display: flex; */
/* } */
.mini-cart-angle-cart {
  z-index: 999;
  cursor: pointer;
}
.product-attribute {
  position: relative;
}
body .order_id_input {
  width: 100% !important;
  height: auto !important;
  border: 1.5px solid #efefef;
  border-radius: 9px;
  padding: 10px 30px;
  max-width: 440px;
  margin-bottom: 10px;
  position: relative !important;
  cursor: auto !important;
  font-size: 18px;
  opacity: 1 !important;
}

.enter_id_section {
  display: none;
}

.b-show {
  display: block;
  animation: showBlock 0.1s linear forwards;
}

.order-id-loading {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

.order-id-success {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #dff0d8;
  color: #3c763d;
  border-radius: 4px;
}

.order-id-error {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #f2dede;
  color: #a94442;
  border-radius: 4px;
}

@keyframes showBlock {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 992px) {
  .banner-item {
    padding-bottom: 40px;
  }
  .product-img-popup {
    display: none;
    background: #fff;
    position: fixed;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 50%;
    margin-left: 0;
    z-index: 10;
    border: 2px solid #000;
  }
  .product-img-popup img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: 100% !important;
  }
  .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    height: auto !important;
  }
  .product-single__gallery {
    display: block !important;
  }
  .product-single__thumb {
    padding: 0 30px;
  }
}


/*new css 07-02-2025*/