/*============= ALIGNES ===============*/

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
  color: var(--head-primary);
}

body {
  background-color: var(--head-secondary);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

.seo-block .seo-text::-webkit-scrollbar {
  width: 2px;
  background: var(--bg-colors-stroke);
}

.seo-block .seo-text::-webkit-scrollbar-thumb {
  background: var(--colors-primary-hover);
  border-radius: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

a {
  text-decoration: none;
  color: var(--head-primary);
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--colors-primary);
}

ul li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
  list-style-type: none;
}

ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
}

p {
  font-size: 18px;
  line-height: 130%;
}

h1.page-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 110%;
  margin-bottom: 60px;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0px 10px 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-primary);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.breadcrumbs span {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  transition: 0.3s;
  position: relative;
}

.breadcrumbs span:hover {
  color: var(--colors-primary-hover);
}

.breadcrumbs .current-item,
.breadcrumbs span .current-item span {
  pointer-events: none;
  color: var(--bg-colors-background-thirdly);
  border-bottom: 1px solid var(--head-primary);
}

main,
#primary {
  min-height: 70vh;
}

.page-id-80 #primary {
  display: none;
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  height: fit-content;
  outline: none;
  border-radius: 100px;
  padding: 17px 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--bg-colors-background-thirdly);
  border: 1px solid var(--bg-colors-background-thirdly);
  cursor: pointer;
  transition: 0.5s;
  background: var(--bg-colors-background);
  position: relative;
}

.btn.big-btn {
  padding: 27px 30px;
}

.btn.second {
  background: var(--colors-primary);
  border: unset;
  color: var(--bg-colors-background);
}

.btn:hover {
  background: var(--colors-primary-hover);
  color: var(--bg-colors-background);
  border-color: var(--colors-primary-hover);
}

.btn.second:hover {
  background: var(--colors-primary-hover);
  color: var(--bg-colors-background);
}

.btn.arrow {
  justify-content: flex-start;
  border: unset;
}

.btn.arrow:hover {
  background: var(--bg-colors-background);
  color: var(--colors-primary);
}

.btn.arrow:before {
  content: "";
  width: 12px;
  height: 12px;
  top: 27px;
  right: 30px;
  position: absolute;
  background-image: url(../images/btnArrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0);
  transition: 0.5s;
}

.btn.second.arrow:before {
  content: "";
  width: 12px;
  height: 12px;
  top: 30px;
  right: 30px;
  position: absolute;
  background-image: url(../images/btnArrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: unset;
}

.btn.arrow:hover:before {
  background-image: url(../images/arrowHover.png);
  filter: unset;
}

.btn.second.arrow:hover:before {
  background-image: url(../images/btnArrow.png);
}

.btn.second.arrow:hover {
  background-color: var(--colors-primary-hover);
  color: var(--bg-colors-background);
}

#more-btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 60px;
}

.text-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-holder,
.text-holder p,
.text-holder li {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}
.text-holder strong {
  font-weight: 700;
}
.text-holder ol,
.text-holder ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-holder ol {
  counter-reset: list;
}

.text-holder ol li {
  list-style-type: none;
  padding-left: 25px;
  position: relative;
  counter-increment: list;
}

.text-holder ol li:before {
  content: counter(list) ".";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  left: 2px;
  position: absolute;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

.text-holder ul li {
  padding-left: 20px;
  position: relative;
}

.text-holder ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  top: 7px;
  left: 1px;
  position: absolute;
  border-radius: 100%;
  background: var(--colors-primary-hover);
}

.text-holder h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  margin-bottom: 15px;
}

.text-holder h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 10px;
}

.text-holder h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-top: 10px;
}

.text-holder h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 10px;
}

.text-holder a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--colors-primary);
}

.nav {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1530px;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  width: 100%;
}

.controls .nav {
  margin-top: unset;
}

.controls .btn {
  height: auto;
}

.nav .nav-btns {
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
}

.nav .swiper-button-prev,
.nav .swiper-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  position: static;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--bg-colors-stroke);
  border-radius: 500px;
  transition: 0.5s;
  cursor: pointer;
  margin-top: unset;
  z-index: 2;
}

.nav .swiper-button-prev:hover,
.nav .swiper-button-next:hover {
  background: var(--head-primary);
}

.nav .swiper-button-prev svg,
.nav .swiper-button-next svg {
  width: 12px;
  height: 12px;
}

.nav .swiper-button-prev:after,
.nav .swiper-button-next:after {
  display: none;
}

.nav .swiper-button-prev path,
.nav .swiper-button-next path {
  transition: 0.5s;
}

.nav .swiper-button-prev:hover path,
.nav .swiper-button-next:hover path {
  stroke: var(--colors-primary);
}

.nav .swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: none;
  background: var(--bg-colors-stroke) !important;
}

.nav .swiper-button-disabled path {
  stroke: var(--text-main-text-secondary);
}

.nav .swiper-pagination {
  margin-left: auto;
  display: flex;
  align-items: center;
  width: fit-content !important;
  bottom: unset !important;
  position: static;
  gap: 5px;
  top: unset !important;
  flex-wrap: wrap;
  justify-content: center;
}

.nav .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--bg-colors-stroke);
  transition: 0.3s;
  opacity: 1;
  margin: unset !important;
}

.nav .swiper-pagination-bullet-active {
  background: var(--bg-colors-background-thirdly);
}

.swiper-slide {
  box-sizing: border-box !important;
}

.swiper-slide.templated {
  height: auto;
}

.swiper-slide.templated>div,
.swiper-slide.templated>li {
  height: 100% !important;
}

.pagination {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.prev.page-numbers {
  margin-right: 10px;
  position: relative;
}

.next.page-numbers {
  margin-left: 10px;
  position: relative;
}

.page-numbers {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--bg-colors-background-thirdly);
  transition: 0.5s;
  transition: 0.5s;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--bg-colors-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers:hover {
  color: var(--colors-primary);
}

.page-numbers.current {
  color: var(--bg-colors-background);
  background: var(--colors-primary);
  pointer-events: none;
}

.prev.page-numbers,
.next.page-numbers {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--colors-primary);
  transition: 0.3s;
  display: flex;
  align-items: center;
  padding: unset;
  justify-content: center;
}

.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.5s;
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: var(--colors-primary-hover);
}

.prev.page-numbers:hover path,
.next.page-numbers:hover path {
  fill: var(--head-secondary);
}

span.prev.page-numbers,
span.next.page-numbers {
  pointer-events: none;
  background: var(--bg-colors-stroke);
}

span.prev.page-numbers path,
span.next.page-numbers path {
  stroke: var(--text-main-text-secondary);
}

.privacy-policy .content {
  padding-bottom: 40px;
}

.privacy-policy .content p {
  font-size: 14px;
}

.privacy-policy .content h2 {
  font-size: 18px;
  margin: 15px 0px 5px 0px;
  font-weight: 600;
}

.privacy-policy .content h2:nth-child(1) {
  margin-top: unset;
}

.socs {
  display: flex;
  gap: 10px;
}

.socs .soc {
  background: var(--head-secondary);
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.socs .soc img,
.socs .soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 60%;
  max-height: 60%;
  transition: 0.5s;
}

.socs .soc:hover {
  background: var(--colors-primary-hover);
}

.socs .soc:hover img,
.socs .soc:hover svg {
  filter: brightness(0) invert(1);
}

.block-container {
  padding: 100px 0px;
}

.seo-block .wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.seo-block .second-text {
  width: auto;
  max-width: 230px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

.seo-block .block-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.seo-block .right-side {
  display: flex;
  flex-direction: column;
  width: auto;
  max-width: 880px;
}

.seo-block .main-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 15px;
}

.seo-block .seo-text {
  height: 306px;
  overflow: auto;
  padding-right: 15px;
}

.seo-block .seo-gallery {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.seo-block .gallery-item {
  width: calc((100% - 60px) / 3);
  display: flex;
  height: auto;
  max-height: 340px;
  cursor: pointer;
  flex-grow: 1;
}

.seo-block .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 20px 50px -20px rgba(117, 43, 87, 0.1);
  background: var(--bg-colors-background);
}

#header .woo-mobile-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background: var(--bg-colors-background);
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  z-index: 98;
}

#header .header-top {
  background: var(--bg-colors-background-secondary);
}

#header .header-top-wrapper {
  display: flex;
  padding: 4px 0px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#header .header-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--text-main-text-primary);
  max-width: 430px;
}

#header .header-right-side {
  display: flex;
  gap: 20px;
  align-items: center;
}

#header .info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

#header .header-phone {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

#header .header-phone:hover {
  color: var(--colors-primary-hover);
}

#header .info-icon {
  width: 16px;
  height: 16px;
  display: flex;
}

#header .info-icon img,
#header .info-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

#header .header-bot-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
}

#header .header-bot-wrapper .btn {
  margin-right: -5px;
}

#header .logo-holder {
  width: auto;
  max-width: 200px;
  display: flex;
  max-height: 90px;
}

#header .logo-holder svg,
#header .logo-holder img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

#header .header-cat-holder {
  position: relative;
  cursor: pointer;
  min-width: fit-content;
}

#header .header-cat-btn {
  padding: 17px 24px;
  display: flex;
  gap: 5px;
  align-items: center;
  border-radius: 100px;
  background: var(--colors-primary-hover);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--bg-colors-background);
  width: fit-content;
  transition: 0.5s;
}

#header .header-cat-btn:hover {
  background: var(--colors-primary-hover);
}

#header .header-cat-holder .header-menu {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: fit-content;
  width: auto;
  min-width: 300px;
  max-width: 450px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-colors-background);
  box-shadow: 0 20px 50px -20px rgba(117, 43, 87, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

#header .header-cat-holder .header-menu.active {
  opacity: 1;
  visibility: visible;
}

#header .header-cat-btn .icon {
  height: 14px;
}

#header .shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 100%;
  border: 1px solid var(--bg-colors-background-thirdly);
}

#header .shop-btn svg {
  width: 16px;
  height: 16px;
}

#header .shop-btn path {
  transition: 0.5s;
}

#header .shop-btn.cart:hover {
  background: var(--colors-primary-hover);
  border-color: var(--colors-primary-hover);
}

#header .shop-btn.cart:hover path {
  stroke: var(--bg-colors-background);
}

#header .shop-btn__counter {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  text-align: center;
  color: var(--bg-colors-background);
  transition: 0.5s;
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 14px;
  height: 15px;
  border-radius: 50px;
  background: var(--colors-secondary);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .header-menu {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: fit-content;
}

#header .header-wrapper .nav-menu-element a {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

#header .header-wrapper .nav-menu-element:before {
  content: "";
  width: 0;
  height: 2px;
  transition: 0.5s;
  bottom: -2px;
  left: 0;
  background: var(--head-secondary);
  position: absolute;
  pointer-events: none;
}

#header .header-wrapper .nav-menu-element:hover {
  color: var(--colors-primary-hover);
}

#header .header-wrapper .nav-menu-element:hover:before {
  width: 100%;
}

#header .header-wrapper .nav-menu-element.has-childs>a:before {
  content: "";
  width: 10px;
  height: 6px;
  top: 10px;
  right: 0;
  background-image: url(../images/menuClosed.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

#header .header-wrapper .nav-menu-element:hover a {
  color: var(--head-secondary);
}

#header .header-wrapper .nav-menu-element {
  position: relative;
}

#header .header-menu .sub-menu {
  position: absolute;
  top: 29px;
  width: max-content;
  height: max-content;
  min-width: 340px;
  max-width: 620px;
  padding: 20px;
  left: 0%;
  right: 0;
  opacity: 0;
  transform: translate(0%, 0px);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--head-primary);
}

#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  visibility: visible;
  z-index: 100;
}

#header .dgwt-wcas-search-wrapp {
  max-width: 795px;
  flex-grow: 1;
  position: relative;
  padding: unset;
  background: unset;
  font-size: unset;
  margin: unset;
  max-height: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  border: unset;
  border: 1px solid var(--bg-colors-background-secondary);
  background: var(--bg-colors-background-secondary);
  border-radius: 100px;
  cursor: pointer;
}

#header .dgwt-wcas-search-wrapp.active {
  display: block;
  width: 500px;
}

#header .dgwt-wcas-search-form {
  height: 100%;
  flex-grow: 1;
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  background: transparent;
  padding: unset;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}

#header .dgwt-wcas-style-pirx:hover {
  border-color: var(--colors-primary-hover);
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
  background: unset;
  border-radius: unset;
  padding: 14px 25px 14px 27px;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  cursor: pointer;
  outline: none;
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  transition: 0.5s;
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  position: static;
  height: 100%;
  cursor: pointer;
  min-height: unset;
  width: fit-content;
  transition: 0.5s;
  margin-right: 26px;
  margin-left: 15px;
  width: 16px;
  min-width: 16px;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
  background: transparent !important;
  box-shadow: unset !important;
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit path {
  transition: 0.5s;
  fill: transparent !important;
}

#header .search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  background: var(--background-light);
  border-radius: 10px;
}

#header .dgwt-wcas-close:hover {
  opacity: unset;
}

#header .dgwt-wcas-search-focused input {
  border: unset !important;
  outline: none;
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-preloader {
  margin-right: unset;
  right: 5px !important;
}

.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  margin-top: 2px;
  border-radius: 10px;
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
  width: 22px;
  height: 22px;
}

/*================ MOBILE MNU Start =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 30px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: var(--colors-primary);
  width: 24px;
  height: 2px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--colors-primary-hover);
}

#header .burger.open_menu.clicked span {
  background-color: var(--bg-colors-background);
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background: var(--bg-colors-background);
  padding: 30px 15px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow: auto;
}

#header #mobile-mnu #close-mnu {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
}

#header #mobile-mnu #close-mnu svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

#header #mobile-mnu #close-mnu path {
  fill: var(--colors-primary);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}

#header #mobile-mnu a:hover {
  color: var(--head-primary);
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
}

#header #mobile-mnu .menuTop .nav-menu-element {
  margin-top: 5px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  color: var(--head-primary);
  position: relative;
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--colors-primary);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--colors-primary);
}

#header #mobile-mnu .menuTop .nav-menu-element.has-childs>a {
  position: relative;
}

#header #mobile-mnu .menuTop .sub-menu .nav-menu-element a span {
  font-size: 13px;
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--head-primary);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--head-primary);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu .logo-holder {
  margin-bottom: 10px;
  margin-top: unset;
  align-items: flex-start;
  justify-content: flex-start;
}

#header #mobile-mnu .site-name-holder {
  order: unset;
  width: max-content;
  max-width: unset;
}

#header #mobile-mnu .site-name,
#header #mobile-mnu a,
#header #mobile-mnu .site-subtitle {
  color: var(--head-primary);
}

#header #mobile-mnu .soc-holder {
  margin-top: 10px;
  margin-left: unset;
  display: flex;
  gap: 10px;
  align-items: center;
}

#header #mobile-mnu .soc {
  width: 35px;
  height: 35px;
  display: flex;
  border-radius: 5px;
  background: var(--background);
  align-items: center;
  justify-content: center;
}

#header #mobile-mnu .soc img,
#header #mobile-mnu .soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}

#header #mobile-mnu .sub-menu {
  display: none;
}

#header #mobile-mnu .sub-menu .nav-menu-element a {
  padding-left: 10px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
}

#header #mobile-mnu .sub-menu .nav-menu-element a:before {
  content: "";
  width: 5px;
  height: 1px;
  top: 9px;
  left: 0;
  position: absolute;
  background: var(--head-primary);
}

#header #mobile-mnu .phones-holder {
  margin: 15px 0px 5px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header #mobile-mnu .nav-menu-element.has-childs>a::before {
  right: -14px;
}

#header #mobile-mnu .nav-menu-element.has-childs>a::after {
  right: -18px;
}

#header #mobile-mnu .phones-holder a,
#header #mobile-mnu .emails-holder a {
  font-size: 14px;
  color: var(--colors-primary);
  font-weight: 600;
}

#header #mobile-mnu .mobile-logo-holder {
  display: flex;
  gap: 5px;
  align-items: center;
}

#header #mobile-mnu .logo-holder.second-logo {
  max-height: 40px;
}

#header #mobile-mnu .logo-holder.second-logo img {
  height: auto;
}

/*================ MOBILE MNU End =============*/







/*============ FOOTER Start ===============*/
#footer {
  background-size: cover;
}

#footer .footer-top-wrapper {
  display: flex;
  min-height: 710px;
  gap: 30px;
  padding: 200px 0px 60px 0px;
}

#footer .footer-top-wrapper.error-content {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: unset;
}

#footer .footer-wrapper.contacts .footer-top-wrapper {
  padding-top: unset;
  min-height: 510px;
}

#footer .breadcrumbs,
#footer .breadcrumbs span {
  color: var(--bg-colors-background);
}

#footer h1.page-title {
  color: var(--bg-colors-background);
}

#footer .footer-top-wrapper.error-content .error-title {
  width: 100%;
}

#footer .footer-wrapper.contacts .top-right-side {
  flex-grow: 1;
  height: 450px;
}

#footer .footer-wrapper.contacts .top-right-side .map-holder {
  height: 100%;
}

#footer .footer-top-wrapper.error-content .error-title svg {
  width: 100% !important;
  object-fit: contain;
  display: block;
  height: fit-content;
}

#footer .footer-top-wrapper.error-content .error-subtitle {
  font-weight: 600;
  font-size: 60px;
  line-height: 110%;
  color: var(--bg-colors-background);
  margin-bottom: 20px;
  margin-top: 90px;
}

#footer .footer-top-wrapper.error-content .error-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--bg-colors-background);
  max-width: 750px;
  margin-bottom: 60px;
}

#footer .footer-top-wrapper.error-content .btn {
  width: fit-content;
}

#footer .footer-top .top-left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 50%;
}

#footer .footer-top .top-info-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer .footer-top .top-info-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background);
}

#footer .footer-top .footer-top-value,
#footer .footer-top .footer-top-value p {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  color: var(--bg-colors-background);
}

#footer .footer-top .footer-top-value.phones {
  font-size: 60px;
  width: fit-content;
}

#footer .footer-top .footer-top-value.phones:hover {
  color: var(--colors-primary);
}

#footer .footer-top .top-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer .footer-top .top-right-side {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 50%;
}

#footer .footer-bot-wrapper {
  padding: 50px 0px 40px 0px;
  display: flex;
  gap: 10px;
}

#footer .left-side {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 230px;
  gap: 30px;
}

#footer .logo-holder {
  width: 230px;
  display: flex;
  height: 100px;
}

#footer .logo-holder img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

#footer .info-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer .info-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background);
  opacity: 0.5;
}

#footer .footer-value,
#footer .footer-value p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
}

#footer .values {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#footer .time {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .time p {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background);
}

#footer .menu-holder {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

#footer .menu-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#footer .menu-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background);
  opacity: 0.5;
}

#footer .foot-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .reqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .reqs p {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background);
}

#footer .form-holder {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  flex-grow: 1;
}

#footer .form-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background);
  margin-bottom: 10px;
}

#footer .form-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
  margin-bottom: 20px;
}

#footer .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .btn {
  width: 100%;
  border: unset;
  padding: 27px;
}

#footer .btn:hover {
  background: var(--bg-colors-background);
  color: var(--colors-primary-hover);
}

#footer input {
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
}

#footer input {
  border-color: rgba(255, 255, 255, 0.2);
}

#footer input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
}

#footer input:hover {
  background: var(--bg-colors-background);
  border-color: var(--bg-colors-background);
  color: var(--bg-colors-background-thirdly);
}

#footer input:hover::placeholder {
  color: var(--bg-colors-background-thirdly);
}

#footer .footer-bot {
  backdrop-filter: blur(25px);
}

#footer .nav-menu-element {
  height: fit-content;
}

#footer .nav-menu-element a {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background);
  display: block;
  width: fit-content;
}

#footer .nav-menu-element a:hover {
  color: var(--colors-primary-hover);
}

#footer .footer-default {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0px;
}

#footer .privacy-holder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
}

#footer .privacy-holder:hover {
  color: var(--colors-primary);
}

.example-holder a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
}

.example-holder a:hover {
  color: var(--colors-primary);
}

.glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background: var(--bg-colors-background);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}

.glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.7s ease-in;
  background: linear-gradient(90deg,
      #fe6604 10%,
      #ee0a76 30%,
      #ee0a76 60%,
      #fe6604 101%) repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

.glogo:hover:before {
  animation-name: unset;
  transform: translateX(0);
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

#footer .rights {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
}

/*============ FOOTER End ===============*/

/* ============== MODAL Start ============= */
.theme-modal {
  display: none;
  position: relative;
}

.theme-modal .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 10px;
}

.theme-modal .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-primary);
  margin-bottom: 40px;
}

#modal-success.theme-modal .subtitle {
  margin-bottom: unset;
}

.fancybox__content>.f-button.is-close-btn {
  top: 10px !important;
  right: 10px !important;
  --f-button-width: 16px !important;
  --f-button-height: 16px !important;
  --f-button-border-radius: unset !important;
  --f-button-color: unset !important;
  --f-button-hover-color: unset !important;
  --f-button-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-svg-width: 100% !important;
  --f-button-svg-height: 100% !important;
  --f-button-svg-stroke-width: 0;
}

.theme-modal.fancybox__content {
  width: 490px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 50px;
  background: var(--bg-colors-background);
  overflow: auto;
}

.fancybox__content .f-button svg {
  stroke: white !important;
  transition: 0.5s;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding: unset !important;
}

.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: 0.5s;
}

.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: var(--colors-primary-hover);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-top {
  display: flex;
  gap: 10px;
}

button {
  border: unset;
}

button,
input {
  outline: none;
}

.form .input-wrapper:has(.error) {
  border-color: red;
}

.form input {
  transition: 0.3s;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: fit-content;
}

.form .input-wrapper:has(textarea) {
  height: 150px;
}

.form input,
.form textarea {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  cursor: pointer;
  background: transparent;
  transition: 0.5s;
  width: 100%;
  padding: 22px 27px;
  border-radius: 100px;
  border: 1px solid var(--bg-colors-background-secondary);
  background: var(--bg-colors-background-secondary);
}

.form textarea {
  height: 150px;
  width: 100%;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  resize: none;
  border-radius: 35px;
}

.form input:hover,
.form textarea:hover {
  border-color: var(--bg-colors-stroke);
  background: var(--bg-colors-stroke);
}

.form input:hover::placeholder,
.form textarea:hover::placeholder {
  color: var(--text-main-text-secondary) !important;
}

.form input.error,
.form textarea.error {
  border-color: red !important;
}

.form input::placeholder,
.form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  transition: 0.3s;
}

.theme-modal .btn {
  width: 100%;
  margin-top: 20px;
  padding: 27px;
}

.form .privacy-policy {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
}

.form .privacy-policy a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--colors-primary);
}

.form .privacy-policy a:hover {
  color: var(--colors-primary-hover);
}

body .fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.4) !important;
}

.input-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

.form_input.file {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form #file {
  display: none;
}

.form .file span {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}

.form .file {
  padding: 12px 30px;
  background: var(--head-secondary);
  border: 1px solid var(--head-primary);
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.form .file:hover {
  background: var(--colors-primary-hover);
  color: var(--head-secondary);
  border-color: var(--colors-primary-hover);
}

.form .file-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

.form .form-bot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form .form-bot .btn {
  margin-top: 10px;
}

label[for="file"] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input.file input {
  display: contents;
}

.form-input.file span {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
}

.form-input.file:hover span {
  color: var(--background);
}

/* ============== MODAL End ============= */








.error404 #main {
  min-height: 60vh;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: center;
}

.error-wrapper .error-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 15px;
}

.error-wrapper .error-subtitle {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--text-main-text-primary);
}

.error-wrapper .btn {
  margin-left: auto;
  margin-right: auto;
}

.error-wrapper .error-img {
  width: 100%;
  display: flex;
  height: auto;
  max-height: 300px;
}

.error-wrapper .error-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}







/* ============== Archive-decisions Start ============= */
#archive-decisions .decisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 100px;
  gap: 30px;
}

.decisions-item-template {
  height: 490px;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--bg-colors-stroke);
}

.decisions-item-template:before {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.63) 51%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
  transition: 0.5s;
  opacity: 0.3;
}

.decisions-item-template:hover:before {
  opacity: 0.6;
}

.decisions-item-template .decisions-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 4;
}

.decisions-item-template .decisions-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.decisions-item-template .decisions-info {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: relative;
  z-index: 5;
  transition: 0.5s;
}

.decisions-item-template:hover .decisions-info {
  transform: unset;
}

.decisions-item-template .decisions-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background);
}

.decisions-item-template .decisions-short-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background);
  display: none;
  transition: 0.5s;
  margin-top: 10px;
}

.decisions-item-template:hover .decisions-short-desc {
  display: block;
}

.single-page.decisions .page-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 60px;
}

.single-page.decisions .page-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: calc(100% - 520px);
}

.single-page.decisions .menu-holder {
  position: sticky;
  top: 160px;
  height: fit-content;
  width: 490px;
  min-width: 490px;
}

.single-page.decisions .menu-holder .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-page.decisions .menu-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--bg-colors-background-thirdly);
  border: 1px solid var(--bg-colors-background-thirdly);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.5s;
  padding: 17px;
}

.single-page.decisions .menu-item:hover {
  background: var(--colors-primary);
  color: var(--bg-colors-background);
  border-color: var(--colors-primary);
}

.single-page.decisions .page-wrapper .block-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 20px;
}

.single-page.decisions .block-item-img {
  margin-top: 40px;
  width: 100%;
  display: flex;
  height: auto;
  max-height: 700px;
}

.single-page.decisions .block-item-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-page.decisions .blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ============== Archive-decisions End ============= */








/* ============== Archive-news Start ============= */
#archive-news .news-holder {
  padding-bottom: 120px;
}

#archive-news .news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-item-template {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--bg-colors-stroke);
}

.news-item-template .news-img {
  width: 100%;
  height: auto;
  display: flex;
  max-height: 350px;
  overflow: hidden;
}

.news-item-template .news-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: 0.5s;
}

.news-item-template:hover .news-img img {
  transform: scale(1.1);
}

.news-item-template .news-info {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1;
}

.news-item-template .news-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 10px;
}

.news-item-template .news-short-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  margin-bottom: 20px;
}

.news-item-template .info-bot {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-top: auto;
}

.news-item-template .icon {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}

.news-item-template .icon svg path {
  transition: 0.5s;
}

.news-item-template .icon:hover {
  color: var(--colors-primary);
}

.news-item-template .icon:hover svg path {
  stroke: var(--colors-primary);
}

.news-item-template .news-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  padding-left: 17px;
  position: relative;
}

.news-item-template .news-date:before {
  content: "";
  width: 12px;
  height: 12px;
  top: 1px;
  left: 0;
  position: absolute;
  background-image: url(../images/calendar.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.single-page.news .main-content {
  max-width: 1010px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 100px;
}

.single-page.news .main-content .news-img {
  display: flex;
  width: 100%;
  height: auto;
  max-height: 600px;
}

.single-page.news .main-content .news-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-page.news .main-content .news-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.single-page.news .main-content .gallery-img {
  width: calc((100% - 30px) / 2);
  flex-grow: 1;
  display: flex;
  height: auto;
  max-height: 340px;
}

.single-page.news .main-content .gallery-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-page.news .bottom-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
}

.single-page.news .news-single-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: var(--text-main-text-secondary);
}

/* ============== Archive-news End ============= */








/* ============== Woocommerce Start ============= */
#noticer {
  position: fixed;
  top: 200px;
  right: 0;
  width: fit-content;
  max-width: 200px;
  border-radius: 5px 0px 0px 5px;
  border: 1px solid var(--bg-colors-background-thirdly);
  background: var(--colors-primary);
  color: var(--bg-colors-background);
  font-size: 12px;
  padding: 5px;
  transition: 0.5s;
  z-index: 98;
  transform: translateX(100%);
}

#noticer.active {
  transform: unset;
}

li.product.type-product {
  display: flex;
  flex-direction: column;
  height: 100%;
}

li.product.type-product .product-item-template {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--bg-colors-stroke);
}

li.product.type-product .product-item-template a {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

li.product.type-product .product-item-template .product-img {
  width: 100%;
  display: flex;
  height: auto;
  max-height: 360px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

li.product.type-product .product-item-template .product-img img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
  aspect-ratio: 1/1;
}

li.product.type-product .product-item-template:hover .product-img img {
  transform: scale(1.1);
}

li.product.type-product .product-item-template .woocommerce-loop-product__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-top: 10px;
}

li.product.type-product .product-item-template .product-sku {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
}

li.product.type-product .product-item-template .product-info {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  flex-grow: 1;
  padding: 20px;
}

li.product.type-product .price {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 10px;
}

li.product.type-product .price ins,
li.product.type-product .price del {
  text-decoration: unset;
}

li.product.type-product .price bdi,
li.product.type-product .price bdi span {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

li.product.type-product .price ins bdi,
li.product.type-product .price ins bdi span {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

li.product.type-product .price del bdi,
li.product.type-product .price del bdi span {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-decoration: line-through;
  color: var(--text-main-text-secondary);
}

li.product.type-product .control-btns form {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 0px 20px 20px 20px;
}

li.product.type-product .control-btns .btn {
  flex-grow: 1;
  padding: 17px 10px;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  padding: 5px;
  background: transparent;
  border: 1px solid var(--bg-colors-stroke);
  border-radius: 100px;
  gap: 5px;
}

.qty-wrapper .qty-button {
  border: 1px solid var(--bg-colors-stroke);
  border-radius: 100px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  background: transparent;
}

.qty-wrapper .qty-button path {
  transition: 0.5s;
}

.qty-wrapper .qty-button:hover path {
  stroke: var(--colors-primary);
}

.qty-wrapper .qty-button[disabled] {
  background: var(--bg-colors-stroke);
  pointer-events: none;
}

.qty-wrapper .qty-button[disabled] path {
  stroke: var(--text-main-text-secondary);
}

.qty-wrapper .quantity {
  width: 100%;
  display: flex;
  justify-content: center;
}

.qty-wrapper input {
  width: fit-content;
  flex-grow: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  color: var(--text-main-text-primary);
  display: flex;
  background: transparent;
  border: unset;
  outline: none;
  max-width: 50px;
}

.cart-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 100px;
}

.cart-wrapper .calls-wrapper {
  width: 360px;
  min-width: 360px;
  position: sticky;
  top: 170px;
  height: fit-content;
}

.cart-wrapper .woocommerce-cart-form {
  width: calc(100% - 390px);
}

.cart-wrapper .shop_table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-wrapper .cart_item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--bg-colors-stroke);
}

.cart-wrapper .product-thumbnail {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border: 1px solid var(--bg-colors-stroke);
}

.cart-wrapper .product-thumbnail a {
  width: 100%;
  height: 100%;
  display: flex;
}

.cart-wrapper .product-thumbnail a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.cart-wrapper .actions {
  display: none;
}

.cart-wrapper .product-name {
  max-width: 550px;
}

.cart-wrapper .product-name a {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.cart-wrapper .product-price {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  width: auto;
  min-width: 115px;
  position: relative;
}

.cart-wrapper .product-price ins,
.cart-wrapper .product-price del {
  text-decoration: unset;
}

.cart-wrapper .product-price del {
  padding-right: 45px;
}

.cart-wrapper .product-price .regular-price,
.cart-wrapper .product-price .sale-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.cart-wrapper .product-price .orig-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  text-decoration: line-through;
  color: var(--text-main-text-secondary);
}

.cart-wrapper .product-price .sale-holder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-wrapper .remove {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-colors-stroke);
}

.cart-wrapper .remove path {
  transition: 0.5s;
}

.cart-wrapper .remove:hover path {
  stroke: var(--colors-primary);
}

.cart-wrapper .price-percent {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  color: var(--bg-colors-background-secondary);
  border-radius: 5px;
  padding: 5px;
  background: var(--colors-primary);
  text-decoration: none !important;
}

.woocommerce-cart h1.page-title {
  margin-bottom: 40px;
}

.woocommerce-notices-wrapper {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: unset;
  outline: none;
}

.woocommerce-notices-wrapper .woocommerce-message {
  font-size: 12px;
  border: unset;
  outline: none;
}

.cart_totals {
  display: flex;
  flex-direction: column;
  background: var(--bg-colors-background-secondary);
  padding: 20px;
}

.cart_totals .product-count-total {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  border-bottom: 2px solid var(--bg-colors-stroke);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.cart_totals .product-count-total .counter {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--bg-colors-background);
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 100%;
  background: var(--colors-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_totals .product-count-total span {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.cart_totals .btn {
  width: 100%;
  margin-top: 20px;
}

.cart_totals .full-price {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

.cart_totals .full-price span {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--bg-colors-background-thirdly);
}

.cart_totals .full-price .total-counter {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: var(--bg-colors-background-thirdly);
}

.woocommerce-checkout h1.page-title {
  margin-bottom: 40px;
}

.woocommerce-checkout form.woocommerce-checkout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 100px;
  flex-wrap: wrap;
}

.woocommerce-checkout form.woocommerce-checkout .woocommerce-NoticeGroup {
  width: 100%;
}

.woocommerce-checkout .woocommerce-error {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.woocommerce-checkout .woocommerce-error li {
  height: fit-content;
}

.woocommerce-checkout .woocommerce-error li a {
  display: block;
}

.woocommerce-checkout .woocommerce-error li a,
.woocommerce-checkout .woocommerce-error li a strong {
  font-size: 12px;
}

.woocommerce-checkout .form-checkout-left-side {
  width: calc(100% - 390px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.woocommerce-checkout .form-checkout-right-side {
  width: 360px;
  min-width: 360px;
}

.woocommerce-checkout .col-1 {
  border: 1px solid var(--bg-colors-stroke);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.woocommerce-checkout .commect-block .form-row {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bg-colors-stroke);
  padding: 30px;
}

.woocommerce-checkout label[for="order_comments"] {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 20px;
}

.woocommerce-checkout label[for="order_comments"] span {
  display: none;
}

.woocommerce-checkout .commect-block .woocommerce-input-wrapper textarea {
  padding: 27px;
  background: var(--bg-colors-background-secondary);
  height: 150px;
  resize: none;
  width: 100%;
  border: unset;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  transition: 0.5s;
}

.woocommerce-checkout .commect-block .woocommerce-input-wrapper textarea:hover {
  background: var(--bg-colors-stroke);
}

.woocommerce-checkout .commect-block .woocommerce-input-wrapper textarea ::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
}

.woocommerce-checkout .form-checkout-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p {
  width: calc((100% - 20px) / 3);
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p span,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p input {
  width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper input {
  padding: 14px 27px;
  background: var(--bg-colors-background-secondary);
  border-radius: 100px;
  border: 1px solid var(--bg-colors-background-secondary);
  transition: 0.5s;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .woocommerce-invalid-required-field input {
  border-color: red;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper input:hover {
  background-color: var(--bg-colors-stroke);
}

.woocommerce-checkout .add-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid var(--bg-colors-stroke);
  padding: 30px;
}

.woocommerce-checkout #shipping_method,
.woocommerce-checkout .wc_payment_methods {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-checkout #shipping_method li,
.woocommerce-checkout .wc_payment_methods li {
  flex-grow: 1;
  position: relative;
}

.woocommerce-checkout #shipping_method li input,
.woocommerce-checkout .wc_payment_methods li input {
  display: contents;
}

.woocommerce-checkout #shipping_method label,
.woocommerce-checkout .wc_payment_methods label {
  background: var(--bg-colors-background-secondary);
  min-height: 100px;
  padding: 30px;
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  position: relative;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.woocommerce-checkout .wc_payment_methods label {
  min-height: 80px;
}

.woocommerce-checkout .checkout-inline-error-message,
.woocommerce-checkout .place-order {
  display: none;
}

.woocommerce-checkout #shipping_method label span,
.woocommerce-checkout .wc_payment_methods label span {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--text-main-text-primary);
}

.woocommerce-checkout #shipping_method label:before,
.woocommerce-checkout .wc_payment_methods label:before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid var(--text-main-text-primary);
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  transition: 0.5s;
  border-radius: 100%;
}

.woocommerce-checkout #shipping_method label:after,
.woocommerce-checkout .wc_payment_methods label:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background: transparent;
  border: 8px solid var(--colors-primary);
  border-radius: 100%;
  transition: 0.5s;
  opacity: 0;
}

.woocommerce-checkout #shipping_method li input:checked+label:before,
.woocommerce-checkout .wc_payment_methods li input:checked+label:before {
  border-color: var(--colors-primary);
}

.woocommerce-checkout #shipping_method li input:checked+label:after,
.woocommerce-checkout .wc_payment_methods li input:checked+label:after {
  opacity: 1;
}

.woocommerce-checkout li:has(input[value="local_pickup:1"]):before {
  content: "Бесплатно";
  width: calc(100% - 60px);
  height: fit-content;
  left: 30px;
  top: 55px;
  position: absolute;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--text-main-text-primary);
  pointer-events: none;
  z-index: 1;
}

.woocommerce-order-received .woocommerce-order {
  padding-bottom: 40px;
}

.woocommerce-order-received .woocommerce-order tr th {
  text-align: left;
  font-size: 14px;
}

.woocommerce-order-received .woocommerce-order tr {
  border-bottom: 1px solid var(--colors-primary);
  padding-bottom: 3px;
  display: block;
  width: fit-content;
}

.woocommerce-order-received .woocommerce-order .woocommerce-table--order-details tr:has(.order-actions--heading) {
  display: none;
}

.woocommerce-order-received .woocommerce-order-overview {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 5px;
  background: var(--bg-colors-background-secondary);
  gap: 10px;
  margin-bottom: 40px;
}

.woocommerce-order-received .woocommerce-notice.woocommerce-notice--success {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.woocommerce-order-received .woocommerce-order-overview li {
  padding-bottom: 5px;
  padding-top: 5px;
  border-bottom: 1px solid var(--text-main-text-secondary);
  font-size: 14px;
}

.woocommerce-order-received .woocommerce-order-overview li strong,
.woocommerce-order-received .woocommerce-order-overview li bdi,
.woocommerce-order-received .woocommerce-order-overview li bdi span,
.woocommerce-order-received .order-details-item bdi span,
.woocommerce-order-received .order-details-item bdi {
  color: var(--colors-primary);
  font-weight: 600;
}

.woocommerce-order-received .woocommerce-order-overview li:nth-child(1) {
  padding-top: unset;
}

.woocommerce-order-received .woocommerce-order-overview li:last-child {
  border-bottom: unset;
  padding-bottom: unset;
}

.woocommerce-order-received .woocommerce-order-details h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.woocommerce-order-received .order-details-item {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--white);
  font-size: 14px;
  padding: 5px 0px;
}

.woocommerce-order-received .order-details-item:first-child {
  padding-top: unset;
}

.woocommerce-order-received .order-details-item:last-child {
  padding-bottom: unset;
  border-bottom: unset;
}

.woocommerce-order-received .order-details-item span {
  white-space: nowrap;
}

.woocommerce-order-received .table-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 10px;
  background: var(--background-light);
  gap: 10px;
}

.woocommerce-order-received .order-totals-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-order-received .totals-item {
  display: flex;
  gap: 5px;
}

.woocommerce-order-received .totals-item .totals-item-price,
.woocommerce-order-received .totals-item .totals-item-price bdi,
.woocommerce-order-received .totals-item .totals-item-price bdi span,
.woocommerce-order-received .totals-item .totals-item-price span,
.woocommerce-order-received .totals-item .totals-item-price small {
  color: var(--colors-primary);
  font-weight: 600;
  font-size: 16px;
}

.woocommerce-order-received .order-notes-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.woocommerce-order-received .notes-title {
  margin-bottom: 0px;
  font-size: 20px;
}

.woocommerce-order-received .notes-text {
  border-radius: 10px;
  padding: 10px;
  background: var(--background-light);
  min-height: 100px;
  width: 100%;
}

.woocommerce-order-received .col2-set {
  gap: 20px;
}

.woocommerce-order-received .woocommerce-column__title {
  font-size: 18px;
  margin-bottom: 10px;
}

.woocommerce-order-received .col2-set address,
.woocommerce-order-received .col2-set p {
  font-size: 14px;
  font-style: normal;
}

.woocommerce-order-received .order-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.woocommerce-order-received .order-item-name {
  font-size: 18px;
  font-weight: 700;
}

.woocommerce-order-received .order-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-order-received .woocommerce-order-details thead {
  display: none;
}

.woocommerce-order-received .woocommerce-order-details tbody a {
  font-size: 14px;
  color: var(--text-main-text-secondary);
}

.woocommerce-order-received .woocommerce-order-details tbody a:hover {
  color: var(--colors-primary);
}

.woocommerce-order-received .woocommerce-order-details tbody .product-quantity {
  margin-right: 15px;
  font-size: 14px;
  font-weight: 600;
}

.woocommerce-order-received .woocommerce-order-details tbody td {
  position: relative;
}

.woocommerce-order-received .woocommerce-order-details tbody td.product-total {
  white-space: nowrap;
}

.woocommerce-order-received .woocommerce-order-details tbody .product-name:before {
  content: "=";
  top: -3px;
  right: 1px;
  position: absolute;
  width: 10px;
  height: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--text-main-text-secondary);
}

.woocommerce-order-received .woocommerce-order-details tbody bdi,
.woocommerce-order-received .woocommerce-order-details tbody bdi span {
  font-size: 16px;
  font-weight: 600;
  color: var(--colors-primary);
}

.woocommerce-order-received .woocommerce-order-details tfoot th {
  font-size: 14px;
  margin-right: 3px;
  color: var(--text-main-text-secondary);
}

.woocommerce-order-received .woocommerce-order-details tfoot td {
  font-size: 14px;
  color: var(--colors-primary);
}

.woocommerce-order-received .woocommerce-order-details tfoot td span {
  font-size: 16px;
  font-weight: 600;
  color: var(--colors-primary);
}

.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.woocommerce-order-received .woocommerce-column__title {
  font-size: 20px;
  font-weight: 600;
}

.woocommerce .return-to-shop {
  margin-top: 20px;
}

.woocommerce-order-received .order-view-payment-info,
.woocommerce-order-received .order-view-subline {
  display: flex;
  gap: 5px;
  align-items: center;
}

.woocommerce-order-received .order-customer-info {
  margin-top: 20px;
}

.woocommerce-order-received .head-element {
  font-size: 14px;
  color: var(--text-main-text-primary);
}

#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit path {
  fill: transparent;
}

.woocommerce-order .woocommerce-table--order-details {
  background: var(--bg-colors-background-secondary);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
}

.woocommerce-order .order-products-head {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.woocommerce-order .head-element {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  flex-grow: 1;
}

.woocommerce-order .head-element.second {
  max-width: 220px;
  width: 220px;
}

.woocommerce-order .order-product-item {
  display: flex;
  gap: 10px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  color: var(--text-main-text-primary);
}

.woocommerce-order .order-product-item a {
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  color: var(--text-main-text-primary);
}

.woocommerce-order .order-product-item a:hover {
  color: var(--colors-primary);
}

.woocommerce-order .order-product-item strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
}

.woocommerce-order .order-product-item span {
  margin-left: auto;
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-main-text-primary);
}

.woocommerce-order .order-product-item bdi,
.woocommerce-order .order-product-item bdi span {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-main-text-primary);
}

.woocommerce-order .order-view-subline {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--background-thirdly);
}

.woocommerce-order .order-view-subline:has(+.btn) {
  border-bottom: unset;
  padding-bottom: unset;
}

.woocommerce-order .order-view-subline .head-element {
  flex-grow: 1;
}

.woocommerce-order .order-line-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-main-text-primary);
  width: 220px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.woocommerce-order .order-line-value bdi,
.woocommerce-order .order-line-value bdi span,
.woocommerce-order .order-line-value strong,
.woocommerce-order .order-line-value a,
.woocommerce-order .order-line-value p {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-main-text-primary);
}

.woocommerce-order .pretense {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.woocommerce-order .order-customer-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.woocommerce-order .order-customer-item {
  display: flex;
  flex-direction: column;
}

.woocommerce-order .order-customer-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 125%;
  margin-bottom: 10px;
}

.woocommerce-order .customer-info-holder {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--bg-colors-background-secondary);
  min-height: 100px;
  gap: 20px;
}

.woocommerce-order .customer-info-item {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--text-main-text-primary);
  width: fit-content;
}

.woocommerce-order a.customer-info-item:hover {
  color: var(--colors-primary);
}

.products-holder .products.columns-3:has(.product-category) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 100px;
}

li.product-category.product {
  height: auto;
}

li.product-category.product a {
  display: flex;
  border: 1px solid var(--bg-colors-stroke);
  gap: 10px;
  height: 100%;
}

li.product-category.product .cat-info {
  display: flex;
  flex-direction: column;
  padding: 30px;
  width: 50%;
  height: auto;
}

li.product-category.product .cat-img-wrapper {
  display: flex;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

li.product-category.product .cat-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}

li.product-category.product .woocommerce-loop-category__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 10px;
  transition: 0.5s;
}

li.product-category.product:hover .woocommerce-loop-category__title {
  color: var(--colors-primary);
}

li.product-category.product .woocommerce-loop-category__title mark {
  display: none;
}

li.product-category.product .cat-icon {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--text-main-text-primary);
  transition: 0.5s;
}

li.product-category.product .cat-icon svg path {
  transition: 0.5s;
}

li.product-category.product .cat-icon:hover {
  color: var(--text-head-primary);
}

li.product-category.product .cat-icon:hover svg path {
  stroke: var(--text-head-primary);
}

#open-filter {
  display: none;
  position: fixed;
  bottom: 43%;
  left: 0px;
  width: fit-content;
  height: 20px;
  padding: 3px 5px;
  transform: rotate(90deg) translateY(36px);
  align-items: center;
  justify-content: center;
  background: var(--colors-primary);
  border-radius: 10px 10px 0px 0px;
  color: var(--bg-colors-background);
  font-size: 10px;
  z-index: 50;
  border: 1px solid var(--bg-colors-background);
  border-bottom: unset;
}

#sidebar-close {
  display: none;
}

.products-wrapper.tax-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 100px;
}

.products-wrapper .sidebar {
  width: 360px;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 170px;
  background: var(--bg-colors-background-secondary);
  height: fit-content;
}

.products-wrapper.tax-wrapper .products-holder {
  width: calc(100% - 390px);
}

.products-wrapper.tax-wrapper .products-holder ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.woocommerce.search-results .products-wrapper .products-holder {
  padding-bottom: 100px;
}

.woocommerce.search-results .products-wrapper .products-holder ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.products-wrapper .pagination {
  margin-top: 10px;
}

.products-wrapper .filters-widget {
  padding: 20px;
}

.products-wrapper .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  gap: 15px;
}

.products-wrapper .buttons .btn {
  width: 100%;
}

.products-wrapper .clear-filters {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--text-main-text-primary);
  display: flex;
  gap: 5px;
  align-items: center;
  transition: 0.5s;
  cursor: pointer;
}

.products-wrapper .clear-filters path {
  transition: 0.5s;
}

.products-wrapper .clear-filters:hover {
  color: var(--colors-primary);
}

.products-wrapper .clear-filters:hover path {
  stroke: var(--colors-primary);
}

.products-wrapper .price-title.filter-block-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 15px;
}

.products-wrapper .noUi-connects {
  height: 2px;
  background: var(--bg-colors-stroke);
}

.products-wrapper .noUi-connect {
  height: 100%;
  background: var(--colors-primary);
}

.products-wrapper .noUi-base {
  background: transparent;
  height: 2px;
  width: calc(100% - 10px);
}

.products-wrapper .noUi-target {
  background: transparent;
  border: unset;
  height: 2px;
  margin-bottom: 15px;
}

.products-wrapper .noUi-horizontal .noUi-handle {
  width: 8px;
  height: 8px;
  border: 1px solid var(--colors-primary);
  border-radius: 100%;
  background: white;
  top: -3px;
  box-shadow: unset;
  right: -8px;
}

.products-wrapper .noUi-horizontal .noUi-handle:after,
.products-wrapper .noUi-horizontal .noUi-handle:before {
  display: none;
}

.products-wrapper .inputs.price.range {
  display: flex;
  align-items: center;
  position: relative;
  gap: 110px;
  justify-content: space-between;
}

.products-wrapper .inputs.price.range:before {
  content: "";
  width: 100px;
  height: 1px;
  background-color: var(--bg-colors-stroke);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.products-wrapper .inputs.price.range .group {
  width: calc((100% - 110px) / 2);
}

.products-wrapper .inputs.price.range input {
  padding: 9px 10px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: var(--bg-colors-background-thirdly);
  border: unset;
  outline: none;
  width: 100%;
}

.products-wrapper .filter-block {
  padding-bottom: 20px;
}

.products-wrapper #close-filter {
  display: none;
}

.products-wrapper .filter-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  cursor: pointer;
}

.products-wrapper .filter-block-title.h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.products-wrapper .filter-block-toggler {
  width: 10px;
  height: 6px;
  background-image: url(../images/filterClosed.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s;
}

.products-wrapper .filter-block.opened .filter-block-toggler {
  background-image: url(../images/filterOpened.png);
}

.products-wrapper .inputs.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 15px;
}

.products-wrapper .inputs.checkboxes .group {
  cursor: pointer;
  width: fit-content;
}

.products-wrapper .inputs.checkboxes .group label {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-primary);
  padding-left: 29px;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}

.products-wrapper .inputs.checkboxes .group:hover label {
  color: var(--colors-primary);
}

.products-wrapper .inputs.checkboxes .group label:before {
  content: "";
  width: 22px;
  height: 22px;
  top: -2px;
  left: 0;
  position: absolute;
  border: 1px solid var(--text-main-text-primary);
  transition: 0.5s;
  pointer-events: none;
  border-radius: 5px;
}

.products-wrapper .inputs.checkboxes .group label:after {
  content: "";
  width: 24px;
  height: 24px;
  top: -2px;
  left: 0;
  position: absolute;
  background-color: var(--colors-primary);
  background-image: url(../images/filterChoised.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
  border-radius: 5px;
  opacity: 0;
}

.products-wrapper .inputs.checkboxes .group input {
  display: contents;
}

.products-wrapper .inputs.checkboxes .group:has(input:checked) label:after {
  opacity: 1;
}

.products-wrapper .filter-cats-holder {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 10px;
}

.products-wrapper .filter-cats-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.products-wrapper .filter-cats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.products-wrapper .filter-cat {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  width: fit-content;
  transition: 0.5s;
  cursor: pointer;
}

.products-wrapper .filter-cat:hover,
.products-wrapper .filter-cat.active {
  color: var(--colors-primary);
}

.summary.entry-summary {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 100px;
}

.summary.entry-summary .summary-left-side {
  display: flex;
  flex-direction: column;
  width: calc(100% - 520px);
}

.summary.entry-summary .summary-right-side {
  display: flex;
  flex-direction: column;
  width: 490px;
  min-width: 490px;
  background: var(--bg-colors-background-secondary);
  padding: 20px;
}

.summary.entry-summary .page-title {
  width: 100%;
  margin-bottom: 20px;
}

.summary.entry-summary .summary-top {
  display: flex;
  gap: 30px;
}

.summary.entry-summary .product-gallery {
  width: 490px;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  min-width: 490px;
  height: 420px;
}

.summary.entry-summary .summary-top-content {
  width: 50%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.summary.entry-summary .gallery-main-wrapper {
  width: calc(100% - 70px);
  position: relative;
}

.summary.entry-summary .gallery-holder {
  width: 60px;
  height: 420px;
  display: flex;
  flex-direction: column;
}

.summary.entry-summary .gallery-thumbnails-holder {
  height: calc(100% - 20px);
  width: 100%;
}

.summary.entry-summary .gallery-thumbnails-holder .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  border: 1px solid var(--bg-colors-stroke);
  cursor: pointer;
}

.summary.entry-summary .gallery-thumbnails-holder .swiper-slide-thumb-active {
  border-color: var(--colors-primary);
}

.summary.entry-summary .gallery-thumbnails-holder .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.summary.entry-summary .img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  border: 1px solid var(--bg-colors-stroke);
  cursor: pointer;
}

.summary.entry-summary .img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
}

.summary.entry-summary .gallery-btns {
  position: absolute;
  margin-top: unset;
  width: calc(100% - 20px);
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  z-index: 1;
}

.summary.entry-summary .gallery-btns .swiper-button-prev,
.summary.entry-summary .gallery-btns .swiper-button-next {
  background: var(--bg-colors-background);
}

.summary.entry-summary .swiper-button-sub-next {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.summary.entry-summary .swiper-button-sub-next path {
  transition: 0.5s;
}

.summary.entry-summary .swiper-button-sub-next:hover path {
  stroke: var(--colors-primary);
}

.summary.entry-summary .swiper-button-sub-next.swiper-button-disabled {
  pointer-events: none;
}

.summary.entry-summary .desc-all,
.summary.entry-summary .all-attrs {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-top: 10px;
  width: fit-content;
}

.summary.entry-summary .desc-all:hover,
.summary.entry-summary .all-attrs:hover {
  color: var(--colors-primary);
}

.summary.entry-summary .short-desc-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.summary.entry-summary .short-attrs-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary.entry-summary .short-attr-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.summary.entry-summary .attr-item {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 5px;
}

.summary.entry-summary .attr-item:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 6px;
  left: 0;
  position: absolute;
  background: var(--bg-colors-stroke);
}

.summary.entry-summary .attr-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  background: var(--bg-colors-background);
  padding-right: 10px;
  z-index: 1;
  position: relative;
}

.summary.entry-summary .attr-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: right;
  color: var(--bg-colors-background-thirdly);
  background: var(--bg-colors-background);
  padding-left: 10px;
  z-index: 1;
  position: relative;
}

.summary.entry-summary .short-attrs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary.entry-summary .summary-bot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.summary.entry-summary .content-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
  margin-bottom: 10px;
}

.summary.entry-summary .chars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary.entry-summary .summary-right {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 170px;
  background: var(--bg-colors-background-secondary);
  padding: 20px;
  height: fit-content;
  width: 490px;
  min-width: 490px;
}

.summary.entry-summary .summary-right .price {
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.summary.entry-summary .summary-right .price ins,
.summary.entry-summary .summary-right .price del {
  text-decoration: unset;
}

.summary.entry-summary .summary-right .price bdi,
.summary.entry-summary .summary-right .price bdi span {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.summary.entry-summary .summary-right .price del bdi,
.summary.entry-summary .summary-right .price del bdi span {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  text-decoration: line-through;
  color: var(--text-main-text-secondary);
}

.summary.entry-summary .summary-right .price ins bdi,
.summary.entry-summary .summary-right .price ins bdi span {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--bg-colors-background-thirdly);
}

.summary.entry-summary .summary-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  margin-bottom: 20px;
}

.summary.entry-summary .product-code {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  margin-bottom: 10px;
}

.summary.entry-summary .summary-sku {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
  margin-bottom: 20px;
}

.summary.entry-summary .summary-right .cart {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.summary.entry-summary .summary-right .btn {
  width: auto;
  height: auto;
  max-width: 50%;
  flex-grow: 1;
}

.summary.entry-summary .summary-right .qty-wrapper {
  background: var(--bg-colors-background);
  flex-grow: 1;
}

.summary.entry-summary .summary-right .qty-wrapper .qty-button {
  background: transparent;
}

.summary.entry-summary .summary-right .qty-wrapper .qty-button[disabled] {
  background: var(--bg-colors-stroke);
}

.summary.entry-summary .del-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary.entry-summary .info-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-main-text-secondary);
}

.related-holder {
  padding-left: calc((100% - 1530px) / 2);
}

/* ============== Woocommerce End ============= */






@media (max-width: 1600px) {
  #footer .footer-top-wrapper {
    padding: 50px 0px;
    min-height: 500px;
  }

  #header .header-right-side {
    gap: 10px;
  }

  #header .info-icon {
    display: none;
  }

  .decisions-item-template {
    padding: 10px;
    height: 450px;
  }

  .main-title {
    margin-bottom: 40px;
    font-size: 52px;
  }

  h1.page-title {
    font-size: 52px;
  }

  .cart-wrapper .calls-wrapper {
    top: 130px;
  }

  .products-wrapper .sidebar {
    top: 120px;
  }

  .related-holder {
    padding-left: 15px;
  }

  .summary.entry-summary .summary-right {
    top: 130px;
  }
}

@media (max-width: 1400px) {
  #header .header-desc {
    display: none;
  }

  #footer .footer-top-wrapper {
    min-height: unset;
  }

  #footer .footer-top .footer-top-value.phones,
  #footer .footer-top .footer-top-value,
  #footer .footer-top .footer-top-value p {
    font-size: 32px;
  }

  #footer .footer-top .top-info-item {
    gap: 10px;
  }

  #footer .footer-top .top-info-title {
    font-size: 20px;
  }

  #footer .footer-bot-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }

  #footer {
    background-position: center;
  }

  #footer .footer-top-wrapper.error-content {
    padding: 40px 0px;
  }

  #footer .footer-top-wrapper.error-content .error-subtitle {
    margin: 10px 0px;
  }

  #footer .footer-top-wrapper.error-content .error-desc {
    margin-bottom: 20px;
  }

  #footer .footer-wrapper.contacts .top-right-side {
    height: 300px;
  }

  #footer .footer-wrapper.contacts .footer-top-wrapper {
    min-height: unset;
  }

  h1.page-title {
    margin-bottom: 40px;
    font-size: 42px;
  }

  .decisions-item-template {
    height: 350px;
  }

  .single-page.decisions .menu-holder {
    width: 350px;
    min-width: 350px;
  }

  .single-page.decisions .page-content {
    width: calc(100% - 370px);
  }

  .single-page.decisions .page-wrapper {
    gap: 20px;
  }

  .single-page.decisions .menu-item {
    font-size: 14px;
    padding: 10px;
  }

  .single-page.decisions .page-wrapper .block-title {
    font-size: 32px;
  }

  .single-page.decisions .menu-holder {
    top: 125px;
  }

  .news-item-template .news-info {
    padding: 10px;
  }

  .news-item-template .news-short-desc {
    margin-bottom: 10px;
  }

  .main-title {
    margin-bottom: 30px;
    font-size: 42px;
  }

  .block-container {
    padding: 60px 0px;
  }

  .cart-wrapper .cart_item {
    padding: 10px;
    gap: 10px;
  }

  li.product-category.product .cat-info {
    padding: 10px;
  }

  .products-holder .products.columns-3:has(.product-category) {
    gap: 10px;
  }

  .seo-block .wrapper {
    gap: 20px;
  }

  .seo-block .seo-gallery {
    gap: 10px;
  }

  .products-wrapper .sidebar {
    width: 300px;
    min-width: 300px;
    gap: 10px;
  }

  .products-wrapper.tax-wrapper .products-holder {
    width: calc(100% - 310px);
  }

  .products-wrapper.tax-wrapper {
    gap: 10px;
  }

  .products-wrapper.tax-wrapper .products-holder ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce.search-results .products-wrapper .products-holder ul.products {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary.entry-summary .summary-right {
    width: 350px;
    min-width: 350px;
    padding: 10px;
  }

  .summary.entry-summary .summary-left-side {
    width: calc(100% - 360px);
  }

  .summary.entry-summary {
    gap: 10px;
  }

  .summary.entry-summary .summary-top {
    gap: 10px;
  }

  .summary.entry-summary .attr-value,
  .summary.entry-summary .attr-name {
    font-size: 14px;
  }

  .summary.entry-summary .short-attrs {
    gap: 5px;
  }

  .summary.entry-summary .attr-item:before {
    bottom: 2px;
  }

  .woocommerce-checkout form.woocommerce-checkout {
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  .btn {
    padding: 10px 15px !important;
    font-size: 14px !important;
  }

  .btn.arrow:before,
  .btn.second.arrow:before {
    top: 11px;
    right: 15px;
  }

  #header .shop-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  #header .shop-btn__counter {
    top: 2px;
    right: 2px;
  }

  #header .dgwt-wcas-search-wrapp {
    height: 36px;
    max-height: 36px;
  }

  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    height: 36px;
  }

  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    padding: 8px 10px;
  }

  #header .header-cat-btn {
    padding: 11px 20px;
    font-size: 14px;
  }

  #header .logo-holder {
    min-width: 130px;
  }

  .form input,
  .form textarea {
    padding: 10px 15px;
  }

  .theme-modal .btn,
  #footer .btn {
    padding: 10px;
  }

  .theme-modal .btn {
    margin-top: unset;
  }

  #footer .left-side {
    gap: 10px;
    max-width: unset;
  }

  #footer .info-item {
    gap: 5px;
  }

  #footer .footer-bot-wrapper {
    padding: 20px 0px;
  }

  #footer .menu-holder {
    width: 100%;
    margin-left: unset;
    justify-content: space-between;
  }

  h1.page-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .form textarea {
    padding: 10px 15px;
    border-radius: 20px;
    height: 100px;
  }

  #archive-decisions .decisions {
    gap: 10px;
    padding-bottom: 60px;
  }

  .single-page.news .main-content {
    padding-bottom: 40px;
  }

  .decisions-item-template .decisions-name {
    font-size: 18px;
  }

  .text-holder,
  .text-holder p,
  .text-holder li {
    font-size: 14px;
  }

  .text-holder ul li {
    padding-left: 15px;
  }

  .text-holder h3 {
    font-size: 18px;
    margin-bottom: unset;
  }

  .text-holder h4 {
    font-size: 16px;
    margin-bottom: unset;
  }

  .text-holder h5 {
    font-size: 14;
    margin-bottom: unset;
  }

  #archive-news .news-holder {
    padding-bottom: 60px;
  }

  #archive-news .news {
    gap: 10px;
  }

  .news-item-template .news-name {
    font-size: 16px;
  }

  .news-item-template .news-short-desc {
    font-size: 13px;
  }

  .pagination {
    margin-top: 20px;
  }

  .page-numbers,
  .prev.page-numbers,
  .next.page-numbers {
    width: 40px;
    height: 40px;
  }

  .main-title {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .nav .swiper-button-prev,
  .nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .nav {
    margin-top: 20px;
  }

  .block-container {
    padding: 40px 0px;
  }

  li.product.type-product .product-item-template .product-img {
    max-height: 300px;
  }

  li.product.type-product .product-item-template .product-info {
    padding: 10px;
    min-height: 110px;
  }

  li.product.type-product .control-btns form {
    padding: 0px 10px 10px 10px;
  }

  li.product.type-product .price bdi,
  li.product.type-product .price bdi span,
  li.product.type-product .price ins bdi,
  li.product.type-product .price ins bdi span {
    font-size: 18px;
  }

  li.product.type-product .price del bdi,
  li.product.type-product .price del bdi span {
    font-size: 14px;
  }

  .cart-wrapper .product-name a {
    font-size: 16px;
  }

  .cart-wrapper {
    padding-bottom: 60px;
    gap: 10px;
  }

  .cart_totals {
    padding: 10px;
  }

  .cart-wrapper .calls-wrapper {
    width: 250px;
    min-width: 250px;
  }

  .cart-wrapper .woocommerce-cart-form {
    width: calc(100% - 260px);
  }

  .woocommerce-cart h1.page-title {
    margin-bottom: 10px;
  }

  .seo-block .block-top {
    flex-direction: column;
    gap: 10px;
  }

  .seo-block .second-text {
    max-width: unset;
  }

  .seo-block .right-side {
    max-width: unset;
  }

  .seo-block .main-title {
    font-size: 32px;
  }

  .products-holder .products.columns-3:has(.product-category) {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary.entry-summary .summary-bot {
    gap: 20px;
    margin-top: 20px;
  }

  .summary.entry-summary {
    padding-bottom: 40px;
  }

  .summary.entry-summary .product-gallery {
    width: 350px;
    min-width: 350px;
    height: 350px;
  }

  .summary.entry-summary .gallery-holder {
    height: 350px;
    width: 50px;
  }

  .summary.entry-summary .gallery-main-wrapper {
    width: calc(100% - 60px);
  }

  .summary.entry-summary .attr-value,
  .summary.entry-summary .attr-name {
    font-size: 12px;
  }

  .summary.entry-summary .short-desc-content {
    margin-bottom: 20px;
  }

  .summary.entry-summary .short-attrs-holder {
    gap: 10px;
  }

  .summary.entry-summary .short-attr-title {
    font-size: 16px;
  }

  .summary.entry-summary .desc-all,
  .summary.entry-summary .all-attrs {
    font-size: 14px;
  }

  .woocommerce-checkout form.woocommerce-checkout {
    flex-direction: column;
  }

  .woocommerce-checkout .form-checkout-left-side {
    width: 100%;
  }

  .woocommerce-checkout .form-checkout-right-side {
    width: 100%;
  }
}

@media (max-width: 996px) {
  #footer .footer-default {
    padding-bottom: 55px;
  }

  #footer .dev,
  #footer .rights,
  #footer .privacy-holder {
    font-size: 12px;
  }

  #header .header-top-wrapper {
    display: none;
  }

  #header .header-bot-wrapper .shop-btn,
  #header .header-bot-wrapper .dgwt-wcas-search-wrapp {
    display: none;
  }

  #header .logo-holder {
    max-width: 130px;
  }

  #header .header-cat-holder {
    margin-left: auto;
  }

  #footer .footer-top .footer-top-value.phones,
  #footer .footer-top .footer-top-value,
  #footer .footer-top .footer-top-value p {
    font-size: 20px;
  }

  #footer .footer-top .top-info-title {
    font-size: 14px;
  }

  #header .woo-mobile-menu {
    display: flex;
  }

  #header .woo-mobile-menu .dgwt-wcas-search-wrapp {
    max-width: 350px;
    min-width: unset;
  }

  #footer .logo-holder {
    width: 130px;
    height: 70px;
  }

  #footer .logo-holder img {
    max-width: 100%;
  }

  #footer .nav-menu-element a {
    font-size: 14px;
  }

  #footer .menu-item {
    gap: 10px;
  }

  #footer .reqs p {
    font-size: 14px;
  }

  #footer .reqs {
    gap: 5px;
  }

  #header .header-bot-wrapper {
    padding: 5px 0px;
  }

  #header .burger.open_menu {
    display: flex;
  }

  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    margin-top: -2px;
    margin-right: 5px;
  }

  #footer .footer-top-wrapper.error-content .error-subtitle {
    font-size: 42px;
  }

  #footer .footer-top-wrapper.error-content .error-desc {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .seo-block .main-title {
    font-size: 28px;
  }

  h1.page-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .breadcrumbs {
    padding: 10px 0px;
    gap: 2px;
  }

  .breadcrumbs,
  .breadcrumbs span {
    font-size: 12px;
  }

  #archive-decisions .decisions {
    grid-template-columns: repeat(2, 1fr);
  }

  .decisions-item-template {
    height: 300px;
  }

  .decisions-item-template .decisions-short-desc {
    font-size: 14px;
  }

  .single-page.decisions .page-wrapper .block-title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .single-page.decisions .block-item-img {
    margin-top: 10px;
  }

  .single-page.decisions .blocks {
    gap: 40px;
  }

  .single-page.decisions .menu-holder {
    top: 90px;
  }

  .single-page.decisions .menu-item {
    font-size: 12px;
  }

  .single-page.decisions .menu-holder {
    width: 270px;
    min-width: 270px;
  }

  .single-page.decisions .page-content {
    width: calc(100% - 290px);
  }

  #archive-news .news {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 28px;
  }

  .cart-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .cart-wrapper .calls-wrapper {
    width: 100%;
    position: static;
  }

  .cart-wrapper .woocommerce-cart-form {
    width: 100%;
  }

  .products-wrapper.tax-wrapper,
  .products-holder .products.columns-3:has(.product-category) {
    padding-bottom: 60px;
  }

  .woocommerce.search-results .products-wrapper .products-holder ul.products {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .text-holder {
    gap: 10px;
  }

  .products-wrapper.tax-wrapper .products-holder {
    width: 100%;
  }

  .products-wrapper.tax-wrapper .products-holder ul.products {
    gap: 10px;
  }

  .products-wrapper .qty-wrapper .quantity {
    width: 100%;
  }

  .products-wrapper .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: 99;
    overflow: auto;
    padding-right: 10px;
    height: 100vh;
  }

  .products-wrapper .filters-widget {
    padding: 10px;
    padding-top: unset;
  }

  .products-wrapper .sidebar.open {
    transform: unset;
  }

  #open-filter {
    display: block;
  }

  .woocommerce #sidebar-close {
    display: block;
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 10px 0px 10px 10px;
  }

  .products-wrapper .filter-cats-title {
    font-size: 16px;
  }

  .products-wrapper .filter-cat {
    font-size: 14px;
  }

  .products-wrapper .price-title.filter-block-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .products-wrapper .filter-block {
    padding-bottom: 10px;
  }

  .products-wrapper .filter-block-title.h5 {
    font-size: 14px;
  }

  .products-wrapper .inputs.checkboxes {
    gap: 7px;
    padding-top: 10px;
  }

  .products-wrapper .inputs.checkboxes .group label {
    font-size: 14px;
    padding-left: 20px;
  }

  .products-wrapper .noUi-target {
    margin-bottom: 10px;
  }

  .products-wrapper .inputs.price.range input {
    padding: 5px;
  }

  .products-wrapper .inputs.checkboxes .group label:before {
    width: 14px;
    height: 14px;
    top: 2px;
    border-radius: 3px;
  }

  .products-wrapper .inputs.checkboxes .group label:after {
    width: 16px;
    height: 16px;
    top: 2px;
    border-radius: 3px;
  }

  .products-wrapper .filter-cats-holder {
    margin-bottom: 20px;
  }

  .products-wrapper .buttons {
    gap: 10px;
    margin-top: unset;
  }

  #noticer {
    top: 150px;
  }

  .summary.entry-summary .summary-top {
    flex-direction: column;
    align-items: center;
  }

  .summary.entry-summary .summary-top-content {
    width: 100%;
  }

  .summary.entry-summary .content-title {
    font-size: 20px;
  }

  .summary.entry-summary .summary-right {
    top: 80px;
  }

  .summary.entry-summary .summary-right .cart,
  .summary.entry-summary .summary-sku,
  .summary.entry-summary .summary-desc,
  .summary.entry-summary .summary-right .price {
    margin-bottom: 10px;
  }

  .summary.entry-summary .product-code {
    margin-bottom: 5px;
  }

  .summary.entry-summary .del-info {
    gap: 5px;
  }
}

@media (max-width: 768px) {
  #footer .footer-top-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
  }

  #footer .footer-top .top-values {
    gap: 5px;
  }

  #footer .footer-top .top-right-side,
  #footer .footer-top .top-left-side {
    max-width: unset;
    width: 100%;
  }

  h1.page-title {
    font-size: 24px;
  }

  .single-page.decisions .page-wrapper {
    flex-direction: column;
  }

  .single-page.decisions .menu-holder {
    position: static;
    width: 100%;
    order: 1;
  }

  .single-page.decisions .page-content {
    width: 100%;
    order: 2;
  }

  .single-page.news .main-content {
    gap: 20px;
  }

  .single-page.news .news-gallery {
    gap: 10px;
  }

  .single-page.news .gallery-img {
    width: calc((100% - 10px) / 2);
  }

  .main-title,
  .seo-block .main-title {
    font-size: 24px;
  }

  li.product.type-product .control-btns form {
    flex-direction: column;
    gap: 5px;
  }

  li.product.type-product .price {
    margin-top: auto;
  }

  li.product.type-product .control-btns form .qty-wrapper {
    width: 100%;
    padding: 1px;
  }

  li.product.type-product .control-btns .btn {
    width: 100%;
  }

  .qty-wrapper .qty-button {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .qty-wrapper input {
    max-width: unset;
    width: calc(100% - 84px);
  }

  li.product.type-product .product-item-template a {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  li.product.type-product .product-item-template .product-info {
    min-height: unset;
    flex-grow: 1;
  }

  li.product.type-product .product-item-template .woocommerce-loop-product__title {
    margin-bottom: 5px;
    margin-top: 5px;
  }

  li.product.type-product .product-item-template .product-sku {
    font-size: 12px;
  }

  .cart-wrapper .cart_item {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cart-wrapper .product-name {
    max-width: unset;
    width: 100%;
  }

  .cart-wrapper .product-price {
    margin-right: auto;
    margin-left: unset;
  }

  .cart-wrapper .qty-wrapper input {
    width: 40px;
  }

  .cart-wrapper .product-thumbnail {
    width: 160px;
    height: 160px;
    min-width: 160px;
  }

  .seo-block .seo-text {
    height: 250px;
  }

  li.product-category.product .cat-info {
    width: 60%;
  }

  li.product-category.product .cat-img-wrapper {
    width: 40%;
  }

  .summary.entry-summary .summary-left-side {
    width: 100%;
    position: relative;
  }

  .summary.entry-summary .summary-right {
    width: calc(100% - 30px);
    left: 15px;
    position: absolute;
    top: 540px;
    min-width: unset;
  }

  .summary.entry-summary .summary-top {
    gap: 240px;
  }

  .summary.entry-summary .summary-right .cart,
  .summary.entry-summary .summary-sku,
  .summary.entry-summary .summary-desc,
  .summary.entry-summary .summary-right .price {
    margin-bottom: 5px;
  }

  .summary.entry-summary .summary-right .price del bdi,
  .summary.entry-summary .summary-right .price del bdi span {
    font-size: 18px;
  }

  .summary.entry-summary .summary-right .price ins bdi,
  .summary.entry-summary .summary-right .price ins bdi span {
    font-size: 14px;
  }

  .woocommerce-checkout .col-1,
  .woocommerce-checkout .add-wrapper,
  .woocommerce-checkout .commect-block .form-row {
    padding: 10px;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper p {
    width: calc((100% - 20px) / 2);
  }

  .woocommerce-checkout #shipping_method li,
  .woocommerce-checkout .wc_payment_methods li {
    min-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .seo-block .main-title {
    font-size: 20px;
  }

  #footer .menu-holder {
    gap: 20px;
    flex-wrap: wrap;
  }

  #footer .footer-default {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 5px;
  }

  #header .header-cat-btn {
    display: none;
  }

  #footer .footer-top-wrapper.error-content .error-subtitle {
    font-size: 24px;
  }

  .decisions-item-template {
    height: 250px;
  }

  #archive-news .news {
    display: flex;
    flex-direction: column;
  }

  .products-holder .products.columns-3:has(.product-category) {
    display: flex;
    flex-direction: column;
  }

  #noticer {
    top: 80px;
  }

  .summary.entry-summary .summary-right {
    top: 550px;
  }
}

@media (max-width: 498px) {
  #footer .form-holder {
    max-width: unset;
    width: 100%;
  }

  #header .container {
    padding: 0px 5px;
  }

  .theme-modal.fancybox__content {
    padding: 30px 15px 15px 15px;
  }

  .theme-modal .subtitle {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .theme-modal .title {
    font-size: 20px;
  }

  #archive-decisions .decisions {
    display: flex;
    flex-direction: column;
  }

  .single-page.news .news-single-date {
    font-size: 14px;
  }

  li.product.type-product .product-item-template .woocommerce-loop-product__title {
    font-size: 14px;
  }

  li.product.type-product .price {
    gap: 5px;
  }

  li.product.type-product .price bdi,
  li.product.type-product .price bdi span,
  li.product.type-product .price ins bdi,
  li.product.type-product .price ins bdi span {
    font-size: 14px;
  }

  li.product.type-product .price del bdi,
  li.product.type-product .price del bdi span {
    font-size: 12px;
  }

  .woocommerce-order .order-customer-info {
    display: flex;
    flex-direction: column;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    flex-direction: column;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper p {
    width: 100%;
  }

  .woocommerce-checkout #shipping_method,
  .woocommerce-checkout .wc_payment_methods {
    flex-direction: column;
  }

  .woocommerce-checkout #shipping_method label,
  .woocommerce-checkout .wc_payment_methods label {
    padding-left: 10px;
  }
}


@media (max-width: 400px) {
  #header .logo-holder {
    min-width: unset;
  }

  #header .header-bot-wrapper .btn {
    font-size: 12px;
    margin-right: unset;
    padding: 10px 5px;
  }

  #header .header-bot-wrapper {
    gap: 5px;
  }

  #footer .footer-top .footer-top-value.phones,
  #footer .footer-top .footer-top-value,
  #footer .footer-top .footer-top-value p {
    font-size: 16px;
  }

  .single-page.news .bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-page.news .bottom-wrapper .news-single-date {
    order: 1;
  }

  .single-page.news .bottom-wrapper .btn {
    width: 100%;
    order: 2;
  }

  .single-page.news .gallery-img {
    width: 100%;
  }

  .cart-wrapper .product-price {
    width: 100%;
  }

  .cart-wrapper .product-quantity {
    width: calc(100% - 50px);
  }

  .cart-wrapper .qty-wrapper input {
    width: calc(100% - 84px);
  }

  .cart-wrapper .product-thumbnail {
    width: 100%;
    height: auto;
    max-height: 200px;
    display: flex;
  }

  .cart-wrapper .product-thumbnail a {
    height: auto;
  }
}

@media (max-width: 370px) {
  li.product-category.product .woocommerce-loop-category__title {
    font-size: 14px;
  }

  li.product-category.product .cat-icon {
    font-size: 14px;
  }

  .seo-block .gallery-item {
    width: calc((100% - 10px) / 2);
  }

  .products-wrapper.tax-wrapper .products-holder ul.products,
  .woocommerce.search-results .products-wrapper .products-holder ul.products {
    display: flex;
    flex-direction: column;
  }

  li.product.type-product .product-item-template .product-img {
    align-items: unset;
  }

  .summary.entry-summary .product-gallery {
    min-width: unset;
    width: 100%;
  }

  .summary.entry-summary .summary-top {
    gap: 260px;
  }

  .summary.entry-summary .summary-right {
    top: 570px;
  }
}