@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  font-size: 100%;
  line-height: 1;
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-background);
  font-family: Montserrat;
height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

p {
  font-size: 1.3rem;
  line-height: 136%;
}

h1 {
  font-size: 3.5rem;
  line-height: 125%;
}

h2 {
  font-size: 3.5rem;
  line-height: 136%;
  text-transform: uppercase;
}

h3 {
  font-size: 2.2rem;
  line-height: 130%;
  text-transform: uppercase;
}

h4 {
  font-size: 1.8rem;
  line-height: 130%;
  font-weight: 600;
}

h5 {
  font-size: 1.4rem;
  line-height: 150%;
}

h6 {
  font-size: 1.8rem;
  line-height: 130%;
}

._container {
  display: block;
  max-width: 1408px;
  margin: 0 auto;
  padding: 0 42px;
}

.content {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  padding-top: 7rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

:root {
  --color-background: #fcf5ee;
  --color-dark: #0e0e0e;
  --color-dark-grey: #676767;
  --color-grey: #a8a39f;
  --color-light-grey: #ececec;
  --color-white: #ffffff;
  --color-light-blue: #e3f5ff;
  --color-blue: #499ecd;
  --color-red: #d10027;
}

.header {
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  z-index: 3;
}

.header__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.5rem 0;
}

.header__row .account__personalization {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

.header__row .account__personalization .user-icon {
  width: 20px;
  height: 20px;
}

.header__row .account__personalization .shoping-bag-icon {
  position: relative;
  background: var(--color-white);
  width: 20px;
  height: 20px;
}

.header__row .logo {
  margin-left: 3rem;
}
.logo img{
  width: 193px;
  height: 24px;
}

.circle-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 11px;
  line-height: 12px;
  position: absolute;
  border-radius: 50%;
  top: -8px;
  right: -8px;
  color: var(--color-white);
  background-color: var(--color-blue);
  text-align: center;
  width: 18px;
  height: 18px;
}

.header.hide {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.burger-menu {
  display: block;
  cursor: pointer;
  position: relative;
  width: 1.6rem;
  height: 1rem;
  margin-right: 3rem;
}

.burger-menu .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.burger-menu .line:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.burger-menu .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.burger-menu .line:nth-child(3) {
  bottom: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.burger-menu.open .line:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.burger-menu.open .line:nth-child(2) {
  opacity: 0;
}

.burger-menu.open .line:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}

.menu-container {
  display: none;
}

.menu-container.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  flex-direction: column;
  background-color: var(--color-white);
  height: 100vh;
  text-align: center;
}

.menu-container.open .menu {
  padding-top: 6rem;
}

.menu-container.open .menu li {
  padding-bottom: 1rem;
}

.menu-container.open .menu li h2 {
  color: var(--color-dark);
}

/* .menu-container.open .menu li:hover{
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 0.8rem;
  
} */

.menu-container.open .menu li h3 {
  color: var(--color-dark);
}

.menu-container.open .menu li h3:hover {
  color: var(--color-blue);
}

.menu-container.open .menu li h6 {
  padding-bottom: 2.4rem;
  line-height: 140%;
  color: var(--color-grey);
}

.menu-container.open .menu li h2:hover {
  color: var(--color-blue);
}

.menu-container.open .menu .menu-hr {
  border: 0;
  height: 1px;
  background: var(--color-dark);
}
.sub-menu li a{
  color: var(--color-dark);
}
.sub-menu li a:hover{
  color: var(--color-blue);
}
.menu-container.open .sub-menu {
  padding-top: 1rem;
}



.menu-container.open .menu .sub-menu li {
  padding-bottom: 2.4rem;
}

.menu-container.open .menu .sub-menu li:last-child {
  padding-bottom: 0;
}

.slider__container {
  position: relative;
}

.slider__item img {
  max-height: 100vh;
  width: 100%;
}

.slider__infobtn {
  width: 195px;
  height: 56px;
  position: absolute;
  background-color: var(--color-dark);
  bottom: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider__infobtn h5 {
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  padding: 1.8rem 4.2rem;
}

.products-main {
  background: var(--color-background);
}

.title {
  color: var(--color-dark);
  text-align: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.products__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 5rem;
}

.products__filter button {
  background-color: transparent;
}

.products__filter h5 {
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.allProducts {

  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  width: 100%;
}

.allProducts__item {

  max-width: 415px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.allProducts__item:hover {
  /* -webkit-transform: scale(101%);
  transform: scale(101%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */
}
@media (max-width: 1100px) {
  .allProducts {
    justify-content: center;
  }
}

.item_img {
	width: 415px;
  height: 415px;
	overflow: hidden;
	background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.item_img img {
  width: auto;
  height: 415px;
}

.item_description {
  padding-top: 1.5rem;
  padding-bottom: 0.8rem;
  height: 7.5rem;
}

.item_description h6 {
  color: var(--color-dark);
}

.item_description h4 {
  color: var(--color-dark);
}


.item_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item_price h6 {
  color: var(--color-grey);
  text-decoration: line-through;
  margin-right: 0.8rem;
}

.buyBtn {
  margin-top: 2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-dark);
  padding: 1rem 4rem;
  max-width: 198px;
  width: 100%;
  padding: 1rem 6.5rem;
  color: var(--color-dark);
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}

.buyBtn h5 {
  padding: 1rem 6.5rem;
  color: var(--color-dark);
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}
/* СМЕНА ЦВЕТА КНОПКИ */


.toBasketBtn.in-cart {
  background-color: white;
  color: black;
}


/* СМЕНА ЦВЕТА КНОПКИ */
.navBtn_main.active {
  border-bottom: 2px solid var(--color-dark);
}

.about-section {
  max-height: 900px;
  height: 100%;
  padding-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10rem;
}

.about-section .about-left {
  width: 50%;
}

.about-section .about-left img {
  width: 100%;
  max-height: 900px;
}

.about-section .about-right {
  background-color: var(--color-light-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  width: 50%;
}

.about-section .about-right .right-body {
  display: flex;
  margin: 0 auto;
  /* max-width: 445px; */
  text-align: left;
  justify-content: center;
  width: 445px;
  flex-direction: column;
  padding-left: 0rem;
}

.about-section .about-right .right-body h2 {
  padding-bottom: 2.4rem;
}

.about-section .about-right .right-body h5 {
  padding-bottom: 4rem;
}

.about-section .about-right .right-body button {
  background-color: var(--color-dark);
  margin-bottom: 6.4rem;
}

.about-section .about-right .right-body button h5 {
  padding: 1rem 4.25rem;
  color: var(--color-white);
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__upper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  position: relative;
  height: 100%;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-dark);
}

.deliver-section {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.deliver-section .delivery-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deliver-section .delivery-about h5 {
  margin-left: 1rem;
  text-align: center;
  color: var(--color-white);
}

.deliver-section .delivery-about .icon-delivery-box {
  stroke: var(--color-white);
}

.deliver-section .delivery-about:hover h5 {
  color: var(--color-blue);
}

.deliver-section .delivery-about:hover .icon-delivery-box {
  stroke: var(--color-blue);
}

.sertification-section {
  width: 50%;
}

.sertification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sertificationBtn {
  border: 1px solid var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  border-radius: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sertificationBtn:hover {
  border-color: var(--color-blue);
}

.sertificationBtn .sertificationBtn_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2.4rem;
}

.sertificationBtn .sertificationBtn_body h5 {
  margin: 0;
  color: var(--color-white);
}

.footer__middle {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--color-white);
}

.footer__middle .middle__contact-section {
  width: 50%;
  border-right: 1px solid #ececec;
}

.footer__middle .middle__contact-section .contact-info {
  padding: 4.8rem 0;
}

.footer__middle .middle__contact-section .contact-info h4 {
  text-align: center;
  padding-bottom: 1.5rem;
}

.footer__middle .middle__contact-section .contact-info .contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .instagram
  h5 {
  color: var(--color-dark);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .instagram
  .insta-icon {
  stroke: var(--color-dark);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .instagram:hover
  h5 {
  color: var(--color-blue);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .instagram:hover
  .insta-icon {
  stroke: var(--color-blue);
}

.footer__middle .middle__contact-section .contact-info .contact-links .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .phone
  h5 {
  color: var(--color-dark);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .phone
  .phone-icon {
  stroke: var(--color-dark);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .phone:hover
  h5 {
  color: var(--color-blue);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .phone:hover
  .phone-icon {
  stroke: var(--color-blue);
}

.footer__middle .middle__contact-section .contact-info .contact-links .mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__middle .middle__contact-section .contact-info .contact-links .mail h5 {
  color: var(--color-dark);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .mail
  .mail-icon {
  stroke: var(--color-dark);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .mail:hover
  h5 {
  color: var(--color-blue);
}

.footer__middle
  .middle__contact-section
  .contact-info
  .contact-links
  .mail:hover
  .mail-icon {
  stroke: var(--color-blue);
}

.footer__middle .middle__payment-section {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__middle .middle__payment-section .payment-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 4.8rem 0;
}

.footer__middle .middle__payment-section .payment-info h4 {
  text-align: center;
}

.footer__middle .middle__payment-section .payment-info .payment-links {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

.footer__lower {
  background-color: var(--color-dark);
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.footer__lower .lower__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem 0;
}

.footer__lower .lower__body h4 {
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__lower .lower__body h5 {
  color: var(--color-grey);
  margin-bottom: 1rem;
}

.footer__lower .lower__body .terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.footer__lower .lower__body .terms h5 {
  text-decoration: underline;
}

.product-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2.5rem;
}

.product-page .left-column .slider-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: sticky;
  top: 8.5rem;
}

.product-page .left-column .slider-btns button {
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-page .left-column .slider-btns button img {
  max-width: 100%;
  max-width: 64px;
  max-height: 64px;
}

.product-page .middle-column {
  margin-right: 5.6rem;
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 2rem;
}

.product-page .middle-column img {
  width: 662px;
  height: 662px;
  object-fit: cover; /* Maintain aspect ratio */
}
@media (max-width: 768px) {
  .registration__right__body.confirm{
    padding: 10% !important;
    align-items: center;
    justify-content: center;
  }
  .woocommerce-cart-form > .productItem__body {
		justify-content: flex-start !important;
	}
	.woocommerce-cart-form .productItem__picture {
		margin-right: 25px;
	}
  .woocommerce-cart-form .wc-proceed-to-checkout {
		display: none;
	}
	.woocommerce-cart-form .productItem__extraButtons a {
		width: 100%;
	}
	.woocommerce-cart-form .productItem__description {
		max-width: 40%;
	}
	.woocommerce-cart-form .productItem__body {
		justify-content: flex-start;
	}
	.woocommerce-cart-form .productItem__wrap_qty_price {
		flex-direction: row-reverse;
	}
	.woocommerce-cart-form .productItem__totalPrice_change {
	margin-left: 0rem;
	}
  .justify-content-center .productItem__body {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
  	}
    .name-form, .surname-form {
      width: 100%;
    }
	.finest-area.finest-effect {
		width: 100% !important;
	}
  .about-left img {
    height: 495px !important;
  }
  .faq__navmenu {
    gap: 4.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    /* for smoother scrolling on iOS devices */
    scroll-behavior: smooth;
    /* for smooth scrolling behavior */
    /* hide scrollbar */
  }

  .faq__navmenu::-webkit-scrollbar {
    display: none;
  }

  .navigation__faqbtn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    /* set flex-basis to auto to prevent items from shrinking */
  }

  .navigation__faqbtn.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    background-color: var(--color-dark);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
    .usercard__body .productItem__totalPrice {
      margin-bottom: 0;
    }
    .productItem__name {
      width: 250px;
    }
    .productCheckoutcustom {
      width: 150px !important;
    }
    .productCheckoutcustom {
    display: flex;
      flex-direction: row;
    }
    .woocommerce-Price-amount bdi {
    font-size: 18px;
    }
    .productItem__body .product-quantity {
    margin: 0 10px;
    }
    .woocommerce-notices-wrapper {
    margin-top: 0px !important;
    }
    .usercard__body .productItem__totalPrice_change {
    margin-left: 0px;
    }
    .checkout .productItem__body {
    justify-content: start !important;
    }
    .checkout .productContainer .productItem .productItem__body .productItem__description {
    margin-left: 20px
    }
    .productItem__body .product-quantity {
    margin: 0 20px;
    }
    .menu-container.open .menu {
      padding-top: 4rem;
    }
  
    .menu-container.open .menu li :nth-child(1) {
      padding-bottom: 0;
    }
  
    .menu-container.open .menu li h2 {
      font-size: 2.7rem;
    }
  
    .menu-container.open .menu li h3 {
      font-size: 2rem;
    }
  
    .slider__infobtn {
      /* bottom: 30px; */
    }
  
    .products__filter {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      overflow-x: scroll;
      -webkit-overflow-scrolling: touch;
      /* for smoother scrolling on iOS devices */
      scroll-behavior: smooth;
      /* for smooth scrolling behavior */
      /* hide scrollbar */
    }
  
    .products__filter::-webkit-scrollbar {
      display: none;
    }
  
    .navBtn_main h5 {
      font-weight: 500;
      font-size: 14px;
      line-height: 140%;
      white-space: nowrap;
    }
  
    ._container {
      padding: 0 1.5rem;
    }
  
    .productItem__counter {
      margin-left: 0;
      margin-right: 0;
    }
  
    .modal-screen .modal-content .productItem__container .productItem {
      width: 100%;
    }
  
    .modal-screen .modal-content .productItem__container .productItem__body {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
  
    .modal-screen
      .modal-content
      .productItem__container
      .productItem__description {
      max-width:15.7rem;
      margin-left: 1.2rem;
    }
  
    .modal-screen
      .modal-content
      .productItem__container
      .productItem__description
      h5 {
      font-weight: 400;
      font-size: 14px;
      line-height: 150%;
    }
  
    .modal-screen
      .modal-content
      .productItem__container
      .productItem__price
      .price_container {
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      bottom: 18px;
      right: 18px;
    }
  
    .modal-screen
      .modal-content
      .productItem__container
      .productItem__price
      .productItem__counter {
      margin-top: 1.2rem;
      max-width: 104px;
    }
  
    .modal-screen.active {
      width: 100%;
      right: 0;
      /* right: -120px; */
      /* changings */
    }
  
    .productItem__totalPriceModal .main__total {
      margin-left: 20%;
    }
  
    .productItem__totalPriceModal {
      -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
      justify-content: space-between !important;
    }
  
    .usercard__body .productItem {
      padding: 0 1.5rem;
    }
  
    .usercard__body .productItem__description {
      max-width: 70%;
      margin-left: 0;
    }
  
    .usercard__body .productItem__counter {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
  
    .usercard__body .productItem__summary {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
  
    .usercard__body .productItem__body {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
  
    .usercard__body .productContainer {
      width: 100%;
    }
  
    .productItem__totalPrice {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0 1.5rem;
    }
  
    .main__total {
      padding-left: 0;
    }
  
    .productItem__extraButtons {
      width: 100%;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 2.6rem 1.5rem 6.4rem;
      gap: 40px;
    }
  
    .backtoshopping {
      padding-top: 2.4rem;
      width: 100%;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
  
    .checkoutBtn {
      width: 100%;
    }
  
    ._containerFAQ {
      padding: 0 1.5rem;
    }
  
    .faqitem__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
  
    .faq__item h1 {
      width: 100%;
      font-weight: 400;
      font-size: 2.7rem;
      line-height: 125%;
    }
  
    h1 {
      font-weight: 400;
      font-size: 27px;
      line-height: 125%;
    }
  
    .mainscreen__right img {
      max-height: 494px;
    }
  
    .about__certificates .certificates__body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  
    .about__certificates .certificates__body .body__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 343px;
    }
  
    .item__description {
      max-width: 234px !important;
    }
  
    .page404 {
      background-position: calc(78% - 87px);
    }
  
    .error__body {
      padding-top: 7.2rem;
      padding-left: 1.5rem;
    }
  
    .error__subtitle {
      width: 100%;
    }
  
    .error__main {
      margin: 4rem 0 51.6rem 0;
    }
  
    .pagesucces {
      background-position: calc(60% - 100px);
    }
  
    .pagefail {
      background-position: calc(36% - 90px);
    }
  
    .pagefail .fail__subtitle {
      width: 100%;
    }
  
    .registration-form {
      padding: 2.4rem 1.5rem 0;
    }
  
    .name-form-group {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .woocommerce.columns-3 {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .toBasketBtn {
      font-size: 1.4rem !important;
    }
  }
  .registration__left_mobile img {
    display: block; /* Hide mobile image by default */
}

.registration__left > img {
    display: none; /* Show desktop image by default */
}
    .modal-footer{
      width: 100% !important;
    }
.slider__item img {
  max-height: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* transform: translateX(-10px); Adjust the value as needed */
}

  .middle-column img {
    width: 100%;
    height: auto;
  }
  .right-column .product-description h1{
    font-size: 2.7rem !important;
  }

.product-page .right-column {
  max-width: 408px;
  width: 100%;
}

.product-page .right-column .product-description .product-sub-description {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-sub-description p {
  font-size: 1.4rem;
}
.product-page .right-column .product-description h1 {
  font-size: 3.5rem;
  line-height: 125%;
}

.product-page .right-column .product-description p {
  margin-right: 1rem;
}

.product-page .right-column .product-description p:last-child {
  margin-right: 0;
}

.product-page .right-column .product-description .accordion {
  padding-top: 4rem;
}

.product-page .right-column .product-description .accordion .accordion-header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 1.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-dark-grey);
}

.product-page
  .right-column
  .product-description
  .accordion
  .accordion-header
  h3 {
  font-weight: 600;
  line-height: 130%;
  font-size: 1.8rem;
  text-transform: none;
}

.product-page
  .right-column
  .product-description
  .accordion
  .accordion-header
  img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-page .right-column .product-description .accordion .accordion-body {
  display: none;
  padding-top: 1.7rem;
  padding-bottom: 2.4rem;
}

.product-page .right-column .product-description .accordion .accordion-body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-dark);
}

.product-page
  .right-column
  .product-description
  .accordion
  .accordion-header.active
  + .accordion-body {
  display: block;
}

.product-page .right-column .product-description .product-price-container {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-page
  .right-column
  .product-description
  .product-price-container
  .oldprice {
  margin-right: 1.2rem;
}

.product-page
  .right-column
  .product-description
  .product-price-container
  .oldprice
  h3 {
  text-decoration: line-through;
  color: var(--color-grey);
}

.product-page
  .right-column
  .product-description
  .product-price-container
  .actualPrice
  h3 {
  font-weight: 600;
  color: var(--color-dark);
}

.product-page .right-column .product-description .toBasketBtn {
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 1px;
  font-size: 1.4rem;
  margin-top: 1.6rem;
  background-color: var(--color-dark);
  max-width: 250px;
  color: var(--color-white);
  padding: 1.8rem 0;
  text-align: center;
  text-transform: uppercase;
  width: 252px;
  height: 56px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.product-page .right-column .product-description .toBasketBtn:hover {
  -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.slider-btn.active {
  border-bottom: 2px solid var(--color-dark);
}

.accordion-header.active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.accordion-header.active img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper {
  width: 100%;
}

.swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-height: 343px;
  object-fit: contain;
}

.swiper-pagination-bullet {
  background-color: var(--color-white);
  border: 1px var(--color-dark) solid;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}

.modal-screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100vh;
  z-index: 9999;
  -webkit-transition: right 0.5s ease-out;
  transition: right 0.5s ease-out;
  background-color: var(--color-background);
}

.modal-screen.active {
  right: 0;
  overflow: auto;
}

.modal-screen .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-screen .modal-content .circle-counter {
  top: 10px;
  right: 39%;
}

.modal-screen .modal-content .modal-footer {
  background-color: #e3f5ff;
  position: fixed;
  bottom: 0;

  /* padding-bottom: 7rem; */
  width: 50%;
}

.modal-screen .modal-content .modal-footer .modal-footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-screen
  .modal-content
  .modal-footer
  .modal-footer__body
  .modal-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}

.modal-screen
  .modal-content
  .modal-footer
  .modal-footer__body
  .modal-btn-group
  .continue-shopping {
    background: #ffffff;
      
    padding: 1.8rem 3.3rem;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
    white-space: nowrap;
    /* prevent text from wrapping */
    border: 1px solid var(--color-dark);
  }

.modal-screen
  .modal-content
  .modal-footer
  .modal-footer__body
  .modal-btn-group
  .checkoutBtnModal {
  background-color: var(--color-dark);
  padding: 1.8rem 2.6rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  /* prevent text from wrapping */
  width: 100%;
  color: var(--color-white);
}

.modal-screen
  .modal-content
  .modal-footer
  .modal-footer__body
  .productItem__totalPriceModal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 2.4rem 0 1.8rem;
}

.modal-screen
  .modal-content
  .modal-footer
  .modal-footer__body
  .productItem__totalPriceModal
  .total__title
  h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.modal-screen
  .modal-content
  .modal-footer
  .modal-footer__body
  .productItem__totalPriceModal
  .main__total
  h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
}

.modal-screen .modal-content .productItem__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-screen .modal-content .productItem__container .productItem {
  max-width: 57rem;
  width: 100%;
  margin-bottom: 0.8rem;
}

.modal-screen .modal-content .productItem__container .productItem__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 6.5rem;
}

.modal-screen .modal-content .productItem__container .productItem__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-white);
  padding: 1.6rem;
  width: 100%;
  height: 140Px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-screen .modal-content .productItem__container .productItem__picture img {
  max-height: 95px;
  max-width: 95px;
  width: 100%;
  height: 100%;
}

.modal-screen .modal-content .productItem__container .productItem__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* margin-left: 2.4rem; */
  /* changings */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* add this line */
  /* max-width: 40.6rem; */
  margin-left: 20px;
  max-width: 23rem;
  text-align: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.modal-screen .modal-content .productItem__container .productItem__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 150%;
}

.modal-screen .modal-content .productItem__container .productItem__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__price
  .price_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__price
  .price_container
  .oldprice
  h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.modal-screen .modal-content .productItem__container .productItem__price h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__price
  .oldprice {
  margin-right: 1.2rem;
  color: var(--color-grey);
  text-decoration: line-through;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__price
  .productItem__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 120px;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__price
  .productItem__counter
  .counter__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--color-grey);
  padding: 1rem 1.2rem;
  width: 12rem;
  margin-top: 1.2rem;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__price
  .productItem__counter
  .counter__input
  input {
  background: transparent;
  text-align: center;
  max-width: 24px;
}

.modal-screen .modal-content .productItem__container .productItem__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.modal-screen .modal-content .productItem__container .productItem__deleteIcon {
  cursor: pointer;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  top: 1rem;
  right: 1rem;
}

.modal-screen .modal-content .productItem__container .productItem__totalPrice {
  padding-top: 2rem;
}

.modal-screen
  .modal-content
  .productItem__container
  .productItem__totalPrice
  h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
}

.modal-screen .modal-content .basket__title {
  position: relative;
  background-color: var(--color-white);
  padding: 1rem 0;
  text-align: center;
  line-height: 143%;
}

.modal-screen .modal-content .modal__basket {
  padding-top: 1.5rem;
  border: 0px !important;
  background-color: var(--color-background);
}

.modal-screen .modal-content .modal__basket .basket__body h4 {
  text-align: center;
  padding-top: 6.5rem;
}

.modal-screen .modal-content .modal__basket .basket__body .basket__cross {
  cursor: pointer;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal-screen .modal-content .modal__basket .basket__body .basket__cross:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg);
}

.modal-screen.active + * {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.usercard__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.usercard__body .productContainer__content {
  text-align: center;
  padding-top: 4rem;
}



.usercard__body .productItem {
  width: 100%;
  margin-bottom: 0.8rem;
}

.usercard__body .productItem__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
/*   padding-bottom: 6.5rem; */
	padding-bottom: 35px;
}

.usercard__body .productItem__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-white);
  padding: 1.6rem;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.usercard__body .productItem__picture img {
  max-height: 95px;
  max-width: 95px;
  width: 100%;
  height: 100%;
}

.usercard__body .productItem__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 2.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* add this line */
/*   max-width: 40.6rem; */
	/* max-width: 80%; */
  text-align: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.usercard__body .productItem__name {
  max-width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 150%;
  font-weight: 500;
}

.woocommerce-checkout-review-order .productItem__name {
	max-width: 60%;
}

.usercard__body .productItem__name a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-dark);
}
.productItem__name a{
  color: var(--color-dark);
}

.usercard__body .productItem__price {
  padding-top: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.usercard__body .productItem__price h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
}

.usercard__body .productItem__price .oldprice {
  margin-right: 1.2rem;
  color: var(--color-grey);
  text-decoration: line-through;
}

.usercard__body .productItem__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.usercard__body .productItem__deleteIcon {
  cursor: pointer;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  top: 1rem;
  right: 1rem;
}

.usercard__body .productItem__totalPrice {
	margin-bottom: 40px;	
}
/* Changings */

.usercard__body .productItem__totalPrice_change {
  padding-top: 0rem !important;
}

.usercard__body .productItem__totalPrice h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
}

.usercard__body .productItem__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-left: 1.6rem;
  margin-right: 7.8rem;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

/* Changing */

.usercard__body .productItem__counter_change {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.usercard__body .productItem__counter .counter__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--color-grey);
  padding: 1rem 1.5rem;
  width: 12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  
}

.usercard__body .productItem__counter .counter__body input {
  text-align: center;
}

.usercard__body .productItem__counter .counter__body .counter__input {
  text-align: center;
  width: 100%;
}

.usercard__body .productItem__counter .counter__body .counter__input input {
  width: 100%;
  text-align: center;
  background-color: transparent;
}

.usercard__body input[type="number"]::-webkit-outer-spin-button,
.usercard__body input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.usercard__body .counterMinusBtn {
  background-color: transparent;
}

.usercard__body .counterMainCountIndex {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.usercard__body .counterPlusBtn {
  background-color: transparent;
}

.counter__button_minus {
  cursor: pointer;
}

.counter__button_plus {
  cursor: pointer;
}

.woocommerce-cart-form {
  max-width: 850px;
  width: 100%;
}

.productItem__totalPrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  .total__title{
    padding-right: 3rem;
  }
}

.total__title h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.main__total {
  padding-left: 20%;
}

.productItem__extraButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 3rem;
}

.backtoshopping button {
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.checkoutBtn {
  background-color: var(--color-dark);
}

.checkoutBtn h5 {
  line-height: 140%;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 1.8rem 4.8rem;
  text-align: center;
}

._containerFAQ {
  display: block;
  max-width: 934px;
  margin: 0 auto;
  padding: 0 42px;
}

.faqmainbanner img {
  width: 100%;
}

.faq__title {
  padding-top: 4rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-dark);
}

.faq__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--color-dark-grey);
}

.faq__info-sections {
  padding-top: 4.2rem;
}

.faq__navmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navigation__faqbtn {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  /* identical to box height, or 20px */
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
}

.navigation__faqbtn.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.faqitem__wrapper {
  padding-top: 5rem;
}

._containerFAQ .faqitem__wrapper {
  padding-top: 3.5rem;
}


.FAQaccordion__item {
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 3.2rem;
  margin-bottom: 2.4rem;
}

.FAQaccordion__item:last-child {
  margin-bottom: 8.8rem;
}

.FAQaccordion__item .FAQaccordion-body_Payment {
  margin-top: 2.4rem;
}

.faqforALL {
  padding-top: 5rem;
}

.FAQaccordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.FAQaccordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.FAQaccordion-header h3 {
  color: var(--color-dark);
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 125%;
}

.FAQaccordion-body {
  margin-top: 2.4rem;
  display: none;
}

.FAQaccordion-body p {
  color: var(--color-dark);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  /* or 21px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.FAQaccordion-header.active + .FAQaccordion-body {
  display: block;
}

.arrowforFAQaccordion {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.arrowforFAQaccordion.rotate {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__item {
  display: none;
}

.faq__item.active {
  display: block;
}

.shipment__navmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5rem;
}

.payment__item {
  display: none;
}

.payment__item.active {
  display: block;
}

.navigation__paymentbtn.active {
  border-bottom: 2px solid var(--color-dark);
}

.about__mainscreen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mainscreen__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--color-light-blue);
  width: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mainscreen__right {
  width: 50%;
}

.mainscreen__right img {
  max-height: 836px;
  width: 100%;
}

.left__body {
  max-width: 403px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.body__subtitle {
  padding-top: 3.2rem;
}

.body__subtitle h5 {
  padding-top: 1.5rem;
}

.about__certificates {
  padding-top: 7.2rem;
}

.certificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.certificates__title {
  text-align: center;
}

.certificates__title h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 136%;
  text-transform: uppercase;
}

.certificates__subtitle {
  text-align: center;
}

.certificates__subtitle h5 {
  font-size: 14px;
  line-height: 150%;
  color: var(--color-dark-grey);
}

.about__certificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about__certificates .certificates__body {
  padding-top: 5rem;
  margin-bottom: 8.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5.6rem 6.4rem;
}

.about__certificates .certificates__body .body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 371px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__certificates .certificates__body .body__item .item__description {
  max-width: 262px;
}

.page404 {
  background-size: cover !important;
  height: 704px;
  width: 100%;
  background-position: center !important;
}

.error__main p {
	margin-bottom: 0;
}

.error__body {
  padding-top: 13.1rem;
  padding-left: 15rem;
}

.error__title {
  margin-bottom: 1.6rem;
}

.error__title h2 {
  color: var(--color-dark);
  font-weight: 400;
  font-size: 35px;
  line-height: 136%;
  text-transform: uppercase;
}

.error__subtitle h4 {
  color: var(--color-dark);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
}

.error__main {
  margin-top: 5.8rem;
  background-color: var(--color-dark);
}

.error__main p {
  color: var(--color-white);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1.8rem 4.3rem;
}

.pagesucces {
  background-image: url(../img/success.png);
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
}

.pagefail {
  background-image: url(../img/fail.png);
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center;
}

.pagefail .fail__subtitle {
  width: 340px;
}

.registration {
  overflow: hidden;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.registration__left img {
  width: 100%;
  height: 180px;
}

.registration-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.5rem;
  padding: 3rem 14rem 0 14rem;
  text-align: start;
}

.registration-form h5 {
  color: var(--color-grey);
}

.registration-form input {
  width: 100%;
  background-color: transparent;
}

.name-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.name-form-group label {
  color: var(--color-dark-grey)
}
.name-form-group h5{
  color: var(--color-dark-grey);
}
.name-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.surname-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.input-with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* margin-bottom: 1.8rem; */
  position: relative;
}

.input-with-icon img {
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  right: 0;
}

.registration-form .form-pas .input-with-icon img {
	top: -5px;
}

.password-requirements {
  text-align: center;
}

.password-requirements p {
  color: var(--color-dark-grey);
  font-weight: 400;
  font-size: 13px;
  line-height: 136%;
}

.form-group {
  position: relative;
}
.form-group>input::placeholder{
  font-size: 1.4rem;
}

.form-group.privacy {
  margin-bottom: -1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-group.privacy #privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-right: 1.4rem;
}

.form-group.privacy label {
  font-weight: 400;
  font-size: 13px;
  line-height: 136%;
  color: var(--color-dark);
}

.form-group.privacy label span {
  text-decoration: underline;
}

.enter-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 136%;
  /* identical to box height, or 18px */
  text-align: center;
  margin-bottom: 3.5rem;
}

.enter-text a {
  margin-left: 1.2rem;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mycheckbox:checked::before {
  content: "✓";
  /* Unicode character for a checkmark */
  color: white;
  background-color: var(--color-dark);
  /* Change the background color to green */
  width: 16px;
  height: 16px;
  padding: 3px 3px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 30%;
}

.registration-submit {
  background-color: var(--color-dark);
}

.registration-submit h5 {
  padding: 1.8rem 0;
  color: var(--color-white);
}

#privacy-policy:checked + label:before {
  background-color: red;
}
label a{
  color: var(--color-dark-grey);
}

.registration-form input {
  font-size: 1.4rem;
  color: var(--color-dark) !important;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-grey);
}
.flatpickr-input{
  color: var(--color-grey) !important;
}

.registration-form input.active,
.registration-form input:focus {
  border-bottom: 1px solid var(--color-dark);
}

.woocommerce.columns-3 {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  width: 1325px;
}

.checkout .checkoutBtn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  /* identical to box height, or 20px */
  padding: 1.8rem 9.85rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  margin-bottom: 6.8rem;
}

.order-edit {
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3.2rem 0 2.4rem;
}

.order-edit h2 {
  font-size: 22px;
  line-height: 130%;
  /* identical to box height, or 29px */
  text-transform: uppercase;
}

.delivery-setup {
  max-width: 663px;
  width: 100%;
  padding: 0 1.5rem;
}

.delivery__type {
  margin-top: 5.8rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 5.6rem;
}

.delivery__type:last-child {
  margin-bottom: 4rem;
}

.delivery__type h3 {
  margin-bottom: 2.5rem;
}

.delivery__type input {
  margin-right: 1.3rem;
}

.delivery__type label {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.1rem;
}

.delivery__type label:last-child {
  margin-bottom: 0;
}

.delivery__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.delivery-name_surname {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal_container {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}

.wcus-checkout-fields{
  display: block !important;
}

.wcus-checkout-fields.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 3.2rem;
  /* Target the first div element without a class */
}

.wcus-checkout-fields.active div:not([class]):first-of-type {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.wcus-checkout-fields.active div:not([class]):first-of-type p {
  width: 100%;
}

.wcus-checkout-fields.active div:last-of-type p {
  width: 100%;
}

.zen-ui-select__value {
  display: block;
/*   width: 500px; */
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.zen-ui-select__value:hover {
  background-color: #fff;
}

.zen-ui-select__value .zen-ui-select__value-text {
  text-transform: capitalize;
  margin: -4px 0 0 0;
}

.zen-ui-select__value.disabled {
  background: transparent;
  color: var(--color-dark);
  text-transform: capitalize;
}

.checkout .productContainer {
  max-width: 663px;
  width: 100%;
  padding: 0 1.5rem;
	margin-bottom: 50px;
}

.checkout .productContainer .productItem .productItem__body {
  padding: 0.8rem;
  /* max-height: 80px; */
  /* changings */
  height: 100%;
}

.checkout
  .productContainer
  .productItem
  .productItem__body
  .productItem__picture
  img {
  max-width: 64px;
  max-height: 64px;
  width: 100%;
  height: 100%;
}

.checkout
  .productContainer
  .productItem
  .productItem__body
  .productItem__description {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  /* flex-direction: row;
  max-height: 80px;
  max-width: 285px; */

  /* changings */
}

.checkout
  .productContainer
  .productItem
  .productItem__body
  .productItem__summary {
  margin-left: 2.4rem;
  max-width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.checkout
  .productContainer
  .productItem
  .productItem__body
  .productItem__summary
  input {
  width: 40px;
}

.checkout
  .productContainer
  .productItem
  .productItem__body
  .productItem__summary
  .productItem__price {
  max-width: 78px;
  width: 100%;
}

.checkout
  .productContainer
  .productItem
  .productItem__body
  .productItem__summary
  .productItem__totalPrice {
  max-width: 78px;
  width: 100%;
}




@media screen and (max-width: 700px) {
  .usercard__body .productContainer__content h2 {
    font-size: 2.5rem;
    word-break: break-word;
  }

  .modal-screen {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  z-index: 9999;
  -webkit-transition: right 0.5s ease-out;
  transition: right 0.5s ease-out;
  background-color: var(--color-background);
  }
}

@media screen and (min-width: 768px) {
  .registration {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
  }

  .registration__left {
    width: 50%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .registration__left img {
    width: 100%;
    height: 100%;
  }

  .registration__right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .registration__left > img {
    display: block; /* Hide desktop image on mobile */
}
.registration__left_mobile > img {
    display: none; /* Show mobile image on mobile */
}
}

@media (min-width: 1000px) {
  .swiper {
    display: none;
  }
}

@media (max-width: 1150px) {
  .modal-btn-group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .modal-screen .modal-content .productItem__container .productItem__description{
    max-width: 15rem;
  }


  .continue-shopping {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .about-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: fit-content;
    height: auto;
    margin-bottom: 0;
  }

  .about-section .about-left {
    width: 100%;
  }

  .about-section .about-right {
    width: 100%;
    
/*     max-height: 550px; */
  }

  .about-section .about-right .right-body {
    padding: 6.4rem 1.5rem 0;
  }

  .about__mainscreen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .mainscreen__left {
    width: 100%;
    padding: 0 1.5rem;
  }

  .mainscreen__left .body__title {
    padding-top: 6.4rem;
  }

  .mainscreen__left .body__subtitle {
    margin-bottom: 6.4rem;
  }

  .mainscreen__right {
    width: 100%;
  }
  .productItem__totalPriceModal{
    justify-content: center !important;
  }
}

@media (max-width: 1000px) {
  .middle-column {
    display: none !important;
  }

  .left-column {
    display: none;
  }

  .product-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .right-column {
    max-width: 100% !important;
    margin-bottom: 6.4rem;
  }

  .slider-adaptive-item img {
    min-width: 100%;
  }

  .burger-menu {
    margin: 0;
  }

  .account__personalization {
    gap: 2rem !important;
  }
}



@media (max-width: 478px) {
	#custom-counter-cart .quantity-counter-body {
		padding: 0.5rem !important;
	}
	.quantity-counter-body img {
		max-width: 1rem
	}
	.usercard__body .cart_priceblock {
		flex-direction: column;
	}
	.usercard__body #custom-counter-cart .quantity-counter-body {
		width: 8rem !important;
	}
	.usercard__body .productItem__totalPrice_change {
		right: 25px;
		bottom: 12px;
	}
	.productItem__extraButtons a:first-child {
		width: 100%;
	}
	.usercard__body .woocommerce-Price-amount bdi {
		font-size: 14px;
	}
	.wc-proceed-to-checkout {
		display: none;
	}
	.productItem__totalPrice div:first-child {
		padding: 0;
	}
  .modal-screen
    .modal-content
    .productItem__container
    .productItem__description{
      max-width: 12.5rem;
    }

  .footer__upper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__upper .deliver-section {
    width: 100%;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-dark-grey);
  }

  .footer__upper .sertification-section {
    width: 100%;
    padding: 3.2rem 0;
    border-bottom: 1px solid var(--color-dark-grey);
  }

  .footer__middle {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__middle .middle__contact-section {
    border: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-grey);
  }

  .footer__middle .middle__contact-section .contact-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .footer__lower .terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 475px) {
  .header__row .logo {
    margin-left: 0;
  }
  .usercard__body .productItem__review_order_price_qty{
    flex-direction: column;
    align-items: flex-start!important;
  }

  .usercard__body .productItem__description{
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 11.5rem;
  }
  .usercard__body .productItem__counter{
    order: 2;
  }
  #custom-counter-cart .quantity-counter-body{
    width: 8rem!important;
  }
  .usercard__body .productItem__body{
    justify-content: flex-start!important;
  }
}

@media (max-width: 425px) {
  .usercard__body .product-quantity{
    font-size: 12px;
  }
  .finest-item-thumb{
    width: 64px !important;
    height: 64px !important;
  }
  .usercard__body .productItem__name{
    font-size: inherit!important;
    
  }
  .productItem__picture{
    flex: none;
  }
.modal-footer{
  display: block;
}
	.finest-item-qty-inner {
		width: 10rem !important;
	}

  .modal-btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  /* .continue-shopping {
    padding: 0px !important;
  } */
  /* changings */

  /* .checkoutBtnModal {
    padding: 1.8rem 6rem !important;
  } */

  .productItem__picture img {
    max-width: 64px !important;
    max-height: 64px !important;
  }

  .price_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .productItem__name a{
    display: inline-block;
    height: 42px;
    overflow: hidden;
    width: 207px;
  }
  .quantity-counter{
    height: 40px;
  }
}
.finest-item-qty-inner{
  display: flex;
  max-width: 150px;
  width: 150px;
  justify-content: space-between;
}
.webp .pagesucces {
  background-image: url(../img/success.webp);
}

.webp .pagefail {
  background-image: url(../img/fail.webp);
}

.productItem__wrap_qty_price {
  display: flex;
}

.productItem__review_order_price_qty {
  	display: flex !important;
  	justify-content: space-between !important;
  	align-items: center !important;
	flex: 4;
	height: 100%;
}

.remove_flex_wrap {
  flex-wrap: nowrap !important;
}

.alter-col-1 {
  max-width: 70% !important;
}
.col2-set {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.woocommerce-notices-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.woocommerce-error {
  padding: 20px;
  background-color: lightgrey;
  font-size: 18px;
}


.shipping_address .form-row , .woocommerce-additional-fields__field-wrapper .form-row{
  flex-direction: column;
  width: 100%;
}

#place_order{
  width: 100%;
  padding: 20px;
  background-color: black;
  color: white;
}

.modal-btn-cancel-close{
  cursor: pointer;
}
.quantity-counter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* max-width: 120px; */
  /* changing */
  max-width: 12rem;
}

#custom-counter-cart .quantity-counter-body{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--color-grey);
  padding: 1rem 1.5rem;
  width: 12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quantity-counter-body{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--color-grey);
  padding: 1rem 1.2rem;
  width: 12rem;
  margin-top: 1.2rem;
  align-items: center;
}

#custom-counter-cart .quantity-counter-input{
  text-align: center;
  width: 100%;
}
.quantity-counter-input{
  width: 100%;
}

.quantity-counter-input input{
  background: transparent; 
    text-align: center;
  max-width: 100%;
  font-size: 14px;
}

#custom-counter-cart .quantity-counter-body .quantity-counter-input input{
  width: 100%;
  text-align: center;
  background-color: transparent;
  max-width: 100%;
}



.quantity-counter-btn-plus , .quantity-counter-btn-minus{
  cursor: pointer;
}

#custom-counter-cart .quantity-counter-btn-plus , #custom-counter-cart .quantity-counter-btn-minus{
  cursor: pointer;
}

#cart-total-order-price{
  font-weight: bold;
}
.modal-content{
  border: 0px !important;
}
.modal-btn-cancel-close{
  display: none;
}

.main__total .woocommerce-Price-amount bdi {
  color: var(--color-dark);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 28.6px */
}

.main__total h3 p{
  margin-bottom: 0;
}
.buy-button {
  background-color: #3498db; /* Цвет фона до нажатия */
  color: #ffffff; /* Цвет текста до нажатия */
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s; /* Плавное изменение цвета */
}

.buy-button.clicked {
  background-color: #000000; /* Цвет фона после нажатия */
  color: #ffcc00; /* Цвет текста после нажатия */
}


.added_to_cart.wc-forward{
  display:none;
}


#modal-screen > div > div.modal-footer > div > div > div.productItem__totalPriceModal > div.main__total > h3 > p > strong{
  display: none;
}

.blockUI.blockOverlay{
  position:relative !important;
}

.finest-shipping-left, .finest-shipping-right, .finest-tax-left, .finest-tax-right, .finest-subtotal-left, .finest-subtotal-right, .finest-coupon, .product-total-left, .product-total-right, ._container .woocommerce-notices-wrapper, .checkout .alert {
	display: none;
}

.finest-area-middle.finest-items .finest-item-thumb img {
	width: 100%;
	height: 100%;
}

.productItem__container .woocommerce-checkout-payment {
	display: none !important;
}

.productItem__body h5 {
	margin-bottom: 0;
}

.productItem__body .product-quantity {
	margin-bottom: 0;
}

.actualPrice {
	font-size: 12px;
	font-weight: 600;
}

.woocommerce-Price-amount {
	font-size: 12px;
	font-weight: 600;
}

.validate-required {
	display: block;
}

#contact img {
	width: 20px;
	height: 20px;
}

.finest-area.finest-effect {
	width: 50% !important;
}

.finest-area {
	max-width: none;
}


.finest-area.finest-effect {
	-webkit-transform: translate3d(780px, 0, 0);
    transform: translate3d(10000px, 0, 0);
}

.finest-action-right a {
	border-radius: 0px;
	color: var(--White, #FFF);
	font-size: 14px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
}

.finest-action-right a:hover {
	background: #fff;
	color: #000 !important;
	border: 1px solid #000;
	transition: 0.5s;
}

.finest-area-bot .finest-continue span:hover {
	color: #fff !important;
	transition: 0.5s;
}

.finest-action-right {
	width: 49%;
	text-transform: uppercase;
}

.finest-continue {
	width: 49%;
}

#finest-continue {
	text-transform: uppercase;
	color: var(--Black, #0E0E0E);
	font-size: 14px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-align: center;
}

.finest-area-bot .finest-continue span {
	border-radius: 0px;
}

.buttons_minicart {
	display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.finest-total-left {
	margin-right: 124px;
}

#finest-total .woocommerce-Price-amount bdi {
	font-family: Montserrat;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
}
.finest-total-right span.total-price {
  font-size: 22px;  
}
.finest-area-bot {
	background: var(--Light-blue, #E3F5FF);
}

.finest-area {
	padding-bottom: 0px;
}

.finest-cart-ttile h1 {
	position: absolute;
    text-align: center;
    width: 100%;
	margin-top: 10px;
    text-transform: uppercase;
    font-family: Montserrat;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 136%;
}

.finest-area-top {
	height: 70px;
}

.finest-area-middle .finest-item .finest-item-inner, .finest-area-top {
	border-bottom: 0px;
}

.finest-item-inner {
	background: var(--BG, #FCF5EE);
}

.finest-item-inner .price-qty {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	margin-left: -30px;
}

.finest-item-inner .finest-titel-qty {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	width: 52%;
}

.finest-titel-qty .finest-item-title {
	width: 100%;
}

.finest-item-price ins {
	text-decoration: none;
}

.price-qty .finest-item-price {
	text-align: end;
}

.finest-area-top {
	background: #fff;
}

@media (max-width:992px) {
	.finest-area.finest-effect {
		width: 100% !important;
	}
}


@media (max-width:576px) {
	.productItem__name {
		width: 200px;
	}
	.productCheckoutcustom {
		width: 100px !important;
	}
	.finest-total-left {
		margin-right: auto;
	}
	.buttons_minicart {
		flex-direction: column;
	}
	.finest-action-right {
		width: 100%;
	}
	.finest-continue {
		width: 100%;
	}
	.cky-consent-container {
		width: 320px !important;
	}
}

.zen-ui-select__value {
	border: none;
	border-radius: 0px;
	border-bottom: 1px solid #A8A39F;
	color: #676767;
	background: #FCF5EE;
	font-size: 14px;
}

.zen-ui-select__value:hover {
	background: #FCF5EE;
}

.form-control {
	border: none;
	border-radius: 0px;
	border-bottom: 1px solid #A8A39F;
	color: #000;
	background: #FCF5EE;
	font-size: 14px;
}

.form-control:hover {
	background: #FCF5EE;
}

label {
	color: #676767;
}

.wcus-checkout-fields .woocommerce-input-wrapper input {
	width: 100%;
	padding: 9px 28px 9px 12px!important;
	border-bottom: 1px solid #A8A39F;
	background: #FCF5EE;
}

.input-radio {
	width: 18px;
	height: 18px;
}

#payment {
	margin-top: 20px;
}

.wc_payment_method label {
	color: #0E0E0E;
	font-size: 14px;
}

.cky-banner-bottom {
	bottom: 16px !important;
    left: 16px !important;
}

.cky-consent-container {
	width: auto !important;
}

.cky-notice {
	display: flex;
    flex-direction: column;
    align-items: center;
	gap: 24px;
}

.add_to_cart_button:active {
	background: #000;
	color: #fff;
	transition: 0.1s;
}

.add_to_cart_button:focus {
	background: #000;
	color: #fff;
	transition: 0.1s;
}

.cky-notice-group {
	flex-direction: column;
	gap: 32px;
}

.cky-notice-btn-wrapper {
	margin-left: 0;
	gap: 8px;
}

.cky-title {
	color: var(--Black, #0E0E0E) !important;
	font-size: 22px !important;
	font-weight: 400 !important;
	line-height: 130% !important;
	text-transform: uppercase;
}

.cky-btn {
	margin: 0;
	padding: 8px 20px;
}

.cky-notice .cky-title {
	margin: 0;
}

.cky-notice-des p {
	color: var(--Black, #0E0E0E) !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.cky-notice-btn-wrapper {
	margin-left: 0 !important;
}

.cky-notice-btn-wrapper button:first-child {
	color: #0e0e0e !important;
	border: 1px solid #0e0e0e !important;
	text-transform: uppercase;
}

.cky-notice-btn-wrapper button:nth-child(2) {
	color: #0e0e0e !important;
	border: 1px solid #0e0e0e !important;
	text-transform: uppercase;
}

.cky-notice-btn-wrapper button:last-child {
	background: #0e0e0e !important;
	border: 1px solid #0e0e0e !important;
	font-family: Montserrat !important;
	font-size: 14px !important;
	font-weight: 300 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase;
}

@media (max-width:998px) {
	.product-page .right-column {
		margin-top: 50px;
	}
}

@media (max-width:520px) {
  
	.cky-consent-container {
		width: 100%;
	}
}
@media (max-width:360px) {
	.woocommerce-cart-form .productItem__picture {
		margin-right: 0px;
	}
	.usercard__body .productItem__description {
		margin-left: 12px;
	}
	.usercard__body .productItem__name {
		max-width: 160px;
	}
}

.footer__middle .middle__contact-section .contact-info .contact-links h5 {
	margin-bottom: 0;
}

.productCheckoutcustom {
	display: flex;
    width: 200px;
    justify-content: space-between;
    align-items: center;
}

.cart_priceblock {
	display: flex;
    justify-content: space-between;
}

.error__main p a {
	color: #fff !important;
}

.left-column button {
	outline: none;
}

.right-column .actualPrice .woocommerce-Price-amount {
	font-size: 22px;
}

.right-column .oldprice .woocommerce-Price-amount {
	font-size: 22px;
	font-weight: 400;
}

.circle-cout-cart {
	position: relative;
    margin: 20px 41% 0 59%;
}

@media (min-width: 1700px) {
	.circle-cout-cart {
		margin: 20px 43% 0 57%;
	}
}
@media (min-width: 2100px) {
	.circle-cout-cart {
		margin: 20px 45% 0 55%;
	}
}
@media (max-width: 600px) {
	.circle-cout-cart {
		margin: 20px 39% 0 61%;
	}
}
@media (max-width: 550px) {
	.circle-cout-cart {
		margin: 20px 36% 0 64%;
	}
}
@media (max-width: 435px) {
	.circle-cout-cart {
		margin: 20px 33% 0 67%;
	}
}
@media (max-width: 360px) {
	.circle-cout-cart {
		margin: 20px 30% 0 70%;
	}
}

#finest-area {
	padding-top: 0;
	background-color: var(--color-background);
}
.finest-area-top {
	margin-top: 0;
	padding-bottom: 0;
}
.finest-cart-ttile {
	height: 70px;
    width: 100%;
    position: absolute;
}
.finest-no-item {
	font-size: 18px;
	font-weight: 600;
	line-height: 130%;
	color: var(--Black, #0E0E0E);
	text-align: center;
}
.finest-area.finest-effect .finest-close {
	z-index: 10;
}
.oldprice span, .delivery-order-content .oldprice {
    color: var(--color-grey);
    text-decoration: line-through;
}
.usercard__body .productItem__totalPrice_change {
	display: flex;
    flex-direction: column;
}
.navigation__faqbtn {
	outline: none !important;
}

.eye {
  display: none;
}

.eye.active {
  display: inline-block;
}

@media (max-width: 430px) {
	.item_img, .item_img img {
		width: 300px;
		height: 300px;
	}
	.item_description {
		max-width: 300px;
	}
}

.woocommerce-cart-form .productItem__description {
	max-width: 50%;
}

.woocommerce-cart-form .productItem__totalPrice_change {
	margin-bottom: 0px;
	margin-left: 5rem;
}


@media (max-width: 600px) {
	.woocommerce-cart-form .productItem__wrap_qty_price {
		flex-direction: column;
	}
	.woocommerce-cart-form .productItem__totalPrice_change {
		padding-right: 0;
	}
}

@media (max-width: 476px) {
	.woocommerce-cart-form .productItem__description {
		max-width: 50%;
	}
  .productItem__description{
    
  }
	.woocommerce-cart-form .productItem__wrap_qty_price {
		flex-direction: row;
		width: 100%;
		justify-content: flex-end;
	}
}

.button-account-save {
	padding: 10px 40px;
	background: #000;
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.button-account-save p {
	margin-bottom: 0;
}

.button-account-cancel {
	border: 1px solid var(--Grey-2, #A8A39F);
	padding: 10px 40px;
	background: #fff;
	color: #000;
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.button-account-cancel:hover {
	background: #ccc;
	transition: 0.5s;
}

.button-account-cancel p {
	margin-bottom: 0;
}

#buttons-container {
	justify-content: center;
	gap: 20px;
}

.login-h1 {
	margin-top: 104px;
	text-align: center;
	margin-bottom: 32px;
	color: var(--Black, #0E0E0E);
	font-family: Montserrat;
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: 136%;
	text-transform: uppercase;
}

.nav-item {
  padding: 10px 24px;
}

.nav-item a {
  	color: var(--Black, #0E0E0E);
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
	letter-spacing: 1px;
	text-transform: uppercase;
}

.nav-item a:hover {
	border: none;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	border: none;
	border-bottom: 2px solid var(--Black, #0E0E0E);
	background: none;
	color: #000;
}

.container-fluid .nav {
	justify-content: center;
}

.nav-tabs {
	border: none;
}

.dashboard-div-password {
	width: max-content;
	margin-bottom: 5px;
}

.dashboard-div-password a {
	display: flex;
	gap: 8px;
}

.dashboard-div-password p {
	color: var(--Black, #0E0E0E);
	text-align: center;
	font-variant-numeric: lining-nums proportional-nums;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#logout-button p {
	color: var(--Red, #D10027);
}

.dashboard-pass-block {
	display: flex;
}

#b-container {
  display: flex;
  justify-content: center;
	gap: 20px;
}

#b-container button {
	padding: 10px 40px;
	background: #000;
}

#b-container button:last-child {
	border: 1px solid var(--Grey-2, #A8A39F);
	background: transparent;
}

#b-container button:last-child p {
	color: #000;
}

.form-pas .input-with-icon img {
	top: 5px;
}

#b-container p {
	margin-bottom: 0;
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    text-align: center;
}

.close-popup {
    position: absolute;
	font-size: 20px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.password-message-false {
	color: red;
	font-size: 18px;
	text-align: center;
}

.password-message-true {
	color: green;
	font-size: 18px;
	text-align: center;
}

.eeye {
  display: none;
}

.eeye.active {
  display: inline-block;
}

#logout-popup {
	height: 233px;
	width: 512px;
}

.popup-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	gap: 32px;
}

.popup-content p {
	color: var(--Black, #0E0E0E);
	text-align: center;
	font-family: Montserrat;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	text-transform: uppercase;
}

.popup-content button {
	padding-top: 18px;
	padding-bottom: 18px;
	width: 190px;
	background:  var(--Red, #D10027);
	color: var(--White, #FFF);
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.popup-content button:last-child {
	background: transparent;
	color: var(--Black, #0E0E0E);
	border: 1px solid #A8A39F;
}

.logout-button-div {
	display: flex;
	justify-content: center;
	gap: 20px;
}

#myTabContent .woocommerce-Addresses {
	align-items: flex-start;
}

#myTabContent .woocommerce-Addresses div {
	max-width: 100% !important;
}

#myTabContent .woocommerce-Addresses div header {
	text-align: left;
}

/* .u-column1, .u-column2, .billing_address_book h3, .myaccount_address {
	display: none;
} */
.woocommerce-notices-wrapper .woocommerce-message {
	color: green;
	font-size: 16px;
}

/* .card-body p {
	display: none;
} */

.wc-address-book-add-billing-button {
	border: 1px solid var(--Black, #0E0E0E);
	background: var(--White, #FFF);
	padding: 10px 40px;
	color: var(--Black, #0E0E0E);
	text-align: center;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 1px;
	text-transform: uppercase;
}





table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table {
  display: flex;
  flex-direction: column;
}

.cell {
  flex: 1;
}

.cell-button {
	position: absolute;
	right: 30px;
}

.h-row {
	display: flex;
	font-family: Montserrat;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	color: #A8A39F;
	height: 34px;
}

.h-row .cell:last-child {
	flex: 2;
}

.h-row-data {
	display: flex;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	color: #0E0E0E;
	height: 64px;
	align-items: center;
	align-items: center;
	border-top: 1px solid #A8A39F;
}

.cell-last {
	flex: 2;
	display: flex;
    gap: 10px
}

.cell-last img {
	height: 40px !important;
	width: 40px !important;
}

.justify-content-center .productItem__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-white);
  padding: 1.6rem;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.h-delivery-infodiv {
	flex: 3;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.h-delivery-infodiv:last-child {
	margin-bottom: 40px;
}

.justify-content-center .productItem__picture {
	display: flex;
    align-items: center;
    justify-content: center;
	flex: 1;
	gap: 10px;
}

.justify-content-center .productItem__picture img {
	height: 60px !important;
	width: 60px !important;
}

.justify-content-center .productItem__description {
	display: flex;
    flex: 12;
}

.justify-content-center .productItem__name {
	flex: 5;
	margin-left: 10px;
}

.justify-content-center .productCheckoutcustom {
	flex: 3;
}

.justify-content-center .h-delivery-info {
	display: flex;
}

.justify-content-center .h-delivery-info .h-delivery-infoone {
	flex: 1;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	color: #676767;
}

.justify-content-center .h-delivery-info .h-delivery-infotwo {
	flex: 3;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	color: #0E0E0E;
}

.h-delivery-infothree {
	flex: 3;
}

.delivery-order-content {
    display: none;
}

.cell-button.active .arrow-icon {
    transform: rotate(180deg);
}

.delivery-order-content .oldprice h3, .delivery-order-content .actualPrice {
	font-size: 14px;
}

.delivery-order-content .product-quantity {
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}

.tab-pane .container-fluid .justify-content-center .col-md-8 div:last-child .delivery-order-content {
/* 	border-bottom: 1px solid #A8A39F; */
}

.tab-pane .container-fluid .justify-content-center .col-md-8 .delivery-order-block:last-child {
	border-bottom: 1px solid #A8A39F;
}

.wc-address-book-meta a {
	border: 1px solid var(--Black, #0E0E0E);
    background: var(--White, #FFF);
    padding: 10px 40px;
    color: var(--Black, #0E0E0E);
	text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    text-transform: uppercase;
	cursor: pointer;
}

.wc-address-book-edit:hover {
	color: white !important;
    background: blue !important;
	transition: 0.5s;
}

/* Hide the hover SVG initially */
.wc-address-book-delete .hover {
    display: none;
	transition: 0.5s;
}

/* Show the hover SVG on hover */
.wc-address-book-delete:hover .default {
    display: none;
	transition: 0.5s;
}
.wc-address-book-delete:hover .hover {
    display: inline-block;
	transition: 0.5s;
}


.wc-address-book-make-primary:hover {
	color: white !important;
    background: green !important;
	transition: 0.5s;
}

.wc-address-book-address address, .woocommerce-Address address {
	display: flex;
	flex: 12;
	justify-content: space-around;
	margin-top: 14px;
    font-size: 14px;
    color: #676767;
    background: #FCF5EE;
    font-size: 14px;
    padding: 9px 12px;
}

/* .wc-address-book-add-new-address {
	margin-top: 30px;
} */

.billing_address_book header {
	margin-bottom: 30px;
}

.wc-address-book-address address span, .woocommerce-Address address span {
	border-bottom: 1px solid #A8A39F;
	padding: 9px 12px 9px 0;
}

.woo-adressdiv-block {
	display: flex;
}

.wc-address-book-delete {
	flex: 1;
	display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
}

.woocommerce-address-fields__field-wrapper {
	display: flex;
	flex-direction: column;
}

.woocommerce-address-fields__field-wrapper .validate-required {
	display: flex;
}

.woocommerce-address-fields__field-wrapper p label {
	flex: 1;
}

.woocommerce-address-fields__field-wrapper p span {
	flex: 2;
}

.woocommerce-address-fields__field-wrapper input {
	border: none;
    border-radius: 0px;
    border-bottom: 1px solid #A8A39F;
    background: #FCF5EE;
    font-size: 14px;
	display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.woocommerce-address-fields .select2-selection__rendered {
    border-radius: 0px;
    border-bottom: 1px solid #A8A39F !important;
    color: #676767;
    background: #FCF5EE;
    font-size: 14px;
}

.woocommerce-address-fields .select2-selection {
	border: none;
}

.woocommerce-address-fields .button {
	padding: 10px 40px;
	border: 1px solid #000;
    background: #000;
	color: var(--White, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.woocommerce-Address address {
	display: flex;
	justify-content: space-around;
}

.wc-address-book-address {
	width: 100%;
	margin-bottom: 30px;
}

.woocommerce-address-fields .button:hover {
	background: #fff;
	color: #000;
	border: 1px solid #000;
	transition: 0.5s;
}

.card-body .woocommerce-Addresses .title {
	padding-top: 0;
	padding-bottom: 0;
}

.woocommerce-Address-title .edit, .add-new-address .wc-address-book-add-shipping-button {
	border: 1px solid var(--Black, #0E0E0E);
	background: var(--White, #FFF);
    padding: 10px 40px;
    color: var(--Black, #0E0E0E);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#myTabContent .woocommerce-Addresses {
/* 	display: none; */
}

.shipping_address_book {
	display: none;
}

.myaccount_address {
	display: none;
}

.shipping_address_book h3 {
	margin-bottom: 30px;
}

.wc-address-book-edit {
	display: none;
}


@media (max-width: 475px) {
	.justify-content-center .productItem__body{
    	justify-content: flex-start!important;
  	}
}
.price-qty{
  margin-left: 0 !important;
}
.container-fluid .row .col-md-12 .tab-content .tab-pane .container-fluid .row .col-md-9 div .p-5 {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

form #password-fields .container h3 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.form-control:focus {
	background-color: var(--BG, #FCF5EE);
}

.privacypolicy {
	margin-top: 7rem;
}

.main .registration .registration__right #user-login-form {
	width: 95%;
}

.woocommerce-Address-title {
/* 	display: none; */
}

.u-column2 {
	display: none;
}

.woocommerce-Address-title h3 {
	margin-bottom: 30px;
}

.container-fluid .row .col-md-12 .my-5 .tab-pane .container-fluid .row .col-md-9 div .card-body .u-columns .col-1 {
	padding-left: 0;
	padding-right: 0;
}

.empty-order {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 35px;
	height: 55vh;
}

.empty-order p {
	font-family: Montserrat;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    text-align: center;
}

.empty-order a {
	display: flex;
	justify-content: center;
    align-items: center;
    width: 290px;
    height: 56px;
    background: #0E0E0E;
}

.empty-order span {
	font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.allProducts  h6 {
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 400;
	line-height: 23px;
	text-align: left;
}

.item_price h6 {
	color: #A8A39F;
}

h6 .woocommerce-Price-amount {
	font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    color: #A8A39F;
}

h4 .woocommerce-Price-amount {
	font-size: 18px;
	font-weight: 600;
	line-height: 23px;
	color: #0E0E0E;
}

.allProducts__item button {
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 1px;
  
}
.allProducts__item button:hover{
-webkit-transform: scale(101%);
  transform: scale(101%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.wc_payment_methods {
	margin-bottom: 3rem;
}

.payment_method_cod {
	margin-bottom: 2rem;
}

@media (max-width: 1024px) {
	.justify-content-center .h-delivery-info {
		flex-direction: column;
		margin-top: 5px;
	}
}

@media (max-width: 800px) {
	.customize-support .container-fluid .row .col-md-12 .nav {
		flex-wrap: nowrap;
		overflow-x: scroll;
		justify-content: flex-start;
	}
	.customize-support .container-fluid .row .col-md-12 .nav-item {
		min-width: fit-content;
	}
}

@media (max-width: 1024px) {
	.registration-form {
		padding: 3rem 4rem 0 4rem !important;
	}
	.registration__right {
		margin-bottom: 70px;
	}
}



@media (max-width: 578px) {
	.wc-address-book-address address, .woocommerce-Address address {
		flex-direction: column;
	}
	.woocommerce-Address-title h3, .billing_address_book h3 {
		margin-top: 30px;
	}
	.justify-content-center .productItem__name {
		flex: 4;
	}
	.justify-content-center .productItem__body {
		justify-content: start;
	}
	.justify-content-center .productItem__description {
		flex-direction: column;
	}
	.productItem__review_order_price_qty {
/* 		justify-content: flex-start !important; */
		margin-top: 60px;
		width: 116%;
    	margin-left: -60px;
	}
	.justify-content-center .productItem__picture {
		align-items: flex-start;
	}
	.cell-last {
		margin-right: 40px;
	}
	.h-row .cell:last-child {
		color: #ffffff00;
	}
}

@media (max-width: 500px) {
	.h-row {
		gap: 10px;
	}
	.h-row-data {
		flex-wrap: wrap;
		gap: 10px;
		min-height: max-content;
		height: auto;
		padding: 10px 0;
	}
	.dashboard-pass-block {
		flex-direction: column;
	}
	#b-container {
		margin-bottom: 30px;
		flex-direction: column;
	}
	#logout-popup {
		width: 95%;
		height: max-content;
	}
	.logout-button-div {
		align-items: center;
    	flex-direction: column;
    	width: 100%;
		min-height: max-content;
	}
	.popup-content button {
		width: 90%;
	}
}

@media (max-width: 400px) {
	.h-row .cell:last-child {
		display: none;
	}
}

@media (max-width: 368px) {
	.productItem__review_order_price_qty {
		width: 100%;
	}
  .price-qty{
    margin-left: -30px !important;
  }
}

.input-with-icon > svg {
	position: absolute;
    right: 8px;
    top: 3px;
    cursor: pointer;
}
.entry-content h2{
  font-size: 1.8rem;
  font-weight: 600;
}
.entry-content h3{
  font-size: 1.4rem;
}
.Email_Registration__body {
  background-image: url(../img/confeti.png);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 434px;
  background-color: var(--color-white);
}
.Email_Registration__body .logo {
  margin-bottom: 2rem;
}
.Email_Registration__body .logo img {
  height: 16px;
  width: 129px;
}
.Email_Registration__body .body__notification {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 368px;
  text-align: center;
}
.Email_Registration__body .body__notification .notification__text h2 {
  font-weight: 600;
}

.support-info {
  background-color: var(--color-light-grey);
  display: flex;
  flex-direction: column;
  height: 207px;
  justify-content: space-between;
}
.support-info .support-info__body {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: column;
  align-items: center;
}
.support-info .support-info__body h2 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.support-info .support-info__body h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.support-info .support-info__body span {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.support-info .support-info__body span a {
  color: var(--color-dark);
}
.support-info .support-info__mistake {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  color: var(--color-grey);
  border-top: 1px solid var(--color-grey);
}

.Email_Registration__body {
  background-image: url(../img/confeti.png);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 434px;
  background-color: var(--color-white);
}
.Email_Registration__body .logo {
  margin-bottom: 2rem;
}
.Email_Registration__body .logo img {
  height: 16px;
  width: 129px;
}
.Email_Registration__body .body__notification {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 368px;
  text-align: center;
}
.Email_Registration__body .body__notification .notification__text h2 {
  font-weight: 600;
}

.support-info {
  background-color: var(--color-light-grey);
  display: flex;
  flex-direction: column;
  height: 207px;
  justify-content: space-between;
}
.support-info .support-info__body {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: column;
  align-items: center;
}
.support-info .support-info__body h2 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.support-info .support-info__body h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.support-info .support-info__body span {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.support-info .support-info__body span a {
  color: var(--color-dark);
}
.support-info .support-info__mistake {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  color: var(--color-grey);
  border-top: 1px solid var(--color-grey);
}
.registration.confirm{
  padding-top: 7rem;
  height: 100vh;
  margin-bottom: -14rem;
}

.registration__right__body.confirm{
  padding: 25rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.registration__right__body.confirm h2{
margin-bottom: 2rem;
}
.registration__right__body.confirm h5{
  margin-bottom: 5rem;
  }
.registration__right__body.confirm p{
  color: var(--color-dark-grey);
  margin-bottom: 5rem;
  }
.registration__right__body.confirm button{
    background-color: transparent;
    border: 1px solid var(--color-dark);
    max-width: 258px;
    width: 100%;
    padding: 1rem 4rem;
    }
.registration__right__body.confirm button a{
      color: var(--color-dark);
      font-family: Montserrat;
      font-size: 14px;
      font-weight: 500;
      line-height: 20px;
      letter-spacing: 1px;
      text-align: center;
      }
.flatpickr{
  display: flex;
}
.flatpickr .input-button{
  border-bottom: 1px var(--color-grey) solid;
}
.store_rule_content ul {
  font-size: 1.4rem !important; 
}
.store_rule_content li {
  font-size: 1.4rem;
}

.store_rule_content h2 {
  margin-bottom: 2rem;
}
.store_rule_content h3 {
  margin-bottom: 1rem;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  transform: scale(1.5); /* Увеличение иконки */

}

.custom-pagination {
  display: flex;
  justify-content: center; /* Центрирует пагинацию по горизонтали */
  align-items: center; /* Центрирует пагинацию по вертикали */
  width: 100%;
}

.woocommerce-pagination {
  display: flex;
  justify-content: center; /* Центрирует элементы пагинации по горизонтали */
  width: 100%;
}

.page-numbers {
  display: flex;
  list-style: none; /* Убираем маркеры списка */
  padding: 0;
  margin: 0;
}

.page-numbers li:not(:first-child) {
  margin-left: 3rem; /* Отступы между элементами списка, кроме первого */
}

.page-numbers a, 
.page-numbers span {
  display: block;
  padding: 10px 15px; /* Добавляем внутренние отступы для кликабельной области */
  color: #333; /* Цвет текста */
  text-decoration: none; /* Убираем подчеркивание */
  border: 1px solid #ccc; /* Добавляем рамку */
  border-radius: 4px; /* Скругляем углы */
  transition: background-color 0.3s, color 0.3s; /* Анимация при наведении */
}

.page-numbers a:hover, 
.page-numbers .current {
  background-color: #0073aa; /* Цвет фона при наведении или для текущей страницы */
  color: #fff; /* Цвет текста при наведении или для текущей страницы */
  border-color: #0073aa; /* Цвет рамки при наведении или для текущей страницы */
}
.form-row{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.contact_info{

}
.contact_info a {
  color: var(--color-dark);
}