@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
  background: white;
}
html.contrast {
  background: #000;
  color: #DDD133;
}
html.invert {
  filter: invert(1);
}
html.grayscale {
  filter: grayscale(1);
}
html.invert.grayscale {
  filter: invert(1) grayscale(1);
}
html.animation .aos-animate {
  -o-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  -o-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
}
html.cursor {
  cursor: url("../img/accessibility/custom-cursor.png"), auto;
}
html.font-medium {
  font-size: 11px;
}
html.font-big {
  font-size: 12px;
}
html.spacing-medium {
  letter-spacing: 0.5px;
}
html.spacing-big {
  letter-spacing: 1px;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
.h1 {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h4,
.h4 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.container {
  padding: 0 20px;
  margin: auto;
  max-width: 1400px;
  width: 100%;
}

button,
.btn {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 1.4rem;
  border: none;
  background: transparent;
  height: 40px;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
button svg,
button img,
.btn svg,
.btn img {
  width: 16px;
  height: 16px;
}

.btn-large {
  height: 48px;
}
.btn-large svg,
.btn-large img {
  width: 24px;
  height: 24px;
}

.btn-small {
  height: 32px;
}

.btn-primary {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #65A30D;
  color: white;
}
.btn-primary:hover {
  background: #84CC16;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.btn-primary:active {
  background: #4D7C0F;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0), 0px 2px 4px -2px rgba(0, 0, 0, 0);
}
.btn-primary:disabled, .btn-primary.btn-disabled, .btn-primary.disabled {
  opacity: 0.3;
  background: #78716C;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0), 0px 2px 4px -2px rgba(0, 0, 0, 0);
}
.btn-primary svg path {
  fill: white;
}
.btn-primary img {
  filter: brightness(0) invert(1);
}

.btn-secondary {
  background: white;
  color: black;
  border: 1px solid #E7E5E4;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.btn-secondary:hover {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-secondary:active {
  background: #FAFAF9;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.btn-secondary:disabled, .btn-secondary.btn-disabled, .btn-secondary.disabled {
  opacity: 0.3;
  box-shadow: none;
}
.btn-secondary svg path {
  fill: black;
}
.btn-secondary img {
  filter: brightness(0);
}

.contrast .btn-primary {
  color: #000;
  background: #DDD133;
}
.contrast .btn-primary img {
  filter: brightness(0);
}
.contrast .btn-primary svg path {
  fill: #000;
}
.contrast .btn-secondary {
  color: #DDD133;
  background: #000;
}
.contrast .btn-secondary img {
  filter: brightness(0) invert(86%) sepia(70%) saturate(524%) hue-rotate(347deg) brightness(88%) contrast(96%);
}
.contrast .btn-secondary svg path {
  fill: #DDD133;
}

.visibility .btn {
  outline: 2px solid white;
}
.visibility .btn:hover {
  outline: 4px solid white;
}

input,
textarea,
select {
  height: 40px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  color: inherit;
  padding: 8px;
  width: 100%;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #d1d5db;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: #65A30D;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-outer-spin-button,
select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nav-banner {
  background-color: #D63911;
  color: white;
  text-align: center;
  text-wrap: balance;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-banner p {
  padding: 4px 0;
}

.nav a {
  transition: color 0.3s;
}
.nav a:hover {
  color: #65A30D;
}
.nav-logo-container {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .nav-logo-container {
    margin-right: 28px;
  }
}
.nav-logo {
  max-width: 100%;
  height: auto;
}
.nav-top {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-top-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media only screen and (max-width: 992px) {
  .nav-top-menu {
    gap: 20px;
  }
}
.nav-top-option {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .nav-top-option {
    filter: brightness(0);
  }
}
@media only screen and (max-width: 992px) {
  .nav-top-option-text {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .nav-search {
    visibility: hidden;
  }
}
.nav-search-container {
  width: 350px;
  position: relative;
  transition: all 0.3s;
}
.nav-search-container input {
  border: 1px solid #6B7280;
  border-radius: 2px;
}
.nav-search-container.active {
  width: 80%;
}
.nav-search-container.active .nav-search {
  visibility: visible;
}
@media only screen and (max-width: 992px) {
  .nav-search-container.active .nav-search-icon {
    margin: 86px 20px;
  }
}
.nav-search-container.active .nav-search-close {
  display: block;
}
@media only screen and (max-width: 992px) {
  .nav-search-container.active .autocomplete-container {
    top: 133px;
    max-height: calc(100vh - 160px);
  }
}
@media only screen and (max-width: 992px) {
  .nav-search-container.active {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #d1d5db;
    inset: 0;
    margin: 0;
    z-index: 2;
    padding: 80px 20px;
  }
}
@media only screen and (max-width: 992px) {
  .nav-search-container {
    width: 32px;
    margin: 0 12px 0 auto;
  }
}
.nav-search-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
}
.nav-search-close-line {
  position: absolute;
  background: white;
  height: 2px;
  border-radius: 99px;
  width: 100%;
  top: 11px;
}
.nav-search-close-line-1 {
  transform: rotate(45deg);
}
.nav-search-close-line-2 {
  transform: rotate(-45deg);
}
.nav-search-icon {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .nav-search-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0);
  }
}
.nav-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .nav-bottom {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    z-index: 2;
    background: white;
    width: 100%;
    left: 0;
    height: 100%;
    gap: 24px;
    justify-content: flex-start;
    padding-left: 20px;
    overflow-y: auto;
    padding-bottom: 100px;
  }
}
.nav-bottom.open {
  display: flex;
}
.nav-link-container {
  padding: 8px 24px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 992px) {
  .nav-link-container {
    padding: 0;
    width: 100%;
    position: relative;
  }
}
.nav-arrow {
  display: none;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.nav-arrow svg {
  height: 32px;
  width: 32px;
}
.nav-arrow.open {
  transform: rotate(-90deg);
}
@media only screen and (max-width: 992px) {
  .nav-arrow {
    display: flex;
    position: absolute;
    right: 20px;
    top: -7px;
    cursor: pointer;
  }
}
.nav-submenu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 26px;
}
@media only screen and (max-width: 992px) {
  .nav-submenu {
    grid-template-columns: 1fr;
  }
}
.nav-submenu-container {
  position: fixed;
  z-index: 2;
  width: 100%;
  left: 0;
  right: 0;
  top: 100px;
  padding: 24px 0;
  background: white;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
@media only screen and (max-width: 992px) {
  .nav-submenu-container {
    position: static;
    max-height: 0;
    padding: 0;
  }
}
.nav-submenu-container.open {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
  padding: 24px 0;
}
.nav-link-2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.nav-submenu-2 {
  display: flex;
  gap: 4px;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 400;
}
.nav-user-logged {
  cursor: pointer;
}
.nav-user-logged-text {
  transition: color 0.3s;
}
.nav-user-logged-text:hover {
  color: #65A30D;
}
.nav-btn {
  display: none;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .nav-btn {
    display: block;
  }
}
.nav-btn.open .nav-btn-line-1 {
  top: 11px;
  transform: rotate(45deg);
}
.nav-btn.open .nav-btn-line-2 {
  bottom: 11px;
  transform: rotate(-45deg);
}
.nav-btn-line {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: black;
  position: absolute;
  transition: all 0.3s;
}
.nav-btn-line-1 {
  top: 7px;
}
.nav-btn-line-2 {
  bottom: 7px;
}

.user-dropdown {
  position: absolute;
  padding: 10px 15px;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.15);
  background: white;
  top: 33px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.user-dropdown.open {
  visibility: visible;
  opacity: 1;
}

.contrast .nav-top-menu img {
  filter: brightness(0) invert(86%) sepia(70%) saturate(524%) hue-rotate(347deg) brightness(88%) contrast(96%);
}
.contrast .nav-logo {
  filter: brightness(0) invert(86%) sepia(70%) saturate(524%) hue-rotate(347deg) brightness(88%) contrast(96%);
}
.contrast .nav-bottom {
  background: #000;
}
.contrast .nav-submenu-container {
  background: #000;
}
.contrast .user-dropdown {
  background: #000;
}

.accessibility {
  padding: 6px 0;
  background: #1C1917;
  border-radius: 0px 0px 4px 0px;
  color: white;
  position: absolute;
  left: 48px;
  top: 0;
  font-size: 1.6rem;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.accessibility.active {
  visibility: visible;
  opacity: 1;
}
.accessibility-btn {
  padding: 10px;
  border-radius: 0px 0px 4px 0px;
  background: #57534E;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 1;
}
.accessibility-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.accessibility-item:hover {
  background: white;
  color: black;
}
.accessibility-item:hover .accessibility-item-icon path {
  fill: #65A30D;
}
.accessibility-item-icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accessibility-item-icon svg {
  width: 32px;
  height: 32px;
  display: flex;
}
.accessibility-item-icon path {
  fill: white;
  transition: fill 0.3s;
}
.accessibility-fonts-container, .accessibility-spacings-container {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.accessibility-fonts, .accessibility-spacings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 42px;
  gap: 8px;
  padding: 0 12px;
}
.accessibility-font, .accessibility-spacing {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.accessibility-font rect,
.accessibility-font path, .accessibility-spacing rect,
.accessibility-spacing path {
  fill: white;
  transition: fill 0.3s;
}
.accessibility-font:hover, .accessibility-font.active, .accessibility-spacing:hover, .accessibility-spacing.active {
  background: white;
  color: black;
}
.accessibility-font:hover rect,
.accessibility-font:hover path, .accessibility-font.active rect,
.accessibility-font.active path, .accessibility-spacing:hover rect,
.accessibility-spacing:hover path, .accessibility-spacing.active rect,
.accessibility-spacing.active path {
  fill: #65A30D;
}

.contrast .accessibility {
  background: #DDD133;
  color: #000;
}
.contrast .accessibility svg path, .contrast .accessibility rect {
  fill: #000;
}
.contrast .accessibility-btn {
  background: #DDD133;
}
.contrast .accessibility-btn svg path {
  fill: #000;
}

.contrast .accessibility-contrast,
.animation .accessibility-animation,
.visibility .accessibility-visibility,
.invert .accessibility-invert,
.grayscale .accessibility-grayscale,
.cursor .accessibility-cursor,
.read .accessibility-read {
  background: white;
  color: #475569;
}
.contrast .accessibility-contrast .accessibility-item-icon path,
.animation .accessibility-animation .accessibility-item-icon path,
.visibility .accessibility-visibility .accessibility-item-icon path,
.invert .accessibility-invert .accessibility-item-icon path,
.grayscale .accessibility-grayscale .accessibility-item-icon path,
.cursor .accessibility-cursor .accessibility-item-icon path,
.read .accessibility-read .accessibility-item-icon path {
  fill: #65A30D;
}

.btn-read {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s;
  margin-left: auto;
}

.read .btn-read {
  opacity: 1;
  visibility: visible;
  width: 48px;
  height: 40px;
}

.read .btn-read.active {
  animation: pulse 2s infinite;
}

.blog-page-main .block-text .btn-read,
.inspiration-page-content .block-text .btn-read {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.footer {
  background: #292524;
  padding: 60px 0 40px 0;
  margin-top: 80px;
  color: white;
}
.footer a {
  transition: color 0.3s;
}
.footer a:hover {
  color: #65A30D;
}
.footer-logo {
  filter: brightness(0) invert(1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .footer-top {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.footer-top-info-title {
  font-size: 1.6rem;
  font-weight: 500;
}
.footer-top-info-content {
  font-size: 1.8rem;
}
.footer-menu {
  display: flex;
  gap: 80px;
}
@media only screen and (max-width: 992px) {
  .footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.footer-menu-link {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.footer-submenu-link {
  margin-bottom: 2px;
  display: block;
}
.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-socials svg path {
  transition: fill 0.3s;
}
.footer-socials svg path:hover {
  fill: #65A30D;
}

.contrast .footer {
  background: #DDD133;
  color: #000;
}
.contrast .footer-logo {
  filter: brightness(0);
}
.contrast .footer svg path {
  fill: #000;
}

.breadcrumbs-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 15px 0;
}
.breadcrumbs-item {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.breadcrumbs-item.active {
  font-weight: 500;
  color: black;
}
.breadcrumbs-item svg {
  width: 12px;
  height: 12px;
}

.contrast .breadcrumbs-item.active {
  color: #DDD133;
}

.pagination {
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.pagination-items {
  display: flex;
  gap: 8px;
}
.pagination-item {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}
.pagination-item.active {
  border-radius: 2px;
  border: 1px solid var(--Colors-stone-500, #78716C);
}
.pagination-link {
  font-weight: 600;
  font-size: 1.6rem;
}
.pagination-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pagination-mobile {
    display: block;
    width: 16px;
    height: 16px;
  }
}
.pagination-mobile svg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .pagination-desktop {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pagination-btn {
    padding: 0;
    width: 32px;
    height: 32px;
  }
}
.pagination-prev svg {
  transform: rotate(180deg);
}

.modal {
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  background: #fff;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.modal-title {
  font-size: 2rem;
  font-weight: 500;
  padding-right: 30px;
}
.modal-text {
  margin: 16px 0;
  font-size: 1.2rem;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
.modal-close::before, .modal-close::after {
  content: "";
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 99px;
  position: absolute;
  top: 10px;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
.modal-overlay {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.modal-overlay.open {
  visibility: visible;
  opacity: 1;
}

.modal-cookies {
  right: 20px;
  bottom: 20px;
  top: auto;
  left: auto;
  transform: none;
  max-width: 350px;
}
@media only screen and (max-width: 768px) {
  .modal-cookies {
    max-width: none;
    left: 20px;
  }
}
.modal-cookies-btn {
  width: 100%;
  margin-bottom: 8px;
}
.modal-cookies-link {
  color: #65A30D;
  text-align: center;
  width: 100%;
  display: block;
}

.filter-form-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.filter-form input[type=number] {
  width: 60px;
  text-align: center;
}
.filter-form-content {
  display: flex;
  gap: 48px;
  padding: 5px 0 25px 0;
  flex-wrap: wrap;
}
.filter-form-range-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-form-main-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-form-inputs-row {
  padding: 0 16px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.filter-form-row-label {
  display: flex;
  gap: 4px;
  align-items: center;
}
.filter-form-buttons {
  display: flex;
  justify-content: space-between;
}
.filter-form .checkbox-label {
  display: flex;
  gap: 8px;
  align-items: center;
}
.filter-form .checkbox-inputs-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-form .checkbox-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.filter-form .checkbox-item.square {
  font-size: 1.4rem;
}
.filter-form .checkbox-item.square .checkmark {
  top: 2px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
}
.filter-form .range-slider {
  background: #e5e7eb;
  height: 4px;
}
.filter-form .range-slider input {
  outline: none;
  padding: 0;
}
.filter-form .range-slider .range-slider__thumb {
  width: 20px;
  height: 20px;
  background: #65A30D;
  border: 1px solid #65A30D;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1019607843);
}
.filter-form .range-slider .range-slider__range {
  background: #65A30D;
}

.modal.cart {
  width: 100%;
  max-width: 900px;
}
.modal.cart .left {
  display: flex;
}
.modal.cart .modal-title {
  font-size: 24px;
  font-weight: 500;
}
.modal.cart .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.modal.cart .product-details {
  display: flex;
  align-items: center;
  padding: 20px 45px 20px 5px;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}
.modal.cart .product-details .number,
.modal.cart .product-details .name {
  min-width: 20px;
  font-size: 18px;
  font-weight: 500;
}
.modal.cart .product-details .number {
  min-width: 20px;
  font-size: 18px;
  font-weight: 500;
}
.modal.cart .product-details .product-main {
  flex: 1 0 0;
  text-align: left;
  display: flex;
  gap: 5px;
  align-items: center;
  margin: 0;
}
.modal.cart .product-details .product-main-photo {
  width: 70px;
  height: 70px;
}
.modal.cart .product-details .product-main-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.modal.cart .product-details .price,
.modal.cart .product-details .amount,
.modal.cart .product-details .total {
  width: 125px;
  font-size: 20px;
  font-weight: 600;
}
.modal.cart .product-details .amount-text {
  font-weight: 400;
}
.modal.cart .product-details .amount-mobie {
  display: none;
}
@media only screen and (max-width: 1260px) {
  .modal.cart .product-details {
    column-gap: 0;
    row-gap: 10px;
    padding: 20px 0;
    border-bottom: none;
  }
  .modal.cart .product-details .price {
    display: none;
  }
  .modal.cart .product-details .total,
  .modal.cart .product-details .amount {
    width: 50%;
  }
  .modal.cart .product-details .amount {
    text-align: left;
  }
  .modal.cart .product-details .total {
    text-align: right;
  }
  .modal.cart .product-details .product-main {
    flex: auto;
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
  }
  .modal.cart .product-details .product-main-photo {
    min-width: 70px;
  }
}

.modal-review .product {
  display: flex;
  gap: 5px;
  align-items: center;
}
.modal-review .product-photo {
  width: 70px;
  height: 70px;
}
.modal-review .product-photo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}
.modal-review .product-title {
  font-size: 16px;
  font-weight: 500;
}
.modal-review input[type=radio] {
  display: none;
}
.modal-review .star-input {
  cursor: pointer;
  margin: 0;
}
.modal-review .review {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 4px;
}
.modal-review .text-label {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 12px;
}
.modal-review .info-bottom {
  font-size: 12px;
  padding: 16px 0;
}
.modal-review .info-bottom a {
  color: #65A30D;
}
.modal-review textarea {
  height: 100px;
}
.modal-review .buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal-author .product {
  display: flex;
  gap: 5px;
  align-items: center;
}
.modal-author .product-photo {
  width: 70px;
  height: 70px;
}
.modal-author .product-photo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}
.modal-author .product-title {
  font-size: 16px;
  font-weight: 500;
}
.modal-author .review {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 4px;
}
.modal-author .text-label {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 12px;
}
.modal-author .info-bottom {
  font-size: 12px;
  padding: 16px 0;
}
.modal-author .info-bottom a {
  color: #65A30D;
}
.modal-author textarea {
  height: 100px;
}
.modal-author .buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal-inpost {
  height: 80%;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .modal-inpost {
    width: 95%;
  }
}
.modal-inpost .modal-content {
  height: 100%;
}
.modal-inpost .inpost-widget {
  height: 100%;
}

.modal-orlen {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .modal-orlen {
    width: 95%;
  }
}

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-success .title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.modal-success .text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.contrast .modal {
  background: #000;
}
.contrast .modal-close::before,
.contrast .modal-close::after {
  background: #DDD133;
}
.contrast .modal-cookies-link {
  color: #DDD133;
}

.category-card {
  width: 200px;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.category-card:hover .category-card-photo {
  transform: scale(1.1);
}
.category-card-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.category-card-btn {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  height: fit-content;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  max-width: 90%;
  min-height: 40px;
}

.visibility .category-card {
  outline: 2px solid white;
}
.visibility .category-card:hover {
  outline: 4px solid white;
}

.product-card {
  position: relative;
  padding: 8px;
  border: 1px solid #e5e7eb;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-tags {
  position: absolute;
  top: 4px;
  left: 4px;
  display: flex;
  gap: 4px;
}
.product-card-tag {
  padding: 4px 8px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}
.product-card-tag.discount {
  background: #65A30D;
}
.product-card-tag.new {
  background: #4b5563;
}
.product-card-photo-container {
  height: 240px;
  width: 100%;
}
.product-card-photo {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.product-card-content {
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-price-container {
  display: flex;
  gap: 4px;
}
.product-card-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #65A30D;
}
.product-card-price-old {
  font-size: 1.8rem;
  color: #65A30D;
  position: relative;
}
.product-card-price-old::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid #65A30D;
  transform: rotate(-30deg);
}
.product-card-lowest {
  font-size: 1.2rem;
  color: #65A30D;
}
.product-card-title {
  font-size: 1.6rem;
}
.product-card-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}
.product-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-card-review {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #65A30D;
  font-size: 1.2rem;
}
.product-card-buttons {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.product-card-buttons .btn {
  height: 32px;
  width: 32px;
  padding: 0;
}
.product-card-buttons .btn svg {
  width: 16px;
  height: 16px;
}

.btn-favourite-remove svg path {
  fill: red;
}

.contrast .product-card-price {
  color: #DDD133;
}

.visibility .product-card {
  outline: 2px solid white;
}
.visibility .product-card:hover {
  outline: 4px solid white;
}

.blog-card {
  border: 1px solid #f3f4f6;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  position: relative;
}
.blog-card:hover {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card-title {
  color: #65A30D;
}
.blog-card-photo {
  height: 225px;
  width: 100%;
  object-fit: contain;
  background: #fff;
}
.blog-card-content {
  padding: 16px 12px 12px 12px;
}
.blog-card-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.blog-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.2rem;
  margin-bottom: 36px;
}
.blog-card-arrow {
  margin-left: auto;
  padding: 20px 8px 8px 20px;
  width: fit-content;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.contrast .blog-card-arrow svg path {
  fill: #DDD133;
}

.visibility .blog-card {
  outline: 2px solid white;
}
.visibility .blog-card:hover {
  outline: 4px solid white;
}

.producer-card {
  display: flex;
  padding: 12px;
  border: 1px solid #f3f4f6;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  gap: 30px;
  align-items: center;
  transition: box-shadow 0.3s;
}
.producer-card:hover {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.producer-card:hover .producer-card-title, .producer-card:hover .producer-card-bottom {
  color: #65A30D;
}
.producer-card-photo {
  height: 150px;
  width: 125px;
  object-fit: cover;
  flex-shrink: 0;
  padding: 12px;
  background: #E5E7EB;
}
.producer-card-title {
  font-size: 2rem;
  font-weight: 600;
  transition: color 0.3s;
}
.producer-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.2rem;
  color: #404040;
  margin: 8px 0 12px 0;
}
.producer-card-bottom {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.producer-card-arrow {
  display: flex;
  align-items: center;
}

.contrast .producer-card-description {
  color: #DDD133;
}

.visibility .producer-card {
  outline: 2px solid white;
}
.visibility .producer-card:hover {
  outline: 4px solid white;
}

.inspiration-card {
  height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.inspiration-card:hover .inspiration-card-description {
  max-height: 90px;
}
.inspiration-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #9CA3AF;
  position: absolute;
}
.inspiration-card-content {
  padding: 32px 16px 16px 16px;
  margin-top: auto;
  color: white;
  position: relative;
}
.inspiration-card-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.inspiration-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.2rem;
  max-height: 0;
  transition: max-height 0.3s;
}

.contrast .inspiration-card {
  color: #DDD133;
}

.visibility .inspiration-card {
  outline: 2px solid white;
}
.visibility .inspiration-card:hover {
  outline: 4px solid white;
}

.animation .inspiration-card-description, .visibility .inspiration-card-description {
  max-height: none;
}

.page-author {
  display: flex;
  gap: 32px;
  font-size: 16px;
  color: #6B7280;
  align-items: flex-start;
  padding: 40px 0;
}
@media only screen and (max-width: 1260px) {
  .page-author {
    flex-direction: column;
    gap: 0;
  }
}
.page-author-photo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}
.page-author-right {
  flex-grow: 1;
}
@media only screen and (max-width: 768px) {
  .page-author-right {
    width: 100%;
  }
}
.page-author-content {
  display: flex;
  gap: 42px;
}
@media only screen and (max-width: 1260px) {
  .page-author-content {
    flex-direction: column;
    gap: 0;
  }
}
.page-author-content-main {
  flex-grow: 1;
}
.page-author-title {
  padding: 8px 0 12px 0;
}
.page-author-name {
  font-size: 30px;
  color: black;
  font-weight: 500;
}
.page-author-role {
  color: #374151;
  margin-bottom: 12px;
}
.page-author-socials {
  width: 320px;
}
.page-author-socials-title {
  padding: 8px 0 12px 0;
}
.page-author-socials-list {
  display: flex;
  gap: 8px;
}
.page-author-socials-btn {
  width: 40px;
  height: 40px;
  padding: 0;
}
.page-author-reviews {
  padding: 24px 0px 12px 0px;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 500;
  color: black;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 1260px) {
  .page-author-reviews {
    flex-direction: column;
    gap: 24px;
  }
}
.page-author-review {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media only screen and (max-width: 1260px) {
  .page-author-review {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-author-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.page-author-stars input[type=radio] {
  display: none;
}
.page-author-stars .star-input {
  display: flex;
  cursor: pointer;
}
.page-author-star {
  width: 26px;
  height: 26px;
}
@media only screen and (max-width: 1260px) {
  .page-author-write {
    width: 100%;
  }
}

.chat {
  padding: 20px 16px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  overflow-y: auto;
}
.chat-container {
  padding: 10px;
  border-radius: 8px;
  background: #f3f4f6;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 700px;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  max-width: 85vw;
  z-index: 1;
}
.chat-message-container {
  display: flex;
  gap: 4px;
  padding-right: 32px;
}
.chat-message-container.client {
  align-self: flex-end;
  display: block;
  padding: 0 0 0 32px;
}
.chat-message-container.client .chat-message-content {
  background: #65A30D;
  border-radius: 12px 12px 2px 12px;
  color: white;
}
.chat-message-photo {
  width: 24px;
  height: 24px;
  background: #65A30D;
  border-radius: 50%;
  margin-top: 18px;
  flex-shrink: 0;
}
.chat-message-name {
  color: #65A30D;
  font-size: 12px;
}
.chat-message-content {
  border-radius: 2px 12px 12px 12px;
  background: #f3f4f6;
  padding: 10px;
  color: #404040;
}
.chat-input-container {
  position: relative;
  margin-top: 4px;
}
.chat-input-btn {
  position: absolute;
  right: 8px;
  top: 13px;
  padding: 0;
  box-shadow: none;
  height: auto;
}
.chat-auth {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0px 0px 8px 8px;
  background: #f9fafb;
  padding: 10px;
}
.chat-auth-title {
  color: #404040;
  text-align: center;
  margin-bottom: 12px;
}
.chat-auth label {
  font-size: 12px;
  color: #111827;
  margin-bottom: 4px;
  display: block;
}
.chat-auth .btn {
  width: 100%;
  margin-top: 12px;
  font-size: 12px;
}
.chat-auth span {
  color: #dc2626;
}
.chat-close-btn {
  position: absolute;
  right: 5px;
  top: -26px;
  cursor: pointer;
}
.chat-icon {
  width: 72px;
  height: 72px;
  background: #65A30D;
  border-radius: 50%;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.chat-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #65A30D;
  color: white;
  z-index: 1000;
}
.chat-btn svg {
  scale: 1.5;
}

.bot-product {
  margin: 2rem 0;
}
.bot-product img, .bot-product a, .bot-product span {
  display: block;
}
.bot-product img {
  width: 100px;
  border-radius: 4px;
  height: auto;
}
.bot-product a {
  font-weight: 400;
  text-decoration: underline;
}

.chat-message.loader {
  width: fit-content;
}
.chat-message.loader .chat-message-content {
  padding-left: 22px;
}

.chat-container {
  display: none;
}
.chat-container.open {
  display: flex;
}

.chat-loader {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 12px 0 #404040, -12px 0 rgba(64, 64, 64, 0.1803921569);
    background: #404040;
  }
  33% {
    box-shadow: 12px 0 #404040, -12px 0 rgba(64, 64, 64, 0.1803921569);
    background: rgba(64, 64, 64, 0.1803921569);
  }
  66% {
    box-shadow: 12px 0 rgba(64, 64, 64, 0.1803921569), -12px 0 #404040;
    background: rgba(64, 64, 64, 0.1803921569);
  }
  100% {
    box-shadow: 12px 0 rgba(64, 64, 64, 0.1803921569), -12px 0 #404040;
    background: #404040;
  }
}
.fb-widget {
  position: fixed;
  top: 110px;
  right: -300px;
  z-index: 10;
  display: flex;
  align-items: center;
  background: #65A30D;
  padding: 8px 16px 8px 8px;
  border-radius: 4px 0px 0px 4px;
  transition: all 0.4s;
}
@media screen and (min-width: 786px) {
  .fb-widget:hover {
    right: 0;
  }
}
.fb-widget-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-left: 16px;
  margin-right: 6px;
}

.faq {
  padding: 64px 0;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.faq-subtitle {
  font-size: 1.8rem;
}
.faq-content {
  font-size: 1.6rem;
  max-width: 680px;
  margin: 24px auto 40px auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  text-align: left;
  padding: 16px;
  border: 1px solid #d1d5db;
  transition: border-color 0.3s;
}
.faq-item.active {
  border-color: #65A30D;
}
.faq-item.active .faq-answer {
  padding-top: 16px;
  max-height: 1000px;
}
.faq-item.active .faq-question-arrow {
  transform: rotate(180deg);
}
.faq-question {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question-content {
  max-width: calc(100% - 50px);
}
.faq-question-arrow {
  padding: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s;
}
.faq-answer {
  font-size: 1.6rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-btn {
  margin: 40px auto 0 auto;
  width: fit-content;
}

.faq-page-item {
  padding: 30px 40px;
  border-bottom: 1px solid #f2f2f2;
}
.faq-page-question {
  font-size: 2rem;
  font-weight: 600;
}
.faq-page-answer {
  padding: 20px 10px 0;
}

.autocomplete-container {
  padding: 20px;
  display: flex;
  gap: 20px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 3;
  top: 60px;
  overflow: auto;
  max-height: 90vh;
  width: 90vw;
  max-width: 900px;
  left: -15vw;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 1260px) {
  .autocomplete-container {
    top: 55px;
  }
}
@media only screen and (max-width: 992px) {
  .autocomplete-container {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .autocomplete-container {
    flex-direction: column;
  }
}
.autocomplete-container .search-item {
  padding: 10px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  max-width: 300px;
}
.autocomplete-container .search-item:hover {
  border-radius: 4px;
  background: #f9fafb;
}
.autocomplete-container .search-product {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.autocomplete-container .search-product:hover {
  border-color: #9ca3af;
  cursor: pointer;
}
.autocomplete-container .search-product .photo-container {
  min-width: 200px;
  height: 90px;
}
@media only screen and (max-width: 768px) {
  .autocomplete-container .search-product .photo-container {
    min-width: 0;
  }
}
.autocomplete-container .search-product .photo-container .search-product-photo {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}
.autocomplete-container .search-product .price {
  color: #65A30D;
  font-size: 18px;
  font-weight: 600;
}
.autocomplete-container .search-product .title {
  font-size: 16px;
}
.autocomplete-container .see-all {
  margin: 10px 0 0 auto;
  width: fit-content;
}
.autocomplete-container .see-all-container {
  padding-bottom: 20px;
}
.autocomplete-container .left {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.autocomplete-container .autocomplete-products {
  flex: 2 0 0;
}
.autocomplete-container .search-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.contrast .autocomplete-container {
  background-color: #000;
}

.checkbox-item {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  user-select: none;
}
.checkbox-item a, .checkbox-item strong {
  color: black;
}
.checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-item .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #65A30D;
  border-radius: 50%;
}
.checkbox-item .checkmark.white {
  background-color: white;
}
.checkbox-item .checkmark.check-error {
  border-color: #C8232C !important;
}
.checkbox-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  right: 4px;
  top: 0;
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-item input[type=checkbox]:checked ~ .checkmark {
  background: #65A30D;
  border-color: transparent;
}
.checkbox-item input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}
.checkbox-item input[type=radio]:checked ~ .checkmark {
  border: 6px solid #65A30D;
}
.checkbox-item-col {
  display: flex;
  flex-direction: column;
}
.checkbox-item-2 {
  font-size: 14px;
  line-height: 1.1;
  padding-top: 2px;
  margin-bottom: 0;
}
.checkbox-item-2 .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #65A30D;
  border-radius: 5px;
  top: 0;
}
.checkbox-item-2 .checkmark:after {
  right: 5px;
}
.checkbox-item.square {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 30px;
}
.checkbox-item.square .checkmark {
  top: 5px;
  border: 1px solid #B6B6B6;
  border-radius: 5px;
  height: 20px;
  width: 20px;
}
.checkbox-item.square .checkmark:after {
  right: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.switch-btn {
  display: flex;
  align-items: center;
}
.switch-btn input {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
.switch-btn label {
  cursor: pointer;
  text-indent: -9999px;
  width: 26px;
  height: 16px;
  background: white;
  display: block;
  border-radius: 13px;
  position: relative;
  border: 1px solid #B8BBBC;
  margin-bottom: 0;
}
.switch-btn label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #B8BBBC;
  border-radius: 50%;
  transition: 0.3s;
}
.switch-btn input:checked + label {
  background: white;
}
.switch-btn input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.font-bigger .checkbox-item,
.font-bigger .checkbox-item-2 {
  font-size: 18px !important;
}

.font-biggest .checkbox-item,
.font-biggest .checkbox-item-2 {
  font-size: 20px !important;
}

#contact-form {
  width: 100%;
  max-width: 740px;
}

.form-grid {
  display: grid;
  grid-template: auto/repeat(12, 1fr);
  grid-gap: 10px;
  margin-bottom: 25px;
}
.form-grid-item {
  position: relative;
  max-width: 100%;
}
.form-grid-item--3 {
  grid-column: span 3/auto;
}
.form-grid-item--4 {
  grid-column: span 4/auto;
}
.form-grid-item--6 {
  grid-column: span 6/auto;
}
.form-grid-item--6.last {
  grid-column: 7/13;
}
@media only screen and (max-width: 768px) {
  .form-grid-item--6.last {
    grid-column: span 12/auto;
  }
}
.form-grid-item--8 {
  grid-column: span 8/auto;
}
.form-grid-item--9 {
  grid-column: span 9/auto;
}
.form-grid-item--12 {
  grid-column: span 12/auto;
}
.form-grid-item.hide {
  display: none;
}
@media only screen and (max-width: 768px) {
  .form-grid-item {
    grid-column: span 12/auto;
  }
}
.form-grid-item .icon-error {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
.form-row .form-group {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .form-row .form-group {
    width: 100%;
  }
}

.form-label {
  position: absolute;
  top: 9px;
  left: 14px;
  background-color: transparent;
  color: white;
  font-size: 14px;
  font-weight: 300;
  padding: 0 3px;
  transition: all 0.2s;
}
.form-label.active {
  color: #65A30D;
  top: -8px;
  font-size: 11px;
  z-index: 10;
}
.form-label-textarea {
  top: 70%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.form-group.focus {
  outline: none;
}
.form-group.focus .form-label {
  top: -10px !important;
  font-size: 12px;
  color: #F6CC46;
}
.form-group .icon-error {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.form-group-select {
  position: relative;
}

.form-select-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #65A30D;
  font-size: 16px;
  font-weight: 300;
}
.form-select-label:hover {
  cursor: pointer;
}
.form-select-label svg {
  transition: all 0.2s;
}
.form-select-label.open svg {
  transform: rotate(-180deg);
  transition: all 0.2s;
}

.form-select {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 15px 20px;
}
.form-select-item {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}
.form-select-item:hover {
  cursor: pointer;
}

.form-input,
.form-textarea {
  width: 100%;
}
.form-input.input-error,
.form-textarea.input-error {
  border-color: #C8232C !important;
}

.form-textarea {
  min-height: 180px;
  padding: 15px 25px;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .form-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.form-buttons .btn {
  width: 130px;
  height: 40px;
  margin-left: 40px;
}
@media only screen and (max-width: 992px) {
  .form-buttons .btn {
    margin-left: 0;
    margin-top: 30px;
  }
}
.form-buttons .btn img {
  margin-right: 0;
  margin-left: 10px;
}

.input-error-message {
  display: none;
  font-size: 12px;
}

.input-error-response {
  display: none;
  position: absolute;
  top: 105%;
  color: #C8232C;
  font-size: 12px;
}

.btn-row {
  display: flex;
}
.btn-row.justify-end {
  justify-content: flex-end;
}
.btn-row .btn {
  font-size: 14px;
}

.form-result {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-result .icon {
  margin-bottom: 30px;
}
.form-result .title {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.form-result .text {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}

.form-error {
  display: none;
  color: #C8232C;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.center {
  justify-content: center;
}

.form-success {
  display: none;
  color: white;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  text-transform: uppercase;
}

.password-label {
  position: relative;
}
.password-label img {
  position: absolute;
  right: 8px;
  bottom: 11px;
  cursor: pointer;
}

.form-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  transition: background-color 0.3s;
}
.form-upload label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-upload label svg {
  margin-right: 5px;
}
.form-upload:hover, .form-upload label:hover {
  cursor: pointer;
}
.form-upload-list {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
@media only screen and (max-width: 1260px) {
  .form-upload-list {
    margin-left: 0;
    margin-top: 20px;
  }
}
.form-upload-list__item {
  font-size: 14px;
  font-weight: 300;
}
.form-upload-list__item img {
  margin-left: 5px;
}
.form-upload-list__item img:hover {
  cursor: pointer;
}
.form-upload-row {
  display: flex;
}
@media only screen and (max-width: 1260px) {
  .form-upload-row {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.font-bigger label,
.font-bigger .form-upload-list__item {
  font-size: 18px !important;
}

.font-biggest label,
.font-biggest .form-upload-list__item {
  font-size: 20px !important;
}

.home-swiper {
  height: 500px;
}
.home-swiper-pagination.swiper-pagination {
  height: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  background: #fafafa;
  position: static;
  align-items: center;
}
.home-swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 0;
  opacity: 1;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.3s;
}
.home-swiper-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #65A30D;
}
.home-slide {
  font-size: 1.6rem;
}
.home-slide.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-slide-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.8);
}
.home-slide-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}
.home-slide-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.home-slide h1 {
  width: 900px;
  max-width: 100%;
  font-size: 6.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .home-slide h1 {
    font-size: 3.2rem;
  }
}

.contrast .home-swiper-pagination.swiper-pagination {
  background: #000;
}
.contrast .home-swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  background: #DDD133;
  opacity: 0.5;
}
.contrast .home-swiper-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.block-text {
  padding: 40px 0 20px 0;
}
.block-text h1,
.block-text h2,
.block-text h3,
.block-text h4,
.block-text h5,
.block-text h6 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.block-text a {
  font-weight: 500;
  color: #65A30D;
}
.block-text li {
  position: relative;
  padding-left: 20px;
  align-items: center;
}
.block-text li::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  width: 8px;
  height: 2px;
  border-radius: 5px;
  background: #65A30D;
}

.block-categories {
  padding-top: 40px;
  padding-bottom: 40px;
}
.block-categories-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .block-categories-top {
    flex-direction: column;
    gap: 20px;
  }
}
.block-categories-subtitle {
  margin-top: 4px;
  font-size: 1.8rem;
  color: #374151;
}
.block-categories-btn {
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .block-categories-btn {
    width: 100%;
  }
}
.block-categories-swiper {
  height: 250px;
  margin-top: 40px;
}
.block-categories-swiper-pagination.swiper-pagination {
  height: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: static;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .block-categories-swiper-pagination.swiper-pagination {
    display: none;
  }
}
.block-categories-swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 0;
  opacity: 1;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.3s;
}
.block-categories-swiper-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #65A30D;
}
.block-categories .swiper-button-prev {
  width: 32px;
  height: 32px;
  padding: 0;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 42%;
}
.block-categories .swiper-button-prev img {
  transform: rotate(180deg);
}
.block-categories .swiper-button-prev::after {
  content: none;
}
.block-categories .swiper-button-next {
  width: 32px;
  height: 32px;
  padding: 0;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 42%;
}
.block-categories .swiper-button-next::after {
  content: none;
}

.block-producers {
  padding-top: 40px;
  padding-bottom: 40px;
}
.block-producers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 992px) {
  .block-producers-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .block-producers-list {
    grid-template-columns: 1fr;
  }
}

.block-products {
  padding-top: 55px;
  padding-bottom: 40px;
}
.block-products-title {
  text-align: center;
}
.block-products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media only screen and (max-width: 1260px) {
  .block-products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .block-products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .block-products-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.block-articles {
  padding-top: 40px;
  padding-bottom: 40px;
}
.block-articles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 992px) {
  .block-articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .block-articles-list {
    grid-template-columns: 1fr;
  }
}

.block-inspirations {
  padding-top: 40px;
  padding-bottom: 40px;
}
.block-inspirations-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 992px) {
  .block-inspirations-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .block-inspirations-list {
    grid-template-columns: 1fr;
  }
}

.block-photo {
  display: block;
  height: 300px;
  width: auto;
  margin: 16px auto;
  max-width: 100%;
  object-fit: contain;
}

.block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 40px 0 20px 0;
}

.block-video {
  padding: 40px 0 20px 0;
  margin: auto;
  display: block;
  max-width: 100%;
  height: auto;
}

.block-quote {
  padding: 40px 0 20px 0;
  max-width: 90%;
  margin: auto;
  display: block;
}

.block-files {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}
@media only screen and (max-width: 1260px) {
  .block-files {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .block-files {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .block-files {
    grid-template-columns: 1fr;
  }
}
.block-files-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #b3b3b3;
  padding: 30px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-title {
  margin: 20px 0 45px 0;
}
.page h2 {
  font-size: 2.4rem;
}
.page li {
  position: relative;
  padding-left: 20px;
}
.page li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 5px;
  background: #65A30D;
}
.page-gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 5rem auto;
}
.page-gallery-image {
  width: 195px;
  height: 195px;
  object-fit: cover;
}

.contrast .block-categories-subtitle {
  color: #DDD133;
}
.contrast .block-categories-swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  background: #DDD133;
  opacity: 0.5;
}
.contrast .block-categories-swiper-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.products-categories {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
.products-category {
  padding: 0 16px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 0 0;
  min-width: 200px;
  max-width: 300px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s;
}
@media only screen and (max-width: 768px) {
  .products-category {
    min-width: 167px;
  }
}
.products-category:hover, .products-category.active {
  color: #65A30D;
}
.products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 10px 0 40px 0;
}
@media only screen and (max-width: 1260px) {
  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .products-list {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}

.filters {
  padding: 20px 0 10px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
}
.filters-info {
  flex-grow: 1;
}
@media only screen and (max-width: 768px) {
  .filters-info {
    order: -1;
  }
}

.filter-input {
  padding: 0 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .filter-input {
    width: 100%;
  }
}
.filter-input-text {
  flex-grow: 1;
}
.filter-input-icon {
  width: 18px;
  height: 18px;
}
.filter-input-icon svg {
  width: 100%;
  height: 100%;
}
.filter-input-arrow {
  width: 32px;
  height: 32px;
}
.filter-input-arrow svg {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}

.sort-input {
  padding: 0 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .sort-input {
    width: 100%;
  }
}
.sort-input-container {
  position: relative;
}
.sort-input-text {
  flex-grow: 1;
}
.sort-input-icon {
  width: 18px;
  height: 18px;
}
.sort-input-icon svg {
  width: 100%;
  height: 100%;
}
.sort-input-arrow {
  width: 32px;
  height: 32px;
}
.sort-input-arrow svg {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}
.sort-container {
  position: absolute;
  z-index: 1;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.sort-container.open {
  visibility: visible;
  opacity: 1;
}
.sort-option {
  width: 100%;
  background: white;
}

.contrast .filter-input-text {
  color: #DDD133;
}
.contrast .filter-input svg path {
  fill: #DDD133;
}
.contrast .sort-input-text {
  color: #DDD133;
}
.contrast .sort-input svg path {
  fill: #DDD133;
}
.contrast .sort-option {
  background: #000;
  color: #DDD133;
}

.product-top {
  display: grid;
  grid-template-columns: 55% 40%;
  grid-template-rows: min-content 1fr;
  column-gap: 5%;
  justify-content: space-between;
  padding-top: 100px;
  margin-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .product-top {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
.product-top .btn-ask {
  width: fit-content;
  margin: 35px 0 20px 0;
}
.product-gallery {
  grid-area: 1/1/2/2;
  min-width: 0;
}
.product .gallery-top {
  border-radius: 4px;
}
.product .gallery-top .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .gallery-top .image {
  display: block;
  width: 380px;
  height: 380px;
  max-width: 100%;
}
.product .gallery-top .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product .gallery-top .swiper-button-prev {
  width: 32px;
  height: 32px;
  padding: 0;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .gallery-top .swiper-button-prev img {
  transform: rotate(180deg);
}
.product .gallery-top .swiper-button-prev::after {
  content: none;
}
.product .gallery-top .swiper-button-next {
  width: 32px;
  height: 32px;
  padding: 0;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .gallery-top .swiper-button-next::after {
  content: none;
}
.product .gallery-thumbs {
  max-width: 550px;
  padding: 30px 0;
  margin: 0;
}
.product .gallery-thumbs .image {
  display: block;
  height: 100px;
}
.product .gallery-thumbs .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product .gallery-thumbs .thumb-360 {
  width: 100px;
  height: 100px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-info {
  grid-area: 1/2/3/3;
  min-width: 0;
}
@media only screen and (max-width: 992px) {
  .product-info {
    grid-area: 2/1/3/2;
  }
}
.product .producer {
  margin-bottom: 4px;
  color: #65A30D;
  font-size: 12px;
}
.product-producer-photo {
  width: 100px;
  height: 50px;
  object-fit: contain;
  object-position: left;
}
.product-title {
  font-size: 28px;
  font-weight: 500;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .product-title {
    font-size: 24px;
  }
}
.product-subtitle {
  color: #65A30D;
  font-size: 12px;
  font-weight: 400;
  margin: 2px 0 16px 0;
}
.product-subtitle-2 {
  font-size: 16px;
  margin-top: 6px;
  font-weight: 500;
  color: #57534E;
}
.product .reviews-info {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.product-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
  margin-top: 10px;
}
.product-ask {
  padding-top: 50px;
}
.product-ask-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.product-ask .product-text {
  margin-bottom: 20px;
}
.product-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .product-main {
    flex-direction: column;
  }
}
.product-main-title {
  color: #65A30D;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.product-main-text {
  font-size: 16px;
  line-height: 1.5;
}
.product-main .content {
  position: relative;
  width: 60%;
  padding: 60px 40px 60px 0;
}
@media only screen and (max-width: 992px) {
  .product-main .content {
    width: 100%;
  }
}
.product-main .content .bg {
  background: #f2f2f2;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .product-main .content .bg {
    right: 50%;
    transform: translateX(50%);
  }
}
.product-main .specifications {
  position: relative;
  width: 40%;
  padding: 60px 0 60px 40px;
}
@media only screen and (max-width: 992px) {
  .product-main .specifications {
    width: 100%;
    padding: 60px 0;
  }
}
.product-main .specifications-title {
  color: white;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}
.product-main .specifications-row {
  color: white;
  font-size: 16px;
}
.product-main .specifications-row strong {
  display: inline-block;
  width: 80px;
  font-weight: 500;
  margin-right: 10px;
}
.product-main .specifications-divider {
  width: 100%;
  height: 1px;
  background-color: white;
  margin: 25px 0;
}
.product-main .specifications .bg {
  background: #65A30D;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .product-main .specifications .bg {
    left: 50%;
    transform: translateX(-50%);
  }
}
.product-lowest-price {
  color: #65A30D;
  font-size: 12px;
  font-weight: 400;
  padding-bottom: 16px;
}
.product .variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product .variants-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}
.product .variant {
  border-radius: 4px;
  overflow: hidden;
  width: 100px;
  height: 50px;
  outline: 2px solid transparent;
  transition: outline-color 0.2s;
}
.product .variant:hover, .product .variant.active {
  outline: 2px solid #65A30D;
}
.product .variant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product .dimensions {
  width: fit-content;
}
.product .dimensions-row {
  display: flex;
  gap: 16px;
}
.product .dimensions-title {
  padding: 10px 0 4px 0;
  font-size: 16px;
  font-weight: 500;
}
.product .dimensions-label {
  width: 105px;
}
.product .delivery-options-title {
  padding: 35px 0 4px 0;
  font-size: 16px;
  font-weight: 500;
}
.product-free-delivery {
  color: #65A30D;
  font-weight: 500;
  font-size: 16px;
}

.product-order {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  align-items: center;
}

.product-price {
  font-size: 36px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-price-old {
  color: #65A30D;
  font-weight: 400;
  font-size: 30px;
  background: linear-gradient(to left top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%);
}

.product-quantity {
  display: flex;
  align-items: center;
}
.product-quantity__input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 5px;
}
.product-quantity__minus, .product-quantity__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 10px;
}
.product-quantity__minus:hover, .product-quantity__plus:hover {
  cursor: pointer;
}

.product-delivery {
  display: flex;
  align-items: center;
  padding: 4px 0;
  margin-bottom: 12px;
}
.product-delivery-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.product-delivery-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-delivery .delivery-price {
  padding-left: 8px;
}

.product-proposal {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .product-proposal {
    flex-direction: column;
  }
}

.proposal-inputs {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .proposal-inputs {
    width: 100%;
  }
}
.proposal-inputs .input-container {
  position: relative;
}
.proposal-inputs .input-container::after {
  content: "zł";
  position: absolute;
  right: 20px;
  top: 8px;
  font-size: 16px;
}

.proposal-input {
  padding-right: 40px;
  height: 40px;
  font-size: 16px;
}

.proposal-text {
  width: 55%;
}
@media only screen and (max-width: 768px) {
  .proposal-text {
    width: 100%;
  }
}

.btn-proposal {
  background: white;
  width: 100%;
  justify-content: center;
  margin-top: 5px;
}

.modal.negotiation {
  text-align: center;
}
.modal.negotiation img {
  margin-bottom: 25px;
}

.slide-360 {
  position: relative;
}
.slide-360-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #f2f2f2;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 7px 14px;
}
.slide-360-btn img {
  margin-left: 10px;
}

.modal-360::-webkit-scrollbar {
  display: none;
}
.modal-360 .modal-content {
  width: 100%;
}
.modal-360 .modal-content::-webkit-scrollbar {
  display: none;
}
.modal-360 canvas {
  cursor: grab;
}
.modal-360 .info-360 {
  display: flex;
  align-items: center;
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
}
.modal-360 .info-360 svg {
  margin-right: 10px;
}

.product-other {
  padding-top: 40px;
  padding-bottom: 40px;
}
.product-other-title {
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .product-other-title {
    font-size: 20px;
  }
}
.product-other .products-list {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.product-other .products-list .product-card {
  width: 259px;
}
@media only screen and (max-width: 768px) {
  .product-other .products-list .product-card {
    width: auto;
  }
}

@media only screen and (max-width: 992px) {
  .product-content {
    grid-area: 3/1/4/2;
  }
}
.product-content-nav {
  display: flex;
  padding-bottom: 8px;
  gap: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.product-content .nav-item {
  padding: 4px 16px;
  border-radius: 4px;
  color: #78716C;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.product-content .nav-item.active, .product-content .nav-item:hover {
  color: #65A30D;
}
.product-content .nav-item.active {
  font-weight: 600;
}
.product-content-main {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-content h1,
.product-content h2,
.product-content h3,
.product-content h4,
.product-content h5,
.product-content h6 {
  font-size: 16px;
  font-weight: 600;
}
.product-content ul {
  list-style: none;
}
.product-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.product-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 1px;
  background-color: #ee821e;
}
.product-content .review-card {
  padding: 8px 4px;
  margin-top: 8px;
}
.product-content .review-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.product-content .review-card .review-content {
  padding: 8px 0 4px 0;
}
.product-content .review-card .review-author {
  font-weight: 600;
}
.product-content .review-card .review-date {
  color: #78716C;
  font-size: 12px;
}
.product-content .reviews .btn {
  margin-left: auto;
}
.product-content .support-title {
  margin-bottom: 4px;
  font-size: 16px;
}
.product-content .support-text {
  font-size: 18px;
  margin-bottom: 15px;
}

.modal.ask-for-product .modal-product {
  display: flex;
  padding: 8px 0px;
  gap: 15px;
  align-items: center;
  margin-bottom: 16px;
}
.modal.ask-for-product .modal-photo-container {
  height: 70px;
  width: 70px;
  border-radius: 4px;
  background: #65A30D;
}
.modal.ask-for-product .modal-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal.ask-for-product .modal-product-name {
  font-size: 16px;
  font-weight: 500;
}
.modal.ask-for-product .form label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  margin-bottom: 4px;
  width: 100%;
}
.modal.ask-for-product .form label .red {
  content: "*";
  color: #dc2626;
  font-weight: 600;
}
.modal.ask-for-product .form input {
  width: 100%;
}
.modal.ask-for-product .form textarea {
  height: 100px;
}
.modal.ask-for-product .modal-agreement {
  margin: 16px 0;
  font-size: 12px;
}
.modal.ask-for-product .modal-agreement a {
  color: #65A30D;
  font-weight: 600;
}
.modal.ask-for-product .bottom {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .modal.ask-for-product .bottom {
    flex-direction: column;
  }
}
.modal.ask-for-product .text {
  font-size: 14px;
}

.contrast .product .producer {
  color: #DDD133;
}
.contrast .product-subtitle {
  color: #DDD133;
}
.contrast .product-lowest-price {
  color: #DDD133;
}
.contrast .product-content .nav-item {
  color: #DDD133;
}

.product-table-title {
  margin: 16px 0 8px 0;
}
.product-table-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  border-bottom: 1px solid #D6D3D1;
  border-left: 1px solid #D6D3D1;
}
.product-table-row:first-child {
  border-top: 1px solid #D6D3D1;
}
.product-table-cell {
  border-right: 1px solid #D6D3D1;
  padding: 8px;
  font-size: 16px;
  color: #57534E;
  min-width: 0;
}
.product-table-cell:first-child {
  background: #FAFAF9;
}

.product-dimensions {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .product-dimensions {
    align-items: start;
    margin-top: 12px;
    flex-direction: column;
  }
}
.product-dimensions-title {
  font-size: 1.6rem;
  font-weight: 500;
}
.product-dimensions-image {
  flex-shrink: 0;
}
.product-dimensions-content {
  flex-grow: 1;
}
@media only screen and (max-width: 992px) {
  .product-dimensions-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.product-dimensions-row {
  gap: 16px;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
@media only screen and (max-width: 992px) {
  .product-dimensions-row {
    display: block;
  }
}

.cart-nav {
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 20px;
}
.cart-nav-wrapper {
  display: flex;
  justify-content: space-between;
  height: 70px;
  align-items: center;
}
@media only screen and (max-width: 1260px) {
  .cart-nav-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: auto;
  }
}
.cart-nav-steps {
  display: flex;
  align-items: center;
}
.cart-nav-steps .item .number {
  color: #b3b3b3;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
}
.cart-nav-steps .item .title {
  color: #b3b3b3;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
}
@media only screen and (max-width: 1260px) {
  .cart-nav-steps .item .title {
    display: none;
  }
}
.cart-nav-steps .item.active .number {
  color: #65A30D;
}
.cart-nav-steps .item.active .title {
  color: black;
}
.cart-nav-steps .item.visited .number {
  color: #65A30D;
}
.cart-nav-steps .item.visited .title {
  color: black;
}
.cart-nav-steps .divider {
  width: 20px;
  height: 1px;
  background-color: #b3b3b3;
  margin: 0 10px;
}
.cart-nav-number {
  font-size: 16px;
}

.product-quantity {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .product-quantity {
    margin: 20px 0;
  }
}
.product-quantity__input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 5px;
}
.product-quantity__minus, .product-quantity__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 10px;
}
.product-quantity__minus:hover, .product-quantity__plus:hover {
  cursor: pointer;
}

.cart .details-titles {
  display: flex;
  font-weight: 500;
  padding: 10px 100px 10px 5px;
  text-align: center;
  gap: 20px;
}
.cart .details-titles-summary {
  padding-right: 45px;
}
.cart .details-titles .product {
  flex: 1 0 0;
  text-align: left;
}
.cart .details-titles .price {
  width: 125px;
}
.cart .details-titles .amount {
  width: 125px;
}
.cart .details-titles .total {
  width: 125px;
}
.cart .details-titles .delivery {
  width: 210px;
}
.cart .product-details {
  display: flex;
  align-items: center;
  padding: 20px 5px;
  border-top: 1px #f2f2f2 solid;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cart .product-details.product-details-summary {
  padding-right: 45px;
}
@media only screen and (max-width: 1260px) {
  .cart .product-details.product-details-summary {
    row-gap: 20px;
    padding-right: 5px;
  }
  .cart .product-details.product-details-summary .product-main {
    flex: auto;
    width: 100%;
  }
  .cart .product-details.product-details-summary .amount {
    text-align: left;
  }
}
.cart .product-details .number,
.cart .product-details .name {
  min-width: 20px;
  font-size: 18px;
  font-weight: 500;
}
.cart .product-details .number {
  min-width: 20px;
  font-size: 18px;
  font-weight: 500;
}
.cart .product-details .delete {
  margin-left: 45px;
  height: 32px;
  width: 32px;
  padding: 0;
}
.cart .product-details .product-main {
  flex: 1 0 0;
  text-align: left;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 0;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .cart .product-details .product-main {
    flex-direction: row;
    padding-right: 40px;
    width: 100%;
  }
}
.cart .product-details .product-main-photo {
  width: 70px;
  height: 70px;
  min-width: 70px;
}
.cart .product-details .product-main-photo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
}
.cart .product-details .price,
.cart .product-details .amount,
.cart .product-details .total {
  width: 125px;
  font-size: 20px;
  font-weight: 600;
}
.cart .product-details .delivery {
  width: 210px;
  font-size: 16px;
}
.cart .product-details .delivery-days {
  font-size: 14px;
  padding-top: 5px;
}
.cart .product-details .amount-text {
  font-weight: 400;
}
@media only screen and (max-width: 1260px) {
  .cart .details-titles {
    display: none;
  }
  .cart .product-details {
    position: relative;
    gap: 0;
  }
  .cart .product-details .price {
    display: none;
  }
  .cart .product-details .delete {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cart .product-details .amount,
  .cart .product-details .total {
    width: 50%;
  }
  .cart .product-details .total {
    text-align: right;
  }
  .cart .product-details .delivery {
    width: 100%;
    margin: 10px 0;
  }
  .cart .product-details .product-quantity {
    margin: 0;
  }
}

.cart-options {
  margin: 10px 0;
}
.cart-options-head {
  padding: 10px 5px;
  font-weight: 500;
}
.cart-options-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .cart-options-row {
    flex-direction: column;
  }
}
.cart-options-item {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E5E4;
  padding: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .cart-options-item {
    width: 100%;
    flex-direction: row;
    justify-content: start;
    gap: 10px;
  }
}
.cart-options-item:hover, .cart-options-item.active {
  border-color: #65A30D;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.cart-options-item .price {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.cart-options-item .title {
  font-size: 16px;
}
.cart-options-item .image {
  width: 50px;
  height: 50px;
}
.cart-options-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-options-item .info {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .cart-options-item .info {
    text-align: left;
    margin-left: 10px;
  }
}
.cart-options-item input {
  display: none;
}
.cart-options-item .option-icon {
  display: none;
}
.cart-options-item .checked {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
}

.cart-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding: 20px 20px 120px 20px;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .cart-bottom {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
.cart-bottom.cart-bottom-summary {
  margin-top: 10px;
}
@media only screen and (max-width: 992px) {
  .cart-bottom.cart-bottom-summary {
    padding-bottom: 0;
  }
}
.cart-bottom .btn {
  min-width: 120px;
}
@media only screen and (max-width: 768px) {
  .cart-bottom .btn {
    width: 100%;
    justify-content: center;
  }
}
.cart-bottom .link-back {
  font-size: 14px;
  font-weight: 500;
  width: 120px;
}
@media only screen and (max-width: 768px) {
  .cart-bottom .link-back {
    width: 100%;
  }
}

.cart-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 330px;
}
@media only screen and (max-width: 768px) {
  .cart-summary {
    width: 100%;
  }
}
.cart-summary .row {
  display: flex;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
  width: 100%;
}
.cart-summary .row .label {
  margin-right: 20px;
  flex: 1 0 0;
  text-align: left;
}
.cart-summary .row.summary {
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cart-summary .row.summary .label {
  font-size: 20px;
  font-weight: 600;
}
.cart-summary .row.summary .value {
  font-size: 36px;
  font-weight: 600;
}
.cart-summary .btn-cart-show {
  width: 120px;
}
@media only screen and (max-width: 768px) {
  .cart-summary .btn-cart-show {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .cart-summary form {
    width: 100%;
  }
}

.cart-auth-container .auth-container-block {
  width: 100%;
  justify-content: flex-end;
}
@media only screen and (max-width: 992px) {
  .cart-auth-container .auth-container-block {
    margin: 0;
    padding: 50px 0;
  }
  .cart-auth-container .auth-container-block:not(:first-child) {
    border-top: 1px solid #e5e7eb;
  }
}
.cart-auth-container .login-remind {
  margin-left: auto;
  font-weight: 500;
}
.cart-auth-container .auth-title {
  font-size: 24px;
  text-align: center;
}
.cart-auth-container .auth-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 75px;
}
@media only screen and (max-width: 992px) {
  .cart-auth-container .auth-text {
    margin-bottom: 30px;
  }
}

.form-invoice,
.form-shipment {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .form-invoice,
  .form-shipment {
    margin-bottom: 10px;
    padding-left: 0;
  }
}
.form-invoice-wrapper,
.form-shipment-wrapper {
  max-width: 660px;
}
@media only screen and (max-width: 768px) {
  .form-invoice-wrapper .square,
  .form-shipment-wrapper .square {
    margin: 0 0 -10px 0;
  }
}
.form-invoice-options,
.form-shipment-options {
  margin-top: 0;
}
.form-invoice-options-head,
.form-shipment-options-head {
  margin: 5px 0 30px 0;
}
.form-invoice-options .square,
.form-shipment-options .square {
  margin-bottom: 15px;
}
.form-invoice-options .square .checkmark,
.form-shipment-options .square .checkmark {
  top: 2px;
}
.form-invoice .nip-fields,
.form-shipment .nip-fields {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.form-invoice .btn-nip,
.form-shipment .btn-nip {
  flex: 1 0 0;
}
.form-invoice .row,
.form-shipment .row {
  display: flex;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 500;
}
.form-invoice .row.client-type,
.form-shipment .row.client-type {
  padding-top: 20px;
}
.form-invoice .row .label,
.form-shipment .row .label {
  margin-right: 25px;
}
.form-invoice .row .checkbox-item,
.form-shipment .row .checkbox-item {
  margin-right: 25px;
  margin-bottom: 0;
  line-height: 1.5;
}
.form-invoice .row .checkbox-item .checkmark,
.form-shipment .row .checkbox-item .checkmark {
  top: unset;
}
@media only screen and (max-width: 768px) {
  .form-invoice .client-type,
  .form-shipment .client-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0 0 15px 0;
  }
}
.form-invoice .form-input,
.form-invoice .form-textarea,
.form-shipment .form-input,
.form-shipment .form-textarea {
  height: 48px;
  font-size: 16px;
  flex-basis: 49%;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  .form-invoice .form-input,
  .form-invoice .form-textarea,
  .form-shipment .form-input,
  .form-shipment .form-textarea {
    flex-basis: 100%;
  }
}
.form-invoice .form-input.nip-input,
.form-invoice .form-textarea.nip-input,
.form-shipment .form-input.nip-input,
.form-shipment .form-textarea.nip-input {
  flex-basis: 63%;
}
@media only screen and (max-width: 768px) {
  .form-invoice .form-input.nip-input,
  .form-invoice .form-textarea.nip-input,
  .form-shipment .form-input.nip-input,
  .form-shipment .form-textarea.nip-input {
    flex-basis: 100%;
  }
}
.form-invoice .inputs-row,
.form-shipment .inputs-row {
  display: flex;
  flex-basis: 49%;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .form-invoice .inputs-row,
  .form-shipment .inputs-row {
    flex-basis: 100%;
  }
}
.form-invoice .inputs-row .form-input,
.form-shipment .inputs-row .form-input {
  flex-grow: 1;
}
.form-invoice .btn-primary,
.form-shipment .btn-primary {
  flex-basis: 35%;
}
@media only screen and (max-width: 768px) {
  .form-invoice .btn-primary,
  .form-shipment .btn-primary {
    flex-basis: 100%;
    justify-items: center;
    height: 48px;
  }
}
.form-invoice .square,
.form-shipment .square {
  font-size: 14px;
  margin: 0;
}
.form-invoice .agreements .square,
.form-shipment .agreements .square {
  margin-bottom: 15px;
}

.form-shipment {
  margin-top: 15px;
  display: none;
}

form.form-invoice {
  padding: 0;
  display: block;
}

.form-invoice-wrapper .square {
  line-height: 2.2;
  font-weight: 500;
}

.delivery-address-form {
  margin-top: 30px;
}

.checkout-row {
  display: flex;
  margin-top: 20px;
  gap: 40px;
}
@media only screen and (max-width: 992px) {
  .checkout-row {
    flex-direction: column;
    padding-bottom: 80px;
  }
}
.checkout-row .cart-list {
  flex: 1 0 0;
  margin-top: 0;
}
.checkout-row .cart-summary {
  width: 370px;
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .checkout-row .cart-summary {
    width: 100%;
  }
}
.checkout-row .cart-summary .btn {
  width: 100%;
}
.checkout .order-details {
  border-top: 1px solid #e5e7eb;
  padding: 10px 5px;
  display: flex;
  column-gap: 40px;
  row-gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.checkout .order-details-col {
  min-width: 200px;
}
.checkout .order-details-col .title {
  font-weight: 500;
  margin-bottom: 10px;
}

.square {
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  .square {
    margin-left: 0;
  }
}

.order-success {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 60vh;
  margin-bottom: 50px;
}
.order-success h1 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #000000;
}
.order-success img {
  width: 80px;
  margin-bottom: 20px;
}
.order-success p {
  margin: 20px 0 80px 0;
  font-size: 16px;
}
.order-success .confirm-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label.checkbox-item {
  display: block;
}
label.checkbox-item a {
  font-weight: 600;
}

.error {
  color: red;
}

.font-bigger .cell,
.font-bigger .delivery-days,
.font-bigger .price,
.font-bigger .price-total,
.font-bigger .quantity,
.font-bigger .product-quantity__input,
.font-bigger .cart-options-head,
.font-bigger .link-back,
.font-bigger .label,
.font-bigger .form-input,
.font-bigger .form-textarea,
.font-bigger .text,
.font-bigger .delivery,
.font-bigger .number,
.font-bigger .name,
.font-bigger .title {
  font-size: 18px !important;
}

.font-biggest .cell,
.font-biggest .delivery-days,
.font-biggest .price,
.font-biggest .price-total,
.font-biggest .quantity,
.font-biggest .product-quantity__input,
.font-biggest .cart-options-head,
.font-biggest .link-back,
.font-biggest .label,
.font-biggest .form-input,
.font-biggest .form-textarea,
.font-biggest .text,
.font-biggest .item .title,
.font-biggest .cart-nav-number,
.font-biggest .cell.product,
.font-biggest .cell.delivery,
.font-biggest .row,
.font-biggest .checkbox-item,
.font-biggest .order-details-col .title,
.font-biggest .delivery,
.font-biggest .number,
.font-biggest .name,
.font-biggest .title {
  font-size: 20px !important;
}

.contrast .cart-list-head .cell,
.contrast .cart a,
.contrast .cart-options-head,
.contrast .cart-summary .row.summary,
.contrast .cart-bottom .link-back,
.contrast .error,
.contrast .checkbox-item.square a,
.contrast .order-success h1 {
  color: #DDD133;
}
.contrast .cart-nav-steps .divider {
  background: #000;
}
.contrast .cart-nav-steps .item.active .title,
.contrast .cart-nav-steps .item.active .number,
.contrast .cart-nav-steps .item .title,
.contrast .cart-nav-steps .item .number,
.contrast .cart-nav-number {
  color: #DDD133;
}
.contrast .item.active .number,
.contrast .item.active .title {
  opacity: 0.9;
}
.contrast .cart-nav {
  background: #000;
}
.contrast .cart-options-item {
  border: 1px solid white;
}
.contrast .product-quantity__minus,
.contrast .product-quantity__plus {
  filter: brightness(0) invert(1);
}

.accessibility-on .cart-options-item:hover {
  outline: 4px solid #fe5;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}
.not-found-title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 36px;
}
.not-found-text {
  font-size: 36px;
  font-weight: 500;
}
.not-found-search {
  margin: 35px 0;
  width: 350px;
}
.not-found-search .nav-search {
  visibility: visible;
}
.not-found .autocomplete-container {
  position: fixed;
  top: 500px;
  left: 0;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 128px;
  padding-top: 32px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1260px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.contact-content {
  padding: 32px 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-title {
  font-weight: 600;
}
@media only screen and (max-width: 1260px) {
  .contact-title {
    font-size: 3rem;
  }
}
.contact-subtitle {
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 1260px) {
  .contact-subtitle {
    font-size: 2.4rem;
  }
}
.contact-icons-container {
  padding: 20px;
  border-radius: 2px;
  border: 1px solid #e7e5e4;
  text-align: center;
  margin-bottom: 32px;
}
.contact-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media only screen and (max-width: 1260px) {
  .contact-icons {
    grid-template-columns: 1fr;
  }
}
.contact-icons-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.contact-icon-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.contact-icon-text {
  font-size: 1.6rem;
}
.contact-additional-info h3 {
  font-size: 2rem;
  font-weight: 600;
}
.contact-form {
  margin: auto;
  width: 100%;
  max-width: 480px;
  padding: 32px 24px;
  border-radius: 2px;
  border: 1px solid #d6d3d1;
}
.contact-form-title {
  font-size: 3rem;
  font-weight: 600;
}
.contact-form-inputs {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
}
.contact-form textarea {
  height: 100px;
  resize: none;
}
.contact-form button {
  margin-top: 12px;
}
.contact-form .checkbox-item {
  font-size: 12px;
  margin-left: 0;
}

.inspiration-page {
  padding-bottom: 120px;
}
.inspiration-page .date {
  padding: 40px 0 10px 0;
  color: #65A30D;
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .inspiration-page .date {
    display: none;
  }
}
.inspiration-page .page-title {
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .inspiration-page .page-title {
    margin-top: 30px;
  }
}
.inspiration-page-content {
  padding: 60px 0 80px 0;
}
@media only screen and (max-width: 992px) {
  .inspiration-page-content {
    padding: 10px 0 40px 0;
  }
}
.inspiration-page .blog-reviews {
  padding-bottom: 80px;
  padding-top: 40px;
}
.inspiration-page .blog-reviews .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .inspiration-page .blog-reviews .top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .inspiration-page .blog-reviews .top .btn {
    width: 100%;
  }
}
.inspiration-page .blog-reviews .reviews-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0px;
  color: #374151;
}
.inspiration-page .blog-reviews .reviews-subtitle .stars {
  display: flex;
  gap: 4px;
}
.inspiration-page .blog-reviews .reviews-subtitle .stars img {
  width: 18px;
  height: 18px;
}
.inspiration-page .blog-reviews .review-card {
  padding: 12px 4px 8px 4px;
  border-top: 1px solid #e5e7eb;
}
.inspiration-page .blog-reviews .review-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.inspiration-page .blog-reviews .review-card .stars img {
  width: 14px;
  height: 14px;
}
.inspiration-page .blog-reviews .review-card .review-author {
  font-weight: 600;
}
.inspiration-page .blog-reviews .review-card .review-date {
  color: #65A30D;
  font-size: 12px;
}
.inspiration-page .article-blockbanners,
.inspiration-page .article-banner2 {
  display: none;
}
.inspiration-page .article-main-photo-container {
  position: relative;
  margin: 25px auto 0 auto;
  width: fit-content;
}
.inspiration-page .article-main-photo {
  height: 450px;
  width: fit-content;
}
.inspiration-page .article-main-photo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
.inspiration-page .products-list {
  margin-bottom: 80px;
}

.marker {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
}
.marker-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  outline: 1px solid #737373;
  border: 4px solid rgba(255, 255, 255, 0.5);
  background: white content-box;
}
.marker-info {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 8px;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.marker-info-container {
  padding: 0 25px;
  position: absolute;
  left: 25px;
}
.marker-info-container.left {
  right: 25px;
  left: auto;
}
.marker-info-container.left::before {
  left: auto;
  right: 15px;
}
.marker-info-container::before {
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.marker-info:hover .bottom img {
  left: 4px;
}
.marker-photo-container {
  width: 160px;
  height: 160px;
  margin-bottom: 8px;
}
.marker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.marker .bottom {
  display: flex;
  justify-content: space-between;
}
.marker .bottom img {
  position: relative;
  left: 0;
  transition: left 0.2s;
}
.marker .price {
  font-size: 16px;
  font-weight: 600;
}

.contrast .inspiration-page .blog-reviews .reviews-subtitle {
  color: #DDD133;
}
.contrast .inspiration-page .blog-reviews .review-card .review-date {
  color: #DDD133;
}
.contrast .inspiration-page .marker-info {
  background: black;
}
.contrast .inspiration-page .marker-info .bottom img {
  filter: brightness(0) invert(86%) sepia(70%) saturate(524%) hue-rotate(347deg) brightness(88%) contrast(96%);
}

.sitemap-header .page-title {
  margin-top: 30px;
  margin-bottom: 80px;
}

.sitemap-list {
  column-count: 4;
  margin-bottom: 100px;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .sitemap-list {
    column-count: 3;
  }
}
@media only screen and (max-width: 768px) {
  .sitemap-list {
    column-count: 2;
  }
}
@media only screen and (max-width: 480px) {
  .sitemap-list {
    column-count: 1;
  }
}
.sitemap-list-group {
  display: flex;
  flex-flow: column wrap;
}
.sitemap-list .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.sitemap-list .title:not(:first-child) {
  margin-top: 20px;
}
.sitemap-list a:hover {
  text-decoration: underline;
}
.sitemap-list li {
  margin-bottom: 5px;
}
.sitemap-list li:not(.title) {
  display: flex;
  padding-left: 4px;
  gap: 8px;
  align-items: center;
}
.sitemap-list li:not(.title)::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 5px;
  background: #65A30D;
}

.sitemap-search .form-search {
  width: 450px;
  max-width: 100%;
  margin: 0 auto 80px;
}
.sitemap-search .form-search .form-search-input {
  border-bottom-color: black;
  opacity: 1;
}

.font-biggest .li,
.font-biggest .sitemap-list-link {
  font-size: 20px !important;
}

.order .product-main {
  margin-bottom: 0;
  justify-content: start;
}

.orders-heading {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin: 50px 0 40px 0;
}

.outer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 80px auto;
  border: 1px #f2f2f2 solid;
  border-radius: 10px;
  overflow: hidden;
}

.inner-container {
  padding: 40px 0 60px 0;
}

.orders-nav {
  display: flex;
}

.orders-nav .nav-item {
  width: 50%;
  font-weight: 500;
  font-size: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.orders-nav .nav-item.active {
  color: #b3b3b3;
  background: #f2f2f2;
}

.order {
  width: 90%;
  margin: auto;
  padding: 15px 30px 15px 15px;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  margin-top: 10px;
}

.order-overview {
  display: flex;
  gap: 30px;
  font-size: 16px;
}

.order-overview .info-title {
  font-weight: 500;
}

.order-overview .btn {
  margin-left: auto;
  cursor: pointer;
  height: 40px;
  width: 40px;
  padding: 0;
}

.order-overview .btn-expand.rotated svg {
  transform: rotate(180deg);
}

.expanded-content {
  margin: 20px 0;
}

.details-titles {
  display: flex;
  font-weight: 500;
  border-bottom: 1px #f2f2f2 solid;
  padding: 10px 45px 10px 5px;
  text-align: center;
  gap: 20px;
}

.details-titles .product {
  flex: 1 0 0;
  text-align: left;
}

.details-titles .price {
  width: 125px;
}

.details-titles .amount {
  width: 125px;
}

.details-titles .total {
  width: 125px;
}

.product-details {
  display: flex;
  align-items: center;
  padding: 20px 45px 20px 5px;
  border-bottom: 1px #f2f2f2 solid;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-details .number,
.product-details .name {
  min-width: 20px;
  font-size: 18px;
  font-weight: 500;
}

.product-details .number {
  min-width: 20px;
  font-size: 18px;
  font-weight: 500;
}

.product-details .product-main {
  flex: 1 0 0;
  text-align: left;
  display: flex;
  gap: 5px;
  align-items: center;
}

.product-details .product-main-photo {
  width: 70px;
  height: 70px;
}

.product-details .product-main-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.product-main-photo-fill {
  height: 100%;
  width: 100%;
  background: #65A30D;
}

.product-details .price,
.product-details .amount,
.product-details .total {
  width: 125px;
  font-size: 20px;
  font-weight: 600;
}

.product-details .amount-text {
  font-weight: 400;
}

.product-details .amount-mobie {
  display: none;
}

.order-summary {
  display: flex;
  width: 80%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.summary-block {
  width: 45%;
  margin-top: 40px;
}

.summary-block h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.data-heading {
  font-weight: 700;
  font-size: 24px;
  color: #39423b;
  margin: 45px 0 10px 0;
}

.header .data-heading {
  margin: 0;
}

.inner-container.data {
  padding: 0 5%;
}

.inputs-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inputs-container > * {
  width: 49%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

.btn-outline {
  background: white;
  justify-content: center;
}

.address.order {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

form .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 45px;
}

.address-label {
  font-weight: 700;
}

.delivery-addresses .btn {
  margin: 40px 0 40px auto;
  display: block;
  text-align: center;
}

.delete {
  cursor: pointer;
}

.modal-form {
  margin-top: 0;
}

.modal-form .form-input {
  margin-bottom: 10px;
}

.modal-form .btn-primary {
  display: block;
  margin-left: auto;
}

@media only screen and (max-width: 1060px) {
  .order-overview {
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-right: 40px;
  }
  .order-overview .info-title,
  .order-overview .info-content {
    display: inline;
  }
  .btn-expand {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .order {
    padding: 20px;
  }
  .details-titles {
    display: none;
  }
  .product-details {
    column-gap: 0;
    row-gap: 10px;
    padding: 20px 0;
    border-bottom: none;
    border-top: 1px #f2f2f2 solid;
  }
  .product-details .price {
    display: none;
  }
  .product-details .total,
  .product-details .amount {
    width: 50%;
  }
  .product-details .amount {
    text-align: left;
  }
  .product-details .total {
    text-align: right;
  }
  .product-details .product-main {
    flex: auto;
    width: 100%;
  }
  .product-details .product-main-photo {
    min-width: 70px;
  }
  .order-summary {
    flex-direction: column;
    width: 100%;
  }
  .order-summary .summary-block {
    margin-top: 10px;
    width: 100%;
  }
  .orders-nav .nav-item {
    font-size: 20px;
    font-weight: 500;
  }
  .inner-container {
    padding: 40px 0;
  }
}
.night .data-heading {
  color: white;
}

.night .orders-nav .nav-item.active {
  background: white;
  color: black;
}

.night .btn-img {
  filter: brightness(0) invert(1);
}

.font-bigger .order-overview,
.font-bigger .summary-block h2,
.font-bigger .product-details .number {
  font-size: 18px !important;
}

.font-biggest .order-overview,
.font-biggest .summary-block h2,
.font-biggest .product-details .number {
  font-size: 20px !important;
}

.auth-container {
  display: flex;
  justify-content: space-between;
  margin: 100px 0;
}
@media only screen and (max-width: 992px) {
  .auth-container {
    flex-direction: column;
    margin: 20px 0;
  }
}
.auth-container-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
  margin-bottom: 100px;
}
.auth-container-block:not(:last-child) {
  border-right: 1px solid #E5E7EB;
}
@media only screen and (max-width: 992px) {
  .auth-container-block:not(:last-child) {
    border-right: none;
  }
}
@media only screen and (max-width: 992px) {
  .auth-container-block {
    width: 100%;
    padding: 20px 0;
  }
}

.auth-login {
  width: 400px;
  max-width: 100%;
}
.auth-login .form-group {
  margin-bottom: 10px;
}
.auth-login .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.auth-login .btn {
  display: block;
  height: 44px;
  margin: 0 auto;
}

.auth-title {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 500;
}

.auth-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.auth-text ul {
  margin-left: 30px;
}
.auth-text li {
  list-style: disc;
}

.auth-signup {
  width: 600px;
  max-width: 100%;
}
.auth-signup-label {
  color: #111827;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.auth-signup .row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.auth-signup .checkbox-item {
  margin-right: 20px;
  display: block;
}
.auth-signup .checkbox-item.small {
  font-size: 10px;
}
.auth-signup .checkbox-item .checkmark {
  top: 0;
}
.auth-signup .checkbox-item a {
  text-decoration: underline;
}
.auth-signup .form-grid-item .btn {
  width: 100%;
  height: 50px;
  display: block;
}

.account-title {
  font-weight: 700;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 40px;
}
.account-container {
  max-width: 1260px;
  border: 1px solid #F2F2F2;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto 80px;
}
.account-nav {
  display: flex;
}
.account-nav-item {
  width: 50%;
  background-color: #F2F2F2;
  color: #B3B3B3;
  font-weight: 700;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  padding: 17px;
}
.account-nav-item.active {
  background-color: white;
  color: #65A30D;
}
.account-nav-item:not(.active) {
  cursor: pointer;
}
.account-main {
  padding: 40px 100px 80px;
}
.account-form-group {
  margin-bottom: 40px;
}
.account-form-group-title {
  color: #65A30D;
  font-weight: 700;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.agreements .checkmark {
  border-radius: 5px;
}
.agreements .checkbox-item {
  font-size: 10px;
}

.error {
  color: red;
  padding: 0 0 25px 0;
  text-align: center;
  font-size: 18px;
}

#form-invoice-search {
  height: 40px;
}

.form-grid #register {
  height: auto;
  padding: 12px 0;
}

.font-bigger {
  font-size: 18px;
}
.font-bigger .checkbox-item {
  font-size: 18px !important;
}

.font-biggest {
  font-size: 20px;
}
.font-biggest .checkbox-item,
.font-biggest .auth-text {
  font-size: 20px !important;
}

.contrast .auth-signup-label {
  color: #DDD133;
}

.producers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 0;
}
@media only screen and (max-width: 992px) {
  .producers-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .producers-list {
    grid-template-columns: 1fr;
  }
}

.producer-page-info {
  display: flex;
  gap: 80px;
}
@media only screen and (max-width: 768px) {
  .producer-page-info {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.producer-page-info .page-title {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .producer-page-info .page-title {
    margin-top: 10px;
  }
}
.producer-page-info .page-top-text {
  padding: 0 0 50px 0;
}
.producer-page-info .photo-container {
  height: 180px;
  width: 180px;
  padding: 12px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .producer-page-info .photo-container {
    width: 100px;
    height: 100px;
    padding: 0;
  }
}
.producer-page-info .photo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.producer-page .products-list {
  padding-bottom: 40px;
}
.producer-page .products-list-title {
  padding-bottom: 20px;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.blog .page-top-text {
  padding: 20px 0 60px 0;
}
.blog .pagination {
  padding: 60px 0;
}
.blog .page-bottom-text {
  margin-bottom: 80px;
}

.blog-page {
  position: relative;
}
.blog-page-aside {
  padding: 2rem 0;
  position: sticky;
  top: 0;
}
.blog-page-aside ul {
  margin: 1rem 0;
  text-wrap: balance;
  font-size: 18px;
}
.blog-page-aside ul li:not(:last-child) {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #f2f2f2;
}
.blog-page-aside ul a:hover {
  color: #65A30D;
}
@media only screen and (max-width: 992px) {
  .blog-page-aside {
    display: none;
  }
}
.blog-page .block-text {
  padding: 0;
  margin: 20px 0 10px;
}
.blog-page .date {
  padding: 40px 0 10px 0;
  color: #6B7280;
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .blog-page .date {
    display: none;
  }
}
.blog-page .page-title {
  margin: 0 0 60px 0;
}
@media only screen and (max-width: 992px) {
  .blog-page .page-title {
    margin-bottom: 20px;
  }
}
.blog-page-content {
  max-width: 1000px;
  margin: auto;
}
.blog-page-content .block-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-page .blog-reviews {
  padding-bottom: 80px;
  padding-top: 40px;
}
.blog-page .blog-reviews .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .blog-page .blog-reviews .top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .blog-page .blog-reviews .top .btn {
    width: 100%;
  }
}
.blog-page .blog-reviews .reviews-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0px;
  color: #374151;
}
.blog-page .blog-reviews .reviews-subtitle .stars {
  display: flex;
  gap: 4px;
}
.blog-page .blog-reviews .reviews-subtitle .stars img {
  width: 18px;
  height: 18px;
}
.blog-page .blog-reviews .review-card {
  padding: 12px 4px 8px 4px;
  border-top: 1px solid #e5e7eb;
}
.blog-page .blog-reviews .review-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.blog-page .blog-reviews .review-card .stars img {
  width: 14px;
  height: 14px;
}
.blog-page .blog-reviews .review-card .review-author {
  font-weight: 600;
}
.blog-page .blog-reviews .review-card .review-date {
  color: #374151;
  font-size: 12px;
}
.blog-page .article-blockbanners,
.blog-page .article-banner2 {
  display: none;
}
.blog-page-divider {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .blog-page-divider {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.blog-page-main {
  flex-grow: 1;
  min-width: 0;
}
.blog-page-sidebar {
  flex-shrink: 0;
  width: 400px;
  padding: 40px 0 20px 0;
  color: black;
  position: sticky;
  top: 20px;
}
@media only screen and (max-width: 992px) {
  .blog-page-sidebar {
    width: 100%;
    position: static;
  }
}
.blog-page-sidebar-items {
  margin-top: 20px;
}
.blog-page-sidebar-item {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #f3f4f6;
}

.contrast .blog-page .date {
  color: #DDD133;
}
.contrast .blog-page-sidebar {
  color: #DDD133;
}
.contrast .blog-page .blog-reviews .reviews-subtitle {
  color: #DDD133;
}
.contrast .blog-page .blog-reviews .review-card .review-date {
  color: #DDD133;
}

.search-page-title {
  padding: 40px 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .search-page-title {
    font-size: 30px;
  }
}
.search-page-title span {
  color: #65A30D;
}
.search-page-results {
  padding: 0 0 40px 0;
}
.search-page-results .block-products-list,
.search-page-results .block-articles-list {
  margin: 5px 0;
}
.search-page-category-title span {
  color: #65A30D;
}
.search-page-category-category-subtitle {
  font-size: 1.6rem;
}
.search-page-category-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0 42px 0;
}
.search-page-result-title {
  font-size: 2rem;
  font-weight: 600;
}
.search-page-result-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.search-page-result-content-short {
  margin-top: 8px;
  font-size: 1.2rem;
}
.search-page-standard-result {
  padding: 24px;
  border: 1px solid #f3f4f6;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-right: 54px;
}
.search-page-blog-result {
  display: flex;
  position: relative;
  border: 1px solid #f3f4f6;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 768px) {
  .search-page-blog-result {
    flex-direction: column;
  }
}
.search-page-blog-result-photo {
  width: 234px;
  height: 183px;
  object-fit: cover;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .search-page-blog-result-photo {
    width: 100%;
  }
}
.search-page-blog-result-content {
  padding: 24px 100px 24px 24px;
}
@media only screen and (max-width: 768px) {
  .search-page-blog-result-content {
    padding: 12px 12px 56px 12px;
  }
}

.page-offer-divider {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  padding: 40px 0 20px 0;
}
@media only screen and (max-width: 1260px) {
  .page-offer-divider {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    padding: 20px 0;
  }
}
.page-offer-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: fit-content;
}
@media only screen and (max-width: 1260px) {
  .page-offer-categories {
    gap: 8px;
  }
}
.page-offer-title {
  font-size: 3rem;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1260px) {
  .page-offer-title {
    margin: 0;
  }
}
.page-offer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-offer-content h2 {
  font-size: 2.4rem;
}
.page-offer-content li {
  position: relative;
  padding-left: 20px;
}
.page-offer-content li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 5px;
  background: #65A30D;
}
.page-offer .category-card.swiper-slide {
  height: 250px;
}
@media only screen and (max-width: 1260px) {
  .page-offer .category-card.swiper-slide {
    height: 200px;
  }
}

.page-about-divider {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  padding: 40px 0 20px 0;
}
@media only screen and (max-width: 1260px) {
  .page-about-divider {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
  }
}
.page-about-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: fit-content;
}
@media only screen and (max-width: 1260px) {
  .page-about-categories {
    gap: 8px;
  }
}
.page-about-logo {
  width: auto;
  height: 56px;
  margin-bottom: 48px;
  max-width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 1260px) {
  .page-about-logo {
    margin-bottom: 12px;
  }
}
.page-about-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-about-content h2 {
  font-size: 2.4rem;
}
.page-about-content li {
  position: relative;
  padding-left: 20px;
}
.page-about-content li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 5px;
  background: #65A30D;
}
.page-about .category-card.swiper-slide {
  height: 250px;
}
@media only screen and (max-width: 1260px) {
  .page-about .category-card.swiper-slide {
    height: 200px;
  }
}

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