/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \*************************************************************************************************************/
@charset "UTF-8";
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 5px !important;
  position: relative;
  color: #BBBCBC;
  padding: 0 0 14px 14px !important;
  font-size: 18px !important;
}
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header::before {
  content: "Фильтры";
  font-size: 16px;
  font-weight: 400;
  color: currentColor;
  order: 1;
}
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .rey-sidePanel-close,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .__arrClose {
  position: static;
  right: auto;
  top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  order: 2;
  margin-left: auto;
}
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .rey-sidePanel-close::before,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .__arrClose::before {
  display: none;
}
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .rey-sidePanel-close::after,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .__arrClose::after {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: linear-gradient(#BBBCBC, #BBBCBC), linear-gradient(#BBBCBC, #BBBCBC);
  background-size: 2px 100%, 100% 2px;
  background-position: center, center;
  background-repeat: no-repeat;
  transform: rotate(45deg);
}
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .rey-sidePanel-close svg,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .rey-sidePanel-close .rey-icon,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .__arrClose svg,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .__arrClose .rey-icon {
  display: none;
}
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .rey-sidePanel-close span,
.rey-siteContainer .rey-sidebar .rey-sidebarInner .rey-filterPanel__header .__arrClose span {
  display: none;
}

.rey-breadcrumbs {
  margin: 0 !important;
}

.breadcrumbs-sorting-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  padding: 0 !important;
}
.breadcrumbs-sorting-container .breadcrumbs-wrapper {
  flex: 1;
}
.breadcrumbs-sorting-container .breadcrumbs-wrapper .woocommerce-breadcrumb {
  color: #BBBCBC;
  font-size: 14px;
}
.breadcrumbs-sorting-container .breadcrumbs-wrapper .woocommerce-breadcrumb a {
  color: #BBBCBC;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs-sorting-container .breadcrumbs-wrapper .woocommerce-breadcrumb a:hover {
  color: #cea177;
}
.breadcrumbs-sorting-container .breadcrumbs-wrapper .woocommerce-breadcrumb .delimiter {
  color: #4D5753;
  margin: 0 8px;
}
@media (max-width: 767px) {
  .breadcrumbs-sorting-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    padding: 0 10px;
  }
  .breadcrumbs-sorting-container .breadcrumbs-wrapper {
    width: 100%;
  }
}

.custom-sorting-wrapper {
  position: relative;
}
.custom-sorting-wrapper .custom-sort-button {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.custom-sorting-wrapper .custom-sort-button .sort-text {
  font-weight: 400;
  color: #FFFFFF;
  font-size: 14px;
}
.custom-sorting-wrapper .custom-sort-button .sort-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.custom-sorting-wrapper .custom-sort-button .sort-icon svg {
  width: 12px;
  height: 8px;
}
.custom-sorting-wrapper .custom-sort-button.active .sort-icon {
  transform: rotate(180deg);
}
.custom-sorting-wrapper .custom-sort-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #2D2E2F;
  border: 1px solid rgba(77, 87, 83, 0.5019607843);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
}
.custom-sorting-wrapper .custom-sort-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-sorting-wrapper .custom-sort-dropdown .sort-option {
  padding: 14px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(77, 87, 83, 0.5019607843);
  transition: all 0.2s ease;
  color: #BBBCBC;
  font-size: 14px;
}
.custom-sorting-wrapper .custom-sort-dropdown .sort-option:first-child {
  border-radius: 8px 8px 0 0;
}
.custom-sorting-wrapper .custom-sort-dropdown .sort-option:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}
.custom-sorting-wrapper .custom-sort-dropdown .sort-option:hover {
  background-color: #3A3B3C;
  color: #fff;
}
.custom-sorting-wrapper .custom-sort-dropdown .sort-option.selected {
  color: #fff;
}
@media (max-width: 767px) {
  .custom-sorting-wrapper .custom-sort-button {
    justify-content: center;
  }
  .custom-sorting-wrapper .custom-sort-dropdown {
    right: auto;
    left: 0;
    min-width: max-content;
  }
}

body.term-kuhnya .custom-sorting-wrapper,
body[class*=kuhnya] .custom-sorting-wrapper {
  display: none !important;
}
body.term-kuhnya .js-rey-filterBtn-open,
body.term-kuhnya .rey-filterBtn,
body[class*=kuhnya] .js-rey-filterBtn-open,
body[class*=kuhnya] .rey-filterBtn {
  display: none !important;
}

body.term-dom .custom-sorting-wrapper,
body[class*=dom] .custom-sorting-wrapper {
  display: none !important;
}
body.term-dom .js-rey-filterBtn-open,
body.term-dom .rey-filterBtn,
body[class*=dom] .js-rey-filterBtn-open,
body[class*=dom] .rey-filterBtn {
  display: none !important;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top-btn button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.scroll-to-top-btn button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
.scroll-to-top-btn button svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: 53px;
    right: 0;
  }
  .scroll-to-top-btn button {
    width: 45px;
    height: 45px;
  }
  .scroll-to-top-btn button svg {
    width: 18px;
    height: 18px;
  }
}

.rey-mega-gs .menu-item:hover span {
  transition: color 0.3s ease;
}
.rey-mega-gs .menu-item:hover span {
  color: #ef6f2e !important;
}

.rey-mainMenu .menu-item-has-children.--hover a::after {
  --btn-line-tr: scaleX(1);
  --btn-line-to-x: left;
}

.rey-mainMenu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}
.rey-mainMenu .menu-item-has-children > a span {
  display: inline-flex;
  align-items: center;
}
.rey-mainMenu .menu-item-has-children > a span::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2710%27 height=%276%27 viewBox=%270 0 10 6%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1L5 5L9 1%27 stroke=%27%23FFFFFF%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0deg);
  transform-origin: center center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.rey-mainMenu .menu-item-has-children.--hover > a span::after, .rey-mainMenu .menu-item-has-children:hover > a span::after, .rey-mainMenu .menu-item-has-children[aria-expanded=true] > a span::after {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .rey-mobileNav .rey-mobileMenu-close {
    left: auto !important;
  }
}
.rey-mobileNav .rey-mobileMenu-close .__icons {
  content: none !important;
}
.rey-mobileNav .rey-mobileMenu-close .__icons {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  left: -10px;
}
.rey-mobileNav .rey-mobileMenu-close .__icons::before, .rey-mobileNav .rey-mobileMenu-close .__icons::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background-color 0.3s ease;
}
.rey-mobileNav .rey-mobileMenu-close .__icons::before {
  transform: rotate(45deg);
}
.rey-mobileNav .rey-mobileMenu-close .__icons::after {
  transform: rotate(-45deg);
}
.rey-mobileNav .rey-mobileMenu-close svg {
  display: none !important;
}
.rey-mobileNav .rey-mobileMenu-close::before, .rey-mobileNav .rey-mobileMenu-close::after {
  display: none !important;
}
.rey-mobileNav .rey-mobileMenu-close:hover .__icons {
  background-color: rgba(255, 255, 255, 0.08);
}
.rey-mobileNav .rey-mainMenu-mobile li.menu-item > a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}
.rey-mobileNav .rey-mainMenu-mobile li.menu-item > a span {
  transition: color 0.2s ease !important;
  transition-delay: 0s !important;
}
.rey-mobileNav .rey-mainMenu-mobile li.menu-item > a:hover, .rey-mobileNav .rey-mainMenu-mobile li.menu-item > a:focus-visible {
  color: #ef6f2e;
}
.rey-mobileNav .rey-mainMenu-mobile li.menu-item > a:hover span, .rey-mobileNav .rey-mainMenu-mobile li.menu-item > a:focus-visible span {
  color: #ef6f2e;
}

@media (max-width: 768px) {
  .rey-searchResults-message {
    width: 100% !important;
    border: none !important;
    padding-bottom: 10px !important;
  }
}
.rey-searchResults-message span {
  display: none !important;
}

.rey-searchPanel {
  padding-left: 18px !important;
}
.rey-searchPanel .rey-searchPanel__suggestions {
  padding-left: 18px !important;
}
@media (max-width: 768px) {
  .rey-searchPanel .rey-searchPanel__suggestions {
    padding-left: 5px !important;
  }
}
.rey-searchPanel .techno-search-keywords button {
  padding: 0px 0 12px 0;
  font-size: 14px;
}
.rey-searchPanel .catalog-categories li {
  padding: 0px 0 12px 0 !important;
}
.rey-searchPanel .catalog-categories li a {
  font-size: 14px;
}
.rey-searchPanel .rey-searchPanel-inner form {
  width: 90% !important;
  position: relative;
}
@media (max-width: 768px) {
  .rey-searchPanel .rey-searchPanel-inner form {
    position: relative !important;
    left: 20px !important;
  }
}
.rey-searchPanel .rey-searchPanel-inner .rey-searchPanel-innerForm {
  position: relative;
  display: flex;
  align-items: center;
}
.rey-searchPanel .rey-searchPanel-inner .rey-searchPanel-innerForm input[type=search] {
  padding-right: 120px !important;
  padding-left: 20px !important;
}
.rey-searchPanel .rey-searchPanel-inner .ui-search-input__append {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .rey-searchPanel .rey-searchPanel-inner .ui-search-input__append {
    right: -6px;
  }
}
.rey-searchPanel .rey-searchPanel-inner .ui-search-input__append .ui-search-input__search-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ef6f2e;
  color: #FFFFFF;
  border-radius: 26px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.rey-searchPanel .rey-searchPanel-inner .ui-search-input__append .ui-search-input__search-button:hover {
  background: #d85f1e;
}
.rey-searchPanel .rey-searchPanel-inner .ui-search-input__append .ui-search-input__search-button .ui-icon-magnifier,
.rey-searchPanel .rey-searchPanel-inner .ui-search-input__append .ui-search-input__search-button .ui-search-input__button-label {
  display: none;
}
.rey-searchPanel .rey-searchPanel-inner .ui-search-input__append .ui-search-input__search-button::after {
  content: "Найти";
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .rey-searchPanel .rey-searchResults .mob-title {
    font-size: 16px;
    padding: 0 0 12px 12px;
  }
}
.rey-searchPanel .rey-searchResults .rey-searchItems {
  height: 520px;
  overflow-y: scroll;
  position: relative;
  right: -25px;
  width: 48%;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .rey-searchPanel .rey-searchResults .rey-searchItems {
    width: 100% !important;
    right: 0 !important;
  }
}
.rey-searchPanel .rey-searchResults .rey-searchItems::-webkit-scrollbar {
  width: 8px;
}
.rey-searchPanel .rey-searchResults .rey-searchItems::-webkit-scrollbar-track {
  background: transparent;
}
.rey-searchPanel .rey-searchResults .rey-searchItems::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.rey-searchPanel .rey-searchResults .rey-searchItems::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.rey-searchPanel .rey-searchResults .rey-searchItems {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
@media (max-width: 768px) {
  .rey-searchPanel .rey-searchResults .rey-searchItems {
    display: flex !important;
    flex-wrap: wrap !important;
    height: auto !important;
    overflow-y: visible !important;
  }
}

.rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px;
  overflow: visible !important;
  padding-right: 24px;
  width: 24px !important;
  height: 24px !important;
  top: 20px;
}
.rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back svg {
  display: none !important;
}
.rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back::before, .rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 1px;
  transition: background-color 0.3s ease;
}
.rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.rey-accountPanel .techno-right-menu__navigation .techno-right-menu__back::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.rey-accountPanel .rey-form-row .show-password-input {
  display: none !important;
}
@media (max-width: 768px) {
  .rey-accountPanel .rey-form-row input.rey-input--text,
  .rey-accountPanel .rey-form-row input[type=text],
  .rey-accountPanel .rey-form-row input[type=email],
  .rey-accountPanel .rey-form-row input[type=password],
  .rey-accountPanel .rey-form-row input[type=tel],
  .rey-accountPanel .rey-form-row input[type=search] {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .rey-siteFooter .e-con-top {
    padding: 0 6px 10px 6px !important;
  }
}

.rey-headerIcon-counter {
  max-width: 15px !important;
  max-height: 15px !important;
}
.rey-headerIcon-counter .__cart-count {
  color: #FFFFFF !important;
}

.woocommerce .reyajfilter-before-products .--has-filter-btn {
  display: block !important;
}
.woocommerce .reyajfilter-before-products .--has-filter-btn .woocommerce-ordering {
  display: none !important;
}

@media (max-width: 1024px) {
  aside.rey-filterSidebar.--is-open section.widget_reyajfilter-attribute-filter:has(li) {
    padding: 0;
  }
  aside.rey-filterSidebar.--is-open section.widget_reyajfilter-attribute-filter:not(.reyajfilter-widget-hidden):has(li) .reyajfilter-layered-nav ul {
    display: block !important;
  }
  aside.rey-filterSidebar.--is-open section.widget_reyajfilter-attribute-filter:has(li) .widget-title {
    padding: 30px 15px 30px 15px;
  }
  aside.rey-filterSidebar.--is-open section.widget_reyajfilter-attribute-filter:not(.reyajfilter-widget-hidden):has(li) .reyajfilter-layered-nav {
    padding: 0px 15px 30px 15px;
  }
  aside.rey-filterSidebar.--is-open section.widget_reyajfilter-attribute-filter:has(li) .widget-title::after {
    background-image: none !important;
    margin-right: 15px;
  }
  .techno-mobile-filter-buttons {
    display: flex;
    gap: 15px;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D2E2F;
    border-top: 1px solid #4D5753;
    z-index: 1000;
  }
  .techno-mobile-filter-buttons .techno-filter-cancel,
  .techno-mobile-filter-buttons .techno-filter-apply {
    position: relative;
    flex: 1;
    padding: 17px 22px;
    border-radius: 48px;
    font-size: 12px;
    font-family: "Rubik";
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #E86C03;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .techno-mobile-filter-buttons .techno-filter-cancel .techno-loader,
  .techno-mobile-filter-buttons .techno-filter-apply .techno-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: techno-spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  .techno-mobile-filter-buttons .techno-filter-cancel.--loading,
  .techno-mobile-filter-buttons .techno-filter-apply.--loading {
    pointer-events: none;
    opacity: 0.7;
  }
  .techno-mobile-filter-buttons .techno-filter-cancel {
    background-color: transparent;
    color: #fff;
  }
  .techno-mobile-filter-buttons .techno-filter-cancel:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .techno-mobile-filter-buttons .techno-filter-cancel:after {
    content: none !important;
  }
  .techno-mobile-filter-buttons .techno-filter-apply {
    background-color: #E86C03;
    color: #fff;
  }
  .techno-mobile-filter-buttons .techno-filter-apply:hover {
    background-color: #d15f02;
  }
}
.reyajfilter-before-products .woocommerce-no-products-found .woocommerce-info {
  display: block !important;
  padding: 0 !important;
  background: transparent !important;
}
@media (max-width: 768px) {
  .reyajfilter-before-products .woocommerce-no-products-found .woocommerce-info {
    padding: 0;
  }
}
.reyajfilter-before-products .woocommerce-no-products-found .woocommerce-info::before {
  content: none !important;
}

body.woocommerce-cart #content .woocommerce-error,
body.woocommerce-checkout #content .woocommerce-error {
  display: none !important;
}
body.woocommerce-cart #content .arrow-back,
body.woocommerce-checkout #content .arrow-back {
  position: absolute;
  top: -78px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  body.woocommerce-cart #content .arrow-back span,
  body.woocommerce-checkout #content .arrow-back span {
    display: none !important;
  }
}
body.woocommerce-cart #content .woocommerce-checkout-info h3,
body.woocommerce-checkout #content .woocommerce-checkout-info h3 {
  font-weight: 600 !important;
}
body.woocommerce-cart #content .woocommerce-checkout-info .required_field,
body.woocommerce-checkout #content .woocommerce-checkout-info .required_field {
  font-weight: 400 !important;
}
body.woocommerce-cart #content .woocommerce-checkout-info p label,
body.woocommerce-checkout #content .woocommerce-checkout-info p label {
  font-weight: 400 !important;
}
body.woocommerce-cart #content .rey-checkout-shipping h3,
body.woocommerce-checkout #content .rey-checkout-shipping h3 {
  font-weight: 600 !important;
}
body.woocommerce-cart #content .rey-checkout-shipping .required_field,
body.woocommerce-checkout #content .rey-checkout-shipping .required_field {
  font-weight: 400 !important;
}
body.woocommerce-cart #content .rey-checkout-shipping label,
body.woocommerce-checkout #content .rey-checkout-shipping label {
  font-weight: 400 !important;
}
body.woocommerce-cart #content .rey-checkout-shipping .woocommerce-shipping-methods li label,
body.woocommerce-checkout #content .rey-checkout-shipping .woocommerce-shipping-methods li label {
  font-weight: 400 !important;
}
body.woocommerce-cart #content .woocommerce-checkout-payment h3,
body.woocommerce-checkout #content .woocommerce-checkout-payment h3 {
  font-weight: 600 !important;
}
body.woocommerce-cart #content .woocommerce-checkout-payment .required_field,
body.woocommerce-checkout #content .woocommerce-checkout-payment .required_field {
  font-weight: 400 !important;
}
body.woocommerce-cart #content .woocommerce-checkout-payment li label,
body.woocommerce-checkout #content .woocommerce-checkout-payment li label {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  body.woocommerce-cart #content .elementor-element-fa5a5cc,
  body.woocommerce-checkout #content .elementor-element-fa5a5cc {
    margin-left: 34px !important;
  }
}
@media (max-width: 768px) {
  body.woocommerce-cart #content input[type=text],
  body.woocommerce-cart #content input[type=email],
  body.woocommerce-cart #content input[type=tel],
  body.woocommerce-cart #content input[type=number],
  body.woocommerce-cart #content input[type=password],
  body.woocommerce-cart #content input[type=search],
  body.woocommerce-cart #content input[type=url],
  body.woocommerce-cart #content textarea,
  body.woocommerce-cart #content select,
  body.woocommerce-checkout #content input[type=text],
  body.woocommerce-checkout #content input[type=email],
  body.woocommerce-checkout #content input[type=tel],
  body.woocommerce-checkout #content input[type=number],
  body.woocommerce-checkout #content input[type=password],
  body.woocommerce-checkout #content input[type=search],
  body.woocommerce-checkout #content input[type=url],
  body.woocommerce-checkout #content textarea,
  body.woocommerce-checkout #content select {
    font-size: 16px !important;
  }
}

.rey-siteRow:has(li.product) aside.rey-filterSidebar section.widget_reyajfilter-attribute-filter:has(li).active-arrow-filter .widget-title::after {
  display: none !important;
}

.btn:is(.btn-primary, .btn-secondary, .btn-primary-outline, .btn-secondary-outline, .btn-simple, .btn-line, .js-rey-filterBtn-open) {
  display: none !important;
}
@media (max-width: 768px) {
  .btn:is(.btn-primary, .btn-secondary, .btn-primary-outline, .btn-secondary-outline, .btn-simple, .btn-line, .js-rey-filterBtn-open) {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .rey-filterBtn--noRes .js-rey-filterBtn-open {
    display: none !important;
  }
}
.rey-filterBtn--noRes .js-rey-filter-reset {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .rey-filterBtn--noRes .js-rey-filter-reset {
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .rey-loopHeader .rey-filterBtn .js-rey-filterBtn-open {
    position: absolute;
    width: max-content !important;
    right: 26px !important;
    bottom: 26px !important;
    padding: 0px !important;
    border: none !important;
  }
  .rey-loopHeader .rey-filterBtn .js-rey-filterBtn-open:before {
    position: absolute;
    top: -2px;
    right: -20px;
  }
}

@keyframes techno-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 1025px) {
  .rey-arrowSvg:hover .--default {
    --i-tr: none!important;
    --i-dsh-tr: none!important;
  }
}
.woocommerce-checkout-review-order-items {
  position: relative;
  z-index: 1;
}
.woocommerce-checkout-review-order-items .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.woocommerce-checkout-review-order-items .cart-item .product-name {
  flex: 1;
}
.woocommerce-checkout-review-order-items .cart-item .product-price {
  margin-left: 15px;
  white-space: nowrap;
  font-weight: 500;
}
.woocommerce-checkout-review-order-items .cart-totals .cart-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.woocommerce-checkout-review-order-items .cart-totals .cart-discount .discount-label {
  font-size: 14px;
}
.woocommerce-checkout-review-order-items .cart-totals .cart-discount .discount-amount {
  font-weight: 500;
}
.woocommerce-checkout-review-order-items .cart-totals .order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.woocommerce-checkout-review-order-items .cart-totals .order-total .total-label {
  font-size: 16px;
  font-weight: 500;
}
.woocommerce-checkout-review-order-items .cart-totals .order-total .total-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.woocommerce-checkout-review-order-items .cart-totals .order-total .total-amount .original-price del {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: line-through;
}
.woocommerce-checkout-review-order-items .cart-totals .order-total .total-amount .discounted-price {
  font-size: 18px;
  font-weight: 600;
}
.woocommerce-checkout-review-order-items .cart-totals .order-total .total-amount:not(:has(.original-price)) {
  font-size: 18px;
  font-weight: 600;
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon {
  display: flex;
  gap: 10px;
  align-items: center;
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon #coupon_code {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon #coupon_code::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon #coupon_code:focus {
  outline: none;
  border-color: #cea177;
  background: rgba(255, 255, 255, 0.1);
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon button {
  padding: 10px 20px;
  background: #E86C03;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon button:hover {
  background: #b8905f;
}
.woocommerce-checkout-review-order-items .checkout-coupon-form .checkout_coupon button.processing {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-inline-error-message {
  color: #cf2929 !important;
}
.checkout-inline-error-message#billing_first_name_description, .checkout-inline-error-message#billing_phone_description {
  color: #cf2929 !important;
  font-weight: 100;
  font-size: 14px;
}

#rey-searchPanel .rey-searchPanel-innerForm input {
  color: #000202 !important;
}

#rey-searchPanel .rey-searchPanel-innerForm input.--has-value {
  color: #000202;
}

.rey-headerCart-wrapper .rey-headerCart .rey-headerIcon-counter {
  color: #fff !important;
}

@media (min-width: 1025px) {
  .widget_reyajfilter-active-filters a.reset span {
    font-size: 0;
  }
  .widget_reyajfilter-active-filters a.reset span::after {
    content: "Сбросить фильтры";
    font-size: 10px;
  }
}

/*# sourceMappingURL=styles.css.map*/