@charset "UTF-8";
.adminBlock {
  position: fixed;
  top: 10px;
  right: 5px;
  z-index: 1100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 5px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.adminBlock .adminEdit, .adminBlock .adminSeo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  font-size: 14px;
  letter-spacing: normal;
  padding: 0px 15px;
  background: #E7411D;
  color: #fff;
  border: 1px solid #E7411D;
  border-radius: 5px;
}
.adminBlock .adminEdit:hover, .adminBlock .adminSeo:hover {
  background: #fff;
  color: #E7411D;
}

.pages {
  max-width: 1400px;
  margin: auto;
  padding: 0px 0px 50px;
}
.pages .breadcrumps__wrapper {
  margin: 23px auto 5px;
  position: relative;
}
.pages h1 {
  margin-bottom: 30px;
}
.pages .pages_text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}
.pages .pages_text a {
  color: #87B66E;
}

@media (max-width: 1439px) {
  .pages {
    max-width: calc(100% - 50px);
  }
}
@media (max-width: 980px) {
  .pages {
    max-width: calc(100% - 30px);
  }
}
@media (max-width: 765px) {
  .pages {
    margin: 18px auto 0px;
    padding: 0px 0px 20px;
  }
}
.black {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.mod {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
  max-width: 90vw;
  max-height: 90vh;
}
.mod.hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.close::before, .close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #666;
  border-radius: 1px;
}
.close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modbox {
  padding: 30px;
  background: #fff;
  color: #181818;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  max-height: 80vh;
  overflow-y: auto;
}
.modbox .mod_name {
  padding: 0 60px 15px 30px;
  font-size: 16px;
  font-weight: 400;
  margin: -10px -30px 0px;
  border-bottom: 1px solid;
}
.modbox .mod_name.set {
  margin: -10px -30px -30px;
  border: 0px;
}
@media (max-width: 765px) {
  .modbox .mod_name.set {
    margin: -10px -30px 0px;
    border: 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 10px;
    padding-bottom: 0px;
  }
}
.modbox .modal-loading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  color: #3c4640;
  font-size: 14px;
}
.modbox .modal-loading img {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.modbox .alert-modal {
  padding: 20px 20px;
}
.modbox .alert-modal .alert-message {
  font-size: 16px;
  line-height: 1.4;
}
.modbox .alert-modal .alert-buttons {
  margin: 20px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.modbox .alert-modal .alert-buttons .alert-ok {
  background: #87B66E;
  color: #fff;
  padding: 0px 25px;
  line-height: 1;
  height: 40px;
  border-radius: 10px;
}
.modbox .alert-modal .alert-buttons .alert-ok:hover {
  background: #1c685c;
}
.modbox .confirm-modal {
  padding: 20px 20px;
}
.modbox .confirm-modal .confirm-message {
  font-size: 16px;
  line-height: 1.4;
}
.modbox .confirm-modal .confirm-buttons {
  margin: 20px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.modbox .confirm-modal .confirm-buttons .confirm-yes {
  background: #87B66E;
  color: #fff;
  padding: 0px 25px;
  line-height: 1;
  height: 40px;
  border-radius: 10px;
}
.modbox .confirm-modal .confirm-buttons .confirm-yes:hover {
  background: #1c685c;
}
.modbox .confirm-modal .confirm-buttons .confirm-no {
  padding: 0px 25px;
  line-height: 1;
  height: 40px;
  border-radius: 10px;
  background: #E0E0E0;
  -webkit-box-shadow: 0 0.5px 0 0 #BEBEBE;
  box-shadow: 0 0.5px 0 0 #BEBEBE;
}
.modbox .confirm-modal .confirm-buttons .confirm-no:hover {
  background: #BEBEBE;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .mod {
    width: calc(100% - 30px);
  }
  .modbox {
    padding: 20px;
  }
  .modbox .modal-loading {
    padding: 20px;
    min-width: auto;
  }
}
.suggestions-nowrap {
  white-space: nowrap;
}

.suggestions-input {
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

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

.suggestions-wrapper {
  display: inline-block;
  position: absolute;
  margin: 0;
  padding: 0;
  vertical-align: top;
  min-height: 1px;
  -webkit-text-size-adjust: 100%;
}

.suggestions-addon {
  display: none;
  opacity: 0;
  position: absolute;
}

.suggestions-addon[data-addon-type=spinner] {
  background: rgba(255, 255, 255, 0.75) url(data:image/gif;base64,R0lGODlhEAAQAKUAABwaHIyOjMzKzOTm5LSytFxaXHR2dJyenNza3PT29Ly+vISGhERGRJSWlNTS1Ozu7Ly6vGRmZHx+fKSmpOTi5Pz+/MTGxDQyNJSSlMzOzOzq7LS2tHx6fNze3Pz6/MTCxIyKjExKTJyanNTW1PTy9GxqbKyqrP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCQAnACwAAAAAEAAQAAAGk8CTcHgSHYjIU8dAOoFApwfDkfQYJqcFdBFKECleS4mCaSAum1MiIwQFHBWTRtgJxC8XYYIggSQlABwPRAODSB0jQxYKEB9JQiUFBQaLCo6PEZIGQyReSCRNQx4ZBIlIDgQOHkIQEBQVI54kIxUUG35RqxQEJBkOJAQDJx6GQh4biQJsGRCrSA/NJ8rDG8WPI6ZIQQAh+QQJCQArACwAAAAAEAAQAIUEAgSEgoTEwsTk4uSkoqRERkRkYmTU0tT08vSUlpS0srRsbmwcHhyMiozMyszs6uysqqxcXlzc2tz8+vxMTkycnpy8urx0dnQcGhyEhoTExsTk5uSkpqRMSkxsamzU1tT09vScmpy0trR0cnQ0MjSMjozMzszs7uysrqzc3tz8/vz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGk8CVcLiCoIjI1aAEWoVCq1NEkpw0RKsENGFoDh+TlSmwIXAGHcEKdBASCB+V5SQcVFSKQkcIEoQ0SSUkGQhEJ4VIAylDHyYObUkrFx4eAR8OJpBJk5VDCF5EEporEyYKH0kjAAt0KxYWAyofXghxBBgMQidhAwoImQgKAysIgEMTIqiYYhZhSCfNK8vIrZErH6hJQQAh+QQJCQAkACwAAAAAEAAQAIUEAgSEhoTExsTk5uRMTkykpqTU1tRsamz09vS0trR0dnScmpzMzszs7uzc3tw0MjRcXly0srT8/vy8vrx8fnwcGhyUkpTMyszs6uysqqzc2tx0cnT8+vy8urx8enykoqTU0tT08vTk4uRkZmT///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkECScEhKdIhI0qCAIGUypJDCkeR8BE7oR8EhNrqaRSMSEY0uJIRB2OmIJIKQcJCRTCAQIYeRWCMXBAtyQyFNSCIiQwYMFyBJQgEeHhYGFwyOjwEKk4SGRA5+egwRoUMUFR4NbG4SBoYaGxIZDw9CXyQiESGXDAAFaQxEHH0kliQHFZ5DDR1dxhgVWI9CBqVDQQAh+QQJCQAmACwAAAAAEAAQAIUcGhyMjozMysxUVlTk5uSsrqx0cnT09vS8vrzc3tyEgoScnpxERkTU0tTs7uy0trRkZmR8fnz8/vzExsSMioykpqQ0MjSUlpTMzsxcWlzs6uy0srR0dnT8+vzEwsTk4uSEhoRMSkzU1tT08vS8urysqqz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGjkCTcGiaCIhIk4PUMZEQphHlk+w8Gk7oJtAcOpqEzQgxIUSwh4SQRPpIRAehhiSZcDjCDuYhSpYgJSNEI3FIGlRCIhgCWEkmFxQUCyICGI1JkCALQ4RJH2pDeht9SBQWIIJObW+FCQoSDyEMQl8mH2IQECIABSYHlyZWfQMZJhwWhURLTcRKFhiOQwZ4SUEAIfkECQkAKQAsAAAAABAAEACFBAIEhIKExMLE5OLkREZEpKKkZGZk1NLU9PL0tLK0dHZ0XF5cnJqczMrM7OrsbG5s3Nrc/Pr8vLq8NDI0jI6MTE5MrK6sHBochIaExMbE5ObkTEpMpKakbGps1NbU9Pb0tLa0fH58ZGJkzM7M7O7sdHJ03N7c/P78vL68////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpDAlHCY8niIyBRJEkk1RqlPwZGMgA5OqIDTHJKamgRidHAwjpGBUCIZnDwfISlzOlAowsgIdERKQglxQwiCRA5UQh4jDVhJKQUMDBYeT41JkJKDhUMDJkR6CX1EDBUMCGttJyWeKQMUJygLInJNBQAHJQoQEyApEaIpCBcPKQYdKRgbm0IZF1TGSgSWjiEBjkEAIfkECQkAJgAsAAAAABAAEACFBAIEhIKExMLE5OLkpKKkTE5M1NLU9PL0lJKUZGZktLK0zMrM7Ors3Nrc/Pr8nJqcdHZ0NDI0jI6MrKqsXF5cHBochIaExMbE5ObkpKak1NbU9Pb0lJaUbGpsvLq8zM7M7O7s3N7c/P78nJ6cfHp8ZGJk////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABpRAk3Bo0miISBPI4zAtPiaHB5SUGpzQD5MIaoYUh48BpMBEzSaPByPSbIQHjahByAgdH8UReXkI3kMHgEQHVEIaHwtXSSYKExMeGk+LSQoZkEMGDUkYaEIMHQAQSRMJGQdCFRUZDgEhQhgjIgsQoyYXbxMVGhYWAwUCJhuvQxsRoxAkJgglg0MLEVTJShSbjEISCIxBACH5BAkJACkALAAAAAAQABAAhRwaHIyOjMzKzFxaXKyurOTm5HR2dJyenLy+vPT29Nze3DQ2NISChJSWlNTS1GxqbLS2tOzu7KyqrMTGxPz+/ERGRIyKjDQyNJSSlMzOzGRmZLSytOzq7Hx6fKSipMTCxPz6/OTi5ISGhJyanNTW1HRydLy6vPTy9ExKTP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTwJRwmCKRiMhUxARKCTIpkCmSBEEcTmiGSYw0C5tTxnHahKLUlMkUopASwhOJEoKYhKAM5Ih0XJtDJ3BIJydDJQMDD0lCHwgmE4gDGowpjggTQyQKSREFXR0ADEkQDBuDFxcSFAFnKRyrDhYBQgJwGwsKGA0hGgIpCa5CCRUWKSLGHgaARA4VhsgpJwaclSkjB4xBACH5BAkJACgALAAAAAAQABAAhQQCBISChMTGxKSipOTm5ERGRLSytGxqbJSSlNTW1PT29IyKjMzOzKyqrOzu7FxeXLy6vHR2dDQyNExOTJyanOTi5Pz+/Hx+fBwaHISGhMzKzKSmpOzq7ExKTLS2tNza3Pz6/IyOjNTS1KyurPTy9Ly+vHx6fJyenP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaTQJRwiEokiEiUAwJCaRgoEMSRBHlETiiDSRQoUBUDiSEiGSpRKgqD2VgSXxQpYal4IELOARBJiq5NQyIfSSQkQwEHB31JKCIMGgkXiox+kEdCH2hIDmpCDhkSCEkCFF5CHR0eFicEnxAWHwMbQiJfJRMVAwMEF1ggrkMKDxQoCCcoBiGBRAkPhxTFCgubjSgNI41BACH5BAkJACoALAAAAAAQABAAhQQCBISChMTCxOTi5KSipExOTNTS1PTy9LSytGRmZJSWlHRydCwuLMzKzOzq7KyqrNza3Pz6/Ly6vIyOjFxeXJyenHx6fBwaHISGhMTGxOTm5KSmpNTW1PT29LS2tGxubJyanHR2dDQyNMzOzOzu7KyurNze3Pz+/Ly+vGRiZP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaRQJVwqOJwiEhV5uJQNUaqiISUPFw+TuhIEiE2OioCwDAyHBCDKFXFEJVOC5PwwDkNPBIhyXIJJA0eBl1DHHJIBwdDExYWGElCZA0ciyGOjwZPR0ImGlWJQwcKBRVJHAiCQhQpKCcPTSokDXZ4QhxdGQkaCAgkIBBqRB0LGyoPDyooG4NEJiGJxiodG6+PKrRJQQAh+QQJCQAnACwAAAAAEAAQAIUcGhyMjozMyszk5uRUVlSsrqx0cnTc2tz09vS8vryEgoScnpxERkTU0tTs7uy0trRkZmR8enzk4uT8/vzExsSMioykpqQ0MjSUlpTMzszs6uxcWly0srR0dnTc3tz8+vzEwsSEhoRMSkzU1tT08vS8urysqqz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkMCTcHgydIjIk+DiOBE2p0+piURcIk5opvQhNhAnE2AEgZA4gyiVIXpMFB4hYjSRlEpCR+gSSDY4GV1DBxJJCCRDCxUVGElCDRkCI4qMjicNAhkjQxIaSSRUQiQWEAVJIxwNgh0GAhNTonQSD3gnHmAZCgMgIA4chROhURUPJyUJl1xJEhVgxycIsJYnFAKOQQAh+QQJCQApACwAAAAAEAAQAIUEAgSEgoTExsTk5uRERkSkoqRkZmTU1tSUlpT09vS0srRcXlx0dnSMiozMzszs7uzc3tw0NjRMTkysqqx0cnScnpz8/vy8urwcGhyEhoTMyszs6uxMSkykpqRsamzc2tycmpz8+vxkYmR8fnyMjozU0tT08vTk4uS8vrz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGj8CUcJgKBIjIVIlgShk8qQ1GkEwQGk6oAZMgHkIpReRDYZQAnZTlIVyIUBbSSfhhWE6Xi9CE4FSSJQoOYEMQA0kmXUITICBpSUoOGgeMjpBKGg4HQwNsSCaeQgkKAXpIgSWEDSQOFhqeJgd3eUInYB8gDyUlDwqHIaEpIRVUGhopDheERAMdYJnCF8GAm0lBACH5BAkJACgALAAAAAAQABAAhQQCBISChMTCxOTi5KSipExOTNTS1PTy9LSytGRmZJSSlHRydBweHMzKzOzq7KyqrNza3Pz6/IyOjLy6vJyanHx6fBwaHISGhMTGxOTm5KSmpFxeXNTW1PT29GxubHR2dDQyNMzOzOzu7KyurNze3Pz+/Ly+vJyenP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaWQJRwiJIoiEgUZ3NAfSooESiU7GwoTugH1CGSIqhJYRC4cCwj1KEhXHwaJUpGSAqUCBaG8EBIPJILAB4ORAOESBwcQxMPDwhJQiGSHAgjGo+QBiENikIiTUgHoEIdAhQYSZQGYCgEGhAlHF1qHCUDExNCDl0DCAchBgcIcxEiRCUTBigNVCETrEQiE12bKBETxpBCiZBBADs=) 50% 50% no-repeat;
  border-radius: 50%;
}

.suggestions-addon[data-addon-type=clear] {
  background: transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48Zz48cGF0aCBkPSdtMjAsMjBtMTAsMGwyMCwyMGwyMCwtMjBsMTAsMTBsLTIwLDIwbDIwLDIwbC0xMCwxMGwtMjAsLTIwbC0yMCwyMGwtMTAsLTEwbDIwLC0yMGwtMjAsLTIwbDEwLC0xMCcgZmlsbD0nIzk5OScvPjwvZz48L3N2Zz4=) 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 0.8;
}

.suggestions-addon[data-addon-type=clear]:hover {
  opacity: 1;
}

.suggestions-suggestions {
  background: #fff;
  border: 1px solid #999;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  z-index: 9999;
  -webkit-text-size-adjust: 100%;
}

.suggestions-suggestions strong {
  font-weight: 400;
  color: #39f;
}

.suggestions-suggestions.suggestions-mobile {
  border-style: none;
}

.suggestions-suggestions.suggestions-mobile .suggestions-suggestion {
  border-bottom: 1px solid #ddd;
}

.suggestions-suggestion {
  padding: 4px 4px;
  overflow: hidden;
}

.suggestions-suggestion:hover {
  background: #f7f7f7;
}

.suggestions-selected {
  background: #f0f0f0;
}

.suggestions-selected:hover {
  background: #f0f0f0;
}

.suggestions-hint {
  padding: 4px 4px;
  white-space: nowrap;
  overflow: hidden;
  color: #777;
  font-size: 85%;
}

.suggestions-constraints {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
}

.suggestions-constraints:empty {
  display: none !important;
}

.suggestions-constraints li {
  background: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: default;
  display: inline-block;
  margin: 0 4px 0 0;
  padding: 0 0.5em;
}

.suggestions-constraints li .suggestions-remove {
  height: 1em;
  width: 1em;
  display: inline-block;
  margin: 0 0 0 0.25em;
  background: transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48Zz48cGF0aCBkPSdtMjAsMjBtMTAsMGwyMCwyMGwyMCwtMjBsMTAsMTBsLTIwLDIwbDIwLDIwbC0xMCwxMGwtMjAsLTIwbC0yMCwyMGwtMTAsLTEwbDIwLC0yMGwtMjAsLTIwbDEwLC0xMCcgZmlsbD0nIzk5OScvPjwvZz48L3N2Zz4=) 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 0.8;
}

.suggestions-constraints li .suggestions-remove:hover {
  opacity: 1;
}

.suggestions-constraints li span {
  vertical-align: middle;
}

.suggestions-subtext {
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestions-subtext_inline {
  display: inline-block;
  min-width: 6em;
  vertical-align: bottom;
  margin: 0 0.5em 0 0;
}

.suggestions-subtext-delimiter {
  display: inline-block;
  width: 2px;
}

.suggestions-subtext_label {
  margin: 0 0 0 0.25em;
  border-radius: 3px;
  padding: 0 3px;
  background: #f5f5f5;
  font-size: 85%;
}

.suggestions-value[data-suggestion-status=LIQUIDATED] {
  position: relative;
}

.suggestions-value[data-suggestion-status=LIQUIDATED]:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  content: "";
}

.suggestions-promo {
  font-size: 85%;
  color: #777;
  padding: 4px 4px 6px 4px;
}

.suggestions-promo a {
  color: #777;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  line-height: 20px;
  text-decoration: none;
}

.suggestions-promo a:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.suggestions-promo svg {
  height: 20px;
  vertical-align: bottom;
}

::-webkit-scrollbar-button {
  background-image: url("");
  background-repeat: no-repeat;
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #87b66e;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6f9a55;
}

::-webkit-resizer {
  background-image: url("");
  background-repeat: no-repeat;
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Базовые стили для плавной прокрутки якорных ссылок*/
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Отступ для фиксированного меню */
  }
  /* Для браузеров, которые не поддерживают scroll-padding-top */
  :target {
    scroll-margin-top: 100px;
  }
}
/* FONTS */
@font-face {
  font-family: "Forum";
  font-weight: 400;
  font-style: normal;
  src: url("/public/src/fonts/Forum-Regular.woff2") format("woff2"), url("/public/src/fonts/Forum-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TikTokSans";
  font-weight: 400;
  font-style: normal;
  src: url("/public/src/fonts/TikTokSans_24pt_SemiExpanded-Regular.woff2") format("woff2"), url("/public/src/fonts/TikTokSans_24pt_SemiExpanded-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TikTokSans";
  font-weight: 500;
  font-style: normal;
  src: url("/public/src/fonts/TikTokSans_24pt_SemiExpanded-Medium.woff2") format("woff2"), url("/public/src/fonts/TikTokSans_24pt_SemiExpanded-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TikTokSans";
  font-weight: 600;
  font-style: normal;
  src: url("/public/src/fonts/TikTokSans_24pt_SemiExpanded-SemiBold.woff2") format("woff2"), url("/public/src/fonts/TikTokSans_24pt_SemiExpanded-SemiBold.woff") format("woff");
  font-display: swap;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

a {
  color: #545454;
}

main {
  width: 100%;
  margin-top: 166px;
}

body:has(.main.main-hero) .header {
  border: none;
}

body.hidden {
  overflow: hidden;
  height: 100vh;
}

/* .container {
max-width: 1400px;
    position: fixed;
    width: -webkit-fill-available;
    height: 100vh;
    top: 0;
    z-index: 9999;
} */
.main {
  width: -webkit-fill-available;
  /* height: 100%; */
  max-width: 1400px;
  /* margin: 0 auto 0; */
  margin: 166px auto 0;
  position: relative;
}

.title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
}

.title-small {
  font-weight: 700;
  font-size: 20px;
  line-height: 118%;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
  width: -webkit-fill-available;
  /* height: 100%; */
  /* margin-top: 10px; */
  padding-top: 25px;
  /* max-width: 1400px;
  margin: 35px auto 33px; */
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  /* max-width: 1580px; */
  padding: 35px 90px 0;
  position: fixed;
  z-index: 500;
  height: auto;
  border-bottom: 1px solid rgb(235, 236, 237);
}

body.search-open {
  overflow: hidden !important;
  padding-right: var(--scrollbar-width, 0px);
}

html.search-open {
  overflow: hidden !important;
}

.header__contacts-mob {
  display: none;
}

.header__contacts li:hover .header__contacts-mob {
  display: block;
}

.header__contacts li:hover .header__contacts-desc {
  display: none;
}

.input.search-input {
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: rgb(29, 29, 31);
}

.input.search-input::-webkit-input-placeholder {
  color: rgba(29, 29, 31, 0.3);
}

.input.search-input::-moz-placeholder {
  color: rgba(29, 29, 31, 0.3);
}

.input.search-input:-ms-input-placeholder {
  color: rgba(29, 29, 31, 0.3);
}

.input.search-input::-ms-input-placeholder {
  color: rgba(29, 29, 31, 0.3);
}

.input.search-input::placeholder {
  color: rgba(29, 29, 31, 0.3);
}

.header__menu-btn {
  border: 1px solid rgba(163, 163, 163, 0.2);
  border-radius: 6px;
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
  padding: 11.5px 19px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu-btn:hover svg path {
  stroke: #fff;
}

.header__menu-btn:hover {
  color: #fff;
  background: rgb(135, 182, 110);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__wrapper-top-left {
  gap: 37px;
}

.header__wrapper-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1400px;
  width: -webkit-fill-available;
  margin: 0 auto;
}

.header__phone {
  margin-right: 43px;
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
}

.header__top-right-item--sum {
  position: relative;
}

.header__top-right-item:hover svg path {
  stroke: rgb(135, 182, 110);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__sum {
  position: absolute;
  top: -10px;
  right: -9px;
  font-weight: 700;
  font-size: 9px;
  line-height: 65%;
  color: #fff;
  background: #87b66e;
  border: 1px solid #fff;
  padding: 6px 5px 5px 5px;
  border-radius: 100%;
}

.header__wrapper-top div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__hidden-menu-wrap {
  max-width: 1400px;
  width: -webkit-fill-available;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.header__hidden-menu-banner {
  margin: 16px 18px;
  background: #fff;
  border-radius: 5px !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  border-radius: 10px;
  width: 287px;
  height: 196px;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.header__hidden-menu-banner img {
  width: 320px;
  height: 230px;
}

.header__hidden-menu-banner-name {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 144%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #434343;
}

.header__hidden-menu-banner-percent {
  position: relative;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 52px;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin: 3px 0 10px;
}

.header__hidden-menu-banner-percent span {
  position: absolute;
  top: -13px;
  right: -20px;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 52px;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.header__hidden-menu-banner-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: #545454;
}

.header__hidden-menu {
  display: none !important;
  position: absolute;
  top: 50px;
  left: 0;
  width: -webkit-fill-available;
  margin-top: 45px;
  background: #fff;
  z-index: 2;
}

.header__hidden-menu.active {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  width: -webkit-fill-available;
  padding: 26px 90px 56px;
  border-radius: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid rgb(235, 236, 237);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header:has(.header__hidden-menu.active) {
  padding: 25px 90px 0;
}

.header__hidden-menu.active ~ .header__wrapper-bottom {
  opacity: 0;
}

body:has(.header__hidden-menu.active) {
  overflow: hidden;
}

body:has(.header__hidden-menu.active) .search-overlay {
  opacity: 1;
  visibility: visible;
}

body:has(.header__hidden-menu.active) .header {
  margin: 10px 10px;
  border-radius: 5px;
  z-index: 1001;
  gap: 23px;
}

.header__menu-btn--close {
  display: none;
}

.header__menu-btn.active .header__menu-btn--open {
  display: none;
}

.header__menu-btn.active .header__menu-btn--close {
  display: block;
}

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

.header__hidden-menu-item {
  position: relative;
}

.header__hidden-menu-item a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  line-height: 293%;
  letter-spacing: 0.01em;
  color: #545454;
}
.header__hidden-menu-item a img {
  margin-top: -4px;
}

.header__hidden-menu-item a:hover {
  color: rgb(135, 182, 110);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__hidden-menu-list.header__hidden-menu-list-block3 a {
  font-weight: 400;
  font-size: 14px;
  line-height: 314%;
  letter-spacing: 0.02em;
  color: #545454;
}

.header__hidden-menu-item:hover a {
  color: rgb(135, 182, 110);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__hidden-menu-item svg {
  display: none;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.header__top-right-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header__wrapper-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 27px;
  width: -webkit-fill-available;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}

.header__contacts li:hover svg path {
  stroke: rgb(135, 182, 110);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__catalog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__catalog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
  height: 24px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header__catalog-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.header__catalog-item:nth-child(2) {
  padding-right: 20px;
  border-right: 1px solid rgb(232, 232, 232);
}

.header__catalog-item:hover a {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__catalog-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
}

.placebox {
  display: contents;
}

/* hero */
.swiper-button-wrapper {
  margin-left: auto;
  width: 104px;
  height: 50px;
  position: absolute;
  top: 2px;
  z-index: 10;
  right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fade-in.swiper-button-disabled.show {
  opacity: 0.5 !important;
}

.swiper-button-wrapper.swiper-button-wrapper--hero {
  position: relative;
  margin-left: auto;
  width: 128px;
  height: 74px;
  position: relative;
  top: auto;
  bottom: 130px;
  z-index: 10;
  right: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  width: 50px;
  height: 50px;
  background: #F8F8F8;
  border-radius: 10px;
  border: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.swiper-button-next {
  right: 0 !important;
  top: 21px;
}

.swiper-button-prev {
  left: 0 !important;
  top: 21px;
}

.swiper-button-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 26px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 26px;
  background: url(/public/src/images/prev.svg) no-repeat center;
  background-size: 100%;
  z-index: 0;
}

.swiper-button-prev:hover::after {
  background: url(/public/src/images/prev-light.svg) no-repeat center;
}

.swiper-button-next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 26px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 26px;
  background: url(/public/src/images/next.svg) no-repeat center;
  background-size: 100%;
  z-index: 0;
}

.swiper-button-next:hover::after {
  background: url(/public/src/images/next-light.svg) no-repeat center;
}

.swiper-button-wrapper.swiper-button-wrapper--hero {
  padding: 12px;
  border-radius: 15px;
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
  backdrop-filter: blur(100px);
}

.swiper-pagination {
  height: 31px;
  bottom: 0 !important;
}

.swiper-pagination.swiper-pagination-catalog {
  display: none;
}

.hero .swiper-pagination-bullet {
  background: #fff;
}

.hero .swiper-pagination-bullet::before {
  background: #fff;
}

.hero .swiper-pagination-bullet-active::before {
  background: #fff;
}

.hero .swiper-pagination-bullet-active {
  background: #fff;
}

.hero .swiper-pagination-bullet-active::after {
  background: url(/public/src/images/active-bullet-light.svg) no-repeat center;
}

.swiper-pagination-bullet {
  width: 25px !important;
  height: 25px !important;
  opacity: 1;
  cursor: pointer;
  background: #adadad;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* визуально уменьшаем сам кружок */
.swiper-pagination-bullet {
  background: none !important;
  position: relative;
}

.swiper-pagination-bullet::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #adadad;
  border-radius: 50%;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* активная точка тоже уменьшенная */
.swiper-pagination-bullet-active::before {
  background: #adadad;
}

.swiper-pagination-bullet-active {
  position: relative;
  border-radius: 100%;
  background: #87b66e;
}

.swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  top: -2px;
  left: -2px;
  background: url(/public/src/images/active-bullet.svg) no-repeat center;
  width: 29px;
  height: 29px;
}

.main-hero .hero {
  margin-bottom: 95px;
}

.hero__block {
  position: absolute;
  top: 0;
  margin: 86px 70px 52px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

.hero__swiper .swiper-pagination {
  bottom: 140px !important;
  width: auto;
  margin: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hero__block a {
  color: #ffffff;
}

.hero__button {
  padding: 10px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
  position: relative;
  z-index: 11;
}

.hero__button span:hover {
  background: #1C685C;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero__button span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 12px 46px;
  background: #87B66E;
  border-radius: 10px;
  color: #fff;
}

.button-dark {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.button-dark:hover {
  background: #1c685c;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hero__name {
  font-weight: 500;
  font-size: 23px;
  line-height: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}

.hero__name-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 114px;
  line-height: 68px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

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

.hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 52px;
  -moz-column-gap: 52px;
  column-gap: 52px;
  row-gap: 10px;
}

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

.hero__item-sum {
  font-weight: 500;
  font-size: 26px;
  line-height: 85%;
  margin-bottom: 10px;
}

.hero__item-par {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0.02em;
}

/* catalog main */
.catalog__info-fixed {
  position: fixed;
  height: 95px;
  top: 175px;
  z-index: 20;
  margin: 0 18px;
  width: -webkit-fill-available;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.catalog__info-fixed.active {
  opacity: 1;
  visibility: visible;
}

.catalog__info-fixed-width {
  max-width: 1400px;
  margin: 0 auto;
  width: -webkit-fill-available;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 9px 0;
}

.catalog__info-fixed-width .basket__photo {
  width: 65px;
  height: 77px;
}

.catalog__info-fixed-wrapper-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 42%;
}

.catalog__info-fixed-ridht {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.catalog__info-fixed-button.card__button-submit {
  padding: 9px 33px;
}

.catalog__info-fixed-title {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog__info-fixed-favorite {
  background: rgb(248, 248, 248);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__info-fixed-favorite:hover svg path,
.catalog-card__favorite:hover svg path {
  stroke: #87b66e;
}

.catalog__info-fixed-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fill-available;
}

.catalog__info-color {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #adadad;
}

.catalog {
  max-width: 1400px;
  padding-bottom: 108px;
}

.catalog-section {
  margin-bottom: 128px;
}

.catalog__title {
  text-align: center;
  margin-bottom: 46px;
}

.catalog__wrapper-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog__wrapper-selected-filters {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.catalog__selected-filters {
  padding: 0px 14px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  background: #f8f8f8;
  border-radius: 5px;
}

.catalog__selected-filters:hover {
  background: #87B66E;
  color: #fff;
}
.catalog__selected-filters:hover span {
  color: #fff;
}

.catalog__selected-filters button {
  width: 18px;
  height: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  outline: none;
}

.catalog__selected-filters button svg {
  width: 8px;
  height: 8px;
}

.catalog__selected-filters span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 192%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog__button {
  position: relative;
  background: #F6F6F6;
  font-weight: 500;
  font-size: 19px;
  line-height: 126%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog__button:nth-child(1),
.catalog__button:nth-child(2) {
  width: 49.7%;
  height: 330px;
  border-radius: 10px;
}

.catalog__button:nth-child(3),
.catalog__button:nth-child(4),
.catalog__button:nth-child(5),
.catalog__button:nth-child(6) {
  width: 24.5%;
  height: 303px;
  border-radius: 10px;
}

.catalog__button:hover {
  background: #87B66E;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.catalog__button:hover .catalog__button-weight {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__button-decorate {
  border-radius: 10px;
  width: 50px;
  height: 50px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 44px;
  left: 44px;
}

.catalog__button-weight {
  height: 100%;
  display: block;
  width: 100%;
  position: relative;
  z-index: 90;
  padding: 40px 43px;
}

.catalog__button:nth-child(1) img {
  position: absolute;
  top: 35px;
  right: 0;
  width: 381px;
  height: 270px;
}

.catalog__button:nth-child(2) img {
  position: absolute;
  bottom: 35px;
  right: 0;
  width: 367px;
  height: 307px;
}

.catalog__button:nth-child(3) img {
  position: absolute;
  bottom: 26px;
  right: 0;
  width: 186px;
  height: 213px;
}

.catalog__button:nth-child(4) img {
  position: absolute;
  bottom: 18px;
  right: 0;
  width: 231px;
  height: 215px;
}

.catalog__button:nth-child(5) img {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 144px;
  height: 229px;
}

.catalog__button:nth-child(6) img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 295px;
  height: 261px;
}

.catalog__button::before {
  position: absolute;
  /* content: ""; */
  left: 44px;
  bottom: 45px;
  width: 50px;
  height: 50px;
  background: url(/public/src/images/catalog-btn.png) no-repeat right top;
  background-size: 100%;
}

/* catalog-popular */
.card-photo-slider {
  position: relative;
  width: 100%;
  height: 100%;
  /* min-height: 260px; */
  overflow: hidden;
  border-radius: 12px;
}

.card-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  /* transition: opacity 0.3s ease-in-out; */
}

.card-slide.active {
  opacity: 1;
}

.catalog-card__wrapper-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card-photo-slider {
  position: relative;
  width: 100%;
  /* height: 260px; */
  aspect-ratio: 440/575;
  overflow: hidden;
}

.photo-dots-container {
  position: absolute;
  bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  z-index: 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(137deg, rgba(255, 255, 255, 0.2) 0.55%, rgba(255, 255, 255, 0.2) 100%), rgba(255, 255, 255, 0.2);
  padding: 5px 6px;
  width: 45px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 100px;
  overflow: hidden;
}

.photo-dot {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.photo-dot.active {
  background: #FFFFFF;
}

.card__wrapper-nameplate {
  position: absolute;
  top: 3%;
  left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 10px;
}

.card__nameplate {
  padding: 3px 13px;
  font-weight: 400;
  font-size: 13px;
  line-height: 154%;
  color: #fff;
  border-radius: 100px;
  z-index: 10;
}

.card__nameplate1 {
  background: #ffa600;
}

.card__nameplate2 {
  background: #166256;
}

.card__nameplate3 {
  background: #fff;
}

.card__nameplate.card__nameplate3 {
  color: #545454;
}

.catalog-card {
  padding-bottom: 73px;
}

.catalog-card__swiper {
  padding-top: 87px;
}

.catalog-card__wrapper-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #545454;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card__wrapper__nameplate {
  padding: 5px 13px;
  font-weight: 400;
  font-size: 13px;
  line-height: 154%;
  border-radius: 100px;
}

.card__wrapper__nameplate.card__nameplate1 {
  background: #ffa600;
  color: #fff;
}

.card__wrapper__nameplate.card__nameplate2 {
  background: #166256;
  color: #fff;
}

.card__wrapper__nameplate.card__nameplate3 {
  background: #ffffff;
  color: #545454;
  border: 1px solid;
}

.catalog-card__price {
  margin-right: 18px;
}

.catalog-card__wrapper-price div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-card__price-old {
  font-weight: 400;
  font-size: 17px;
  line-height: 129%;
  letter-spacing: 0.01em;
  text-decoration: line-through;
  color: #545454;
  opacity: 0.5;
  margin-right: 13px;
}

.catalog-card__discount {
  font-weight: 400;
  font-size: 13px;
  line-height: 169%;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 0 7px;
  background: #87b66e;
  border-radius: 10px;
}

.catalog-card__favorites {
  position: absolute;
  top: 3%;
  right: 4%;
  width: 45px;
  height: 45px;
  backdrop-filter: blur(100px);
  background: linear-gradient(137deg, rgba(255, 255, 255, 0.2) 0.55%, rgba(255, 255, 255, 0.2) 100%);
  z-index: -2;
  border-radius: 5px;
}

.catalog-card__favorites:hover {
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog-card__favorites.active {
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}

.card-photo-slider.catalog-card__img div {
  z-index: 0 !important;
  cursor: pointer;
}

.card .catalog-card__favorite {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 5px;
}

.hero__card.swiper-wrapper {
  aspect-ratio: 1400/605;
}

.hero__img {
  aspect-ratio: 1400/605;
}

.hero__card-block:hover .catalog-card__button {
  z-index: 100;
}

.hero__card-block:hover .catalog-card__favorites {
  z-index: 100;
}

.catalog__card-block:hover .catalog-card__button {
  z-index: 100;
}

.catalog__card-block:hover .catalog-card__favorites {
  z-index: 0;
}

.catalog-card__favorites svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.catalog-card__img {
  width: 100%;
  /* height: 575px; */
  aspect-ratio: 440/575;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
  /* margin-bottom: 20px; */
  display: block;
}

.catalog-card__name {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
  margin-bottom: 20px;
  margin-top: 20px;
}

.catalog-card__button-desc {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  height: 80px;
  position: absolute;
  z-index: -1;
  bottom: 43px;
  left: 0;
  padding: 10px;
  border-radius: 15px;
  backdrop-filter: blur(100px);
  margin: 0 22px;
  background: linear-gradient(137deg, rgba(255, 255, 255, 0.2) 0.55%, rgba(255, 255, 255, 0.2) 100%);
}

.catalog-card__button.catalog-card__button-mob {
  display: none;
}

.catalog-card__button span {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #87b66e;
  cursor: pointer;
}

.catalog-card__wrapper-img {
  position: relative;
}

.catalog-popular {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 75px;
}

.catalog-popular__title {
  margin-bottom: 36px;
}

.catalog-popular {
  position: relative;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  margin-top: -87px;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  margin-top: -87px;
}

.catalog-popular__button {
  background: #F8F8F8;
  padding: 12px 25px;
  border-radius: 10px;
  border: 2px solid #F8F8F8;
  color: rgb(84, 84, 84);
}

.catalog-popular__button:hover {
  background: #ffffff !important;
  border: 2px solid #87B66E !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

body.menu-open {
  overflow: hidden;
}

.catalog-popular__button.active {
  color: #87B66E;
  background: #ffffff !important;
  border: 2px solid #87B66E !important;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

.catalog-popular__wrapper-btn {
  position: absolute;
  top: 0;
  left: 51%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  z-index: 2;
}

/* info */
.info__block {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 9px;
}
.info__block img {
  width: 100%;
  max-height: 580px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.info__block .infoBlock {
  padding: 100px 80px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
}
@media (max-width: 1100px) {
  .info__block .infoBlock {
    padding: 50px 40px;
  }
}
@media (max-width: 959px) {
  .info__block .infoBlock {
    padding: 50px 40px;
  }
  .info__block .infoBlock h2 {
    font-size: 40px;
  }
  .info__block .infoBlock .info__text {
    line-height: 1.4;
    margin-bottom: 30px;
  }
}
@media (max-width: 765px) {
  .info__block {
    width: calc(100% - 36px);
    background: #f6f6f6;
  }
  .info__block img {
    border-radius: 10px;
  }
  .info__block .infoBlock {
    position: relative;
    padding: 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .info__block .infoBlock h2 {
    font-size: 20px;
  }
  .info__block .infoBlock .info__text {
    line-height: 1.4;
    margin-bottom: 15px;
  }
}

.info__title {
  max-width: 30%;
  margin-bottom: 22px;
}

.info__text {
  width: 178px;
  font-weight: 400;
  font-size: 16px;
  line-height: 206%;
  letter-spacing: 0.01em;
  color: #545454;
  margin-bottom: 48px;
}

.info__btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
  border: 2px solid #87b66e;
  border-radius: 5px;
  padding: 15px 36px;
  position: relative;
  z-index: 100;
}

.info__btn:hover {
  background: #87b66e;
  color: #F6F6F6;
  border: 2px solid #F6F6F6;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.info__wrapper-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 72px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.info__block2:hover::after {
  background: url(/public/src/images/info2-alt.png) no-repeat right top;
  background-size: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.info__wrapper-block .info__block1:hover::after {
  background: url(/public/src/images/info1-alts.jpg) no-repeat right top;
  background-size: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  border-radius: 10px;
}

.info__wrapper-block span {
  position: relative;
  font-weight: 400;
  font-size: 30px;
  line-height: 173%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  font-family: "Forum", sans-serif;
  margin-bottom: 22px;
  z-index: 20;
}

.info__wrapper-block span::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 71px;
  height: 1px;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.info__block1 {
  position: relative;
  width: 49.7%;
  border-radius: 10px;
  height: 393px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.info__block1::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 696px;
  height: 393px;
  background: url(/public/src/images/info2.jpg) no-repeat right top;
  background-size: 100%;
  z-index: -1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  overflow: hidden;
}

.info__block2 {
  position: relative;
  width: 49.7%;
  background: #86B36F;
  border-radius: 10px;
  height: 393px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.info__block2::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 449px;
  height: 243px;
  background: url(/public/src/images/info3.png) no-repeat right top;
  background-size: 100%;
  z-index: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.info__wrapper-block-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 106px;
}

.info__wrapper-block-text div {
  padding: 39px;
  background: #F8F8F8;
  border-radius: 10px;
  width: 22.856%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 21px;
}

.info__wrapper-block-text img {
  width: 47px;
  height: 47px;
}

.info__wrapper-block-text span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #545454;
}

.info__banner {
  position: relative;
  padding: 98px 71px 58px 89px;
  background: #F9F4EF;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 106px;
  min-height: 491px;
}

.info__banner::after {
  position: absolute;
  content: "";
  right: 54px;
  bottom: 0;
  width: 693px;
  height: 553px;
  background: url(/public/src/images/tree.webp) no-repeat right top;
  background-size: 100%;
  z-index: 1;
}

.info__banner-text-small {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 99%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 22px;
}

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

.info__banner-text-small-alt {
  margin-left: 85px;
}

.info__banner-text-left {
  font-weight: 500;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
  max-width: 82.3%;
}

.info__banner-block {
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
  padding: 15px 16px 15px 12px;
  border-radius: 10px;
  position: relative;
  z-index: 100;
  max-width: 50%;
  margin-top: auto;
}

.info__banner-block p {
  background: #FFFFFF;
  padding: 41px 47px;
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
  border-radius: 10px;
}

/* form */
.form {
  margin-bottom: 134px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* display: none; */
}

.form.form-registration {
  display: none;
}

.form.active {
  display: block;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.form .form__group {
  position: relative;
}

.form .form__group .form__group-text-alt {
  display: none;
}

.form .form__group textarea:not(:-moz-placeholder) ~ .form__group-text-alt, .form .form__group .form__group-text:not(:-moz-placeholder) ~ .form__group-text-alt {
  display: block;
  position: absolute;
  top: -23px;
  left: 0px;
  font-weight: 400;
  font-size: 10px;
  line-height: 36px;
  /* opacity: 0.5; */
}

.form .form__group textarea:not(:-ms-input-placeholder) ~ .form__group-text-alt, .form .form__group .form__group-text:not(:-ms-input-placeholder) ~ .form__group-text-alt {
  display: block;
  position: absolute;
  top: -23px;
  left: 0px;
  font-weight: 400;
  font-size: 10px;
  line-height: 36px;
  /* opacity: 0.5; */
}

.form .form__group textarea:not(:placeholder-shown) ~ .form__group-text-alt,
.form .form__group .form__group-text:not(:placeholder-shown) ~ .form__group-text-alt {
  display: block;
  position: absolute;
  top: -23px;
  left: 0px;
  font-weight: 400;
  font-size: 10px;
  line-height: 36px;
  /* opacity: 0.5; */
}

.form .form__group textarea:focus ~ .form__group-text-alt,
.form .form__group .form__group-text:focus ~ .form__group-text-alt {
  display: block;
  position: absolute;
  top: -23px;
  left: 0px;
  font-weight: 400;
  font-size: 10px;
  line-height: 36px;
  opacity: 0.5;
}

/* Убирает крестик в Chrome, Safari, Edge */
input[type=search]::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}

/* Для Firefox */
input[type=search] {
  -moz-appearance: textfield;
}

.form__block-text {
  width: 50%;
}

.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 50%;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form.form-login .form__text,
.form.form-registration .form__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: #848484;
  margin-top: 15px;
}

.form.form-login .form__button {
  margin-bottom: 13px;
}

.form.form-registration .form__group-login {
  margin-bottom: 20px;
}

.form.form-login .form__text {
  text-align: center;
}

.form.form-login .form__text a {
  color: #848484;
}

.form.form-login .form__text a:hover {
  color: #87B66E;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  margin-top: 20px;
  /* display: flex;
  flex-direction: column; */
}

.form__group {
  width: 46%;
  max-width: 320px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000000;
}

.form__button {
  background: #87B66E;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  color: #fff;
  padding: 17px 0 14px;
  text-align: center;
  width: 320px;
  border-radius: 10px;
  margin-top: 33px;
  text-transform: uppercase;
}

.form__checkbox-group input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 2px;
  width: 28px;
  height: 28px;
  border: none;
  cursor: pointer;
  position: relative;
  background: #F8F8F8;
  margin-right: 15px;
  border-radius: 5px;
}

.form__checkbox-group input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #87B66E;
  border-radius: 2px;
}

/* .form.form--index::after {
  position: absolute;
  content: "";
  top: 101px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 431px;
  height: 329px;
  background:url(/public/images/order.png) no-repeat center;
  background-size: 100%;
  z-index: -1;
} */
.form__checkbox-group-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #848484;
  display: block;
}

.form__checkbox-group-text a {
  color: #87b66e;
}

.form__checkbox-group-text a:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form__checkbox-group-alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 23px;
}

.form__checkbox-group-alt input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 2px;
  width: 28px;
  height: 28px;
  border: none;
  cursor: pointer;
  position: relative;
  background: #fff;
  margin-right: 15px;
  outline: 1px solid #E3E3E3;
}

.form__checkbox-group-alt input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #87B66E;
  border-radius: 2px;
}

.form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 23px;
}

.form__group-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
}

.form__group-text::-webkit-input-placeholder {
  opacity: 0.5;
}

.form__group-text::-moz-placeholder {
  opacity: 0.5;
}

.form__group-text:-ms-input-placeholder {
  opacity: 0.5;
}

.form__group-text::-ms-input-placeholder {
  opacity: 0.5;
}

.form__group-text::placeholder {
  opacity: 0.5;
}

.form__group-text:hover {
  opacity: 1;
}

.filter:hover {
  color: #87B66E;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* footer */
.footer {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#F3F3F3));
  background: linear-gradient(180deg, #F8F8F8 0%, #F3F3F3 100%);
  position: relative;
  border-radius: 10px;
  padding: 52px 0 186px;
  overflow: hidden;
}

.footer__contacts-dark {
  display: none;
  width: 23px;
  height: 23px;
}

.footer__contacts-light {
  width: 23px;
  height: 23px;
}

.footer__contacts li:hover .footer__contacts-dark {
  display: block;
}

.footer__contacts li:hover .footer__contacts-light {
  display: none;
}

.footer::after {
  position: absolute;
  content: "";
  bottom: -95px;
  left: 0;
  width: 102%;
  height: 206px;
  background: url(/public/src/images/logo-light.png) no-repeat center;
  background-size: 100%;
  z-index: 0;
}

.footer__wrapper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-fill-available;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

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

.footer__wrapper-block-left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__wrapper-block-right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__phone {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 43px;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #545454;
  margin-bottom: 5px;
}

.footer__mail {
  font-weight: 500;
  font-size: 19px;
  line-height: 153%;
  letter-spacing: 0.02em;
  color: #545454;
  margin-bottom: 6px;
}

.footer__address {
  font-weight: 400;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.02em;
  color: #545454;
  font-style: normal;
}

.footer__time {
  font-weight: 400;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.02em;
  color: #545454;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}

.footer__contacts a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__contacts li {
  position: relative;
  background: #87b66e;
  border-radius: 10px;
  width: 61px;
  height: 61px;
}

.footer__contacts li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.footer__contacts li:hover svg path {
  stroke: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__contacts li:hover {
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__button {
  padding: 10px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  backdrop-filter: blur(100px);
  background: #fff;
}

.footer__button span:hover {
  outline: 2px solid #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #87b66e;
  color: #ffffff;
}

.footer__button span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 12px 46px;
  background: #fff;
  border-radius: 10px;
  outline: 2px solid #87B66E;
  color: #87B66E;
}

.footer__wrapper-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__cards-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 37px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__cards-img.footer__cards-img--mob {
  display: none;
}

.footer__wrapper-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 97px;
}

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

.footer__catalog-list a {
  font-weight: 400;
  font-size: 14px;
  line-height: 243%;
  letter-spacing: 0.02em;
  color: #545454;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.footer__catalog-list a:hover {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__info a {
  font-weight: 400;
  font-size: 14px;
  line-height: 243%;
  letter-spacing: 0.02em;
  color: #545454;
}

.footer__info a:hover {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__info-item a:hover {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}

.footer__info-alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 26px;
}

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

.footer__info-list.footer__info-list--mob {
  display: none;
}

.footer__info-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.02em;
  color: #545454;
  opacity: 0.5;
}

/* 
.form__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  display: flex;
  margin-bottom: 3px;
} */
.form__text-block {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
}

.footer__wrapper-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 52px;
}

.footer__wrapper-info li {
  font-weight: 400;
  font-size: 13px;
  line-height: 254%;
  letter-spacing: 0.02em;
  color: #545454;
  opacity: 0.5;
}

.footer__wrapper-info li:hover a {
  color: #87b66e;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form__button-footer {
  position: absolute;
  top: 50%;
  right: 26px;
  font-weight: 500;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 16px;
  line-height: 206%;
  letter-spacing: 0.02em;
  color: #87b66e;
}

.form__wrapper-group-alt::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 26px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 26px;
  background: url(/public/src/images/right.svg) no-repeat center;
  background-size: 100%;
  z-index: 0;
}

.form__wrapper-group-alt {
  position: relative;
}

.form__group-alt:hover,
.form__button-footer:hover {
  opacity: 0.5;
}

.form__wrapper-group-alt .form__group-text {
  padding-bottom: 9px;
}

.form__group-alt {
  border-bottom: 1px solid #000000;
}

/* search */
body.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
}

.header__form-search {
  position: absolute;
  width: 710px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-btn {
  width: 90%;
  position: relative;
  content: "";
  top: 50%;
  right: 0;
  width: 17px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 17px;
  background: url(/public/src/images/search.svg) no-repeat center;
  background-size: 100%;
  z-index: 0;
  height: 25px;
}

.header__button-search {
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.5);
  border-bottom: 1px solid rgb(175, 175, 175);
  width: 22.9%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 28px;
}

.header__button-search:hover {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__form-search.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 1000;
  max-width: 1400px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.catalog__list-search {
  z-index: 1001;
  border-radius: 10px;
  background: #fff;
  width: 710px;
  position: fixed;
  right: -12px;
  top: 89px;
  overflow: hidden;
}

.catalog__list-search.active {
  display: block;
  top: -23px;
  left: -373px;
  width: 710px;
  margin-right: -10px;
  border-radius: 10px;
  overflow: hidden;
}

.catalog__item-wrapper {
  border-bottom: 1px solid rgb(235, 236, 237);
  padding: 30px 0;
}

.catalog__list-basket .catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.catalog__list-search .catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 20px 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__list-search .catalog__item img {
  width: 65px;
  min-width: auto;
  height: 77px;
  border-radius: 5px;
  overflow: hidden;
}

.catalog__list-search .product__name {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog__list-search .product__sum-wrapper {
  background: none;
}

.catalog__wrap-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 23px;
}

.catalog__wrap-search-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* width: fit-content; */
  width: 87%;
}

.catalog__wrap-search-text span {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog__search-sum {
  font-weight: 700;
  font-size: 16px;
  line-height: 137%;
  color: #3c4640;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__search-wrapper .catalog__item {
  border-bottom: 1px solid rgb(235, 236, 237);
}

/* Оверлей для поиска */
.container {
  position: relative;
  z-index: 9999999;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.header__form-search {
  display: none;
}

.header__form-search form {
  width: 100%;
  position: relative;
  z-index: 11;
  border-bottom: 1px solid #AFAFAF;
  padding-bottom: 4px;
  margin: 20px 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
}

.header__top-right-item.header__top-right-item--search {
  display: none;
}

.header__button-search-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #87b66e;
  background: #f8f8f8;
  padding: 16px 19px;
  width: -webkit-fill-available;
  text-align: left;
}

.catalog__list-search-sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog__list-search-sum div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__list-search-sum .catalog-card__discount {
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  height: 20px;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 0 9px;
}

/* крошки */
.breadcrumps__wrapper {
  margin: 23px 0 21px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: -webkit-fill-available;
  overflow: visible;
  overflow-x: scroll !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
}

.breadcrumps a,
.breadcrumps span {
  font-weight: 400;
  font-size: 12px;
  line-height: 192%;
  letter-spacing: 0.01em;
  color: #545454;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  width: -webkit-fill-available;
  overflow: hidden;
}

.breadcrumps {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 192%;
  letter-spacing: 0.01em;
  color: #545454;
  opacity: 0.5;
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
}

.breadcrumps:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 12px;
  right: -20px;
  width: 12px;
  height: 1px;
  background: rgba(84, 84, 84, 0.5);
}

/* каталог стр */
.catalog .info__block {
  margin: 88px 0 106px;
}

.catalog__button-more {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
  border-radius: 10px;
  padding: 9px 136px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f3f3f3));
  background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
  opacity: 0;
}

.catalog__button-more:hover {
  background: #1c685c;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__page-number.disabled {
  opacity: 0.4;
  cursor: auto;
}

.catalog__page-number.disabled:hover {
  outline: none;
}

.catalog__page-number:hover {
  outline: 1px solid #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__page-number.catalog__page-number--more:hover {
  outline: none;
  cursor: auto;
}

.catalog__pagination-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  /*display: flex;*/
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 3px;
  display: none;
}

.catalog__wrapper-pagination {
  position: relative;
  margin: 74px 0 108px;
}

.catalog__page-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f3f3f3));
  background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
}

.catalog__page-number.active {
  color: #87b66e;
}

.catalog__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 19px;
  margin-bottom: 23px;
}
.catalog__block.searchPage {
  padding-bottom: 70px;
  margin: 0px;
}
@media (max-width: 765px) {
  .catalog__block.searchPage {
    margin: 10px 20px 20px;
    padding: 0px;
  }
  .catalog__block.searchPage h1 {
    line-height: 1.4;
  }
}

.catalog__block h1 {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.catalog__block h1 img {
  width: 40px;
}

.catalog__quantity {
  position: absolute;
  top: 55%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
  opacity: 0.5;
}

/* для фильтров  */
.catalog__filter-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 18px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog__buttons-filter {
  border: 1px solid rgba(163, 163, 163, 0.2);
  border-radius: 6px;
  padding: 12px 20px;
}

.catalog__buttons-filter--sorting {
  padding: 10px 32px 12px 20px;
  width: 260px;
}

.catalog__buttons-open {
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.catalog__wrapper-sort:has(.catalog__sort-options.visible) .catalog__buttons-open {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.catalog__buttons-filter:hover .catalog__buttons-filter-text {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__wrapper-sort:hover .catalog__buttons-filter {
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__wrapper-sort:hover .catalog__buttons-filter svg path {
  stroke: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__buttons-filter:hover .catalog__buttons-filter-text svg path {
  stroke: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* .catalog__buttons-filter--sorting::before {
    position: absolute;
    content: "";
    right: 18px;
    width: 7px;
    height: 20px;
    background: url(/public/images/icons/arrow-down.svg) no-repeat center center;
}

.catalog__buttons-filter--filters::after {
    position: absolute;
    content: "";
    left: 13px;
    width: 18px;
    height: 16px;
    background: url(/public/images/icons/filter.svg) no-repeat center center;
} */
.catalog__wrap-buttons-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__buttons-filter-text,
.catalog__buttons-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
}

.catalog__buttons-filter-var {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #3c4640;
  background: #faf9f9;
  border-radius: 5px;
  padding: 3px 9px;
}

.catalog__filter-text-close {
  position: relative;
  width: 13px;
  height: 12px;
  background: url(/public/src/images/close.svg) no-repeat right top;
  cursor: pointer;
  margin-left: 5px;
}

.catalog__wrapper-sort {
  position: absolute;
  right: 0;
  z-index: 11;
}

.catalog__wrapper-sort:has(.catalog__sort-options.visible) {
  outline: 2px solid #87B66E;
  border-radius: 6px;
}

.catalog__wrapper-sort:has(.catalog__sort-options.visible) .catalog__buttons-filter--sorting {
  border: 1px solid #fff;
}

.catalog__sort-options {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 5px;
}

.catalog__sort-option-btn {
  display: none;
}

/* ПК-версия — показываем */
.catalog__sort-options-desktop {
  display: block;
}

/* Мобайл-версия — скрываем */
.catalog__sort-options-mob,
.catalog__sort-options-mobile {
  display: none;
}

.catalog__sort-options.visible {
  max-height: 400px;
}

.catalog__sort-option {
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 32px 8px 46px;
  background: #fff;
}

.catalog__sort-option:hover {
  background: #f1f6f2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog__sort-option.active {
  background: #f1f6f2;
}

.catalog__hidden-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px 0 0 0;
  position: fixed;
  border-radius: 10px;
  top: 0;
  left: 0;
  z-index: 100011;
  background: #ffffff;
  width: 553px;
  margin: 9px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  height: calc(100% - 18px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
}

/* Делаем полосу прозрачной, но место остаётся */
.catalog__hidden-filters::-webkit-scrollbar {
  width: 6px; /* Ширина полосы - место зарезервировано */
}

.catalog__hidden-filters::-webkit-scrollbar-track {
  background: transparent; /* Прозрачный трек */
}

.catalog__hidden-filters::-webkit-scrollbar-thumb {
  background: transparent; /* Прозрачный ползунок */
}

/* Для Firefox */
.catalog__hidden-filters {
  scrollbar-width: thin; /* Тонкая полоса */
}

.filter-dropdown-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #545454;
  padding: 17px 27px 17px 40px;
  border-top: 1px solid #ebeced;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.filter-dropdown-btn:hover {
  color: #4caf50;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.filter-dropdown-btn span {
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: 0.01em;
}

.catalog__hidden-filters.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
}

.catalog__hidden-filters.active .catalog__title-filters {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 173%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  padding: 0 40px 4px;
}

.catalog__hidden-filters .header__wrapper-menu {
  width: 100%;
}

.catalog__hidden-filters .header__wrapper-menu li {
  border-bottom: 1px solid #efefef;
  min-height: 40px;
}

.header__wrapper-menu-list-small.catalog__hidden-filters-list {
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  row-gap: 10px;
  padding: 17px 0;
}

.catalog__hidden-filters-list .catalog__buttons-filter-var {
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: auto !important;
  margin-right: 20px;
}

.header__close-filters {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 41px;
  height: 41px;
  background: rgb(248, 248, 248);
  border-radius: 100%;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.header__close-filters:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* фильтры каталога */
.price-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.price-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.apply-price-btn {
  width: 100%;
  padding: 8px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.apply-price-btn:hover {
  background: #45a049;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.filter-dropdown-content {
  width: 100%;
  list-style: none;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 10px;
  /* overflow: hidden; */
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  margin-bottom: 10px;
}

.filter-dropdown-content:last-child {
  margin-bottom: 86px;
}

.catalog__filter-polzunok {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tooltip {
  font-weight: 400;
  font-size: 14px;
  line-height: 214%;
  letter-spacing: 0.01em;
  color: #545454;
  border: 1px solid rgb(228, 227, 227);
  border-radius: 3px;
  background: #f8f8f8;
  padding: 4px 20px;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.tooltip input {
  width: 60px;
  background: transparent;
  border: none;
  font-weight: 400;
  font-size: 14px;
  color: #545454;
  text-align: right;
  padding: 0;
}

.tooltip input:focus {
  outline: none;
  border-bottom: 1px solid #87b66e;
}

.tooltip input::-webkit-inner-spin-button,
.tooltip input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form__group-text:hover {
  opacity: 1;
}

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

.tooltip.left-tooltip {
  position: relative;
  left: 0 !important;
  margin-right: 38px;
}

.tooltip.left-tooltip::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -27px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 15px;
  height: 1px;
  background: #000000;
}

.tooltip.right-tooltip {
  position: relative;
  right: 0 !important;
}

.filter-dropdown-content input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 21px;
  height: 21px;
  background: #f8f8f8;
  border: 1px solid #e4e3e3;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.filter-dropdown-content.filter-dropdown-content--alt {
  margin-bottom: 15px;
  padding-top: 11px;
}

.filter-dropdown-btn .icon-plus,
.filter-dropdown-btn .icon-minus {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.filter-dropdown-content input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 14px;
  background: url("/public/src/images/check.svg") no-repeat center;
  background-size: contain;
}

.filter-dropdown-content input[type=checkbox]:checked {
  background: #87b66e;
  border-color: #87b66e;
}

.ui-slider-handle {
  border-radius: 100%;
  fill: #fff;
  stroke-width: 1px;
  stroke: #fff;
  height: 2px;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.4em;
  border: none;
}

.ui-slider-horizontal .ui-slider-range {
  background: #45a049;
  height: 4px;
}

.ui-widget.ui-widget-content {
  width: 100%;
  background: #f8f8f8;
  border-radius: 5px;
  height: 4px;
  border: none;
  margin-bottom: 26px;
}

.filter-wrapper-dropdown-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  width: 100%;
  margin-top: auto;
  background: #f8f8f8;
  padding: 19px 40px;
  position: sticky;
  z-index: 2;
  bottom: 0;
}

.filter-wrapper-dropdown-btn button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.01em;
  color: #87b66e;
}

.filter-wrapper-dropdown-btn button:hover {
  color: #1c685c;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.filter-wrapper-btn-mob {
  display: none;
}

.filter-wrapper-dropdown-btn .js-filter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  height: 48px;
  width: 225px;
  text-align: center;
  padding: 9px 0 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  background: #87b66e;
  border-radius: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.filter-wrapper-dropdown-btn .js-filter-btn:hover {
  background: #1c685c;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.filter-wrapper-dropdown-btn button {
  font-weight: 400;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.01em;
  color: #87b66e;
}

.filter-dropdown-content li {
  padding: 6px 0;
  width: 50%;
}

.filter-dropdown-content label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 214%;
  letter-spacing: 0.01em;
  color: #545454;
}

.filter-dropdown-content input[type=checkbox] {
  border: 1px solid #e4e3e3;
  border-radius: 3px;
  width: 21px;
  height: 21px;
  cursor: pointer;
  background: #f8f8f8;
}

/* для фильтров  */
.card {
  border-top: 1px solid #ebeced;
  padding: 23px 0 99px;
}

.card__wrapper {
  margin-bottom: 100px;
  width: -webkit-fill-available;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.catalog-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 60px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.catalog-card__wrapper {
  margin-bottom: 60px;
}

.catalog-card__wrapper .catalog__card-block {
  width: 31.4%;
}

body:has(.catalog__hidden-filters.active) {
  overflow: hidden;
  height: 100vh;
}

/* детальная страница каталога */
.card__name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 58px;
  max-width: 1455px;
  padding: 0 27px 0 25px;
  margin: 0 auto;
  overflow: hidden;
}

.catalog__card-title.title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.card .info__wrapper-block-text.info__wrapper-block-text--card {
  max-width: 1400px;
  width: -webkit-fill-available;
  margin: 72px auto 96px;
}

.card .catalog-card__swiper {
  max-width: 1400px;
  margin: 0 auto;
  width: -webkit-fill-available;
}

.swiper-wrapper-card-btn {
  position: relative;
  width: 78px;
}

.catalog__card-block.swiper-slide {
  /* height: -webkit-fill-available; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}

.card__wrapper-big img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}

.catalog-card__block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.card__wrapper-block-text {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 40px;
}

.card__wrapper-big {
  width: 500px;
  margin: 0;
  cursor: pointer;
}

.card__wrapper-big .swiper-button-next {
  position: absolute;
  top: 50%;
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
}

.card__wrapper-big .swiper-button-prev {
  top: 50%;
  position: absolute;
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
}

.card__wrapper-big .swiper-button-next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  height: 20px;
  background: url(/public/src/images/light-arrow.svg) no-repeat center;
  background-size: 100%;
}

.card__wrapper-big .swiper-button-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  height: 20px;
  background: url(/public/src/images/light-arrow.svg) no-repeat center;
  background-size: 100%;
}

.card__name-text {
  position: relative;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px 45px 45px;
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  gap: 15px;
}

.card__mini-swiper-slide.swiper-slide {
  /* width: 78px !important;
  height: 78px !important; */
  cursor: pointer;
  border: 1px solid;
  overflow: hidden;
  border-radius: 10px;
}

.mySwiperCardMini {
  max-height: 666px;
  overflow: visible;
}

.card__mini-swiper-wrapper.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* gap: 20px; */
  /* max-height: 666px; */
  overflow: hidden;
}

.card__mini-swiper-slide img {
  height: 100%;
  width: 100%;
  max-height: 78px;
}

.card-swiper img {
  height: 100%;
}

.card__mini-swiper-slide img:hover {
  opacity: 0.8;
}

.swiper-wrapper-card-btn .swiper-button-next {
  left: 50%;
  -webkit-transform: rotate(-90deg) translate(0, -50%);
  -ms-transform: rotate(-90deg) translate(0, -50%);
  transform: rotate(-90deg) translate(0, -50%);
}

.card__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 115%;
  letter-spacing: 0.01em;
  color: #545454;
}

.card__text-color {
  font-weight: 400;
  font-size: 15px;
  line-height: 200%;
  letter-spacing: 0.01em;
  color: #545454;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.card__wrapper-color {
  width: 41px;
  height: 42px;
  border-radius: 5px;
  margin-bottom: 23px;
  border: 5px solid rgba(135, 182, 110, 0);
}

.card__wrapper-color:hover {
  opacity: 0.5;
}

.card__wrapper-color.active {
  border: 5px solid #87b66e;
}

.catalog-card__wrapper-price--alt .catalog-card__price {
  font-weight: 600;
  font-size: 26px;
  line-height: 85%;
  letter-spacing: 0.01em;
  color: #545454;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}

.catalog-card__wrapper-price--alt .catalog-card__price-old {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-decoration: line-through;
  color: #545454;
  opacity: 0.5;
}

.catalog-card__wrapper-price--alt .catalog-card__discount {
  font-size: 13px;
  line-height: 169%;
  letter-spacing: 0.01em;
}

.card__text-delivery {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog-card__in-stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 24px 0 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}

.catalog-card__wrapper-delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  -webkit-box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 10px;
  padding: 32px 46px 32px 116px;
}

.catalog-card__wrapper-delivery::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 45px;
  width: 49px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 49px;
  background: url(/public/src/images/box-tick.svg) no-repeat center;
  background-size: 100%;
}

.catalog-card__wrapper-delivery-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog-card__favorite {
  position: absolute;
  right: 13px;
  top: 13px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog-btn-info {
  position: absolute;
  right: 46px;
  bottom: 32px;
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #87b66e;
  border-bottom: 1px dashed rgb(135, 182, 110);
}

.catalog-btn-info:hover {
  color: #1c685c;
  border-bottom: 1px dashed #1c685c;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.catalog-card__in-stock img {
  width: 20px;
  height: 20px;
}

.catalog-card__wrapper-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
}

.card__button-submit {
  padding: 14px 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  background: #87b66e;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card__button-submit:hover {
  color: #fff;
  background: #1c685c;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.card__button-submit-alt {
  padding: 14px 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
  border-radius: 10px;
  background: inherit;
  outline: 2px solid #87b66e;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.card__button-submit-alt:hover {
  color: #1c685c;
  outline: 2px solid #1c685c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.catalog-card__block-text {
  max-width: 1400px;
  width: 100%;
  border-radius: 10px;
  padding: 30px 198px 40px 45px;
  background: #f8f8f8;
  margin-bottom: 62px;
}

.catalog-card__block-text p {
  font-weight: 500;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
}

.catalog-card__block-title {
  font-family: "Forum", sans-serif;
  width: 50%;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
}

.catalog-card__block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 38px;
  margin-bottom: 40px;
}

.catalog-card__block-right {
  width: 50%;
}
.catalog-card__block-right .item {
  margin: 0px 0px 35px 0px;
}
.catalog-card__block-right .item .item_name {
  color: #545454;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.38px;
}
.catalog-card__block-right .item .item_text {
  color: #545454;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15px;
  margin-top: 10px;
}
@media (max-width: 765px) {
  .catalog-card__block-right .item {
    margin: 0px 0px 25px;
  }
  .catalog-card__block-right .item .item_name {
    font-size: 17px;
  }
  .catalog-card__block-right .item .item_text {
    font-size: 14px;
  }
}

.catalog-card__block-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
}
.catalog-card__block-right span {
  font-weight: 500;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
}

.catalog-card__block-right p {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.catalog-card__block-wrapper-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 85px 0;
  margin: 0 auto 76px;
  border-bottom: 1px solid #ebeced;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog-card__block-wrapper-blocks {
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-card__block-right p strong {
  font-weight: 500;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
}

.info__wrapper-block-text.info__wrapper-block-text--card {
  margin-top: 72px;
}

.card .breadcrumps__wrapper {
  max-width: 1400px;
  margin: 0 auto 24px;
  width: -webkit-fill-available;
  overflow: visible;
  overflow-x: scroll !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
}

.card .breadcrumps {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-wrapper-card-btn .swiper-button-next {
  position: absolute;
  top: 28px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: none;
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
}

.card__mini-swiper-slide {
  border: 2px solid rgba(135, 182, 110, 0);
}

.card__mini-swiper-slide.swiper-slide-thumb-active {
  border: 2px solid #87b66e;
}

.swiper-wrapper-card-btn .swiper-button-prev {
  position: absolute;
  top: auto;
  bottom: 6px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 30% !important;
  border: none;
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
}

.swiper-wrapper-card-btn .swiper-button-next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  height: 20px;
  background: url(/public/src/images/light-arrow.svg) no-repeat center;
  background-size: 100%;
}

.swiper-wrapper-card-btn .swiper-button-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  height: 20px;
  background: url(/public/src/images/light-arrow.svg) no-repeat center;
  background-size: 100%;
}

/* личный кабинет */
.header__hidden-user {
  position: fixed;
  background: #fff;
  right: 0;
  top: 0;
  width: 553px;
  height: calc(100% - 18px);
  margin: 10px;
  border-radius: 10px;
  z-index: 1001;
  padding: 160px 117px 0;
  /* Анимация */
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.header__hidden-user .form__button{
  z-index: 2;
}

.header__hidden-user::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 326px;
  height: 131px;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: url(/public/src/images/decore-login.png) no-repeat center;
  background-size: 326px 131px;
}

.header__hidden-user.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.header__close-user {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 41px;
  height: 41px;
  background: rgb(248, 248, 248);
  border-radius: 100%;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.header__close-user:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header__hidden-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 173%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 30px;
  text-align: center;
}

.header__variable-wrapper button {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.02em;
  border: 2px solid #f8f8f8;
  color: #545454;
  border-radius: 10px;
}

.header__variable-wrapper button {
  background: #f8f8f8;
}

.header__variable-wrapper button:hover {
  border: 2px solid #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header__variable-wrapper button.active {
  color: #87b66e;
  border: 2px solid #87b66e;
  background: none;
}

.header__variable-btn-login {
  padding: 12px 45px;
}

.header__variable-btn-registration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 36px;
  border-radius: 10px;
  background: #F8F8F8;
  color: #545454;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.32px;
}
.header__variable-btn-registration:hover {
  color: #87b66e;
}

.header__variable-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

.form.form-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}

.form__group-login {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #000000;
}

.form__group-login-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: rgba(58, 58, 58, 0.5);
}

.form__group-login.form__group-login-vissibly {
  position: relative;
  margin-top: 16px;
}

.form__vissually-pas {
  position: absolute;
  content: "";
  bottom: 15px;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(/public/src/images/eye.svg) no-repeat center center;
  background-size: 24px 24px;
  outline: none;
}

.form__vissually-pas:hover {
  opacity: 0.5;
}

.custom-checkbox-wrapper label {
  font-weight: 400;
  font-size: 13px;
  line-height: 277%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
}

.form__checkbox-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.01em;
  color: #545454;
}

.form__checkbox-btn:hover {
  color: #87B66E;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form__checkbox-group.form__checkbox-position.form__checkbox-group-login {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom-checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom-checkbox-wrapper input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 2px;
  width: 21px;
  height: 21px;
  border: none;
  cursor: pointer;
  position: relative;
  background: #F8F8F8;
  margin-right: 12px;
  border-radius: 5px;
  border: 1px solid #E4E3E3;
}

.custom-checkbox-wrapper input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #87B66E;
  border-radius: 2px;
}

/* contacts */
.contacts {
  width: 100%;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 80px;
}

.contacts__map {
  width: 48%;
  height: 471px;
  border-radius: 10px;
  background-color: rgb(217, 217, 217);
  overflow: hidden;
}

.marker-pin {
  display: block;
  width: 195px;
  height: 54px;
  background: url(/public/src/images/marker.svg) center no-repeat;
}

/* Скрываем все контролы, включая кнопки + и -, если они не нужны */
.ymaps-2-1-79-controls__control,
.ymaps-2-1-79-controls__toolbar,
[class*=controls__control],
[class*=zoom] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contacts__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 80px 60px 68px;
  width: 48.6%;
  height: 471px;
  border-radius: 10px;
  background-color: rgb(248, 248, 248);
  overflow: hidden;
}

.contacts__details-item span {
  font-weight: 400;
  font-size: 15px;
  line-height: 187%;
  letter-spacing: -0.02em;
  color: #545454;
}

.contacts__details-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.contacts__phone,
.contacts__mail {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
}

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

.contacts__address {
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  font-style: normal;
}

.details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.details__wrapper-block {
  width: 48.9%;
  font-weight: 400;
  font-size: 15px;
  line-height: 200%;
  letter-spacing: 0.01em;
  color: #545454;
}

.details h2 {
  width: 48.6%;
}

/* about-banner */
.about-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.about__img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-banner__wrapper-text {
  position: absolute;
  top: 140px;
  left: 86px;
  z-index: 1;
}

.about-banner .breadcrumps__wrapper {
  position: absolute;
  top: 0;
  left: 86px;
  z-index: 1;
}

.about-banner .breadcrumps {
  opacity: 1;
}

.about-banner .breadcrumps a,
.about-banner .breadcrumps span {
  color: #ffffff;
}

.about-banner .breadcrumps:not(:last-child)::after {
  background: #ffffff;
}

.about-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(284.71deg, rgba(0, 0, 0, 0) 36.69%, rgba(0, 0, 0, 0.3) 80.64%);
}

body:has(.main.about) .header {
  border: none;
}

.about-banner__title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 114px;
  line-height: 60%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}

.about-banner__text {
  font-weight: 500;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 346px;
}

.about-banner__button {
  margin-top: 29px;
  display: block;
  padding: 10px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  backdrop-filter: blur(100px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
  color: #ffffff;
}

.about-banner__button span:hover {
  background: #1C685C;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about-banner__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 14px 29px;
  background: #87B66E;
  border-radius: 10px;
  color: #fff;
}

.about-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  background: rgb(249, 244, 239);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 90px;
  position: relative;
  z-index: -6;
}

.about-info__text {
  padding: 80px 0 80px 88px;
  width: 48.9%;
}

.about-info__text h1 {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 71%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 30px;
}

.about-info__text p strong {
  font-weight: 500;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.01em;
  color: #545454;
}

.about-info__wrapper-left {
  width: 379px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-info__text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.about-info__text2 {
  position: relative;
  padding: 26px 38px;
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.about-info__text2::after {
  position: absolute;
  content: "";
  right: -55%;
  top: 0;
  width: 696px;
  height: 393px;
  background: url(/public/src/images/info2.jpg) no-repeat right top;
  background-size: 100%;
  overflow: hidden;
  z-index: -2;
}

/* .about-info__text2::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: rgba(12, 61, 64, 0.5);
} */
.about-info__wrapper-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  max-width: 700px;
}

.about__delivery {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 55px 113px 50px;
  margin-bottom: 100px;
}

.about__delivery::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 326px;
  height: 83px;
  background: url(/public/src/images/sheet.png) no-repeat right top;
  background-size: 100%;
  z-index: -1;
}

.about__delivery-img {
  width: 496px;
  height: 395px;
}

.about__delivery-wrapper-text {
  position: relative;
  max-width: 458px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about__delivery-wrapper-text:after {
  position: absolute;
  content: "";
  right: -75px;
  top: -21px;
  width: 530px;
  height: 288px;
  background: url(/public/src/images/map-light.png) no-repeat right top;
  background-size: 100%;
  z-index: -1;
}

.about-info__img {
  display: block;
  min-width: 380px;
  height: 331px;
  border-radius: 10px;
}

.about-info__img2 {
  display: block;
  width: 308px;
  border-radius: 10px;
}

.about__delivery-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 71%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 25px;
}

.about__delivery-text {
  font-weight: 600;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.01em;
  color: #545454;
  margin-bottom: 20px;
}

.about__delivery-text2 {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.about__delivery-btn {
  padding: 12px 32px;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
  border: 2px solid #87b66e;
  border-radius: 10px;
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about__delivery-btn:hover {
  color: #ffffff;
  border: 2px solid #ffffff;
  background: #87b66e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about__choose {
  margin-bottom: 112px;
}

.about__choose-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 71%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 40px;
  width: 100%;
}

.about__choose-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.about__choose-item {
  position: relative;
  width: 33.3%;
  overflow: hidden;
  aspect-ratio: 456/320;
  border-radius: 10px;
}

.about__scheme-title {
  position: absolute;
  left: 42px;
  top: 35px;
  font-weight: 500;
  font-size: 19px;
  line-height: 126%;
  letter-spacing: 0.01em;
  color: #545454;
}

.about__choose-item.color-1 .about__scheme-title,
.about__choose-item.color-2 .about__scheme-title {
  color: #ffffff;
}

.about__choose-item.color-2 {
  background: #87B66E;
}

.about__choose-item.color-3 {
  background: #f6f6f6;
}

.about__choose-item.color-1 .about__choose-img {
  width: 313px;
  height: 290px;
  bottom: 0;
  position: absolute;
  right: 0;
}

.about__choose-item.color-2 .about__choose-img {
  width: 224px;
  height: 259px;
  bottom: 21px;
  position: absolute;
  right: 0;
}

.about__choose-item.color-3 .about__choose-img {
  width: 277px;
  height: 206px;
  bottom: 26px;
  position: absolute;
  right: 0;
}

.about__choose-item.color-1::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 696px;
  height: 393px;
  background: url(/public/src/images/info2.jpg) no-repeat right top;
  background-size: 100% 100%;
  overflow: hidden;
  z-index: -2;
}

/* .about__choose-img {
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.about__choose-item:hover .about__choose-img {
  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
  transform: scale(1.1);
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
} */
/* privacy_text */
.privacy .breadcrumps__wrapper {
  width: -webkit-fill-available;
  max-width: 1400px;
  margin: 23px auto 5px;
  position: relative;
}

.privacy_text h1 {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  padding-bottom: 40px;
  border-bottom: 1px solid #ebeced;
}

.privacy_text li {
  padding: 40px 0;
  border-bottom: 1px solid #ebeced;
}

.privacy_text li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
  max-width: 1400px;
  margin: 0 auto;
}

.privacy_text li div div {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.privacy_text li span {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
}

.privacy_text h2 {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 15px;
}

.privacy_text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.privacy_text a {
  color: #87B66E;
}

.policy__sum {
  width: 30%;
}

/* .basket {

} */
.basket__wrapper-block {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(45px);
  background: linear-gradient(137deg, rgba(255, 255, 255, 0.2) 0.55%, rgba(255, 255, 255, 0.2) 100%);
  padding: 15px;
  border-radius: 10px;
}

.basket__wrapper-block div {
  min-width: 782px;
  padding: 67px 0 62px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
}

.basket__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  margin-bottom: 25px;
}

.catalog__basket-delete:hover svg path {
  stroke: #87b66e;
  opacity: 1;
}

.basket__button {
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 45px;
  border-radius: 10px;
  height: 60px;
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__button:hover {
  background: rgb(28, 104, 92);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__wrapper-block-bg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 
order-modal */
.order-modal {
  left: 50%;
  position: relative;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f9f4ef;
  border-radius: 10px;
  padding: 80px 150px 115px;
  margin: 50px 0;
}

.order-modal::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 326px;
  height: 83px;
  background: url(/public/src/images/sheet.png) no-repeat right top;
  background-size: 100%;
  z-index: -1;
}

.order-modal__title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 15px;
}

.order-modal__text-number {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
}

.order-modal__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 240%;
  letter-spacing: 0.02em;
  opacity: 0.5;
  color: #3a3a3a;
}

.order-modal__button {
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 45px;
  border-radius: 10px;
  height: 60px;
  background: #87b66e;
  margin: 30px 0 25px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.order-modal__button:hover {
  background: #ffffff;
  color: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.order-modal__text-faq {
  font-weight: 400;
  font-size: 15px;
  line-height: 240%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
}
.order-modal__text-faq br {
  display: none;
}

/* basket */
.basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.basket__title {
  margin-bottom: 48px;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  width: 100%;
  text-align: center;
}

.basket__title.basket__title--alt {
  margin: 0 0 10px;
  text-align: center;
}

.basket__position-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 55px;
  width: 82.9%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.basket__wrapper-calc {
  position: sticky;
  top: 200px;
  width: 424px;
  min-width: 424px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  padding: 50px;
  background: #f8f8f8;
}

.catalog__wrapper-list-basket {
  width: 61%;
}

.catalog__list-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100% - 100px);
  overflow: auto;
  margin: -30px -50px 0px 0px;
  padding-right: 50px;
}

.catalog__basket-not-available {
  margin-top: 33px;
}

.catalog__basket-not-available .catalog__item {
  opacity: 0.5;
}

.catalog__list-basket-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.basket__btn-similar {
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87B66E;
  background: #F8F8F8;
  padding: 9px 35px;
  border-radius: 10px;
  display: block;
  margin-top: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__btn-similar:hover {
  background: #87B66E;
  color: #F8F8F8;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card__wrapper-quantity-selector {
  width: -webkit-fill-available;
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.card__quantity-selector {
  background: #F8F8F8;
  border-radius: 10px;
  padding: 6px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.card__quantity-value {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.02em;
}

.basket__photo {
  width: 85px;
  height: 100px;
  border-radius: 5px;
}

.catalog__wrap-basket-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 28px;
  -moz-column-gap: 28px;
  column-gap: 28px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -webkit-fill-available;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.catalog__list-basket .catalog-card__wrapper-price {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  margin-left: auto;
}

.basket__wrapper-text {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.catalog__wrap-basket-text .product__name {
  max-width: 63.7%;
}

.basket__status-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.basket__status-wrapper img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}
.basket__status-wrapper .basket__status-text {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: #545454;
}

/*
.basket__status-text::before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background:url(/public/src/images/status.svg) no-repeat right top;
  background-size: 100%;
}
*/
.basket__calc-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: 100%;
}

.basket__info-coupon-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #000000;
  margin-bottom: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.basket__wrapper-calc-total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.basket__view-products-btn ~ .basket__wrapper-calc-total-amount {
  display: block;
}

.coupon-input {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  opacity: 1;
  margin-bottom: 10px;
  width: 180px;
}

.coupon-input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  opacity: 0.5;
}

.coupon-input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  opacity: 0.5;
}

.coupon-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  opacity: 0.5;
}

.coupon-input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  opacity: 0.5;
}

.coupon-input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: -0.02em;
  opacity: 0.5;
}

.basket__wrapper-calc-total-amount div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.basket__infocoupon-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87B66E;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__infocoupon-btn:hover {
  color: #1C685C;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__calc-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
}

.basket__calc-total-amount {
  font-weight: 600;
  font-size: 26px;
  line-height: 22px;
}

.basket__calc-text-info {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  opacity: 0.5;
  margin-top: 8px;
  text-align: right;
  display: block;
  width: 100%;
}

.basket__wrapper-deliver {
  margin-bottom: 27px;
}

.basket__view-products-btn {
  position: relative;
  width: 100%;
  text-align: left;
  margin-bottom: 34px;
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.basket__view-products-btn::after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: 3px;
  width: 26px;
  height: 26px;
  background: url(/public/src/images/next.svg) no-repeat center;
  background-size: 100%;
  z-index: 0;
}

.basket__view-products-btn:hover {
  opacity: 0.8;
}

.basket__decorate {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 15px;
  height: 17px;
  border-bottom: 1px dashed #000000;
  opacity: 0.2;
}

.basket__btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 33px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #ffffff;
  background: #87B66E;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__btn:hover {
  color: #87B66E;
  background: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__calc-deliver {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #545454;
}

.basket-hidden-block-pos {
  z-index: 2;
  position: sticky;
  top: 0;
  background: #ffffff;
}

.basket-hidden-block {
  position: fixed;
  background: #fff;
  right: 0;
  top: 0;
  width: 50%;
  min-width: 790px;
  height: calc(100% - 18px);
  margin: 10px;
  border-radius: 10px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.basket-hidden-block.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
}

.basket-hidden-block.active .catalog__wrapper-list-basket {
  padding: 0 50px 50px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  max-height: calc(100% - 140px);
}

.basket-hidden-block-title {
  position: relative;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  padding: 50px 50px 35px 50px;
  background: #ffffff;
}

.basket-hidden-block .basket__btn {
  margin: 0 0 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  padding: 13px 37px 14px;
}

.basket-hidden-block .basket__calc-text {
  font-weight: 600;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.02em;
  color: #545454;
  margin-right: 14px;
  margin-top: 5px;
}

.basket-hidden-block .basket__calc-total-amount {
  font-weight: 600;
  font-size: 26px;
  line-height: 85%;
  letter-spacing: 0.01em;
  color: #545454;
}

.basket-hidden-block .basket-wrapper-dropdown-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  border-radius: 10px 10px 0 0;
}

.basket-wrapper-dropdown-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  width: 100%;
  margin-top: auto;
  background: #f8f8f8;
  padding: 19px 40px;
  position: sticky;
  bottom: 0;
}

.basket-hidden-block .basket-wrapper-dropdown-btn {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main.main__basket {
  margin-bottom: 90px;
}

.basket__place-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 55px;
  -moz-column-gap: 55px;
  column-gap: 55px;
  row-gap: 80px;
  width: 61%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.basket__price-wrapper-order-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -webkit-fill-available;
  padding: 30px;
  background: #FAF9F9;
  border-radius: 10px;
}

.basket__price-button-login {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.02em;
  color: #87b66e;
  border: 2px solid #87b66e;
  border-radius: 10px;
  padding: 13px 65px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__price-button-login:hover {
  background: #87b66e;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.basket__info-title-log {
  font-weight: 600;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.02em;
  color: #545454;
  margin-bottom: 5px;
}

.basket__price-wrapper-order-login p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
  max-width: 359px;
}

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

.basket__delivery-method-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-fill-available;
}

.basket__info-title-log-order {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 25px;
}

.form__group-basket {
  position: relative;
  width: 45%;
  margin-top: 27px;
  border-bottom: 1px solid #000000;
}

.form__text-input.suggestions-input {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(80%, black), color-stop(95%, transparent));
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 95%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(80%, black), color-stop(95%, transparent));
  mask-image: linear-gradient(to right, black 80%, transparent 95%);
}

.form__group-basket.form__group-basket-address-delivery input {
  max-width: 78%;
}

.main.main-account .form__group-basket.form__group-basket-address-delivery input {
  max-width: 100%;
}

.form__group-basket label {
  position: absolute;
  top: -25px;
  left: 0;
  height: 36px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
  cursor: text;
  pointer-events: none; /* клик проходит сквозь label к input */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0;
}

.form__group-basket .form__text-input {
  font-weight: 400;
  font-size: 16px;
  line-height: 225%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.form__error-message {
  color: #d50000;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  bottom: 5px;
}

.form__text.required {
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: #3a3a3a;
}

.form__group-basket .form__text-input::-webkit-input-placeholder {
  opacity: 0.5;
}

.form__group-basket .form__text-input::-moz-placeholder {
  opacity: 0.5;
}

.form__group-basket .form__text-input:-ms-input-placeholder {
  opacity: 0.5;
}

.form__group-basket .form__text-input::-ms-input-placeholder {
  opacity: 0.5;
}

.form__group-basket .form__text-input::placeholder {
  opacity: 0.5;
}

.form__group-basket .form__text-input:not(:-moz-placeholder) ~ label .form__text.required {
  opacity: 1;
  top: -10px;
  font-size: 11px;
}

.form__group-basket .form__text-input:not(:-ms-input-placeholder) ~ label .form__text.required {
  opacity: 1;
  top: -10px;
  font-size: 11px;
}

.form__group-basket .form__text-input:focus ~ label .form__text.required,
.form__group-basket .form__text-input:not(:placeholder-shown) ~ label .form__text.required {
  opacity: 1;
  top: -10px;
  font-size: 11px;
}

.form__group-basket-address-delivery {
  position: relative;
  width: -webkit-fill-available;
}

.form__price-button-order {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 257%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
}

.basket__item-delivery-btn {
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 15px;
  background: #f8f8f8;
  border-radius: 10px;
  width: 50%;
  border: 1px solid #f8f8f8;
}

.basket__item-delivery-btn--width {
  max-width: 47.6%;
}

.basket__item-delivery-btn.active {
  border: 1px solid #87B66E;
  background: #ffffff;
}

.basket__item-delivery-btn.active .basket__item-wrapper-img {
  background: #f8f8f8;
}

.basket__item-time {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
  margin-bottom: 10px;
  display: block;
}

.basket__item-sum {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #545454;
}

.basket__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  width: 71%;
}

.basket__item-wrapper-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  min-width: 60px;
  height: 60px;
  background: #fff;
  position: relative;
}

.basket__item-img {
  position: absolute;
  top: 50%;
  width: 31px;
  height: 31px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.basket__info-text-log {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
  margin-bottom: 30px;
}

.basket__payment-method-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}

.basket__payment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 11px 20px 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border: 1px solid #f8f8f8;
}

.basket__payment-item.active {
  background: #f8f8f8;
  border: 1px solid #87B66E;
}
.basket__payment-item.active img {
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
}

#discount {
  color: #87B66E;
}

.basket__payment-item.active .basket__item-wrapper-title {
  color: #87B66E;
}

.basket__payment-item img {
  width: 20px;
  height: 20px;
}

.basket__item-wrapper-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.02em;
  color: #545454;
}

.contacts__map--alt {
  width: 100%;
  height: 100%;
  max-height: 375px;
  aspect-ratio: 680/375;
  margin-top: 35px;
}

/* Скрываем все комментарии по умолчанию */
.basket__delivery-info {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
  margin-bottom: 20px;
}

.basket__delivery-map-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 40px;
}

.basket__delivery-map-wrapper {
  width: -webkit-fill-available;
}

.basket__delivery-map-item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  letter-spacing: 0.01em;
  color: #545454;
  margin-bottom: 5px;
}

/* Скрываем стандартный радио-элемент, но оставляем его доступным для клика */
.basket__delivery-map-item input[type=radio] {
  position: absolute;
  width: 21px;
  height: 21px;
  opacity: 0; /* полностью скрываем, но элемент остается кликабельным */
  cursor: pointer;
  margin: 0;
  z-index: 2;
}

/* Создаем свой стиль для радио-кнопки через псевдоэлемент */
.basket__delivery-map-item {
  position: relative;
}

.basket__delivery-map-item input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border: 1px solid #e4e3e3;
  border-radius: 3px;
  background: #f8f8f8;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
}

.basket__delivery-map-item input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #87b66e;
  z-index: 1;
}

.basket__delivery-map-item input[type=radio]:hover + label::before {
  border-color: #87b66e;
}

/* Квадратный вид*/
.basket__delivery-map-item input[type=radio]:checked + label::before {
  background: #87b66e;
  border-color: #87b66e;
}

.basket__delivery-map-item input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  color: white;
  font-size: 16px;
  text-align: center;
  line-height: 21px;
  background: transparent;
  border-radius: 0; /* убираем круглую форму */
  background: url(/public/src/images/tick.svg) no-repeat center;
  background-size: 100%;
}

/* Блокировка полей - режим просмотра */
.form__basket-account {
  position: relative;
}
.form__basket-account .titleBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 15px;
}
.form__basket-account .titleBlock h2 {
  margin: 0px;
}
.form__basket-account .titleBlock .editBtn {
  color: #87B66E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 4.76px;
  text-transform: uppercase;
  padding-bottom: 4px;
  cursor: pointer;
}

.form__text-input[readonly],
.form__text-input:disabled {
  opacity: 0.3;
}

.form__group-basket:has(.form__text-input:disabled) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

/* Активные поля - режим редактирования */
.basket__edit-profil-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 257%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
}

.form__price-button-order:hover,
.basket__edit-profil-btn:hover {
  color: #1C685C !important;
}

.basket__approximate-price-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.basket__approximate-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 138%;
  letter-spacing: 0.01em;
  color: #545454;
}

.basket__wrapper-calc:has(.basket__approximate-price-wrapper.active) {
  padding: 50px 50px 26px 50px;
}

.basket__item-delivery-btn.basket__item-delivery-btn--width img {
  width: 46px;
  height: 49px;
}

.basket__delivery-method-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 42px;
  -moz-column-gap: 42px;
  column-gap: 42px;
  margin-bottom: 29px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.basket__delivery-method-list-new {
  flex-wrap: wrap;
  -webkit-column-gap: 0px;
  -moz-column-gap: 0px;
  column-gap: 0px;
}
.basket__delivery-method-list-new .basket__item-delivery-btn {
  width: 48%;
  margin-bottom: 26px;
}
.basket__delivery-method-list-new .basket__item-delivery-btn[data-id="13"] .delivery-cost {
  display: none;
}

/* payment */
.main.main__payment {
  overflow: hidden;
}

.main.main__payment .payment__item-delivery-btn img {
  width: 31px;
  height: 31px;
}

.payment__hero {
  padding: 50px;
  position: relative;
  border-radius: 10px;
  background: #87B66E;
  height: 436px;
  margin-bottom: 80px;
}

.payment__hero-title {
  position: absolute;
  bottom: 50px;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 73px;
  line-height: 96%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

.payment__hero-img {
  width: 490px;
  height: 593px;
  position: absolute;
  right: 134px;
  bottom: 0;
  z-index: 2;
}

.payment__hero::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 27px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 477px;
  height: 259px;
  background: url(/public/src/images/info2-alt.png) no-repeat right top;
  background-size: 100%;
  z-index: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.payment__deliver-info-wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  gap: 73px;
  margin-bottom: 92px;
}

.payment__deliver-info-img {
  width: 626px;
  height: 541px;
  aspect-ratio: 626/541;
}

.payment__documents-info-wrapper {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 43px;
  -moz-column-gap: 43px;
  column-gap: 43px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background: #f9f4ef;
  border-radius: 10px;
  padding: 50px 70px;
  margin-bottom: 80px;
}

.payment__documents-info-title {
  width: 78%;
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 50px;
}

.payment__documents-info {
  width: 48%;
  border-radius: 10px;
  margin-left: -20px;
}

.payment__documents-info div {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
}

.payment__documents-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.01em;
  color: #545454;
  margin-bottom: 13px;
}

.payment__documents-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.payment__documents-info {
  padding: 20px;
  backdrop-filter: blur(43px);
  background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.08) -8.95%, rgba(255, 255, 255, 0.002) 114%);
}

.payment__documents-info-wrapper::after {
  position: absolute;
  content: "";
  right: -287px;
  bottom: 0;
  width: 754px;
  height: 658px;
  background: url(/public/src/images/tree.png) no-repeat right top;
  background-size: 100% 100%;
  z-index: -1;
}

.payment__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 63px;
  -moz-column-gap: 63px;
  column-gap: 63px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}

.payment__deliver-info-wrapper-text {
  max-width: 50%;
}

.payment__delivery-method-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 35px;
}

.payment__item-delivery-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 25px;
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #f8f8f8;
}

.payment__info-title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 113%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 30px;
}

.payment__info-wrapper-img {
  width: 703px;
  height: 561px;
  aspect-ratio: 703/561;
}

.payment__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% - 85px);
}

.payment__info-title-log {
  font-weight: 600;
  font-size: 19px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: #545454;
  margin-bottom: 5px;
}

.payment__item-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #545454;
}

.payment__info-title-log {
  font-weight: 600;
  font-size: 19px;
  line-height: 137%;
  letter-spacing: 0.02em;
  color: #545454;
  margin-bottom: 5px;
}

.payment__info-text-log {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
  margin-bottom: 34px;
}

.payment__item-delivery-btn img {
  width: 46px;
  height: 49px;
}

.payment__item-delivery-btn--alt {
  padding: 30px 15px 30px 40px;
}

.payment__method-list {
  width: -webkit-fill-available;
  background: #f6f6f6;
  padding: 60px 50px;
  border-radius: 10px;
}

.payment__item-wrapper-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 147%;
  letter-spacing: 0.01em;
  color: #545454;
  margin-bottom: 10px;
}

.payment__item-wrapper-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.payment__payment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.basket__item-wrapper-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.payment__payment-img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
}

.payment__payment-method-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.payment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 15px;
}

.payment__item {
  position: relative;
}
.payment__item .socBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.payment__item .socBlock .socLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #87b66e;
}
.payment__item .socBlock .socLink.tg:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/public/src/images/tg.svg") center no-repeat;
  background-size: contain;
}
.payment__item .socBlock .socLink.tg:hover {
  background: #fff;
}
.payment__item .socBlock .socLink.tg:hover:before {
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
}
.payment__item .socBlock .socLink.wa:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/public/src/images/wa.svg") center no-repeat;
  background-size: contain;
}
.payment__item .socBlock .socLink.wa:hover {
  background: #fff;
}
.payment__item .socBlock .socLink.wa:hover:before {
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
}
.payment__item .socBlock .socLink.max:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/public/src/images/max.svg") center no-repeat;
  background-size: contain;
}
.payment__item .socBlock .socLink.max:hover {
  background: #fff;
}
.payment__item .socBlock .socLink.max:hover:before {
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(64%) sepia(11%) saturate(1300%) hue-rotate(52deg) brightness(96%) contrast(88%);
}

.payment__item::before {
  content: "";
  position: absolute;
  top: 11px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: -11px;
  background: #545454;
  width: 5px;
  height: 5px;
  border-radius: 100%;
}

.payment__item-address {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #545454;
}

.payment__item-hint {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #545454;
  display: block;
  margin: 5px 0px 0px;
}
.payment__item-hint span {
  white-space: nowrap;
  font-weight: bold;
}

/* ==================== ЛИЧНЫЙ КАБИНЕТ ==================== */
/* Основной контейнер */
.account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 100px;
}

.account__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 29px;
}

.account__mobile-wrapper {
  display: none;
}

.account__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 15px;
  width: 320px;
  background: #faf9f9;
  padding: 10px;
  margin: 0px 0px 50px 0px;
}

.account__wrapper-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 80px;
}
@media (max-width: 767px) {
  .account__wrapper-blocks {
    gap: 20px;
  }
}

.account__position-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 55px;
  width: 82.9%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto 100px;
}

.account__button-var {
  color: #545454;
}

.account__button-logout {
  color: #9d9d9d;
}

.account__button-logout,
.account__button-var {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
  padding: 0 40px;
  height: 51px;
  font-weight: 400;
  font-size: 16px;
  line-height: 313%;
  letter-spacing: 0.01em;
  border-radius: 10px;
  width: 300px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.account__button-var:hover {
  opacity: 0.8;
}

.account__button-logout:hover {
  color: #545454;
}

.account__button-var.active {
  background: #87b66e;
  color: #ffffff;
}

.form__group-basket-hidden {
  border: none;
}

.form__group-basket-hidden {
  width: 49%;
  max-width: 386px;
  margin-top: 5px;
  min-height: 40px;
}

.form__group-basket-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.form__log-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 320px;
  height: 51px;
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-align: center;
  color: #87b66e;
  border: 2px solid #87b66e;
  border-radius: 10px;
  margin-top: 45px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form__log-button:hover {
  background: #87b66e;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account__wrapper-blocks .form__group-basket {
  width: 47%;
}

.account__wrapper-blocks .form__group-basket.form__group-basket-address-delivery {
  width: 100%;
}

.account-orders__tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.account-orders__tab {
  padding: 12px 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.02em;
  color: #545454;
  border-radius: 10px;
  background: #f8f8f8;
  border: 2px solid #f8f8f8;
}

.account-orders__tab.active {
  color: #87b66e;
  background: #ffffff;
  border: 2px solid #87b66e;
}

.account-orders__status-info {
  position: relative;
}

.account-orders__status-info span {
  display: none;
}

.account-orders__photo {
  width: 20px;
  height: 20px;
}

.account-orders__status-info:hover span {
  display: block;
  position: absolute;
  bottom: 30px;
  left: -55px;
  z-index: 3;
  border-radius: 15px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 30px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px -1px rgba(0, 0, 0, 0.1);
  padding: 15px 23px;
  width: 320px;
  font-weight: 400;
  font-size: 14px;
  line-height: 187%;
  letter-spacing: 0.02em;
  color: #545454;
}

.account-orders__list .catalog__list-basket {
  display: none;
}

.account-order__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 40px;
}

.account-orders__list {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.account-orders__item {
  background: #f8f8f8;
  border-radius: 10px;
}

.account-order__card-number {
  font-weight: 400;
  font-size: 15px;
  line-height: 187%;
  letter-spacing: 0.02em;
  color: #545454;
  width: 39.5%;
}

.account-order__card-price {
  width: 19%;
  font-weight: 600;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0.01em;
  color: #545454;
}

.account-orders__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  letter-spacing: 0.01em;
  color: #545454;
}

.account-order__card-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 10px;
}

.account-orders__round {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.account-orders__card-open {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.account-orders__list .catalog__list-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  border-top: 1px solid #dfdfdf;
}

.account-orders__list .catalog__item-wrapper {
  padding: 20px 40px;
}

.account-orders__list .catalog-card__wrapper-price div {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-card__discount {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.account .catalog__wrap-basket-text .product__name {
  max-width: 48.7%;
  width: 48.7%;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
}

.account__photo {
  width: 85px;
  height: 85px;
  border-radius: 5px;
}

.account .catalog__wrap-basket-text {
  margin: 5px 0;
  width: 80%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.account .catalog-card__price {
  margin: 0;
}

.account__wrapper-dropdown-btn {
  padding: 18px 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.account__calc-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.account__calc-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}

.account__calc-total-amount {
  font-weight: 600;
  font-size: 26px;
  line-height: 85%;
  letter-spacing: 0.01em;
  color: #545454;
}

.account__status {
  font-weight: 600;
  font-size: 14px;
  line-height: 157%;
  letter-spacing: 0.01em;
  color: #545454;
}

.account__btn-pay,
.account__btn-repeat {
  padding: 10px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  letter-spacing: 0.02em;
  color: #87b66e;
  border: 2px solid #87b66e;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account__btn-pay {
  margin: 0px 10px 0px auto;
}

.account__btn-pay:hover,
.account__btn-repeat:hover {
  color: #ffffff;
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account__status-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 42px;
}

.account-orders__card-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.account-order__card-header.active ~ .account-orders__card-body {
  max-height: 1000px; /* Достаточно большое значение */
  opacity: 1;
  display: block;
}

.account-orders__item:has(.account-order__card-header.active) {
  background: rgb(249, 244, 239);
}

.account-orders__wrapper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.account-orders__button-more {
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #87b66e;
  border-radius: 10px;
  padding: 9px 47px;
  background: #f8f8f8;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account-orders__button-more:hover {
  background: #1c685c;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account-orders__list:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon-plus {
  display: block;
}

.icon-minus {
  display: none;
}

.account-order__card-header.active .icon-minus {
  display: block;
}

.account-order__card-header.active .icon-plus {
  display: none;
}

.account__wrapper-blocks .catalog-card__wrapper-price {
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}
.account__wrapper-blocks .catalog-card__wrapper-price .catalog__list-basket-sum {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  gap: 5px;
}
.account__wrapper-blocks .catalog-card__wrapper-price .catalog__list-basket-sum span {
  margin: 0px;
}

.account-favorites__catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 23px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(235, 236, 237);
}

.account-favorites__catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid rgb(235, 236, 237);
  margin-top: 30px;
}

.account-favorites__position-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 55px;
  width: 85.9%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.account__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  width: 45px;
  height: 45px;
  background: #f8f8f8;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.account__btn:hover {
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account__btn--fav:hover svg path {
  fill: #ffffff;
}

.account__btn--del:hover svg path {
  stroke: #ffffff;
}

.account-favorites__wrapper-blocks .catalog__wrap-search-text {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.account__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.account-favorites__wrapper-text {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.account-favorites__catalog__list .catalog-card__wrapper-price {
  gap: 7px;
}

.account-favorites__catalog__list .product__name {
  font-weight: 400;
  font-size: 15px;
  line-height: 153%;
  letter-spacing: 0.01em;
  color: #545454;
}

.account-favorites__notify-about-arrived--mob {
  display: none;
}

.account-favorites__notify-about-arrived,
.account-favorites__empty-favorites-btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 236%;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account-favorites__empty-favorites-btn {
  color: #87b66e;
  border-radius: 10px;
  padding: 9px 19px;
  border: 2px solid rgb(135, 182, 110);
  margin-top: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.account-favorites__notify-about-arrived {
  color: #87b66e;
  border-radius: 10px;
  background: #f8f8f8;
  padding: 9px 19px;
  border: 2px solid #f8f8f8;
  margin-top: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.account-favorites__empty-favorites-btn:hover {
  color: #ffffff;
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account-favorites__notify-about-arrived:hover {
  color: #ffffff;
  background: #87b66e;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.account-favorites__empty-favorites-text {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.account-favorites__empty-favorites-text--alt {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  opacity: 0.5;
}

.account-favorites__empty-favorites-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 76px;
}

.account-favorites__wrapper-blocks {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header__hidden-pas {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__hidden-pas.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-pas .form__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: #848484;
  margin-top: 15px;
}

.form.form-pas {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  gap: 0;
}

.header__hidden-user.active:has(.header__hidden-pas.active) {
  padding: 0 117px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

input:hover, input:focus {
  opacity: 1 !important;
}

.filters__body {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: auto;
}

.addCartTrue {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  border-radius: 10px;
  opacity: 0.91;
  width: 190px;
  height: auto !important;
  background: #87b66e;
  backdrop-filter: blur(2px);
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-flow: row wrap !important;
  flex-flow: row wrap !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 30px;
  right: 0px;
}
.addCartTrue:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M13.25 25.75C16.7018 25.75 19.8268 24.3509 22.0888 22.0888C24.3509 19.8268 25.75 16.7018 25.75 13.25C25.75 9.79822 24.3509 6.67322 22.0888 4.41117C19.8268 2.14911 16.7018 0.75 13.25 0.75C9.79822 0.75 6.67322 2.14911 4.41117 4.41117C2.14911 6.67322 0.75 9.79822 0.75 13.25C0.75 16.7018 2.14911 19.8268 4.41117 22.0888C6.67322 24.3509 9.79822 25.75 13.25 25.75Z' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M8.25 13.25L12 17L19.5 9.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.card__wrapper__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: relative;
}
.card__wrapper__top .card__wrapper-nameplate {
  position: relative;
  top: auto;
  left: auto;
}
.card__wrapper__top .card__wrapper-nameplate span {
  line-height: 1;
  height: 30px;
  padding: 0px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card__wrapper__top .favorites {
  position: relative;
  top: auto;
  right: auto;
  height: 40px;
  width: 40px;
  margin: -5px -5px;
  opacity: 1;
  outline: none;
}
.card__wrapper__top .favorites:hover svg {
  -webkit-filter: brightness(0) saturate(100%) invert(67%) sepia(23%) saturate(1142%) hue-rotate(48deg);
  filter: brightness(0) saturate(100%) invert(67%) sepia(23%) saturate(1142%) hue-rotate(48deg);
}
.card__wrapper__top .favorites.active {
  background: #87b66e;
  opacity: 1;
}
.card__wrapper__top .favorites.active svg {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%);
}

.scrollInfoCard {
  position: fixed;
  top: 177px;
  left: 0;
  right: 0;
  z-index: 20;
  width: -webkit-fill-available;
  background: #fff;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 18px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
}
.scrollInfoCard .scrollInfoCard__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}
.scrollInfoCard .scrollInfoCard__wrapper .leftBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.scrollInfoCard .scrollInfoCard__wrapper .leftBlock img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.scrollInfoCard .scrollInfoCard__wrapper .leftBlock .info {
  display: block;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.scrollInfoCard .scrollInfoCard__wrapper .leftBlock .info .name {
  color: #545454;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.15px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scrollInfoCard .scrollInfoCard__wrapper .leftBlock .info .color {
  color: #ADADAD;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.15px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .priceBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 10px;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .priceBlock .price {
  color: #545454;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .priceBlock .priceOld {
  color: #545454;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.15px;
  text-decoration-line: line-through;
  opacity: 0.5;
  white-space: nowrap;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .product__basket {
  border-radius: 8px;
  background: #87B66E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
  height: 44px;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .product__basket:hover {
  background: #6f9a55;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .favorites {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .favorites:hover svg {
  -webkit-filter: brightness(0) saturate(100%) invert(67%) sepia(23%) saturate(1142%) hue-rotate(48deg);
  filter: brightness(0) saturate(100%) invert(67%) sepia(23%) saturate(1142%) hue-rotate(48deg);
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .favorites.active {
  background: #87b66e;
}
.scrollInfoCard .scrollInfoCard__wrapper .rightBlock .favorites.active svg {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(100%);
}

/* Планшеты (768px - 1024px) */
@media (max-width: 1024px) {
  .scrollInfoCard {
    top: 120px;
    padding: 8px 16px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper {
    gap: 12px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .leftBlock {
    gap: 12px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .leftBlock img {
    width: 45px;
    height: 45px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .leftBlock .info .name {
    font-size: 13px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .leftBlock .info .color {
    font-size: 11px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .rightBlock {
    gap: 12px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .rightBlock .priceBlock .price {
    font-size: 16px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .rightBlock .priceBlock .priceOld {
    font-size: 12px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .rightBlock .product__basket {
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .scrollInfoCard .scrollInfoCard__wrapper .rightBlock .favorites {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 980px) {
  .scrollInfoCard {
    display: none !important;
  }
}
.none {
  display: none !important;
}

.loginBtn {
  cursor: pointer;
}

.form__back-to-login {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 0px;
  font-size: 16px;
  line-height: 1;
  color: #848484;
}

.basketBtn {
  cursor: pointer;
}

.basket-empty {
  margin: 0px 0px 0px;
}

.basket-empty p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666;
}

.basket__btn-similar {
  display: inline-block;
  padding: 10px 20px;
  background: #87b66e;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.basket__btn-similar:hover {
  background: #6f9a55;
}

.basket__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 15px 0;
}

.basket__calc-text {
  font-size: 16px;
  color: #666;
}

.basket__calc-total-amount {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.catalog__basket-not-available .catalog__list-basket-title {
  margin-bottom: 25px;
}
.catalog__basket-not-available .catalog__list-basket {
  height: auto;
}

.delivery_item.noActive {
  cursor: auto;
  position: relative;
}
.delivery_item.noActive:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
  background: #fff;
  opacity: 0.5;
}

.order_agreement label {
  width: calc(100% - 43px);
}
.order_agreement label span {
  line-height: 1;
}
.order_agreement label span a {
  color: #87B66E;
}

.orders-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 3px;
}

.orders-pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.account-orders__items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  gap: 10px;
}

.account-orders__button-more.none {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  visibility: hidden;
  -webkit-transition: unset;
  transition: unset;
}

.form__register-wrapper {
  margin: 0px;
  width: 100%;
}

.reg__position-block {
  max-width: 680px;
  width: 100%;
}
.reg__position-block .form__account-wrapper {
  gap: 35px;
}
.reg__position-block .form__account-wrapper .form__group-basket {
  margin: 0px;
}
.reg__position-block .form__account-wrapper .form__group-basket label .form__text {
  opacity: 0;
}
.reg__position-block .form__account-wrapper .form__group-basket.input-filled label .form__text {
  top: -10px;
  font-size: 11px;
  opacity: 1;
}
.reg__position-block .form__account-wrapper .form__checkbox-group {
  margin: 0px;
}
.reg__position-block .form__account-wrapper .form__checkbox-group a {
  color: #87B66E;
}

#regBtn {
  height: 64px;
  margin: auto;
  background: #87B66E;
  color: #fff;
}
#regBtn:hover {
  color: #87B66E;
  background: #fff;
}

.form__group-basket.error .form__text-input {
  border-color: red;
}

.form__error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.agreementBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.agreementBlock input {
  margin: 0px !important;
  width: 21px !important;
  height: 21px !important;
  border: 1px solid #E4E3E3 !important;
}
.agreementBlock input:before {
  width: 10px !important;
  height: 10px !important;
}
.agreementBlock label {
  width: calc(100% - 43px);
}
.agreementBlock label p {
  line-height: 1.2;
}
.agreementBlock label p a {
  color: #87B66E;
}

.section__address-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  max-height: 300px;
  overflow-y: auto;
}
.section__address-list .section__address-item {
  cursor: pointer;
}
.section__address-list .section__address-item.active div:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #87B66E;
  background: url("/public/src/images/icons/check.svg") center no-repeat #87B66E;
  background-size: 11px;
}
.section__address-list .section__address-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.section__address-list .section__address-item label input[type=radio] {
  width: 21px;
  height: 21px;
  visibility: hidden;
}
.section__address-list .section__address-item label div {
  position: relative;
  width: calc(100% - 33px);
}
.section__address-list .section__address-item label div:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 3px;
  border: 1px solid #E4E3E3;
  background: #F8F8F8;
  position: absolute;
  left: -33px;
  top: 3px;
}
.section__address-list .section__address-item label div span {
  font-size: 14px;
  font-weight: 500;
  color: #181818;
}
.section__address-list .section__address-item label div address {
  font-size: 12px;
  color: #E1E1E1;
  margin-top: 4px;
  font-style: normal;
}

.selected-pickup-info {
  margin-top: 15px;
  padding: 12px 15px;
  background: #f5f7f9;
  border-radius: 8px;
}
.selected-pickup-info__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.selected-pickup-info__header svg {
  width: 18px;
  height: 18px;
}
.selected-pickup-info__header span {
  font-size: 12px;
  color: #E1E1E1;
}
.selected-pickup-info__content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.selected-pickup-info__content span {
  font-size: 12px;
  color: #E1E1E1;
}

#map-order {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 15px;
}

.pickup-marker {
  position: relative;
  cursor: pointer;
  display: block;
  width: 36px;
  height: 46px;
}
.pickup-marker .pickup-marker-pin {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  display: block;
  width: 36px;
  height: 46px;
}
.pickup-marker .pickup-marker-pin:hover {
  /*-webkit-transform: scale(1.1);*/
  /*-ms-transform: scale(1.1);*/
  /*transform: scale(1.1);*/
  cursor: default;
}
.pickup-marker .pickup-marker-pin img {
  width: 36px;
  height: 46px;
  display: block;
}
.pickup-marker .pickup-balloon {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 260px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 12px;
  z-index: 1000;
}
.pickup-marker .pickup-balloon__title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  padding-right: 20px;
  color: #202227;
}
.pickup-marker .pickup-balloon__address {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}
.pickup-marker .pickup-balloon__selected {
  width: 100%;
  padding: 8px;
  background: #e8f0e9;
  color: #5D6D63;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.pickup-marker .pickup-balloon__button {
  width: 100%;
  padding: 8px;
  background: #87b66e;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.pickup-marker .pickup-balloon__button:hover {
  background: #1C685C;
}
.pickup-marker .pickup-balloon .balloon-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}
.pickup-marker .pickup-balloon .balloon-close:hover {
  color: #333;
}

.ymaps3--controls,
.ymaps3--map-copyrights {
  display: none !important;
}

.section__price-wrapper-basket-comment,
.section__price-wrapper-comment {
  width: 100% !important;
  margin: 0px !important;
}
.section__price-wrapper-basket-comment .form__text-input,
.section__price-wrapper-comment .form__text-input {
  width: 100% !important;
  margin: 0px;
  line-height: 1.4;
  height: 70px;
}

.noticeCatalog {
  width: 450px;
  max-width: 100%;
}
.noticeCatalog .catalogName {
  margin: 0px 0px 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #87b66e;
}

.main__payment-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  width: 100%;
  margin: 0px 0px 72px;
}
.main__payment-banner img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main__payment-banner__wrapper-text {
  position: absolute;
  top: 140px;
  left: 86px;
  z-index: 1;
}

.main__payment-banner .breadcrumps__wrapper {
  position: absolute;
  top: 0;
  left: 86px;
  z-index: 1;
}

.main__payment-banner .breadcrumps {
  opacity: 1;
}

body:has(.main.main__payment) .header {
  border: none;
}

.main__payment-banner__title {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 350px;
}

@media (max-width: 1440px) {
  .main.main__payment {
    margin: 166px 20px 0 20px;
  }
  .main__payment-banner img {
    -o-object-position: right;
    object-position: right;
  }
}
@media (max-width: 767px) {
  .main__payment-banner {
    border-radius: 0px;
    height: auto;
    margin: 6px 0px 20px 0px;
  }
  .main__payment-banner .breadcrumps__wrapper {
    position: relative;
    left: auto;
  }
  .main__payment-banner img {
    -o-object-position: right;
    object-position: right;
    border-radius: 0px;
    height: 330px;
    width: 100%;
    padding-top: 100px;
    background: #E9E8E2;
  }
  .main__payment-banner .main__payment-banner__wrapper-text {
    top: 80px;
    left: 20px;
  }
  .main__payment-banner .main__payment-banner__wrapper-text .main__payment-banner__title {
    font-size: 36px;
    max-width: 90%;
  }
  .hero__img {
    height: 330px;
  }
}
.feedbackForm {
  max-width: 330px;
}
.feedbackForm h2 {
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #434343;
  margin: 0px 0px 30px;
}
@media (max-width: 765px) {
  .feedbackForm h2 {
    font-size: 24px;
  }
}
.feedbackForm .name {
  margin: 0px 0px 20px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
}
.feedbackForm .form__group {
  width: 100%;
  max-width: unset;
  margin: 0px 0px 20px;
  position: relative;
}
.feedbackForm .form__group textarea, .feedbackForm .form__group input {
  padding-top: 5px;
}
.feedbackForm .form__group label {
  display: none;
}
.feedbackForm .form__group textarea:not(:-moz-placeholder) ~ label, .feedbackForm .form__group input:not(:-moz-placeholder) ~ label {
  display: block;
  position: absolute;
  top: -5px;
  left: 0px;
  z-index: 1;
  font-size: 12px;
  line-height: 1;
  color: #87b66e;
}
.feedbackForm .form__group textarea:not(:-ms-input-placeholder) ~ label, .feedbackForm .form__group input:not(:-ms-input-placeholder) ~ label {
  display: block;
  position: absolute;
  top: -5px;
  left: 0px;
  z-index: 1;
  font-size: 12px;
  line-height: 1;
  color: #87b66e;
}
.feedbackForm .form__group textarea:not(:placeholder-shown) ~ label, .feedbackForm .form__group input:not(:placeholder-shown) ~ label {
  display: block;
  position: absolute;
  top: -5px;
  left: 0px;
  z-index: 1;
  font-size: 12px;
  line-height: 1;
  color: #87b66e;
}
.feedbackForm .form__checkbox-group-text input, .feedbackForm .form__checkbox-group input {
  border: 1px solid #E4E3E3;
}
.feedbackForm .form__checkbox-group-text label, .feedbackForm .form__checkbox-group label {
  width: calc(100% - 43px);
}
.feedbackForm .form__checkbox-group-text label span, .feedbackForm .form__checkbox-group label span {
  line-height: 1.2;
  display: block;
}
.feedbackForm .form__checkbox-group-text label a, .feedbackForm .form__checkbox-group label a {
  color: #87b66e;
  line-height: 1.2;
}
.feedbackForm .form__button {
  margin: 30px 0px 0px;
  width: 100%;
}

@media (max-width: 767px) {
  .card__wrapper__top {
    position: unset;
  }
  .card__wrapper__top .catalog-card__favorite {
    position: absolute;
    top: 13px;
    right: 13px;
  }
}

.pages_text ul {
  list-style: disc;
}

.pages_text ul li {
  list-style: disc;
}