@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, .product-card__button, .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, .product-card__button:hover, .btn:hover {
  background-color: #FFF;
  color: #93af2a;
}
@media (min-width: 767px) {
  .auth__btn, .product-card__button, .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;
  }
}
.profile-heading {
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 15px 0 0;
}

.profile-heading__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 21px;
  font-weight: 400;
  color: #373836;
  line-height: 1.15em;
}

a.profile-heading__title {
  color: #93af2a;
  transition: 0.3s;
}
a.profile-heading__title:hover {
  color: #373836;
}
a.profile-heading__title ~ h1 {
  opacity: 0.3;
}
a.profile-heading__title ~ .profile-heading__title {
  margin: 0 0 0 30px;
}
a.profile-heading__title ~ .profile-heading__title:before {
  content: "";
  position: absolute;
  left: -18px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 7px solid #373836;
  border-bottom: 3px solid transparent;
  top: 60%;
  transform: translateY(-50%);
}
a.profile-heading__title ~ .profile-heading__title:after {
  content: "";
  position: absolute;
  left: -17px;
  width: 0;
  margin: 0 0 0;
  height: 0;
  border-top: 1px solid transparent;
  border-left: 5px solid #FFF;
  border-bottom: 1px solid transparent;
  top: 60%;
  transform: translateY(-50%);
}

.logout-btn {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #ebebeb;
  border-radius: 50%;
  padding: 10px;
  transition: 0.2s;
  font-size: 0;
  position: absolute;
  right: 15px;
}
.logout-btn:hover {
  box-shadow: 0 0 12px 0 #ebebeb;
}

@media (min-width: 767px) {
  .profile-heading {
    padding: 15px 30px;
    margin: 30px 0 0;
  }
  .logout-btn {
    transform: scale(1.2);
    right: 30px;
  }
}
@media (min-width: 1260px) {
  .profile-heading__title {
    font-size: 42px;
  }
  .logout-btn {
    transform: scale(1.5);
  }
}
@media (min-width: 1580px) {
  .profile-heading {
    padding: 15px 80px;
  }
  .logout-btn {
    right: 80px;
  }
}
.profile-cards {
  padding: 0 15px;
  margin: 0 0 30px;
  overflow: auto;
}

.profile-card {
  padding: 15px 0 30px;
  display: block;
  overflow: hidden;
}
.profile-card.orders, .profile-card.wishlist, .profile-card.cart {
  border: 1px solid #ebebeb;
  padding-left: 15px;
  padding-right: 15px;
  transition: 0.2s;
  margin: 15px 0;
}
.profile-card.orders:hover, .profile-card.wishlist:hover, .profile-card.cart:hover {
  border: 1px solid transparent;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
.profile-card.orders:hover .profile-card__order-image-wrap,
.profile-card.orders:hover .profile-card__products-images, .profile-card.wishlist:hover .profile-card__order-image-wrap,
.profile-card.wishlist:hover .profile-card__products-images, .profile-card.cart:hover .profile-card__order-image-wrap,
.profile-card.cart:hover .profile-card__products-images {
  opacity: 1;
}
.profile-card.orders .profile-card__button, .profile-card.wishlist .profile-card__button, .profile-card.cart .profile-card__button {
  margin: 25px 0 15px;
}
.profile-card.wishlist, .profile-card.cart {
  padding-bottom: 0;
}
.profile-card.orders {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.profile-card.orders .profile-card__title {
  min-width: 100%;
}

.profile-card__title {
  font-size: 18px;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  margin: 0 0 10px;
}

.icon-arrow-right {
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
  margin: 0 0 0 10px;
  fill: #93af2a;
}

.profile-card__subtitle {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  margin: 8px 0;
  font-size: 14px;
}

.profile-card__notice,
.profile-card__value {
  opacity: 0.5;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  margin: 1px 0 0;
  font-size: 13px;
}

.profile-card__notice {
  margin: 5px 0 0;
}

.profile-card__button {
  min-width: 200px;
  max-width: 200px;
  background-color: #ebebeb;
  white-space: pre;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  height: 50px;
  margin: 30px 0 0;
  transition: 0.2s;
}
.profile-card__button:before {
  content: "+";
  font-size: 14px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  transform: scale(1.5);
  display: inline-block;
  margin: 0 8px 0 0;
}
.profile-card__button:hover {
  background-color: #93af2a;
  color: #FFF;
}

.profile-card__dl {
  display: flex;
  width: 100%;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin: 5px 0;
}

.profile-card__dt {
  opacity: 0.5;
  margin: 0 5px 0 0;
}

.profile-card__products-images {
  display: flex;
  min-width: 100%;
  margin: 0 -15px -15px;
  position: relative;
  top: 15px;
  opacity: 0.5;
  transition: 0.2s;
}

.profile-card__image-wrap {
  width: 50%;
  padding: 15% 0;
  overflow: hidden;
}

.profile-card__image {
  position: absolute;
  left: -40%;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(2);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.profile-card__order-image-wrap {
  position: absolute;
  left: 15px;
  width: 70px;
  height: 90px;
  opacity: 0.5;
  transition: 0.2s;
  top: 45px;
}
.profile-card__order-image-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-card__order-content {
  margin: 0 0 15px 85px;
  font-size: 13px;
  min-height: 80px;
  padding: 0 15px 0 0;
}

.profile-card__order-id {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  color: #93af2a;
  font-size: 16px;
  font-weight: bold;
}

.profile-card__order-date {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 13px;
  margin: 0 0 5px;
}

.profile-card__order-products-title {
  display: none;
}

.profile-card__order-product {
  color: #adadaa;
  font-size: 13px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
}

.profile-card__order-sku {
  color: #373836;
  font-weight: bold;
}

.profile-card__order-name {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  color: #373836;
  font-size: 14px;
  line-height: 1.15em;
}

.profile-card__order-status {
  font-size: 10px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  padding: 5px 10px;
  background-color: #f1b13e;
  color: #fff;
  display: table;
  margin: 0 0 10px;
}

@media (min-width: 521px) {
  .profile-card__order-image-wrap {
    width: 120px;
    height: 150px;
  }
  .profile-card__order-content {
    margin: 0 0 15px 135px;
    min-height: 150px;
  }
}
@media (min-width: 767px) {
  .profile-cards {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
  }
  .profile-card__order-image-wrap {
    top: 75px;
    left: 30px;
  }
  .profile-card__title {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .profile-card__order-content {
    margin: 0 0 15px 150px;
  }
  .profile-card__value,
.profile-card__subtitle,
.profile-card__notice {
    font-size: 14px;
  }
  .profile-card {
    min-width: 45%;
    flex: 1;
    margin: 15px;
    padding: 15px 0 30px;
  }
  .profile-card.wishlist, .profile-card.cart, .profile-card.orders {
    padding: 25px 25px 0;
    margin: 15px;
  }
  .profile-card.wishlist .profile-card__button, .profile-card.cart .profile-card__button, .profile-card.orders .profile-card__button {
    margin: 25px 0;
  }
  .profile-card.orders {
    padding: 25px;
  }
  .profile-card__products-images {
    margin: 0 -25px -10px;
  }
}
@media (min-width: 1100px) {
  .profile-card {
    min-width: 30%;
  }
  .profile-card.personal {
    order: -5;
    min-width: 320px;
    max-width: 320px;
  }
  .profile-card.cart {
    order: -4;
  }
  .profile-card.wishlist {
    order: -3;
  }
  .profile-card.orders {
    min-width: 64%;
  }
  .profile-card.shipping {
    min-width: 320px;
    max-width: 320px;
  }
  .profile-card__value,
.profile-card__notice {
    font-size: 16px;
  }
  .profile-card__subtitle {
    font-size: 18px;
  }
  .profile-card__dl {
    font-size: 12px;
  }
}
@media (min-width: 1240px) {
  .profile-cards {
    padding: 0 50px;
  }
  .profile-card__dl {
    margin: 8px 0;
  }
  .profile-card__title {
    margin: 0 0 25px;
  }
}
@media (min-width: 1580px) {
  .profile-cards {
    padding: 0 180px;
  }
  .profile-card__title {
    font-size: 24px;
  }
  .profile-card__dl {
    font-size: 13px;
  }
}
body .wc-block-components-notices__snackbar {
  display: none !important;
}
body .wp-block-woocommerce-cart {
  padding: 15px;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items {
  margin: 0;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row {
  display: flex;
  flex-wrap: wrap;
  z-index: 0;
  padding: 0;
  border: none !important;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row:after {
  content: "";
  position: absolute;
  border-top: 1px solid #ebebeb;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__image {
  padding: 15px 0;
  width: 140px;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__image img {
  max-width: 140px;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__product {
  flex: 1;
  padding: 15px 0;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-name {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  color: #373836;
  margin: 0 0 5px;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__prices {
  font-weight: 700;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 12px;
  margin: 0 0 5px;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__total {
  flex: 1;
  min-width: 90%;
  padding: 0 0 15px;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-details > * {
  display: block;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-details__value, body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-details__name {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 12px;
  font-weight: 700;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-details__name {
  color: #adadaa;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-details__value {
  color: #373836;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-metadata__description {
  color: rgb(147, 147, 144);
  font-family: "Verdana", "Arial", "sans-serif";
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-quantity-selector::before, body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-quantity-selector::after {
  content: none;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-quantity-selector__input {
  outline: none !important;
  box-shadow: none !important;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-weight: normal;
  border-bottom: 1px solid #ebebeb;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-quantity-selector__button {
  box-shadow: none !important;
  border-radius: 50%;
  background-color: #FFF;
  border: 6px solid #ebebeb;
  color: #373836;
  min-width: 28px;
  min-height: 28px;
  transition: 0.2s;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-quantity-selector__button:hover {
  background-color: #93af2a;
  border: 6px solid #93af2a;
  color: #FFF;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-quantity-selector__button--minus {
  line-height: 1em;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  z-index: 0;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 10px;
  color: #FFF;
  background-color: #adadaa;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 15px;
  transition: 0.2s;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  background-color: #373836;
}
body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-components-product-price {
  font-weight: 700;
  font-size: 13px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
}
body .wp-block-woocommerce-cart .wc-block-cart__totals-title {
  font-weight: 700 !important;
  font-size: 12px !important;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif" !important;
  color: #373836 !important;
}
body .wp-block-woocommerce-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block {
  display: none;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-item {
  font-weight: 700;
  font-size: 13px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
  text-transform: uppercase;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-shipping {
  border: 1px solid #93af2a;
  padding: 15px;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-shipping * {
  z-index: 0;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-shipping .wc-block-components-address-form {
  z-index: 1;
}
body .wp-block-woocommerce-cart .components-form-token-field__suggestion {
  display: block;
  width: 100%;
}
body .wp-block-woocommerce-cart .wc-block-components-address-form__country {
  z-index: 1;
}
body .wp-block-woocommerce-cart .wc-block-components-shipping-address {
  font-family: "Verdana", "Arial", "sans-serif";
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address__link {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  margin: 15px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  background-color: #93af2a;
  padding: 10px 15px 9px !important;
  color: #fff;
  transition: 0.2s;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address__link:hover {
  opacity: 0.7;
}
body .wp-block-woocommerce-cart .wc-block-components-totals-item__value,
body .wp-block-woocommerce-cart .wc-block-components-totals-item__label {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
}
body .wp-block-woocommerce-cart .wc-block-components-button {
  z-index: 0;
  width: 100%;
  outline: none !important;
  box-shadow: none !important;
}
body .wp-block-woocommerce-cart .wc-block-components-button .wc-block-components-button__text {
  background-color: #93af2a;
  color: #FFF;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 12px;
  text-transform: uppercase;
  padding: 15px;
  display: block;
  transition: 0.2s;
  min-width: 100%;
}
body .wp-block-woocommerce-cart .wc-block-components-button .wc-block-components-button__text:hover {
  opacity: 0.75;
}
body .wp-block-woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__container {
  border: none !important;
}
body .wp-block-woocommerce-cart .wc-blocks-components-select .wc-blocks-components-select__container svg {
  display: none !important;
}
body .wp-block-woocommerce-cart .wc-blocks-components-select__select, body .wp-block-woocommerce-cart .wc-block-components-text-input input[type=text],
body .wp-block-woocommerce-cart .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border: none;
  border-bottom: 1px solid #ebebeb;
  outline: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: 13px 0 5px;
}
body .wp-block-woocommerce-cart .wc-blocks-components-select__label,
body .wp-block-woocommerce-cart .wc-block-components-text-input label,
body .wp-block-woocommerce-cart .wc-block-components-combobox.is-active .wc-block-components-combobox-control label.components-base-control__label {
  transform: none;
  font-size: 10px;
  color: #373836;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  left: 0;
}
body .wp-block-woocommerce-cart .wc-block-components-radio-control__option {
  padding: 0 0 0 50px;
}
body .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-address-form .wc-block-components-country-input:first-of-type {
  margin-top: 15px;
}
body .wp-block-woocommerce-cart .wc-block-cart__submit {
  outline: none !important;
}
body .wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
  border: 1px solid #93af2a;
}
body .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
  background-color: #93af2a;
}
body .wc-block-cart__submit-container {
  background-color: #FFF !important;
}
body .wc-block-components-sale-badge {
  display: none !important;
}
body del.wc-block-components-product-price__regular {
  opacity: 0.5;
}
body del.wc-block-components-product-price__regular:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333;
  display: block;
  top: 50%;
}

@media (min-width: 748px) {
  body .wp-block-woocommerce-cart {
    padding: 30px;
  }
  body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row {
    display: table-row;
  }
  body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    vertical-align: bottom;
  }
  body .wp-block-woocommerce-cart .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__header {
    font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
    font-size: 12px;
  }
  body .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
    flex-direction: row;
  }
  body .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
    max-width: 65%;
    min-width: 65%;
    padding: 0 45px 0 0;
  }
  body .wp-block-woocommerce-cart .wc-block-components-sidebar {
    max-width: 35%;
    min-width: 35%;
    padding: 0;
    margin: 1px 0 0;
  }
}
@media (min-width: 778px) {
  body .wp-block-woocommerce-cart {
    padding: 30px;
  }
  body .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
    margin: -3px 0 0;
  }
}
.cart-total {
  font-size: 18px;
  color: #373836;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  display: table;
  margin: 0 auto 0 24px;
  font-weight: 700;
}

.cart-total__text {
  opacity: 0.5;
  font-size: 10px;
  text-transform: uppercase;
}

#payment-method .input-error,
#shipping-method .input-error {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 400;
  margin: -10px 0 0;
  display: table;
}

.payment-method,
.shipping-method {
  z-index: 1;
  padding: 0 0 0 25px;
  display: block;
  margin: 20px 0;
}
.payment-method input,
.shipping-method input {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 4;
}

.payment-method__title,
.shipping-method__title {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-weight: 700;
  color: #93af2a;
}

.payment-method__desc,
.shipping-method__desc {
  font-size: 12px;
  color: rgb(147, 147, 144);
  margin: 5px 0;
}

.woocommerce-order {
  padding: 0 15px;
}
.woocommerce-order .woocommerce-notice {
  padding: 15px;
  background-color: #93af2a;
  color: #FFF;
  font-size: 13px;
  margin: 15px 0 0;
}
.woocommerce-order .woocommerce-order-overview {
  margin: 30px 0 0 !important;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: rgb(147, 147, 144);
}
.woocommerce-order .woocommerce-order-overview strong {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
  font-size: 14px !important;
  line-height: inherit !important;
  margin: 0;
  display: inline !important;
}
.woocommerce-order .woocommerce-order-overview li {
  display: block;
  font-size: 14px !important;
  text-transform: none !important;
  border: none !important;
  float: none !important;
  width: 100% !important;
  padding: 5px 0;
  line-height: 1.3em !important;
}
.woocommerce-order p {
  font-size: 13px;
  font-family: "Verdana", "Arial", "sans-serif";
  color: rgb(147, 147, 144);
}
.woocommerce-order .woocommerce-column__title,
.woocommerce-order .woocommerce-order-details__title {
  font-size: 22px;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  color: #373836;
  font-weight: 400;
  margin: 0 0 15px;
}
.woocommerce-order .woocommerce-order-details {
  margin: 30px 0 0;
}
.woocommerce-order .woocommerce-column {
  margin: 30px 0 0;
}
.woocommerce-order address {
  padding: 15px !important;
  line-height: 1.3em;
}
.woocommerce-order address br {
  height: 10px;
  display: block;
}

@media (min-width: 767px) {
  .woocommerce-order {
    padding: 0 30px;
  }
}
table {
  border-radius: 0 !important;
}
table.shop_table th {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
  text-transform: uppercase;
  font-size: 13px;
}
table.shop_table a {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  color: #93af2a;
  line-height: 1.1em;
  z-index: 0;
}
table.shop_table a:hover {
  text-decoration: underline;
}
table.shop_table .product-quantity {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
}
table.shop_table .wc-item-meta {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  color: #373836;
  opacity: 0.8;
}
table.shop_table .wc-item-meta li {
  display: block;
  padding: 3px 0;
}
table.shop_table .wc-item-meta li strong {
  font-weight: 400;
}
table.shop_table .wc-item-meta li p {
  font-weight: 700;
  color: #373836;
}
table.shop_table .product-total {
  text-align: right;
  font-weight: 700;
  color: #373836;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
}
table.shop_table td {
  font-weight: 700;
  color: #373836;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  line-height: 1.1em;
}
table.shop_table .woocommerce-button {
  color: #FFF !important;
  background-color: #93af2a !important;
  border-radius: 0 !important;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  transition: 0.2s;
}
table.shop_table .woocommerce-button:hover {
  opacity: 0.7;
}

body.category-content-loading .product-card,
body.category-content-loading .apply-filter,
body.category-content-loading .category-order__label,
body.category-content-loading .reset-filter,
body.category-content-loading .category-limit__label,
body.category-content-loading .pagination,
body.category-content-loading .show-all-btn {
  opacity: 0.5;
  pointer-events: none;
}

.category-main {
  z-index: 1;
}

.category-content {
  padding: 55px 0 0;
  min-height: 400px;
}

.category-pagination {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  font-size: 12px;
  padding: 15px;
  width: 100%;
}
.category-pagination .pagination {
  display: flex;
  width: 100%;
  justify-content: center;
}

.show-all-btn {
  display: table;
  margin: 15px auto 30px;
  cursor: pointer;
  color: #373836;
  transition: 0.2s;
}
.show-all-btn:hover {
  opacity: 0.4;
}

@media (min-width: 320px) {
  .category-content {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 767px) {
  .category-content {
    padding: 70px 0 0;
    z-index: 1;
  }
}
@media (min-width: 1024px) {
  .category-main {
    display: flex;
    padding: 0 15px 0;
    margin: 30px 0 0;
    align-items: flex-start;
  }
  .category-main:before {
    content: "";
    left: 30px;
    right: 30px;
    height: 1px;
    display: block;
    top: 0;
    position: absolute;
    background-color: #E0E0E0;
    z-index: 1;
  }
  .category-content {
    margin: 10px 0 0;
    flex: 1;
  }
  .category-search {
    display: flex;
    justify-content: space-between;
    padding: 30px 30px 0;
  }
  .search-widget {
    padding: 0;
  }
  .category-pagination {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 0;
    padding: 25px 0;
  }
  .category-pagination .pagination {
    width: auto;
    font-size: 14px;
  }
  .category-pagination:before {
    content: "";
    left: 15px;
    right: 15px;
    height: 1px;
    display: block;
    top: 0;
    position: absolute;
    background-color: #E0E0E0;
    z-index: 1;
  }
  .show-all-btn {
    margin: 15px auto;
  }
}
@media (min-width: 1580px) {
  .category-search {
    padding: 30px 80px 0;
  }
  .category-main {
    padding: 0 65px 0;
    margin: 30px 0 0;
  }
  .category-main:before {
    left: 80px;
    right: 80px;
  }
  .category-content {
    margin: 19px 0 0;
    padding: 70px 0 0 40px;
  }
}
body.display-detail .product-card {
  max-width: 100%;
  min-width: 100%;
  padding: 15px 15px 95px 270px;
  text-align: left;
}
body.display-detail .product-card .icon-heart {
  right: auto;
  left: 270px;
  margin: 14px 0px 0 -45px;
}
body.display-detail .product-card__link {
  padding: 0;
  position: static;
  margin: 0 0 15px;
}
body.display-detail .product-card__title {
  position: static;
  transform: none;
  max-height: none;
  height: auto;
  overflow: visible;
}
body.display-detail .product-card__image {
  width: 270px;
  padding: 15px;
}
body.display-detail .product-card__button {
  transform: translateX(0);
  left: 270px;
}
body.display-detail .product-card__attribute {
  margin: 7px 0;
}
body.display-detail .product-card__attribute.detail {
  display: block;
  margin: 3px 0;
}
body.display-detail .product-card__title {
  font-size: 17px;
}
body.display-detail .product-card__price {
  font-size: 13px;
  position: absolute;
  bottom: 60px;
}

.product-card {
  padding: 15px;
  text-align: center;
}
.product-card .icon-heart {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  right: 5px;
  top: -5px;
  fill: #adadaa;
  padding: 5px;
  transition: 0.2s;
}
.product-card .icon-heart use {
  transform: translateY(4px) translateX(4px);
  pointer-events: none;
}
.product-card .icon-heart.added, .product-card .icon-heart:hover {
  fill: #FFF;
  background-color: #93af2a;
}
.product-card:hover .product-card__button {
  border: 1px solid #93af2a;
}

.product-card__link {
  display: block;
  padding: 50% 0;
  margin: 0 0 55px;
}
.product-card__link:hover .product-card__image {
  transform: scale(1.04);
}
.product-card__link:hover .product-card__title {
  color: #93af2a;
}

.product-card__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s;
}

.product-card__title {
  position: absolute;
  bottom: -5px;
  transform: translateY(100%);
  left: 15px;
  right: 15px;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15em;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s;
}

.product-card__price,
.product-card__attribute {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  color: #373836;
  margin: 2px 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__price span,
.product-card__attribute span {
  opacity: 0.6;
}
.product-card__price.detail,
.product-card__attribute.detail {
  display: none;
}

.product-card__price {
  font-size: 12px;
}
.product-card__price span {
  text-transform: lowercase;
}

.product-card__button {
  border: 1px solid #E0E0E0;
  height: 40px;
  font-size: 11px;
  margin: 12px 0 0;
}
.product-card__button .icon-cart {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
  transition: 0.2s;
}
.product-card__button .icon-cart use {
  transform: translateX(3px) translateY(3px);
}
.product-card__button:hover {
  background-color: #93af2a;
  border: 1px solid #93af2a;
  color: #FFF;
}
.product-card__button:hover .icon-cart {
  fill: #FFF;
}

@media (min-width: 320px) {
  .product-card {
    flex: 1;
    max-width: 50%;
    min-width: 50%;
    padding: 15px 15px 60px;
  }
  .product-card__button {
    position: absolute;
    bottom: 15px;
    width: 130px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 420px) {
  .product-card__link {
    margin: 0 0 60px;
  }
  .product-card__title {
    font-size: 14px;
    max-height: 50px;
  }
}
@media (min-width: 520px) {
  .product-card {
    min-width: 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 1280px) {
  .product-card {
    min-width: 25%;
    max-width: 25%;
  }
}
@media (min-width: 1580px) {
  body.display-detail .product-card {
    max-width: 50%;
    min-width: 50%;
  }
  .product-card {
    padding: 15px 15px 65px;
    min-width: 20%;
    max-width: 20%;
  }
  .product-card__title {
    font-size: 17px;
    max-height: 62px;
  }
  .product-card__link {
    margin: 0 0 75px;
  }
  .product-card__price {
    font-size: 13px;
    margin: 0 0 5px;
  }
}
.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.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.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.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;
  }
}
body.customize-support .header {
  top: 46px;
}
body.customize-support #wpadminbar {
  position: fixed;
}
body.customize-support .search {
  padding: 96px 15px;
}
body.customize-support .menu {
  padding: 96px 30px 30px;
}
body.customize-support .profile-heading {
  margin: 60px 0 0;
}

html {
  margin: 0 !important;
}

.breadcrumbs {
  padding: 15px;
}

.profile-mobile-menu {
  margin: 10px 0 0;
  width: 100%;
  padding: 20px 15px;
  border: none;
  outline: none;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  text-transform: uppercase;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  z-index: 0;
  color: #373836;
  text-align: center;
  font-size: 11px;
}

.profile-menu {
  display: none;
}

.forms-list {
  padding: 0 15px;
}

.form-title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 21px;
  line-height: 1.15em;
  color: #373836;
  margin: 0 0 15px;
}

.form-label {
  min-width: 100%;
  padding: 5px 0;
  z-index: 0;
  display: block;
}

.form {
  margin: 30px 0;
}

.form-input {
  min-width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #ebebeb;
  font-family: "Verdana", "Arial", "sans-serif";
  padding: 5px 0;
  z-index: 0;
  background-color: transparent !important;
}
.form-input[disabled] {
  opacity: 0.65;
}

.label-text {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  color: #adadaa;
  font-size: 10px;
}

.form-button {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  color: #adadaa;
  font-size: 12px;
  padding: 15px;
  min-width: 100%;
  background-color: #93af2a;
  color: #FFF;
  transition: 0.2s;
  z-index: 0;
  cursor: pointer;
  margin: 30px 0 0;
}
.form-button:hover {
  opacity: 0.7;
}

.form-success {
  background-color: #93af2a;
  color: #FFF;
  padding: 15px 30px;
  display: block;
  text-align: center;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
}

#change-password {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
#change-password:checked ~ label:not([for=change-password]) {
  display: block;
}
#change-password:checked ~ label[for=change-password] {
  font-size: 0;
}
#change-password:checked ~ label[for=change-password]:before {
  content: attr(data-decline);
  font-size: 14px;
  display: block;
  line-height: 1.2em;
}
#change-password ~ label:not([for=change-password]) {
  display: none;
}
#change-password ~ label:not([for=change-password]) input {
  padding: 5px 80px 5px 0;
}
#change-password ~ label[for=change-password] {
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  font-size: 14px;
  cursor: pointer;
  line-height: 1.2em;
  color: #93af2a;
}

.checkbox-label {
  z-index: 0;
  cursor: pointer;
}
.checkbox-label .input-error {
  display: block;
  margin: 0;
}

.checkbox-text {
  font-size: 12px;
  color: #adadaa;
}

.form-end {
  display: flex;
  flex-wrap: wrap;
}

.show-password {
  transform: translateY(-100%);
  height: 32px;
  line-height: 32px;
  margin: 0 0 0 auto;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 1;
  color: #adadaa;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  font-size: 11px;
}
.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;
}
.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;
}
.show-password:after::-moz-placeholder {
  background-color: #adadaa;
}
.show-password:after::placeholder {
  background-color: #adadaa;
}
.show-password.active {
  color: #373836;
}
.show-password.active:after {
  margin: 0 0 0 -5px;
}

.input-error {
  color: red;
  margin: 0 0 0 10px;
}

/* Убираем стрелки для Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Убираем стрелки для Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.woocommerce {
  width: 100%;
}

.page-notice__text {
  font-size: 18px;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-weight: 400;
  line-height: 1.15em;
}

.page-notice {
  margin: 30px 0;
  padding: 0 15px;
  flex: 1;
}

.page-notice__button {
  background-color: #93af2a;
  color: #FFF;
  font-size: 12px;
  font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
  text-transform: uppercase;
  padding: 15px;
  margin: 30px 0 0;
  display: block;
  text-align: center;
  max-width: 240px;
  transition: 0.2s;
}
.page-notice__button:hover {
  opacity: 0.7;
}

.woocommerce-MyAccount-navigation {
  display: none !important;
}

.woocommerce-MyAccount-content {
  padding: 15px;
}
.woocommerce-MyAccount-content > p {
  color: #373836;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 16px;
  margin: 10px 0;
  font-weight: 400;
}
.woocommerce-MyAccount-content > p mark {
  background-color: transparent;
  color: #93af2a;
  font-weight: 700;
}
.woocommerce-MyAccount-content .woocommerce-column__title,
.woocommerce-MyAccount-content .woocommerce-order-details__title {
  color: #373836;
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 18px;
  margin: 10px 0;
  font-weight: 400;
}
.woocommerce-MyAccount-content .woocommerce-column__title {
  margin: 30px 0 11px !important;
}
.woocommerce-MyAccount-content .woocommerce-order-details {
  margin: 0 !important;
}

.woocommerce-button--previous,
.woocommerce-Button--next {
  z-index: 0;
}

.wc-block-store-notice svg {
  max-width: 30px;
}

.profile-content {
  justify-content: center;
}
.profile-content.reset-password {
  max-width: 1000px;
  margin: 0 auto;
}

.wp-block-woocommerce-empty-cart-block {
  display: none;
}

.wc-block-components-notices svg {
  max-width: 30px;
}

.wc-block-components-notice-banner svg {
  max-width: 30px;
}

.thankyou .profile-card__title {
  margin: 30px 0 15px;
}
.thankyou a {
  z-index: 1;
}

.thankyou-text {
  color: #FFF;
  background-color: #93af2a;
  padding: 15px;
  margin: 15px 0 0;
  min-width: 100%;
}

.thankyou-column {
  flex: 1;
  min-width: 50%;
}

.order-item__title {
  font-family: "Palatino Linotype", "Palatino", "Book Antiqua", "Times New Roman", "serif";
  font-size: 14px;
  color: #93af2a;
  font-weight: 700;
  margin: 0 0 5px;
}
.order-item__title:hover {
  text-decoration: underline;
}

.order-item__price {
  margin: 5px 0;
}

.order-item:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
  padding: 0 0 15px;
  margin: 0 0 15px;
}

.wp-block-woocommerce-cart-order-summary-shipping-block {
  display: none !important;
}

@media (min-width: 767px) {
  .woocommerce-MyAccount-content {
    padding: 23px 30px 30px;
  }
  .continue-checkout-button {
    margin: 10px auto 0 24px !important;
  }
  .page-notice {
    padding: 0 30px;
  }
  .profile-mobile-menu {
    display: none;
  }
  .forms-list {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0;
    flex: 1;
  }
  .forms-list > .form,
.forms-list > .forms-group {
    flex: 1;
    margin: 0 15px 20px;
  }
  .form-label {
    display: block;
  }
  .form {
    margin: 0 0 20px;
  }
  .form-button {
    min-width: 90%;
    flex: 1;
    margin: 0 15px;
    padding: 20px;
    cursor: pointer;
  }
  .profile-menu {
    display: flex;
    color: #93af2a;
    margin: 25px 0 0;
    font-family: "Trebuchet MS", "Helvetica", "Tahoma", "Helvetica", "Lucida Sans Unicode", "Lucida Grande", "Arial", "sans-serif";
    text-transform: uppercase;
    font-size: 12px;
    padding: 0 15px;
  }
  .profile-menu__item {
    margin: 0 15px;
    z-index: 0;
    transition: 0.2s;
  }
  .profile-menu__item.active {
    color: #373836;
  }
  .profile-menu__item:hover {
    color: #373836;
  }
  .checkbox-label {
    margin: 0 15px 30px;
    flex: 1;
  }
  .form-end {
    min-width: 90%;
    flex: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .form-button {
    min-width: 190px;
    max-width: 190px;
  }
  .form-success {
    margin: 0 15px 30px;
    flex: 1;
    min-width: 90%;
  }
  .page-notice__button {
    padding: 30px 15px;
  }
}
@media (min-width: 783px) {
  body.customize-support .header {
    top: 32px;
  }
  body.customize-support #wpadminbar {
    position: fixed;
  }
  body.customize-support .search {
    padding: 122px 25% 15px;
  }
  body.customize-support .menu {
    padding: 82px 30px 30px;
  }
}
@media (min-width: 1260px) {
  .form-title {
    font-size: 28px;
  }
  .profile-content {
    display: flex;
    padding: 0 15%;
  }
  .profile-menu {
    flex-direction: column;
    min-width: 260px;
  }
  .profile-menu__item {
    margin: 10px 0;
  }
}
@media (min-width: 1580px) {
  body.customize-support .header {
    top: 32px;
  }
  body.customize-support #wpadminbar {
    position: fixed;
  }
  body.customize-support .search {
    padding: 122px 25% 15px;
  }
  body.customize-support .menu {
    padding: 82px 80px 30px;
  }
  .profile-content {
    margin: 30px 0 0;
  }
  .form-title {
    font-size: 36px;
  }
  .profile-content {
    display: flex;
  }
}
