@charset "UTF-8";
.search, .menu {
  width: 100%;
  position: fixed;
  background-color: rgba(42, 43, 41, 0.92);
  left: 0;
  top: 0;
  height: 100%;
  color: #fff;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  padding: 50px 30px 30px;
  z-index: 2;
  font-weight: 300;
  pointer-events: none;
  transition: 0.1s;
  transform: translateY(-100%);
}

body.search-opened .search, body.menu-opened .menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search__input {
  border: none;
  outline: none;
  flex: 1;
  height: 50px;
  background-color: transparent;
}
.search__input::-moz-placeholder {
  color: #adadaa;
  opacity: 0.7;
}
.search__input::placeholder {
  color: #adadaa;
  opacity: 0.7;
}

.auth__row, label[for^=auth__] {
  display: flex;
  justify-content: space-between;
}

.auth__btn, .btn {
  background: #FFF;
  color: #4E5F16;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  flex: 0 0 100%;
  font-weight: bold;
  font-size: 12px;
  transition: 0.1s;
  border: 1px solid #93af2a;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.2s;
  padding: 2px 0 0;
}
.auth__btn:hover, .btn:hover {
  background-color: #FFF;
  color: #93af2a;
}
@media (min-width: 767px) {
  .auth__btn, .btn {
    height: 50px;
  }
}

.auth__close:before, .auth__close:after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.auth__close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.auth__close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

::root {
  --treez-primary-color: map-get($color, white);
  --treez-accent-color: map-get($color, green);
  --treez-accent-color-shade: map-get($color, lightGreen);
  --treez-contrast-color: #000000;
  --treez-space-normal: 15px;
  --treez-fs-normal: 14px;
  --treez-lh-normal: 1.15em;
  --treez-font-condensed: map-get($font, condensed);
  --treez-font-heading: map-get($font, heading);
  --treez-font-default: map-get($font, default);
}

body {
  font-size: 14px;
  font-family: "Verdana", "Arial", "sans-serif";
  margin: 0;
  color: #000;
  font-weight: 400;
  background-color: #FFF;
  overflow-x: hidden;
}
body a {
  color: inherit;
}

* {
  font-size: inherit;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: inherit;
  line-height: 1.4em;
  text-decoration: none;
  z-index: -1;
  position: relative;
}

input,
textarea {
  font-family: "Verdana", "Arial", "sans-serif";
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
}

li {
  display: inline-block;
}

img {
  height: auto;
  -o-object-position: center;
     object-position: center;
  max-width: 100%;
}

figure {
  max-width: 100%;
  width: 100%;
}

svg {
  width: 100%;
  height: 100%;
}

.d-none {
  display: none;
}

.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
}

.dt,
.dd {
  display: inline;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 14px;
}

.dt {
  color: #717171;
}

.table {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 12px;
  text-align: left;
  width: 100%;
}
.table thead {
  font-size: 12px;
  text-transform: uppercase;
}
.table thead th {
  padding: 10px 7px;
}
.table thead th:not(:last-child) {
  border-right: 1px solid #ebebeb;
}
.table tbody td {
  padding: 10px 7px;
  border-top: 1px solid #ebebeb;
}
.table tbody td:not(:last-child) {
  border-right: 1px solid #ebebeb;
}
.table a {
  z-index: 1;
}
.table a:not(.btn) {
  font-weight: bold;
  color: #93af2a;
}
.table a.btn {
  font-size: 0.8em;
  padding: 0 10px;
  color: #FFF;
  background-color: #93af2a;
  height: 32px;
}

body.header-fixed:not(.header-showed, .search-opened) header {
  position: fixed;
  transform: translateY(-100%);
}
body.header-fixed.menu-opened header, body.header-fixed.header-showed header {
  transform: translateY(0);
  background-color: #373836;
}

.header {
  position: fixed;
  display: flex;
  padding: 0 15px;
  z-index: 3;
  width: 100%;
  justify-content: space-between;
  height: 50px;
  align-items: center;
  left: 0;
  top: 0;
  transition: 1s;
}

.header__logo-image {
  max-width: 45px;
}

.header__catalog,
.header__phone {
  display: none;
}

.header__menu-btn {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: relative;
  margin: 0 0 0 10px;
}
.header__menu-btn:before, .header__menu-btn:after {
  content: "";
  width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: block;
  transition: 0.1s;
}
.header__menu-btn:before {
  height: 2px;
  background-color: #d5fe67;
}
.header__menu-btn:after {
  height: 10px;
  border-top: 2px solid #d5fe67;
  border-bottom: 2px solid #d5fe67;
}
.header__menu-btn:hover:before {
  background-color: #FFF;
}
.header__menu-btn:hover:after {
  border-top: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
}
.header__left > *,
.header__right > * {
  transition: 0.3s;
}

.header__left {
  font-size: 0;
}
.header__left .icon-phone {
  display: none;
}

.header__cart,
.header__search,
.header__heart,
.header__user {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 2px;
  cursor: pointer;
  padding: 4px;
}
.header__cart svg,
.header__search svg,
.header__heart svg,
.header__user svg {
  fill: #fff;
  transition: 0.1s;
}
.header__cart svg use,
.header__search svg use,
.header__heart svg use,
.header__user svg use {
  transform: translateX(3px) translateY(3px);
}
.header__cart:hover svg,
.header__search:hover svg,
.header__heart:hover svg,
.header__user:hover svg {
  fill: #d5fe67;
}

.header__heart svg use {
  transform: translateX(2px) translateY(2px);
}

.header__heart,
.header__cart {
  font-size: 0;
}

.header__lang-switcher {
  text-transform: uppercase;
  font-family: "Verdana", "Arial", "sans-serif";
  font-size: 12px;
  display: flex;
  color: #93af2a;
  font-weight: bold;
  margin: 0 4px;
  pointer-events: none;
}
.header__lang-switcher a, .header__lang-switcher span {
  color: #FFF;
  font-weight: normal;
  padding: 0 4px;
  transition: 0.2s;
}
.header__lang-switcher span {
  opacity: 0.5;
}
.header__lang-switcher a {
  pointer-events: auto;
}
.header__lang-switcher a:hover {
  color: #93af2a;
}

a.header__user {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.2s;
}
a.header__user .icon-user {
  fill: #d5fe67;
}
a.header__user:hover {
  background-color: #93af2a;
}
a.header__user:hover .icon-user {
  fill: #FFF;
}

.header__heart:after,
.header__cart:after {
  content: attr(data-count);
  position: absolute;
  top: 3px;
  font-size: 9px;
  right: 0;
  display: block;
  font-weight: bold;
  color: #d5fe67;
}

@media (min-width: 420px) {
  .header__menu-btn {
    margin: 0 0 0 25px;
  }
  .header__cart,
.header__search,
.header__heart,
.header__user {
    margin: 0 6px;
  }
  .header__lang-switcher {
    margin: 0 15px;
  }
}
@media (min-width: 767px) {
  .header .icon-phone {
    width: 20px;
    fill: #adadaa;
    margin: 0 0 0 38px;
    display: block;
  }
  .header .icon-phone use {
    transform: translateX(4px) translateY(4px);
  }
  .header__catalog {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    margin: 0 0 0 15px;
    color: #d5fe67;
    font-size: 12px;
  }
  .header__catalog .icon-flower {
    width: 36px;
    height: 36px;
    fill: #FFF;
  }
  .header__catalog .icon-flower use {
    transform: translateX(7px) translateY(6px);
  }
  .header__catalog:hover {
    color: #FFF;
  }
  .header__left {
    font-size: 12px;
    color: #adadaa;
    font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
    letter-spacing: 0.04em;
    font-weight: 300;
  }
  .header__phone {
    display: inline-block;
    white-space: pre;
    margin: 0 5px;
    color: #FFF;
    transition: 0.3s;
  }
  .header__phone:hover {
    color: #d5fe67;
  }
}
@media (min-width: 1240px) {
  .header {
    padding: 0 30px;
    height: 70px;
  }
  .header .icon-phone {
    width: 24px;
  }
  .header__logo-image {
    max-width: 60px;
    width: 60px;
  }
  .header__menu-btn:before, .header__menu-btn:after {
    width: 20px;
  }
  .header__menu-btn:after {
    height: 11px;
  }
  .header__cart,
.header__search,
.header__heart,
.header__user {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
  .header__lang-switcher {
    font-size: 14px;
  }
  .header__left {
    font-size: 14px;
  }
  a.header__user {
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 1580px) {
  .header {
    padding: 0 80px;
  }
}
.heading {
  padding: 20% 15px 23%;
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 2;
  color: #FFF;
  background-color: #373836;
}
.heading > * {
  position: relative;
  z-index: 1;
}
.heading:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #090f07;
  opacity: 0.5;
  z-index: 0;
  display: block;
}

.heading__title {
  text-align: center;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-weight: 400;
  font-size: 20px;
  line-height: 1em;
}
.heading__title:after {
  content: attr(data-count);
  font-size: 0.6em;
  display: inline;
  vertical-align: super;
  margin: 0 0 0 3px;
}

.heading__description {
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  display: block;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-style: italic;
  max-width: 650px;
  padding: 0 15px;
  margin: 30px auto 0;
}

@media (min-width: 420px) {
  .heading__title {
    font-size: 24px;
  }
}
@media (min-width: 420px) {
  .heading {
    padding: 15% 15px 21%;
  }
}
@media (min-width: 767px) {
  .heading {
    padding: 12% 15px 17%;
  }
  .heading__title {
    font-size: 34px;
  }
  .heading__title:after {
    font-size: 0.4em;
    margin: -3px 0 0 10px;
  }
  .heading__description {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .heading {
    padding: 10% 15px 15%;
  }
  .heading__title {
    font-size: 42px;
  }
}
@media (min-width: 1580px) {
  .heading {
    padding: 8% 15px 12%;
  }
  .heading__title {
    font-size: 54px;
  }
}
.breadcrumbs {
  position: absolute;
  bottom: 85px;
  left: 15px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  display: none;
}
.breadcrumbs li {
  z-index: 1;
}
.breadcrumbs a {
  color: #d5fe67;
  transition: 0.1s;
  z-index: 1;
}
.breadcrumbs a:hover {
  color: #fff;
}

.icon-angle-right {
  width: 10px;
  height: 10px;
  fill: transparent;
  stroke: #fff;
  margin: 0 5px -3px 10px;
}

@media (min-width: 767px) {
  .breadcrumbs {
    display: block;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs {
    left: 30px;
    bottom: 85px;
  }
}
@media (min-width: 1580px) {
  .breadcrumbs {
    left: 80px;
    bottom: 115px;
  }
}
.heading {
  padding: 18% 15px 15%;
}

.breadcrumbs {
  bottom: 30px;
}

@media (min-width: 420px) {
  .heading {
    padding: 15% 15px;
  }
}
@media (min-width: 767px) {
  .heading {
    padding: 10% 15px;
  }
}
.footer {
  padding: 75px 0 0;
  color: #717171;
  font-size: 12px;
}

.footer__main {
  padding: 0 15px 30px;
}

.footer__other-menu,
.footer__about-company-menu,
.footer__categories-menu {
  margin: 30px 0;
}
.footer__other-menu li,
.footer__about-company-menu li,
.footer__categories-menu li {
  display: block;
  text-align: center;
  margin: 15px 0;
}
.footer__other-menu li a,
.footer__about-company-menu li a,
.footer__categories-menu li a {
  transition: 0.3s;
  z-index: 1;
}
.footer__other-menu li a:hover,
.footer__about-company-menu li a:hover,
.footer__categories-menu li a:hover {
  color: #93af2a;
}

.footer__about-company-menu li:first-child,
.footer__categories-menu li:first-child {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer__logo {
  max-width: 70px;
  display: block;
  margin: 45px auto 20px;
}

.footer__email,
.footer__phone {
  display: table;
  margin: 10px auto;
  font-size: 12px;
  color: #373836;
  transition: 0.1s;
}
.footer__email:hover,
.footer__phone:hover {
  color: #93af2a;
}

.footer__email {
  color: #717171;
  margin: 20px auto;
}

.footer__socials-title,
.footer__working-days,
.footer__working-hours,
.footer__address {
  color: #373836;
  font-size: 12px;
  font-style: normal;
  text-align: center;
  display: table;
  margin: 0 auto;
}

.footer__working-days {
  color: #717171;
}

.footer__address {
  margin: 15px auto;
}

.footer__socials-title {
  text-transform: uppercase;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  margin: 30px auto 10px;
  min-width: 100%;
  line-height: 1.2em;
}

.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer__social {
  margin: 0 5px;
  font-size: 0;
}
.footer__social svg {
  max-width: 20px;
  fill: #adadaa;
  opacity: 0.7;
  transition: 0.2s;
}
.footer__social svg.icon-vkontakte {
  max-width: 25px;
}
.footer__social svg.icon-vkontakte use {
  transform: translateY(3px) translateX(2px);
}
.footer__social svg.icon-telegram use {
  transform: translateY(1px);
}
.footer__social:hover svg {
  opacity: 1;
  fill: #93af2a;
}

.footer__bottom {
  padding: 0 15px 15px;
}

.footer__service-menu li {
  display: table;
  margin: 15px auto;
  font-size: 12px;
}
.footer__service-menu a {
  transition: 0.3s;
  z-index: 1;
}
.footer__service-menu a:hover {
  color: #93af2a;
}

.footer__caption {
  color: #373836;
  text-align: center;
  display: block;
  margin: 30px 0 0;
  font-size: 12px;
}

.popup-message {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px;
  background-color: #93af2a;
  color: #FFF;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  opacity: 0.9;
  z-index: 2;
}

@media (min-width: 1024px) {
  .footer {
    padding: 150px 0 0;
  }
  .footer__logo {
    margin: 0 0 20px;
  }
  .footer__main {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
    justify-content: space-between;
  }
  .footer__main > * {
    min-width: 33.3%;
    max-width: 33.3%;
    flex: 1;
  }
  .footer__bottom {
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }
  .footer__bottom > * {
    min-width: 33.3%;
    max-width: 33.3%;
    flex: 1;
  }
  .footer__caption {
    text-align: left;
    margin: 0;
  }
  .footer__caption br {
    display: none;
  }
  .footer__service-menu {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
  }
  .footer__service-menu li {
    margin: 0;
  }
  .footer__col {
    order: -4;
  }
  .footer__col > * {
    margin-left: 0;
    text-align: left;
  }
  .footer__socials,
.footer__other-menu,
.footer__about-company-menu,
.footer__categories-menu {
    margin: 0;
  }
  .footer__socials li,
.footer__other-menu li,
.footer__about-company-menu li,
.footer__categories-menu li {
    text-align: left;
  }
  .footer__socials {
    justify-content: flex-start;
    height: 86px;
  }
  .footer__socials .footer__socials-title {
    text-align: left;
  }
}
@media (min-width: 1580px) {
  .footer {
    padding: 200px 0 0;
  }
  .footer__main {
    padding: 0 80px;
  }
  .footer__bottom {
    padding: 15px 80px 30px;
  }
}
.menu {
  padding: 50px 30px 30px;
  font-size: 14px;
  overflow: auto;
}
.menu ul {
  margin: 15px 0 0;
}
.menu > li:first-child {
  margin: 15px 0;
}
.menu li {
  display: block;
  display: flex;
}
.menu a {
  transition: 0.2s;
  padding: 10px 0;
}
.menu a:hover {
  color: #d5fe67;
}
.menu span {
  font-size: 12px;
  padding: 5px;
  opacity: 0.7;
}

@media (min-width: 767px) {
  .menu {
    display: flex;
    gap: 100px;
    font-size: 18px;
    padding: 50px 110px 30px;
  }
  .menu ul {
    margin: 30px 0 0;
  }
}
@media (min-width: 1024px) {
  .menu {
    padding: 50px 140px 30px;
  }
}
@media (min-width: 1580px) {
  .menu {
    padding: 70px 190px 30px;
  }
}
body.search-opened, body.menu-opened {
  overflow: hidden;
}
body.search-opened .header__menu-btn:before, body.search-opened .header__menu-btn:after, body.menu-opened .header__menu-btn:before, body.menu-opened .header__menu-btn:after {
  border: none;
  width: 25px;
  height: 2px;
  background-color: #d5fe67;
  left: 0;
}
body.search-opened .header__menu-btn:before, body.menu-opened .header__menu-btn:before {
  transform: rotate(45deg);
}
body.search-opened .header__menu-btn:after, body.menu-opened .header__menu-btn:after {
  transform: rotate(-45deg);
}
body.search-opened .header__menu-btn:hover:before, body.search-opened .header__menu-btn:hover:after, body.menu-opened .header__menu-btn:hover:before, body.menu-opened .header__menu-btn:hover:after {
  background-color: #FFF;
}
body.search-opened .header__right > *:not(.header__menu-btn) {
  opacity: 0;
  pointer-events: none;
}

.search {
  display: block;
  padding: 50px 15px;
  overflow: auto;
}

.search__title {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #FFF;
  flex: 0 0 100%;
  opacity: 0.8;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.02em;
  align-items: flex-start;
  display: block;
  margin: 25px 0;
}

.search__input {
  height: 40px;
  display: block;
  min-width: 100%;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  border-bottom: 1px solid #adadaa;
  color: #FFF;
}
.search__input::-moz-placeholder {
  opacity: 1;
  color: #FFF;
}
.search__input::placeholder {
  opacity: 1;
  color: #FFF;
}

.search__button {
  font-size: 0;
  width: 40px;
  height: 40px;
  margin: 0 0 0 auto;
  display: block;
  transform: translateY(-100%);
  padding: 6px;
  cursor: pointer;
}
.search__button svg {
  transition: 0.3s;
  fill: #d5fe67;
}
.search__button svg use {
  transform: translateX(2px) translateY(2px);
}
.search__button:hover svg {
  fill: #FFF;
}

.live-search__item {
  display: block;
  margin: 15px 0;
  font-size: 14px;
  color: #c9c9c9;
  transition: 0.2s;
}
.live-search__item span {
  color: #d5fe67;
}
.live-search__item:hover {
  color: #FFF;
}

@media (min-width: 421px) {
  .search {
    padding: 50px 15%;
  }
  .live-search__item {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .search {
    padding: 90px 25% 15px;
  }
  .search__input {
    height: 52px;
    font-size: 28px;
  }
  .live-search__item {
    font-size: 18px;
  }
}
body.register-opened .auth__login .auth__title, body.login-opened .auth__register .auth__title {
  background-color: #373836;
  color: #FFF;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  pointer-events: auto;
  opacity: 1;
}
body.register-opened .auth__login .auth__title:hover, body.login-opened .auth__register .auth__title:hover {
  background-color: #93af2a;
}

body.register-opened .auth__login, body.login-opened .auth__register {
  pointer-events: none;
}

body.register-opened .auth__login > *, body.login-opened .auth__register > * {
  opacity: 0;
}

body.register-opened .auth__register > *:not(.auth__title), body.login-opened .auth__login > *:not(.auth__title) {
  opacity: 1;
}

body.auth-opened {
  overflow: hidden;
}
body.auth-opened .auth {
  transform: none;
}
body.login-pass-showed .auth__show-password {
  color: #373836;
}
body.login-pass-showed .auth__show-password:after {
  margin: 0 0 0 -5px;
}
body.reset-pass-opened .auth__reset {
  opacity: 1;
  pointer-events: auto;
}
body.reset-pass-opened .auth__reset > * {
  pointer-events: auto;
}
@media (min-width: 767px) {
  body.reset-pass-opened .auth__reset {
    padding: 50px 30px 30px;
  }
}
body.reset-pass-opened .auth__login > *:not(.auth__title) {
  opacity: 0 !important;
  pointer-events: none !important;
}
body .auth__reset {
  opacity: 0;
  pointer-events: none;
  margin: 50px 0 0 -50%;
}

.auth {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  width: 100%;
  position: fixed;
  background-color: #FFF;
  left: 0;
  top: 0;
  height: 100%;
  color: #373836;
  padding: 50px 15px 30px;
  z-index: 4;
  font-weight: 300;
  transition: 0.1s;
  transform: translateY(-100%);
  display: flex;
  overflow: auto;
}
.auth .error {
  color: red;
  text-transform: none;
  display: block;
}
.auth.data-sended .auth__btn,
.auth.data-sended .auth__row,
.auth.data-sended label {
  pointer-events: none !important;
  opacity: 0.7 !important;
}

.auth__checkbox {
  width: 14px;
  height: 14px;
  margin: 0 5px 0 0;
}

label[for^=auth__] {
  text-transform: uppercase;
  font-size: 12px;
  color: #adadaa;
  flex-wrap: wrap;
}

.auth__close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  cursor: pointer;
  z-index: 2;
}
.auth__close:before, .auth__close:after {
  background-color: #373836;
}
.auth__close:hover:before, .auth__close:hover:after {
  background-color: #93af2a;
}

.auth__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  padding: 0 15px;
  line-height: 1em;
  height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.auth__input {
  height: 32px;
  display: block;
  min-width: 100%;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ebebeb;
  text-transform: none;
  outline: none !important;
  color: #373836;
  max-width: 100%;
}

.auth__notice,
.auth__description {
  font-size: 12px;
  font-family: "Verdana", "Arial", "sans-serif";
}

.auth__description {
  color: #373836;
}

.auth__notice {
  color: #93af2a;
}

.auth__reset,
.auth__login,
.auth__register {
  max-width: 50%;
  min-width: 50%;
}
.auth__reset > *:not(.auth__title),
.auth__login > *:not(.auth__title),
.auth__register > *:not(.auth__title) {
  transition: 0.2s;
  width: 200%;
  max-width: 200%;
  min-width: 200%;
  overflow: hidden;
  margin: 15px 0;
}
@media (min-width: 767px) {
  .auth__reset > *:not(.auth__title),
.auth__login > *:not(.auth__title),
.auth__register > *:not(.auth__title) {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

.auth__register > *:not(.auth__title) {
  margin: 15px 0 15px -100%;
}

.auth__show-password {
  transform: translateY(-100%);
  height: 32px;
  line-height: 32px;
  margin: 0 0 0 auto;
  display: inline-block;
  cursor: pointer;
}
.auth__show-password:before {
  content: "";
  height: 8px;
  display: block;
  position: absolute;
  width: 16px;
  border-radius: 4px;
  left: 0;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
  margin: 0 0 0 -5px;
  background-color: #adadaa;
  opacity: 0.4;
}
.auth__show-password:after {
  content: "";
  height: 8px;
  display: block;
  position: absolute;
  width: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
  margin: 0 0 0 -13px;
  background-color: #373836;
  transition: 0.2s;
}
.auth__show-password:after::-moz-placeholder {
  background-color: #adadaa;
}
.auth__show-password:after::placeholder {
  background-color: #adadaa;
}

.auth__back-login,
.auth__reset-password,
label[for=auth__login-remember] {
  font-family: "Verdana", "Arial", "sans-serif";
  font-size: 12px;
  text-transform: none;
  cursor: pointer;
  transition: 0.2s;
}

label[for=auth__login-remember] {
  color: #373836;
}
label[for=auth__login-remember]:hover {
  color: #93af2a;
}

.auth__btn {
  background-color: #93af2a;
  color: #FFF;
}

.auth__back-login,
.auth__reset-password {
  color: #93af2a;
  cursor: pointer;
  display: block;
  margin: 0 0 0 auto;
}
.auth__back-login:hover,
.auth__reset-password:hover {
  color: #373836;
}

#auth__login-password {
  margin: 0 15px 0 0;
}

label[for=auth__register-terms],
label[for=auth__register-subscribe] {
  display: block;
  text-transform: none;
  color: #adadaa;
}
label[for=auth__register-terms] input,
label[for=auth__register-subscribe] input {
  margin: 0 2px 0 0;
  top: 3px;
}

@media (min-width: 767px) {
  body.auth-opened:before {
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(42, 43, 41, 0.8);
    z-index: 4;
  }
  body.auth-opened .auth {
    transform: translateX(-50%);
    left: 50%;
    top: 45px;
    bottom: 45px;
    height: auto;
  }
  .auth {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    max-height: 650px;
  }
  .auth__register > *:not(.auth__title) {
    margin: 15px 0;
  }
  .auth__title {
    text-align: left;
    justify-content: flex-start;
    padding: 0;
    font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
    font-weight: 400;
    font-size: 24px;
  }
  .auth__login,
.auth__register {
    padding: 50px 30px 30px;
  }
  .auth__login > *,
.auth__register > * {
    opacity: 1 !important;
  }
  .auth__title {
    background-color: transparent !important;
    color: #373836 !important;
    pointer-events: none !important;
  }
  .auth__register {
    background-color: #FAFBFD;
    pointer-events: auto !important;
  }
  .auth__input {
    background-color: transparent;
  }
}
body.header-light {
  padding: 50px 0 0;
}
body.header-light:not(.menu-opened, .search-opened) .header__heart:after,
body.header-light:not(.menu-opened, .search-opened) .header__cart:after {
  color: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) .header {
  background-color: #FFF;
  border-bottom: 1px solid #ebebeb;
}
body.header-light:not(.menu-opened, .search-opened) .header__catalog,
body.header-light:not(.menu-opened, .search-opened) .header__lang-switcher *,
body.header-light:not(.menu-opened, .search-opened) .header__phone {
  color: #373836;
}
body.header-light:not(.menu-opened, .search-opened) .header__catalog:hover,
body.header-light:not(.menu-opened, .search-opened) .header__lang-switcher *:hover,
body.header-light:not(.menu-opened, .search-opened) .header__phone:hover {
  color: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) .header__lang-switcher,
body.header-light:not(.menu-opened, .search-opened) .header__lang-switcher * {
  font-weight: bold;
  font-size: 12px;
}
body.header-light:not(.menu-opened, .search-opened) .header__catalog {
  font-weight: bold;
}
body.header-light:not(.menu-opened, .search-opened) .header__catalog .icon-flower {
  fill: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) .header__cart svg,
body.header-light:not(.menu-opened, .search-opened) .header__search svg,
body.header-light:not(.menu-opened, .search-opened) .header__heart svg,
body.header-light:not(.menu-opened, .search-opened) .header__user svg {
  fill: #373836;
}
body.header-light:not(.menu-opened, .search-opened) .header__cart:hover svg,
body.header-light:not(.menu-opened, .search-opened) .header__search:hover svg,
body.header-light:not(.menu-opened, .search-opened) .header__heart:hover svg,
body.header-light:not(.menu-opened, .search-opened) .header__user:hover svg {
  fill: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) .header__menu-btn:before {
  background-color: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) .header__menu-btn:after {
  border-color: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) .header__menu-btn:hover:before {
  background-color: #373836;
}
body.header-light:not(.menu-opened, .search-opened) .header__menu-btn:hover:after {
  border-color: #373836;
}
body.header-light:not(.menu-opened, .search-opened) a.header__user {
  background-color: rgba(0, 0, 0, 0.05);
}
body.header-light:not(.menu-opened, .search-opened) a.header__user .icon-user {
  fill: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) a.header__user:hover {
  background-color: #93af2a;
}
body.header-light:not(.menu-opened, .search-opened) a.header__user:hover .icon-user {
  fill: #FFF;
}
body.header-light.customize-support {
  padding-top: 95px;
}

@media (min-width: 783px) {
  body.header-light.customize-support {
    padding-top: 82px;
  }
}
@media (min-width: 1240px) {
  body.header-light {
    padding: 70px 0 0;
  }
}
.breadcrumbs {
  position: static;
  padding: 15px 0;
  width: 100%;
}
.breadcrumbs a {
  color: #93af2a;
}
.breadcrumbs a:hover {
  color: #adadaa;
}
.breadcrumbs .icon-angle-right {
  fill: #E0E0E0;
  transform: scale(1.3);
  top: -1px;
}
.breadcrumbs li {
  padding: 2px 0;
}
.breadcrumbs li > span {
  color: #adadaa;
}

.single-post__title {
  max-width: 800px;
  padding: 15px 15px 0;
  margin: 15px auto 0;
  font-size: 24px;
  font-weight: 400;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  color: #373836;
  text-align: center;
}
@media (min-width: 769px) {
  .single-post__title {
    font-size: 32px;
    margin: 45px auto 15px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .single-post__title {
    font-size: 42px;
    margin: 60px auto 15px;
    position: relative;
    right: -100px;
  }
}
@media (min-width: 1580px) {
  .single-post__title {
    font-size: 48px;
  }
}

.single-post__image {
  max-width: 1024px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 30px auto 0;
  padding: 15% 0;
  position: relative;
  overflow: hidden;
}
.single-post__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post__date {
  display: block;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: rgb(147, 147, 144);
  text-transform: uppercase;
  padding: 0 15px;
  margin: 15px auto 0;
  max-width: 800px;
  font-size: 13px;
}
@media (min-width: 769px) {
  .single-post__date {
    margin: 20px auto 45px;
  }
}
@media (min-width: 1024px) {
  .single-post__date {
    position: relative;
    right: -100px;
  }
}

.breadcrumbs {
  padding: 15px 15px 0;
  z-index: 1;
}
.breadcrumbs ul,
.breadcrumbs li,
.breadcrumbs a {
  position: relative;
  z-index: 1;
}
@media (min-width: 1240px) {
  .breadcrumbs {
    padding: 15px 30px 0;
  }
}
@media (min-width: 1580px) {
  .breadcrumbs {
    padding: 15px 80px 0;
  }
}

.single-post__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.6;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.single-post__content h1,
.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
  margin: 2rem 0 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}
.single-post__content h1:first-child,
.single-post__content h2:first-child,
.single-post__content h3:first-child,
.single-post__content h4:first-child,
.single-post__content h5:first-child,
.single-post__content h6:first-child {
  margin-top: 0;
}
.single-post__content h1 {
  font-size: 2.5rem;
  border-bottom: 3px solid #007cba;
  padding-bottom: 0.5rem;
}
.single-post__content h2 {
  font-size: 2rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.3rem;
}
.single-post__content h3 {
  font-size: 1.5rem;
  color: #007cba;
}
.single-post__content h4 {
  font-size: 1.25rem;
}
.single-post__content h5 {
  font-size: 1.1rem;
}
.single-post__content h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.single-post__content p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
}
.single-post__content p:last-child {
  margin-bottom: 0;
}
.single-post__content a {
  color: #007cba;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.single-post__content a:hover {
  color: #005a87;
  border-bottom-color: #005a87;
}
.single-post__content a:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.single-post__content ul,
.single-post__content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.single-post__content ul li,
.single-post__content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.single-post__content ul {
  list-style-type: disc;
}
.single-post__content ul ul {
  list-style-type: circle;
  margin: 0.5rem 0;
}
.single-post__content ul ul ul {
  list-style-type: square;
}
.single-post__content ol {
  list-style-type: decimal;
}
.single-post__content ol ol {
  list-style-type: lower-alpha;
  margin: 0.5rem 0;
}
.single-post__content ol ol ol {
  list-style-type: lower-roman;
}
.single-post__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  border-left: 4px solid #007cba;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
}
.single-post__content blockquote p {
  margin: 0;
}
.single-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.single-post__content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  font-style: normal;
}
.single-post__content blockquote cite::before {
  content: "— ";
}
.single-post__content code {
  background: #f1f3f4;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  color: #d73a49;
}
.single-post__content pre {
  background: #f6f8fa;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.single-post__content pre code {
  background: none;
  padding: 0;
  color: #24292e;
}
.single-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.single-post__content table th,
.single-post__content table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e1e4e8;
}
.single-post__content table th {
  background: #f6f8fa;
  font-weight: 600;
  color: #24292e;
}
.single-post__content table tr:hover {
  background: #f8f9fa;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.single-post__content img.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}
.single-post__content img.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.single-post__content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single-post__content iframe,
.single-post__content video {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.single-post__content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #e1e4e8, transparent);
  margin: 3rem 0;
}
.single-post__content strong,
.single-post__content b {
  font-weight: 600;
  color: #1a1a1a;
}
.single-post__content em,
.single-post__content i {
  font-style: italic;
}
.single-post__content mark {
  background: #fff3cd;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}
.single-post__content u {
  text-decoration: underline;
  text-decoration-color: #007cba;
}
.single-post__content del,
.single-post__content s {
  text-decoration: line-through;
  color: #6c757d;
}
.single-post__content sup,
.single-post__content sub {
  font-size: 0.75em;
  line-height: 0;
}
.single-post__content sup {
  vertical-align: super;
}
.single-post__content sub {
  vertical-align: sub;
}
.single-post__content dl {
  margin: 1.5rem 0;
}
.single-post__content dl dt {
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1rem;
}
.single-post__content dl dd {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}
.single-post__content address {
  font-style: normal;
  color: #6c757d;
  border-left: 3px solid #e1e4e8;
  padding-left: 1rem;
  margin: 1.5rem 0;
}
.single-post__content .button,
.single-post__content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #007cba;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.single-post__content .button:hover,
.single-post__content .btn:hover {
  background: #005a87;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}
.single-post__content .button:focus,
.single-post__content .btn:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.single-post__content .button.secondary,
.single-post__content .btn.secondary {
  background: #6c757d;
}
.single-post__content .button.secondary:hover,
.single-post__content .btn.secondary:hover {
  background: #545b62;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}
@media (max-width: 768px) {
  .single-post__content {
    padding: 1rem 0.5rem;
  }
  .single-post__content h1 {
    font-size: 2rem;
  }
  .single-post__content h2 {
    font-size: 1.5rem;
  }
  .single-post__content h3 {
    font-size: 1.25rem;
  }
  .single-post__content p {
    font-size: 1rem;
  }
  .single-post__content blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
  .single-post__content table {
    font-size: 0.9rem;
  }
  .single-post__content table th,
.single-post__content table td {
    padding: 0.5rem;
  }
  .single-post__content img.alignleft, .single-post__content img.alignright {
    float: none;
    margin: 1rem 0;
  }
}
@media (max-width: 480px) {
  .single-post__content {
    padding: 0.5rem;
  }
  .single-post__content h1 {
    font-size: 1.75rem;
  }
  .single-post__content h2 {
    font-size: 1.4rem;
  }
  .single-post__content ul,
.single-post__content ol {
    padding-left: 1.5rem;
  }
  .single-post__content blockquote {
    padding: 1rem;
  }
}
