html {
  /* background-color: #181818; */
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  font-display: optional;
  color: #FFFFFF;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  font: inherit;
}

p {
  font-weight: 300;
}

a {
  text-decoration: unset;
}

body {
  display: flex;
  /* position: relative; */
  flex-direction: column;
  top: 0px;
  left: 0px;
  min-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0px;
  overflow-x: hidden;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
  background: #212121;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 170px 100px;
}

.header {
  display: flex;
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  justify-content: center;
  align-items: center;
  height: 64px;

  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
}

.header_prop {
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 170px 0px;
}

.logo {}

.logo_img {}

.navigation {
  display: flex;
  position: relative;
  width: 65%;
  justify-content: space-between;
  align-items: center;
}

.nav_link {
  display: flex;
  position: relative;
  width: 25%;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-transform: uppercase;
  text-align: center;
}

.navigation:after {
  content: "";
  display: block;
  clear: both;
}

.red_hover {
  transition: all 0.2s;
}

.red_hover:not(:last-child) {
  display: flex;
  width: 25%;
  justify-content: center;
  align-items: center;
  /* float: left; */
  padding: 7px 0;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

/* .red_hover:not(:last-child):hover {
  color: #ff3e3e;
} */
.red_hover:not(:last-child):nth-child(1):hover~.red_hover:last-child {
  left: 0%;
}

.red_hover:not(:last-child):nth-child(2):hover~.red_hover:last-child {
  left: 25%;
}

.red_hover:not(:last-child):nth-child(3):hover~.red_hover:last-child {
  left: 50%;
}

.red_hover:not(:last-child):nth-child(4):hover~.red_hover:last-child {
  left: 75%;
}

/* .red_hover:last-child {
  position: absolute;
  top: 50px;
  left: 0px;
  display: block;
  width: 25%;
  height: 5px;
  background: #ff3e3e;
  box-shadow: 0 1px 2px rgba(0, 182, 255, 0.4);
  border-radius: 10px;
  z-index: 10;
} */

.language_switch {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.language {
  text-transform: uppercase;
}

.cart {
  /* display: flex; */
  display: none !important;
  align-items: center;
  cursor: pointer;
}

.cart_img {}

.modal_dropdown {
  display: none;
  visibility: hidden;
  width: 300px;
  top: 55px;
  flex-direction: column;
  padding: 50px 0px;
  position: absolute;
  background: rgba(33, 33, 33, 0.8);
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  z-index: 12;
}

.modal_item {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */

  text-align: center;

  color: #ffffff;
}

.modal_item:hover {
  background: rgba(255, 62, 62, 0.4);
}

.nav_link::after {
  content: "";
  position: absolute;
  top: 0px;
  display: flex;
  cursor: pointer;
  width: 100%;
  /* min-height: 64px; */
  height: 70px;
  z-index: 11;
}

.nav_link::after:hover {
  /* min-height: 300px !important; */
  /* height: 300px !important; */
  /* color: #ff3e3e; */
}

.nav_link:hover .modal_dropdown {
  visibility: visible;
  display: flex;
}

/* .nav_link::after:hover .nav_link {
  color: #ff3e3e;
} */

.nav_link_spec {
  width: 100% !important;
}

/* //////////// */

.start_block {
  /* background: url(""); */
  height: 100vh;

  background-size: cover !important;
  background-attachment: fixed !important;
  background-position: center !important;
  background-position-y: center !important;
}

.start_prop {
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  max-width: 100%;
  left: 0px;
  z-index: 1;
  padding: 0px 170px 0px !important;
  /* margin-top: 250px; */
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0)
  }
}

@-moz-keyframes scroll {
  0% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -moz-transform: translate(-100%, 0);
    transform: translate(-100%, 0)
  }
}

@keyframes scroll {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0)
  }
}

.marquee {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 20%;
}

.marquee span {
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 90px;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 100%;
  -webkit-animation: scroll 15s infinite linear;
  -moz-animation: scroll 15s infinite linear;
  animation: scroll 15s infinite linear;
}

.points_wrapper {
  position: absolute;
  left: calc(50% - 164px);
  bottom: 10%;
  /* display: none; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.point_marker {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.point_marker_inside {
  cursor: pointer;
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.8);
}

.marker_active .point_marker_inside {

  border-radius: 50%;
  /* border: 2px solid rgba(0, 0, 0, 0.8); */
  -webkit-box-shadow: 0px 0px 20px 16px rgba(240,152,152,1);
  -moz-box-shadow: 0px 0px 20px 16px rgba(240,152,152,1);
  box-shadow: 0px 0px 20px 16px rgba(240,152,152,1);
  /* background: #FF3030; */
}

.start_back {
  position: absolute;
  top: 0px;
  width: 210vh;
  height: 100vh;
  z-index: -1;
}

.start_title {
  /* position: fixed;
  top: 15%; */
  display: none !important;
  display: flex;
  justify-content: center;
  width: 70%;
  height: 100vh;
  align-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 72px;
  text-align: center;

  color: #ffffff00;

  /* margin-top: 100px; */
  /* z-index: 1; */
}

.spec_start_title_block {
  display: flex;
  justify-content: center;
  width: 70%;
  height: 100vh;
  align-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 72px;
  text-align: center;

  color: #ffffff00;
}

.arrow_group {
  /* position: fixed;
  top: 35%; */
  display: flex;
  width: 100%;
  justify-content: space-between;
  /* margin-top: 200px; */
  /* padding: 0px 170px; */
  /* z-index: 1; */
}

.arrow {
  display: none;
  /* display: flex; */
  width: 15%;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

/* //////////// */

.about_block {
  background-color: #212121;
  z-index: 52;
}

.about_prop {
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 0px !important;

}

.main_title {
  display: flex;
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 89.4%;
  /* identical to box height, or 54px */

  text-align: center;
  margin-bottom: 70px;
}

.description_block {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.description_icon {
  display: flex;
  width: 328px;
  height: 328px;
  border: none;
  border-radius: 50%;
  background: #c4c4c4;
}

.description_img {
  display: flex;
  width: 328px;
  height: 328px;
  border: none;
  border-radius: 50%;
}

.description_text {
  display: flex;
  width: 60%;
  font-style: normal;
  align-items: center;
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
}

.underline {
  display: flex;
  width: 100%;
  height: 2px;
  background-color: #ff3e3e;
  margin-top: 110px;
  margin-bottom: 70px;
}

.option_block {
  display: flex;
  width: 70%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
}

.option_text {
  display: flex;
  width: 65%;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  /* or 22px */

  text-align: right;
}

.option_icon {
  display: flex;
  width: 30%;
}

.option_img {}

/* //////////// */

.products {
  display: flex;
  width: 100%;
  height: auto;
  /* background: linear-gradient(180deg, #f0f0f0 0%, rgba(251, 251, 251, 0) 100%); */
  /* background-color: rgba(241, 241, 241, 1); */
  background-color: #212121;
  z-index: 52;
}

.products_prop {
  padding-bottom: 0px !important;
}

.products_list {
  /* height: 320px; */
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: start;
  /* margin-bottom: 50px; */
}

.service_list {
  flex-wrap: wrap;
  gap: 45px;
}

.product_item {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: 0px 10px;
}

.service_item {
  width: calc(25% - 45px);
  align-items: center;
  padding: 0px;
}

.product_icon {
  display: flex;
  justify-content: center;
  width: 100%;
  /* min-width: 200px; */
  min-height: 260px;
  height: 260px;
  overflow-x: hidden;
  overflow-y: hidden;
  /* height: auto; */

  /* background: #dedede; */
  border-radius: 3px;
}

.service_icon {
  width: 100%;
  height: unset;
  min-height: unset;
  aspect-ratio: 6/5 !important;
}

.product_icon_img {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 200px;
  /* height: auto; */

  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.service_icon_img {
  width: 100%;
  height: unset;
  min-height: unset;
  aspect-ratio: 6/5 !important;
}

.product_title {
  margin: 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;

  color: #ffffff;
  margin-top: 20px;
}

.service_title {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service_details_btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;

  text-align: center;
  text-transform: uppercase;
  color: #ffffff;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 112px;
  height: 40px;
  border: 2px solid #B0B0B0;
  border-radius: 100px;

  margin-top: 14px;

  transition: all 0.3s;
  background: #00000000;
}

.service_details_btn:hover {
  background: #FF3E3E;
  border: 2px solid #FF3E3E;
  color: #FFFFFF;
}

.services {}

.services_prop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0px !important;
}

.services_prop>div:first-child {
  opacity: 1 !important;
  width: 38% !important;
}

.services_prop>div:first-child>figure {
  display: flex !important;
  width: 100% !important;
  margin-top: 0px !important;
}

.woocommerce-product-gallery__image {
  display: flex !important;
  width: 100% !important;
}

.woocommerce-product-gallery__image>a {
  display: flex !important;
  width: 100% !important;
}

.woocommerce-product-gallery__image>a>img {
  display: flex !important;
  width: 100% !important;
  object-position: center;
  object-fit: cover;
  aspect-ratio: 5/6;
  /* height: 275px; */
}

.services_image {
  display: flex;
  width: 38%;
}

.services_img {
  display: flex;
  width: 100%;
}

.services_desc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 55%;
}

.services_title {
  display: flex;
  width: 100%;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 89.4%;
  /* identical to box height, or 54px */


  /* color: #000000; */
  margin-bottom: 32px;
}

.services_subtitle {
  display: flex;
  width: 100%;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  /* identical to box height, or 22px */


  /* color: #000000; */
  margin-bottom: 16px;
}

ol {
  margin: 0;
}

.services_list {
  display: flex;
  width: 100%;
  margin-bottom: 35px;
  flex-direction: column;
  list-style-type: decimal;
  padding: 0px 0px 0px 30px !important;
}

.services_desc>p {
  display: flex;
  /* display: list-item; */
  width: 100%;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  /* or 22px */
  /* list-style: decimal; */

  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.8);
}

.services_list_item {}

.services_info_wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 22px;
}

.services_info {
  display: flex;
  width: 200px;
  height: 70px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(255, 48, 48, 0.5);
  border-radius: 3px;
  /* margin-left: 11px;
  margin-right: 11px; */
  padding: 10px;
}

.services_info:first-child {
  margin-left: 0px;
}

.services_info:last-child {
  margin-right: 0px;
}

.services_info_title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  /* identical to box height, or 22px */

  text-align: center;

  /* color: #000000; */
}

.services_info_text {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  /* identical to box height, or 22px */

  text-align: center;

  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.services_note {
  display: flex;
  width: 100%;
  margin-top: 21px;
}

.product_stock {
  margin-bottom: 7px !important;
  margin-top: 7px !important;

  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;

  color: #b0b0b0;
}

.product_price {
  display: flex;
  align-items: center;
  /* margin-top: 7px; */
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */

  color: #000000;
}

.discount_true {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */

  color: #000000;
}

.discount {
  margin-top: 0px;
  margin-left: 7px;

  color: #ff3e3e;
}

.all_products {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  background: #ff3e3e;
  border: 2px solid #ff3e3e;
  border-radius: 100px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
}

/* //////////// */

.footer {
  background: #212121;
  z-index: 52;
}

.footer_prop {
  flex-direction: row;
  padding: 100px 170px 100px;
}

.contacts_title {
  color: #ffffff;
}

.contacts_block {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.contacts_info {
  display: flex;
  width: 46%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.red_circle {
  width: 204px;
  height: 204px;
  border: none;
  border-radius: 50%;
  background: #ff3e3e;
  margin-bottom: 50px;
}

.footer_logo {
  margin-bottom: 50px;
}

.footer_logo_img {}

.footer_socials {
  display: flex;
  width: 50%;
  margin-bottom: 30px;
  justify-content: space-around;
}

.social_icon {}

.social_img {}

.footer_mail {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  /* identical to box height, or 21px */
  cursor: pointer;
  color: #ffffff;
  margin-bottom: 20px;
  text-decoration: underline;
}

.footer_rights {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 150%;
  /* identical to box height, or 21px */

  color: #ffffff;
}

.contacts_form {
  display: flex;
  width: 46%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(232, 232, 232, 0.2);
  border-radius: 3px;
  padding: 30px 50px 20px;
}

.form_block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input_label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  /* identical to box height, or 21px */

  color: #ffffff;
  margin-bottom: 7px;
}

.form_input {
  display: flex;
  width: 100%;
  height: 40px;
  border: none;
  padding: 10px;
  color: #000000;
  background: #ffffff;
  border-radius: 3px;
  margin-bottom: 15px;
}

.form_input:focus {
  border: unset !important;
  border-radius: 3px !important;
  outline: 0;
  box-shadow: 0 0 0 0 #ffffff00 !important;
}

.details {
  height: 120px;
  resize: none;
}

.follow {
  display: flex;
  width: 220px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: #ff3e3e;
  border: 2px solid #ff3e3e;
  border-radius: 100px;

  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  /* identical to box height, or 21px */
  text-align: center;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
}

/* .follow:focus {

} */

.form_text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 150%;
  /* or 16px */

  text-align: center;

  color: #ffffff;
}

.privacy {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 150%;
  color: #ffffff !important;
  text-decoration: underline;
}

.privacy_prop {}

.privacy_text {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  /* or 22px */

  /* color: #000000; */
}

.privacy_title {
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 89.4%;
  /* identical to box height, or 54px */

  text-align: center;

  /* color: #000000; */

  margin-top: 20px;
  margin-bottom: 50px;
}

.bold_title {
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 150%;
  /* or 22px */

  color: #000000;
}

strong {
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 150%;
  /* or 22px */

  /* color: #000000; */
}

.thanks_prop {
  height: 100vh;
}

.thanks_text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;

  /* color: #000000; */
  margin-top: 0px;
  margin-bottom: 50px;
}

#main>nav {
  margin-top: 100px;
  /* visibility: hidden; */
  display: flex;
}

#main>nav>a {
  display: block !important;
}

#main>nav>a {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

#main>nav>a:first-child {
  margin-left: 0px !important;
}

#main>header>h1 {
  display: none;
}

body>header>div>div.language_switch>li.lang-item.lang-item-19.lang-item-pl.lang-item-first>a,
body>header>div>div.language_switch>li.lang-item.lang-item-22.lang-item-en>a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;
  color: #b4b4b4;
}

body>div.burger_modal>div>div>div.language_switch>li.lang-item.lang-item-19.lang-item-pl.lang-item-first>a,
body>div.burger_modal>div>div>div.language_switch>li.lang-item.lang-item-22.lang-item-en>a {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 17px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;
  color: #b4b4b4;
}

body>header>div>div.language_switch>li.lang-item.lang-item-19.lang-item-pl.lang-item-first {
  list-style: none;
  margin-right: 13px;
}

body>div.burger_modal>div>div>div.language_switch>li.lang-item.lang-item-19.lang-item-pl.lang-item-first {
  list-style: none;
  margin-right: 13px;
}

body>div.burger_modal>div>div>div.language_switch {
  justify-content: center;
}

/* body
  > header
  > div
  > div.language_switch
  > li.lang-item.lang-item-22.lang-item-en::marker {
  content: "/";
  margin: 0px;
} */
body>div.burger_modal>div>div>div.language_switch>li.lang-item.lang-item-22.lang-item-en {
  /* margin-left: 3px; */
  list-style: none !important;
}

body>header>div>div.language_switch>li.lang-item.lang-item-22.lang-item-en {
  /* margin-left: 3px; */
  list-style: none !important;
}

body>div.burger_modal>div>div>div.language_switch>li.lang-item.lang-item-22.lang-item-en::after {
  content: "/";
  position: relative !important;
  right: 40px !important;
  top: -1.5px;
  font-size: 15px;
  color: white !important;
  /* left: -13px !important; */
  /* margin-left: 5px !important; */
}

body>header>div>div.language_switch>li.lang-item.lang-item-22.lang-item-en::after {
  content: "/";
  position: relative !important;
  right: 30px !important;
  /* left: -13px !important; */
  /* margin-left: 5px !important; */
}

.current-lang>a {
  /* opacity: 0.5 !important; */
  /* opacity: 1 !important; */
  color: #FF3030 !important;
}

body>div.burger_modal>div>div>div.language_switch.modal_lang_switch>li.current-lang>a {
  color: white !important;
}

#main>ul {
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 170px 0px;
  background: white !important;
  list-style: none;
}

#main>ul>li {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  width: 25%;
  padding: 0px 10px;
  margin: 0px 0px;
  margin-bottom: 50px;
}

#main>ul>li>a.woocommerce-LoopProduct-link.woocommerce-loop-product__link>img {
  display: flex;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.onsale {
  display: none;
}

#main>nav {
  display: flex;
  width: 100%;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 170px 0px;
}

.woocommerce-loop-product__title {
  margin: 0px;
  margin-top: 20px;
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  line-height: 18px !important;

  color: #000000 !important;
}

#main>ul>li>a>span>del>span>bdi,
.woocommerce-Price-currencySymbol {
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 22px !important;

  color: #000000 !important;
}

#main>ul>li>a>span>span>bdi {
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 22px !important;

  color: #000000 !important;
}

#main>ul>li.product.type-product.status-publish.first.instock.product_cat-uncategorized.has-post-thumbnail.sale.shipping-taxable.purchasable.product-type-simple>a.woocommerce-LoopProduct-link.woocommerce-loop-product__link>span.price>ins>span>bdi {
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 22px !important;

  color: #ff3e3e !important;
  margin-left: 5px;
  text-decoration: none !important;
}

#main>ul>li>a>span.price>ins {
  text-decoration: none !important;
}

.size-woocommerce_thumbnail {
  border-radius: 3px !important;
}

#main>ul>li>a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  margin-top: 12.45px;
  color: #b0b0b0;
}

#main>ul>li>a.button.product_type_variable.add_to_cart_button {
  margin-top: 12.45px;
  color: #b0b0b0;
}

/* #product-72 > div */
.summary.entry-summary>h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 89.4%;
  /* or 36px */

  color: #000000;
}

/* #product-72 > div */
.summary.entry-summary {
  display: flex;
  flex-direction: column;
}

/* #product-72 > div */
.summary.entry-summary>form {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.summary.entry-summary>form>div>div.woocommerce-variation-add-to-cart.variations_button {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.variations_form {
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: start !important;
}

/* #product-72 > div */
.summary.entry-summary>form>table>tbody>tr {
  display: flex;
  flex-direction: column;
}

/* #product-72
  > div */
/* .summary.entry-summary > form > table > tbody > tr > th > label {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 89.4%;

  text-transform: uppercase;
  color: #000000;
} */
/* #product-72 > div */
.summary.entry-summary>form>table>tbody>tr>th {
  text-align: start;
}

/* #product-72 > div */
.summary.entry-summary>form>table>tbody>tr>td {
  list-style: none;
}

/* #product-72 > div */
.summary.entry-summary>form>table>tbody>tr>td>ul {
  display: none !important;
  flex-direction: row;
  padding: 0px;
}

.button-variable-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;

  background: #dedede;
  border-radius: 3px;
  margin-left: 10px;
}

.button-variable-item:first-child {
  margin-left: 0px;
}

.single_add_to_cart_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  background: #ff3e3e;
  border: 2px solid #ff3e3e;
  border-radius: 100px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
  /* margin-top: 20px; */
  margin-left: 15px;
  cursor: pointer;
}

.quantity>input {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40px !important;
  height: 40px !important;
  border: none !important;
  background: #dedede !important;
  border-radius: 3px !important;
  margin-left: 10px;
  margin-right: 10px;
}

.quantity>input::-webkit-outer-spin-button,
.quantity>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product_meta {
  display: none;
}

/* #product-72
  > div */
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
  display: flex;
  width: 47%;
}

.woocommerce-product-gallery__wrapper {
  position: relative;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  position: relative;
  margin-top: 20px;
}

/* #product-72
  > div */
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images>figure {
  display: flex;
  width: 100%;
  height: 551px;
}

.woocommerce-product-gallery__wrapper .arrow_back, .woocommerce-product-gallery__wrapper .arrow_next {
  display: none !important;
}

.woocommerce-product-gallery__wrapper .points_wrapper {
  bottom: -70px;
  /* left: 10px; */
  left: 50%;
    transform: translateX(-50%);
  z-index: 100;
}

/* #product-72
  > div */
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images>figure>div {
  display: flex;
  width: 100%;
}

/* #product-72
  > div */
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images>figure>div>a {
  display: flex;
  width: 100%;
  height: 551px;
}

/* #product-72
  > div */
#main>ul>li.product.type-product.status-publish.instock.product_cat-test.sale.shipping-taxable.purchasable.product-type-simple>a.woocommerce-LoopProduct-link.woocommerce-loop-product__link>img {
  margin-top: 0px;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images>figure>div>a>img {
  display: flex;
  width: 100%;
  height: 551px;
  object-fit: cover;
  object-position: center;
}

/* .woocommerce-product-gallery__image {
  user-select: none;
} */
/* #main
  > ul
  > li.product.type-product.status-publish.first.outofstock.product_cat-tshirts.product_cat-test.has-post-thumbnail.sale.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.instock.product_cat-test.sale.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  display: none;
}

#main
  > ul
  > li.product.type-product.status-publish.instock.product_cat-test.has-post-thumbnail.shipping-taxable.purchasable.product-type-variable
  > a.button.product_type_variable.add_to_cart_button {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.first.instock.product_cat-tshirts.has-post-thumbnail.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.outofstock.product_cat-tshirts.product_cat-test.has-post-thumbnail.sale.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.first.outofstock.product_cat-uncategorized.has-post-thumbnail.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.instock.product_cat-tshirts.has-post-thumbnail.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.first.outofstock.product_cat-tshirts.has-post-thumbnail.shipping-taxable.purchasable.product-type-simple
  > a.button.product_type_simple {
  display: none;
}
#main
  > ul
  > li.product.type-product.status-publish.instock.product_cat-tshirts.has-post-thumbnail.shipping-taxable.product-type-simple
  > a.button.product_type_simple {
  display: none;
} */
#main>ul>li>a>span.price>ins>span>bdi {
  margin-top: 0px;
  margin-left: 7px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ff3e3e;
}

.summary.entry-summary>div.product_stock {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

#main>ul>li>a>span.price>ins>span>bdi>span {
  margin-top: 0px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ff3e3e !important;
}

/* #product-72 > div */
.summary.entry-summary {
  display: flex;
  width: 50%;
}

/* #product-72
  > div */
/* .summary.entry-summary > form > table > tbody > tr > td > ul > li:checked {
  border: 2px solid #ff3030 !important;
} */
.summary.entry-summary>p>span>bdi {
  font-style: normal;
  font-weight: 700;
  font-size: 23px !important;
  line-height: 22px;

  color: #000000;
}

.summary.entry-summary>p>del>span>bdi {
  font-style: normal;
  font-weight: 700;
  font-size: 23px !important;
  line-height: 22px;
  /* identical to box height */
  text-decoration: line-through;
  color: #000000;
  /* display: flex; */
  flex-direction: row-reverse;
}

.summary.entry-summary>p>ins>span>bdi,
.summary.entry-summary>p>ins>span>bdi>span {
  font-style: normal;
  font-weight: 700;
  font-size: 23px !important;
  line-height: 22px;
  /* identical to box height */

  color: #ff3e3e !important;

  text-decoration: none !important;
}

/* #product-72 */
.product-type-variable,
.product-type-simple {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* align-items: center; */
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 170px 100px;
}

#main>ul>li>a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.added {
  display: none !important;
}

.value {
  position: relative !important;
}

#pa_size {
  display: flex !important;
  height: 40px;
  width: 220px;
  border: 2px solid black !important;
  border-radius: 100px;
  padding: 0px 15px;
  margin-bottom: 20px;
  margin-top: 15px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom_select::after {
  content: "▼";
  padding: 0 0px;
  font-size: 8px;
  position: absolute;
  right: 10px;
  top: 32px;
  z-index: 1;
  text-align: center;
  width: 10%;
  height: 100%;
  pointer-events: none;
  color: rgb(0, 0, 0) !important;
}

.summary.entry-summary>form>div>div.woocommerce-variation.single_variation>div.woocommerce-variation-price,
.reset_variations {
  /* display: none !important; */
}

.summary.entry-summary>form>div>div.woocommerce-variation.single_variation>div.woocommerce-variation-price>span>span>bdi {
  display: block !important;
  visibility: visible !important;
}

.wp-post-image {
  display: flex;
  width: 100%;
  /* margin-top: 20px; */
}

.quantity {
  display: flex;
  flex-direction: row;
}

.qty_button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40px !important;
  height: 40px !important;
  border: none !important;
  background: #dedede !important;
  border-radius: 3px !important;
  cursor: pointer;
}

.minus::before {
  content: "-";
}

.plus::before {
  content: "+";
}

.variable-item:not(.radio-variable-item) {
  width: 40px !important;
  height: 40px !important;
}

.single_variation {
  display: block !important;
}

/* .single_variation::before {
  content: "AMOUNT";
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 89.4%;

  text-transform: uppercase;

  color: #000000;
  margin-bottom: 15px;
  display: block !important;
} */

.summary.entry-summary>form>table>tbody>tr>th>label {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 89.4%;

  text-transform: uppercase;

  color: #000000;
  /* margin-bottom: 15px; */
  display: block !important;
}

[data-wvstooltip]::before {
  content: "" !important;
  display: none;
}

[data-wvstooltip]::after {
  content: "" !important;
  display: none;
}

.out-of-stock {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  background: #dedede;
  border: 2px solid #dedede;
  border-radius: 100px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
  cursor: pointer;
}

.summary.entry-summary>p>ins {
  margin-left: 10px;
  text-decoration: none !important;
}

.summary.entry-summary>form>div>div.woocommerce-variation.single_variation>div.woocommerce-variation-price>span {
  /* position: absolute; */
}

/* /////////// */

.arrows_container {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  /* padding: 0px 10px; */
  top: calc(50% - 30px);
}

.arrow_back {
  display: flex;
  width: auto !important;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(50% - 30px);
  left: 0px !important;
  opacity: 1 !important;
  z-index: 50 !important;
}

.arrow_back_img {}

.arrow_next {
  display: flex;
  width: auto !important;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(50% - 30px);
  right: 0px !important;
  opacity: 1 !important;
  z-index: 50 !important;
}

.arrow_next_img {}

.summary.entry-summary>form>div>div.woocommerce-variation.single_variation>div.woocommerce-variation-price>span {
  display: none !important;
}

.summary.entry-summary>form>table>tbody>tr>td>a {
  display: none !important;
}

.summary.entry-summary>span.woocommerce-Price-amount.amount>bdi {
  display: flex;
  align-items: center;
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 23px !important;
  line-height: 22px !important;
  color: #000000 !important;
  text-align: center !important;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* /////////// */

#main>nav.woocommerce-pagination {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 40px;
}

.page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none !important;
  padding: 0px !important;
}

.page-numbers>li {
  margin-left: 8px;
  margin-right: 8px;
}

.page-numbers>li>a {
  width: 40px;
  height: 40px;

  background: rgba(255, 62, 62, 0.5);
  border-radius: 100px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
  transition: 0.3s all ease !important;
  transform: scale(1) !important;
}

.page-numbers>li>span.current {
  width: 40px;
  height: 40px;

  background: #ff3e3e;
  border-radius: 100px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
  transition: 0.3s all ease !important;
  transform: scale(1) !important;
  cursor: pointer;
}

.page-numbers>li>a.next {
  position: relative;

  color: rgba(232, 232, 232, 0);
}

.page-numbers>li>a.next::after {
  content: ">";
  position: absolute;
  text-align: center;
  color: #ffffff;
}

.page-numbers>li>a.prev {
  position: relative;

  color: rgba(232, 232, 232, 0);
}

.page-numbers>li>a.prev::after {
  content: "<";
  position: absolute;
  text-align: center;
  color: #ffffff;
}

.page-numbers>li>a:hover,
.page-numbers>li>span.current:hover {
  transform: scale(1.08) !important;
  -webkit-transform: scale(1.08) !important;
}

.page-numbers>li>a:focus,
.page-numbers>li>span.current:focus {
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
}

/* /////////// */

.details_block {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.details_top {
  display: flex;
  position: relative;

  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  border-radius: 2px;
  background: #e8e8e8;
}

.details_top_item {
  display: flex;
  position: relative;

  width: 33.33%;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;

  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: #000000;
  cursor: pointer;
}

.details_active {
  border: 2px solid #000000;
  border-radius: 3px;
}

.details_bottom {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.details_bottom_item {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 5px;
}

.details_bottom_item_name {
  display: flex;
  width: 15%;
  justify-content: flex-start;
  text-align: start;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;

  color: #000000;
}

.details_bottom_item_dots {
  display: flex;
  width: 70%;
  justify-content: center;
  text-align: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;

  color: #b5b5b5;
}

.details_bottom_item_desc {
  display: flex;
  width: 15%;
  justify-content: flex-end;
  text-align: end;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;

  text-align: right;

  color: #000000;
}

.summary.entry-summary>div.product_stock.instock {
  color: #7edd7e !important;
}

.instock {
  color: #7edd7e !important;
}

/* ////////////// */

.form-row-last {
  float: unset !important;
  margin: 0px 0px 6px !important;
  width: 100% !important;
}

.form-row-first {
  float: unset !important;
  margin: 0px 0px 6px !important;
  width: 100% !important;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

#customer_details {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.woocommerce-billing-fields {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.input-text {
  display: flex;
  height: 40px;

  background: #e8e8e8;
  border: unset;
  border-radius: 3px;
  padding: 0px 10px;
}

#customer_details>div>div>div>p>label {
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 150% !important;
  /* identical to box height, or 21px */

  color: #000000 !important;
  margin-bottom: 6px;
}

#customer_details>div>div>h3,
#order_review_heading {
  display: flex;
  width: 100%;
  justify-content: center;
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 24px !important;
  text-align: center !important;
  text-transform: uppercase !important;

  color: #000000 !important;
  margin-bottom: 50px;
  margin-top: 100px;
}

#customer_details>div>div>h3::after,
#order_review_heading::after {
  content: "";
  /* top: 50px; */
  margin-top: 40px;
  position: absolute;
  display: flex;
  width: 100%;
  height: 4px;
  background-color: #e8e8e8;
}

.selection,
.select2-container,
.select2-selection,
.select2-selection--single,
.select2-selection__rendered {
  display: flex;
  /* text-align: center; */
  /* justify-content: center; */
  align-items: center;
  width: 100% !important;
  height: 40px !important;

  /* background: #e8e8e8; */
  border-radius: 3px;
}

.select2-selection__rendered {
  padding: 5px 10px 10px 10px !important;
}

.select2-selection__arrow {
  top: 8px !important;
  right: 9px !important;
}

#order_review>table {
  display: none !important;
}

.order_cart_container {
  padding: 0px 30% 5px;
}

#order_review>div.order_cart_container>div.cart_close,
#order_review>div.order_cart_container>a,
#order_review>div.order_cart_container>div.card_product>button,
#order_review>div.order_cart_container>div.card_product>div.cart_product_block>div>div.cart_product_block_info_amount>div:nth-child(1),
#order_review>div.order_cart_container>div.card_product>div.cart_product_block>div>div.cart_product_block_info_amount>div:nth-child(3),
#order_review>div.order_cart_container>div.cart_title {
  display: none !important;
}

#order_review>div.order_cart_container>div.sum>div {
  margin-left: 7px;
}

#order_review>div.order_cart_container>div.sum>div>span>bdi {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */

  color: #000000;
}

#order_review>div.order_cart_container>div.sum {
  text-transform: uppercase !important;
}

#payment>ul {
  display: none !important;
  /* display: flex; */
  width: 100%;
  justify-content: center;
  border: none !important;
  background-color: white !important;
}

#payment>div {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 15px 30px 70px 30px !important;
  background-color: white !important;
}

#place_order {
  width: 250px;
  height: 40px;
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  /* identical to box height */

  text-align: center !important;
  text-transform: uppercase !important;

  color: #ffffff;
  background: #ff3e3e;
  border-radius: 100px;
}

#order_comments {
  padding: 10px;
}

.woocommerce-error {
  border-top: unset !important;
  display: flex;
  flex-direction: column;
  padding: 10px 38% 0px !important;
  width: 100%;
  background-color: white !important;
  margin-top: 100px !important;
}

.woocommerce-error>li {
  color: #ff3e3e !important;
}

.woocommerce-error>li>strong {
  color: #ff3e3e !important;
}

/* #FF3E3E */
.woocommerce-error::before {
  display: none !important;
  content: "" !important;
}

.select2-results__option--highlighted[data-selected] {
  background-color: #ff3e3e !important;
}

body>div.woocommerce>p.cart-empty.woocommerce-info {
  border-top: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
  margin-top: 100px;
  padding: 0px !important;
}

body>div.woocommerce>p.cart-empty.woocommerce-info::before {
  display: none !important;
}

body>div.woocommerce>p.return-to-shop {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 15px 30px 70px;
}

body>div.woocommerce>p.return-to-shop>a {
  width: 250px;
  height: 40px;
  font-family: "Montserrat" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  color: #ffffff;
  background: #ff3e3e;
  border-radius: 100px;
}

/* ////////////// */

.blur_block {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0px;
  top: 0px;

  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.cart_modal {
  display: flex;
  position: fixed;
  width: 455px;
  height: 100%;
  right: 0px;
  top: 0px;
  overflow: auto;
  background: #ffffff;
  z-index: 1001;
}

.cart_close {
  position: relative;
  right: -50%;
  top: 30px;

  /* background: #c4c4c4; */
  z-index: 1002;
  cursor: pointer;
}

.cart_close_img {}

.cart_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  justify-content: start;
  padding: 0px 49px 81px;
}

.cart_title {
  display: flex;
  width: 100%;
  justify-content: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #000000;
  margin-bottom: 20px;
}

.card_product {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 35px;
}

.cart_product_block {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: row;
}

.cart_product_img {
  width: 101px;
  height: 108px;
  object-fit: cover;
  object-position: center;
  background: #dedede;
  border-radius: 3px;
}

.cart_product_block_info {
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  margin-left: 10px;
}

.cart_product_block_info_title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;

  color: #000000;
}

.cart_product_block_info_stock {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;

  color: #b0b0b0;
  margin-top: 7px;
}

.cart_product_block_info_price {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */

  color: #000000;

  margin-top: 7px;
}

.cart_product_block_info_amount {
  display: flex;
  width: 100%;
  flex-direction: row;
  margin-top: 7px;
}

.cart_product_block_info_amount_minus,
.cart_product_block_info_amount_plus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #dedede;
  border-radius: 3px;
  cursor: pointer;
}

.cart_product_block_info_amount_figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #dedede;
  border-radius: 3px;
  margin-left: 7px;
  margin-right: 7px;
}

.cart_product_block_info_amount_minus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #dedede;
  border-radius: 3px;
}

.cart_prod_delete {
  display: flex;
  width: 120px;
  /* height: 40px; */
  justify-content: start;
  align-items: center;

  margin-top: 22px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  border: none;
  background-color: #ffffff;

  color: #b0b0b0;
  cursor: pointer;
  padding: 0px !important;
}

.product_underline {
  display: flex;
  width: 100%;
  height: 2px;
  background-color: #ff3030;
  margin-top: 22px;
}

.sum {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: row;

  margin-top: 27px;
}

.sum_text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */

  text-align: right;
  text-transform: uppercase;

  color: #000000;
}

.price {
  display: flex;
  align-items: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;

  color: #000000;
  text-align: center;
}

body>div.cart_modal>div>div.sum>div.price>span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;

  color: #000000;
  text-align: center;
}

body>div.cart_modal>div>div.sum>div.price>span>bdi {
  margin-left: 6px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;

  color: #000000;
  text-align: center;
}

body>div.cart_modal>div>div.sum>div.price>span>bdi>span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;

  color: #000000;
  text-align: center;
}

#order_review>div.order_cart_container>div.buy_btn_container {
  display: none !important;
}

.buy_btn_container {
  position: fixed;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 82px;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.buy_btn {
  display: flex;
  /* position: fixed;
  bottom: 21px; */
  width: 220px;
  height: 40px !important;
  justify-content: center;
  align-items: center;

  background: #ff3e3e;
  border-radius: 100px;
  /* margin-top: 21px; */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
}

#order_review>div.order_cart_container>div>div.cart_product_block>div>div.cart_product_block_info_amount>div.cart_product_block_info_amount_figure {
  margin: 0px !important;
}

#order_review>div.order_cart_container>div>div.cart_product_block>div>button {
  display: none !important;
}

#main>div.woocommerce-notices-wrapper>div.woocommerce-info {
  display: none !important;
}

#main>p.woocommerce-info {
  border-top: none !important;
  background-color: white !important;
  display: flex;
  width: 100%;
  justify-content: center;
}

#main>p.woocommerce-info::before {
  display: none !important;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery>figure>div>a {
  user-select: none;
}

/* /////////// */

.burger_modal {
  display: flex;
  overflow: auto;
  position: fixed;
  left: 0px;
  top: 64px;
  width: 100%;
  height: calc(100vh - 64px);
  z-index: 1000;
  background-color: #212121;
}

.burger_prop {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: auto;
}

.burger_nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  /* overflow: auto; */
}

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

.modal_links {
  display: flex;
  width: 100%;
  justify-content: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-transform: uppercase;
  text-align: center;

  color: white;
  margin-bottom: 30px;
}

.modal_socials {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 70%;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.modal_socials_item {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 24%; */
}

.modal_category {
  color: #ff3e3e;
}

.modal_lang_switch {
  margin-top: 60px;
}

#overlay-button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 16px 3px;
  z-index: 100;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 1;
}

#overlay-button span {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #ff3e3e;
  position: relative;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
  top: -8px;
  visibility: visible;
}

#overlay-button span:after {
  top: 8px;
}

#overlay-button span:before,
#overlay-button span:after {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #ff3e3e;
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}

/* input[type="checkbox"]:checked ~ #overlay {
  visibility: visible !important;
} */

input[type="checkbox"]:checked~#overlay-button:hover span,
input[type="checkbox"]:checked~#overlay-button span {
  background: transparent;
}

input[type="checkbox"]:checked~#overlay-button span:before {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
  transform: rotate(45deg) translate(5.5px, 5px);
  opacity: 1;
}

input[type="checkbox"]:checked~#overlay-button span:after {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

#overlay {
  visibility: hidden;
}

#overlay.active {
  visibility: visible;
}

.burger_mobile {
  /* position: absolute; */
  /* right: 20px; */
  display: none;
}

/* /////////// */

.all_btns {
  transition: 0.3s all ease !important;
  -webkit-transition: 0.3s all ease !important;
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
}

.all_btns:hover {
  transform: scale(1.08) !important;
  -webkit-transform: scale(1.08) !important;
}

.all_btns:focus {
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
}

.all_btns:active {
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
}

.copied_red {
  color: #ff3030 !important;
}

.scroll_hidden {
  overflow: hidden !important;
}

.hide {
  display: none !important;
}

.right_appear {
  transform: translateX(0px);
  transition: all 0.3s ease;
  animation: right_appear 0.3s ease;
}

.right_disappear {
  transform: translateX(500px);
  transition: all 0.3s ease;
  animation: right_disappear 0.3s ease;
}

@keyframes right_appear {
  0% {
    transform: translateX(500px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes right_disappear {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(500px);
  }
}

.left_appear {
  transform: translateX(0px);
  transition: all 0.3s ease;
  animation: left_appear 0.3s ease;
}

.left_disappear {
  transform: translateX(-1023px);
  transition: all 0.3s ease;
  animation: left_disappear 0.3s ease;
}

@keyframes left_appear {
  0% {
    transform: translateX(-1023px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes left_disappear {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-1023px);
  }
}

.appear {
  animation: appear 0.5s ease-in;
  transition: all;
}

.disappear {
  animation: disappear 0.5s ease-in;
  transition: all;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes disappear {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ///////// */

@media screen and (width: 1024px) {
  .container {
    padding: 50px 80px 100px;
    flex-wrap: wrap;
  }

  #main>ul {
    padding: 50px 80px 0px;
    flex-wrap: wrap;
  }

  .order_cart_container {
    padding: 0px 80px 5px;
  }

  #customer_details {
    padding: 0px 80px 0px;
  }

  .product-type-variable,
  .product-type-simple {
    padding: 0px 80px 100px;
    flex-wrap: wrap;
  }

  



  .header_prop {
    padding: 0px 80px 0px !important;
  }

  #main>nav {
    padding: 100px 80px 0px;
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .woocommerce-error {
    padding: 10px 30% 0px !important;
  }
}

.map_container {
  display: flex;
  width: 100%;
  height: 600px;
  background-color: #fff2d8;
}

.contacts_adress {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-top: -18px;
  margin-bottom: 32px;
}

.contacts_phone_number {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  width: auto;
  padding: 0px 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: #ff3e3e;
  border: 2px solid #ff3e3e;
  border-radius: 100px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: -10px;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .container {
    padding: 100px 25px 100px;
    flex-wrap: wrap;
  }

  .services_prop {
    padding: 0px 0px 100px;
  }

  .services_desc {
    padding: 0px 25px 0px;
  }

  .arrow {
    display: none !important;
  }

  .start_block {
    background-attachment: unset !important;
  }

  .points_wrapper {
    display: flex;
  }

  .start_block {
    box-shadow: 0px 0px 200px rgba(255, 62, 62, 0.85);
    z-index: 53;
    margin-top: 168px;
    height: 250px;
    /* aspect-ratio: 2/1; */
  }

  .services_title {
    font-size: 35px;
  }

  .services_prop>div:first-child {
    width: 100% !important;
  }

  .woocommerce-product-gallery__image>a>img {
    aspect-ratio: 3/4;
  }

  .services_info_wrapper {
    justify-content: center;
  }

  .marquee {
    top: 8.5%;
  }

  .points_wrapper {
    height: 40px;
    top: 440px;
  }

  .woocommerce-product-gallery__wrapper .points_wrapper {
    top: unset;
    bottom: 30px;
  }

  .start_prop {
    height: auto;
  }

  .start_title {
    height: auto;
  }

  .spec_start_title_block {
    height: auto;
  }

  .arrow {
    height: auto;
  }

  .start_prop {
    position: static;
    /* padding: 0px 25px 0px !important; */
    /* aspect-ratio: 2/1; */
    padding: 180px 25px 180px !important;

  }

  .burger_prop {
    padding: 100px 25px 200px;
  }

  #main>ul {
    padding: 50px 25px 0px;
    flex-wrap: wrap;
  }

  .order_cart_container {
    padding: 0px 25px 5px;
  }

  #customer_details {
    padding: 0px 25px 0px;
  }

  .woocommerce-error {
    padding: 10px 25px 0px !important;
  }

  .product-type-variable,
  .product-type-simple {
    padding: 0px 25px 100px;
    flex-wrap: wrap;
  }

  .header_prop {
    padding: 0px 25px 0px !important;
  }

  #main>nav {
    padding: 100px 25px 0px;
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: auto;
  }

  #main>nav::-webkit-scrollbar {
    position: relative;
    -webkit-appearance: none;
    -webkit-overflow-scrolling: touch;
    display: none;
    height: 3px;
  }

  .mobile_hide {
    display: none !important;
  }

  .mobile_show {
    display: flex !important;
  }

  .description_text {
    width: 100%;
    margin-top: 50px;
  }

  .option_block {
    flex-direction: column-reverse;
  }

  .option_text {
    width: 100%;
    margin-top: 50px;
    text-align: left;
  }

  .option_icon {
    width: 100%;
    justify-content: center;
  }

  .products_list {
    flex-wrap: wrap;
  }

  .product_item {
    width: 50%;
    margin-bottom: 20px;
  }

  .contacts_block {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

  .contacts_info {
    width: 100%;
  }

  .contacts_form {
    width: 100%;
    margin-bottom: 50px;
    padding: 30px 20px 20px;
  }

  .cart_modal {
    width: 100%;
  }

  #main>ul>li {
    width: 50%;
  }

  .woocommerce-product-gallery {
    width: 100% !important;
  }

  .entry-summary {
    width: 100% !important;
  }

  .details_bottom_item {
    justify-content: space-between;
  }

  .details_bottom_item_name,
  .details_bottom_item_desc {
    width: 30%;
  }

  .details_bottom_item_dots {
    width: 30%;
    overflow-x: hidden;
  }

  .modal_links {
    font-size: 18px;
  }

  #main>ul>li>a>span.price>ins>span>bdi,
  #main>ul>li>a>span>del>span>bdi,
  #main>ul>li>a>span>span>bdi {
    font-size: 16px !important;
  }

  .all_btns:hover {
    transform: scale(0.92) !important;
    -webkit-transform: scale(0.92) !important;
  }

  .all_btns:focus {
    transform: scale(0.92) !important;
    -webkit-transform: scale(0.92) !important;
  }

  /* .all_btns {
    transform: scale(0.92) !important;
  } */
  .page-numbers>li>a:hover,
  .page-numbers>li>span.current:hover {
    transform: scale(0.92) !important;
    -webkit-transform: scale(0.92) !important;
  }

  .page-numbers>li>a:focus,
  .page-numbers>li>span.current:focus {
    transform: scale(0.92) !important;
    -webkit-transform: scale(0.92) !important;
  }

  .start_title {
    font-size: 50px;
  }

  .services_image {
    width: 100%;
  }

  .services_desc {
    width: 100%;
    margin-top: 50px;
  }

  .service_item {
    width: 100%;
  }

  .main_title {
    font-size: 40px;
  }

  .service_icon_img {
    aspect-ratio: unset !important;
    height: 375px;
    max-height: 375px !important;
  }
}

@media screen and (min-width: 700px) and (max-width: 1023px) {
  .main_title {
    font-size: 60px;
  }

  .container,
  .burger_prop {
    padding: 100px 150px 100px;
    flex-wrap: wrap;
  }

  .start_prop {
    position: static;
    padding: 180px 150px 180px !important;
  }

  #main>ul {
    padding: 50px 150px 0px;
    flex-wrap: wrap;
  }

  .order_cart_container {
    padding: 0px 150px 5px;
  }
  
  .service_icon_img {
    aspect-ratio: 6/5 !important;
    height: unset !important;
  }

  #customer_details {
    padding: 0px 150px 0px;
  }

  .product-type-variable,
  .product-type-simple {
    padding: 0px 150px 100px;
    flex-wrap: wrap;
  }

  .header_prop {
    padding: 0px 150px 0px !important;
  }

  #main>nav {
    padding: 100px 150px 0px;
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .woocommerce-error {
    padding: 10px 30% 0px !important;
  }

  .header_prop {
    padding: 0px 25px !important;
  }

  .cart_container {
    padding: 0px 200px 81px;
  }

  .service_item {
    width: calc(50% - 22.5px);
  }
}