*,
::after,
::before {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:focus,
:active {
  outline: 0;
}

html,
body {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background: #986f27;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 330px) {
  body {
    font-size: 12px;
  }
}

button,
input,
textarea,
select,
optgroup {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

h1 {
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 20px;
}

h3,
h4,
h5 {
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 20px;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  outline: 0;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a {
  color: #986f27;
}

a:hover {
  color: #949494;
}

button[disabled],
button[disabled]:focus,
button[disabled]:hover,
input[disabled],
input[disabled]:focus,
input[disabled]:hover {
  opacity: 0.6 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  pointer-events: none !important;
}

button {
  cursor: pointer;
  background: none;
}

button[type="submit"]:not(
    .form-filter__btn-apply,
    .form-filter__btn-apply--mobile
  ) {
  position: relative;
  overflow: hidden;
}

button[type="submit"] .spinner {
  padding: 5px;
}

p {
  margin: 0 0 15px;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 75%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

ul,
ol {
  padding: 0 0 10px 25px;
  margin-bottom: 15px;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

body.open {
  overflow: hidden;
}

pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  overflow: auto;
  font-size: 12px;
  line-height: 1.2;
  padding: 10px;
  margin: 0 0 10px;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f5f5f5;
}

@media (pointer: coarse), (hover: none) {
  .custom-tooltip[title] {
    position: relative;
    display: inline-flex;
    justify-content: center;
  }
  .tooltip[title]:hover::after {
    content: attr(title);
    position: absolute;
    top: 90%;
    color: #fff;
    background-color: #333;
    width: fit-content;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 9px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}

.pull-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.pull-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .pull-left,
  .pull-right {
    float: none;
    display: block;
    margin: 0 auto 15px;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.container {
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.col1 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.col2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

.col3 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
  padding-left: 10px;
  padding-right: 10px;
}

.col4 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}

.col5 {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
  padding-left: 10px;
  padding-right: 10px;
}

.dn {
  display: none;
}

.text-center {
  text-align: center;
}

.fancybox-active {
  height: 100% !important;
}
/*** TITLE ***/
[data-title] {
  position: relative;
  text-decoration: underline dashed;
  cursor: help;
}
[data-title]:hover {
  text-decoration: underline solid;
}
[data-title]:hover::before {
  z-index: 1024;
  content: attr(data-title);
  position: absolute;
  top: 22px;
  right: -11px;
  display: inline-block;
  padding: 10px 10px;
  border-radius: 2px;
  background: #ffffff;
  color: #000000;
  white-space: pre;
  border: 1px solid #e9e9e9;
}

[data-title]:hover::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 8px;
  display: inline-block;
  color: #fff;
  border: 8px solid transparent;
  border-bottom: 8px solid #000;
}
/*** ALERT ***/
.alert {
  font-size: 18px;
  padding: 15px;
  border: 1px solid transparent;
}

.alert-success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8;
}

.alert-danger {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}
.alert-warning {
  color: #a98e42;
  border-color: #ebdfcc;
  background-color: #f2ecde;
}

.alert-registration div {
  font-weight: 500;
  line-height: 1.2;
  font-size: 16px;
}

.alert-registration span {
  font-size: 12px;
}

.alert button:not(:hover) {
  text-decoration: underline;
}

.alert_order {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  text-align: center;
}
/*** ALERT ***/

/*** SCROLL TO TOP ***/
.totop {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: 15px;
  margin-bottom: 130px;
  z-index: 1019;
}

.scroll {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 65px;
  height: 60px;
  opacity: 0.4;
  background-color: #e9e9e9;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.scroll:hover {
  opacity: 1;
}
/*** SCROLL TO TOP ***/

/*** SPINNER ***/
.spinner {
  position: absolute;
  inset: 0;
  width: 50px;
  height: 50px;
  margin: auto;
  z-index: 2;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}

.spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
}

.spinner .path2 {
  stroke: #000;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/*** SPINNER ***/

/*** SLICK SLIDER ***/
.slick-slider {
  position: relative;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slick-list,
.slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #d9d9d9;
  line-height: 0;
  z-index: 10;
}

.slick-arrow:hover {
  color: #986f27;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  line-height: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dots li:not(:last-of-type) {
  margin-right: 10px;
}

.slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  font-size: 0;
  background-color: #fff;
}

.slick-dots li.slick-active button {
  background-color: #000;
}
/*** SLICK SLIDER ***/

/*** BTN ***/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 240px;
  height: 60px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn-primary {
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
}

@media (hover: hover) {
  .btn-primary:hover {
    color: #000;
    background-color: transparent;
  }
}

.btn:active {
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}
/*** BTN ***/

/*** FORM INPUT ***/
textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

textarea:focus::-moz-placeholder,
input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

textarea:focus:-moz-placeholder,
input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

textarea:focus:-ms-input-placeholder,
input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

select::-ms-expand {
  display: none;
}

.select {
  position: relative;
}

.select::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #986f27;
  margin: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

select option[selected] {
  background-color: #c5c5c5;
}

select optgroup,
select option {
  color: #000;
}

select option[value=""],
select:invalid:not(optgroup, option) {
  color: #747474;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"] {
  width: 100%;
  height: 60px;
  color: #000;
  font-size: 16px;
  border: 1px solid #e9e9e9;
  padding: 0 15px;
  margin-bottom: 20px;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

select {
  width: 100%;
  height: 40px;
  color: #986f27;
  font-size: 16px;
  border: 1px solid #986f27;
  padding: 0 15px;
  margin-bottom: 20px;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

textarea {
  max-width: 100%;
  width: 100%;
  color: #000;
  font-size: 16px;
  border: 1px solid #e9e9e9;
  padding: 15px;
  margin-bottom: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: #986f27;
}

input[readonly],
input[readonly]:focus {
  border-color: #eee !important;
}

input[name="city"] {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
/*** FORM INPUT ***/

/*** MODAL ***/
.modal {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1070;
}

.modal__wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  margin: 0 15px;
  padding: 50px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 575px) {
  .modal__wrapper {
    padding: 40px 20px;
  }
}

.modal.in .modal__wrapper {
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 29px;
  margin: 15px;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.modal__close::before {
  top: 14px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close::after {
  bottom: 14px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__close:hover::before,
.modal__close:hover::after {
  background-color: #949494;
}

.modal__body {
  max-height: calc(100vh - 100px);
  overflow: hidden auto;
}

.modal__body h2 {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .modal__body h2 {
    font-size: 26px;
  }
}

.modal__body .btn {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px auto 0;
}
@media (min-width: 576px) {
  .modal__body .btn {
    min-width: 280px;
  }
}
@media (max-width: 575px) {
  .modal__body .btn {
    max-width: 260px;
  }
}

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

.form-login__buttons button {
  letter-spacing: 0.5px;
}

.form-login__buttons button:first-of-type {
  color: #986f27;
}

.form-login__buttons button:last-of-type {
  color: #656565;
}

.form-login__buttons button:hover {
  color: #000;
  text-decoration: none;
}

.form-thk {
  text-align: center;
}

.form-thk svg {
  margin-bottom: 25px;
}

.form-thk .btn {
  margin: 40px auto 20px;
}

.form-thk a {
  color: #656565;
  letter-spacing: 0.15px;
  text-decoration: underline;
}

.form-thk a:hover {
  color: #000;
  text-decoration: none;
}

.modal__policy {
  color: #5c5c65;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 15px 0 0;
}
@media (max-width: 767px) {
  .modal__policy {
    font-size: 12px;
  }
}

.modal__policy a:not(:hover) {
  color: #5c5c65;
  text-decoration: underline;
}
/*** MODAL ***/

/*** PAGINATION ***/
.pagination > * {
  font-weight: 500;
  font-size: 18px;
}

.pagination > *:not(:last-child) {
  margin-right: 20px;
}

.pagination a {
  color: #000;
}

.pagination a:hover,
.pagination span {
  color: #986f27;
}

.pagination svg {
  vertical-align: middle;
}
/*** PAGINATION ***/

/*** MENU BURGER ***/
.catalog-burger,
.menu-burger {
  position: relative;
  height: 16px;
  cursor: pointer;
  z-index: 1034;
}
@media (min-width: 768px) {
  .menu-burger {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .menu-burger {
    width: 30px;
  }
}

.catalog-burger span,
.catalog-burger::before,
.catalog-burger::after,
.menu-burger span,
.menu-burger::before,
.menu-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  border-radius: 2px;
  border-bottom: 2px solid #000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.catalog-burger::before,
.menu-burger::before {
  top: 0;
}

.catalog-burger span,
.menu-burger span {
  top: 7px;
}

.catalog-burger::after,
.menu-burger::after {
  bottom: 0;
}

.menu-burger.open::before {
  top: 7px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-burger.open span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.menu-burger.open::after {
  bottom: 7px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*** MENU BURGER ***/

/*** NAV MENU ***/
.catalog-menu,
.main-menu,
.main-menu ul,
.header__menu,
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) {
  .catalog-menu {
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
    max-width: 230px;
  }
}

nav a {
  color: #000;
}

nav a:hover,
nav button:hover {
  color: #986f27;
}

nav li.active > a {
  text-decoration: underline;
}

.main-menu,
.header__menu {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header__menu {
    font-size: 1.1vw;
  }
}
@media (max-width: 767px) {
  .header__menu > li {
    margin-bottom: 20px;
  }
}

.main-menu > li > ul {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header__menu-catalog-mobile a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.nav__request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav__phone {
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .nav__request,
  .nav__phone {
    font-size: 1.2vw;
  }
}

@media (min-width: 1200px) {
  .header__menu:not(.last) {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin: 0 15px 0 15px;
  }
}
@media (min-width: 768px) {
  nav {
    border-bottom: 1px solid #e9e9e9;
  }

  nav .container {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    background-color: #fff;
  }

  .catalog-menu > li,
  .main-menu > li {
    position: relative;
  }

  .catalog-menu > li::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
  }

  .catalog-menu > li:hover {
    color: #986f27;
  }

  .catalog-menu > li:not(:hover) {
    overflow: hidden;
  }

  .catalog-burger span,
  .catalog-burger::before,
  .catalog-burger::after {
    border-color: #986f27;
  }

  .catalog-burger {
    white-space: nowrap;
    line-height: 16px;
    padding-left: 55px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .main-menu {
    position: absolute;
    top: 38px;
    min-width: 300px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1010;
  }

  .catalog-menu > li:hover > .main-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }

  .catalog-menu > li:hover > .catalog-burger span {
    width: 24px;
  }

  .main-menu > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 25px 10px 25px 20px;
  }

  .main-menu > li:hover > a {
    background-color: #f9f9f9;
  }

  .main-menu svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .main-menu > li > ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    line-height: 1.2;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    border: 1px solid #e9e9e9;
    background-color: #f9f9f9;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1010;
  }

  .main-menu > li:hover > ul {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .main-menu > li > ul > li > a {
    display: block;
    padding: 10px 20px;
  }

  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    white-space: nowrap;
  }

  .header__menu-catalog-mobile {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .main-menu > li > ul {
    width: 300%;
  }

  .main-menu > li > ul > li {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .main-menu > li > ul {
    width: 200%;
  }

  .main-menu > li > ul > li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .main-menu > li > ul {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .catalog-burger {
    font-size: 1.2vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .catalog-burger {
    padding-left: 40px;
  }

  .header__menu {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 767px) {
  nav {
    position: fixed;
    top: 0;
    left: -320px;
    bottom: 0;
    max-width: 320px;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 35px;
    background-color: #fff;
    z-index: 1033;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  nav.open {
    left: 0;
    overflow: hidden auto;
  }

  nav .catalog-menu {
    display: none !important;
  }

  .overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1032;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .main-menu {
    position: absolute;
    width: 100%;
    padding: 10px 0;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    z-index: 2;
  }
}
/*** NAV MENU ***/

/*** 404 ***/
.error {
  color: #000;
  text-align: center;
  line-height: 1;
  margin-bottom: 80px;
}

.error h1 {
  font-size: 200px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.error h2 {
  font-size: 42px;
  padding: 10px 0;
  margin: 0;
}
@media (max-width: 575px) {
  .error {
    padding: 15px 0;
  }

  .error h1 {
    font-size: 45vw;
  }
}
/*** 404 ***/

/*** BREADCRUMB ***/
.breadcrumb {
  margin: 30px 0;
}

.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  line-height: 1;
  font-size: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .breadcrumb {
    opacity: 0;
  }

  .breadcrumb ol {
    font-size: 12px;
  }
}

.breadcrumb li,
.breadcrumb a {
  color: #5c5c65;
}

.breadcrumb a:hover {
  color: #986f27;
}
/*** BREADCRUMB ***/

/*** SEARCH-FORM ***/
@media (min-width: 768px) {
  .search-form {
    position: relative;
    -ms-flex-preferred-size: 480px;
    flex-basis: 480px;
    max-width: 480px;
    height: 60px;
  }

  .header.fixed .search-form {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    max-width: 400px;
  }

  .search-form form {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .search-form {
    position: fixed;
    top: 0;
    left: 900px;
    right: 0;
    background-color: #fff;
    transition: left 0.7s ease-in-out;
    z-index: 1060;
  }

  .search-form form {
    clear: both;
    padding: 8.5px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .search-form input[type="search"] {
    background-color: #e9e9e9;
    border-radius: 20px;
    height: 30px;
    padding: 0 20px 0 20px !important;
  }

  .search-form .button_search {
    padding: 9px;
    text-align: center;
    font-size: 15px;
    color: black;
  }

  .search-form.open {
    left: 0;
  }
}

.search-form input[type="search"] {
  padding: 0 40px 0 20px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .search-form input[type="search"] {
    padding: 0 35px 0 15px;
  }
}

.search-form button[type="submit"] {
  position: absolute;
  right: 0;
  line-height: 0;
  margin: 18px 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .search-form button[type="submit"] {
    margin: 18px 10px;
  }
}

.search-form button[type="submit"] svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-form button[type="submit"]:hover svg {
  stroke: #949494;
}

.search-form__close {
  padding: 0 10px;
  text-align: center;
  font-size: 15px;
  color: black;
}

.search-form__close:focus {
  transition: 0s;
  color: #949494;
}

.search-form__close:hover {
  transition: 0s;
  color: #949494;
}
@media (min-width: 768px) {
  .search-form__close {
    display: none !important;
  }
}

.search-form__items {
  display: none;
  position: absolute;
  width: 100%;
  border-left: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  background-color: #fff;
  z-index: 2;
}
@media (min-width: 768px) {
  .search-form__items {
    min-width: 480px;
  }
}
@media (max-height: 860px) {
  .search-form__items.open {
    height: 300px;
    overflow: hidden auto;
  }
}
@media (max-width: 767px) {
  .search-form__items {
    top: 50px;
  }
}

.search-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding: 10px 20px;
  color: #000 !important;
  border-bottom: 1px solid #e9e9e9;
}

.search-form__item:hover {
  background-color: #fafafa;
}

.search-form__item img {
  max-width: 75px;
  max-height: 75px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.search-form__price {
  white-space: nowrap;
  font-weight: 500;
}

.search-form__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.search-form__outstock {
  color: #949494;
}
/*** SEARCH-FORM ***/

/*** CITY MENU ***/
.city-menu-ul {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
  color: #986f27;
  cursor: pointer;
}
@media (min-width: 768px) {
  .city-menu-select {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .city-menu-ul {
    display: none !important;
  }
}

.city-menu-ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.city-menu-ul li:hover {
  color: #949494;
}

.city-menu-ul li.active {
  color: #000;
}
/*** CITY MENU ***/

/*** HEADER ***/
.header__top {
  padding: 5px 0px;
  background-color: #202020;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .header__top {
    padding: 10px 0px;
    border-bottom: 1px solid #e9e9e9;
  }
}

.header__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}

@media (max-width: 1090px) {
  .header__top .container {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.header__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 7px;
  -moz-column-gap: 7px;
  column-gap: 7px;
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 768px) {
  .header__city {
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
    max-width: 230px;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .header__city {
    -webkit-column-gap: 6px;
    -moz-column-gap: 6px;
    column-gap: 6px;
    font-size: 10px;
  }
}

.header__city:hover {
  -webkit-text-decoration: underline dashed;
  text-decoration: underline dashed;
}

.header__top-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header__top-menu-wrapper {
    -ms-flex-preferred-size: 480px;
    flex-basis: 480px;
    max-width: 480px;
  }
}

.header__top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header__top-menu {
    display: none !important;
  }
}

.header__top-menu a:not(:hover) {
  color: #fff;
}

.header__top-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 1090px) {
  .header__top-social {
    display: none;
  }
}
.header__top-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.header__top-social a:not(:hover) {
  color: #fff;
}

@media (max-width: 767px) {
  .header__top-social span {
    display: none !important;
  }
}

.header__top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .header__top-buttons {
    /*-ms-flex-preferred-size:320px;
        flex-basis:320px;
        max-width:320px;*/
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .header__top-buttons {
    display: none !important;
  }
}

.header__top-buttons a:not(:hover) {
  color: #fff;
}

.header__top-mobile {
  top: -56px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header__top-mobile.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
  z-index: 1035;
}
@media (min-width: 768px) {
  .header__top-mobile {
    display: none !important;
  }
}

.header__top-mobile .container {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__top-mobile.fixed .container {
  padding-top: 8px;
}

.header__request {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.header__top-mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .header__top-mobile-buttons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header {
  top: -80px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.25);
  z-index: 1035;
}

.header .container {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1060;
  }
  .header .container {
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #e9e9e9;
    background-color: white;
    padding: 0 10px 0 10px;
  }

  .header__logo img {
    height: 40px;
  }

  .header .header__search {
    display: block;
  }

  .header .header__city {
    display: flex;
  }

  .header .header__cart-buttons {
    display: none;
  }

  .header .header__logo {
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
  }

  .header__search svg:focus {
    stroke: #949494;
  }

  .header__search svg:hover {
    stroke: #949494;
  }
}

.footer__top > img {
  max-width: 230px;
}

@media (min-width: 768px) {
  .header__logo {
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
    max-width: 230px;
    display: flex;
    justify-content: center;
  }

  .header__logo img {
    height: 60px;
  }

  .header .header__search {
    display: none;
  }

  .header .header__city {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__logo img,
  .footer__top > img {
    max-width: 160px;
  }
}

@media (min-width: 768px) {
  .header:not(.fixed) .header__top-fixed {
    display: none !important;
  }

  .header__top-fixed {
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
    max-width: 230px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    font-weight: 600;
  }

  .header__top-fixed a:first-of-type {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .header__top-fixed a:not(:hover) {
    color: #000;
  }

  .header__cart-buttons {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header:not(.fixed) .header__cart-buttons {
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px;
    max-width: 320px;
  }

  .header__login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 17px;
    -moz-column-gap: 17px;
    column-gap: 17px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    padding: 0 20px;
    border: 1px solid #e9e9e9;
  }

  .header__login svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .header__login:hover,
  .header__login:hover svg {
    color: #949494;
    fill: #949494;
  }

  .header.fixed .header__login span {
    display: none !important;
  }

  .header__cart,
  .header__count {
    min-width: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__cart {
    color: #000;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
  }

  .header__cart svg {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .header__cart:hover svg {
    fill: #949494;
    stroke: #949494;
  }

  .header__count {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 0 4px;
    background-color: #000;
  }

  .header__mobile {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header__login {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .header__login,
  .header__top-mobile:not(.fixed) .header__cart-buttons,
  .header__top-fixed {
    display: none !important;
  }

  .header__cart-buttons {
    position: relative;
  }

  .header__count {
    position: absolute;
    top: -14px;
    right: -14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 22px;
    height: 22px;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    padding: 1px 4px;
    border-radius: 22px;
    -webkit-box-shadow: 0 0 0 2px #fff;
    box-shadow: 0 0 0 2px #fff;
    background-color: #000;
  }

  .header__mobile {
    margin-top: 15px;
  }

  .catalog-menu > li {
    position: relative;
  }

  .catalog-menu > li > button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #c7ad80;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #000;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .main-menu:not(.open) {
    display: none;
  }

  .main-menu > li > a {
    display: block;
    color: #000;
    padding: 10px 20px;
  }

  .main-menu li.active > a {
    color: #986f27;
  }
}
/*** HEADER ***/

/*** FOOTER ***/
footer {
  background-color: #f9f9f9;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin: 50px 0 40px;
}
@media (max-width: 767px) {
  .footer__top {
    display: block;
    text-align: center;
    margin: 30px 0 20px;
  }
}

.footer__menu {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__menu {
    margin: 30px 0;
  }
}

.footer__menu li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer__menu li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.footer__menu a:not(:hover) {
  color: #000;
}

.footer__title {
  color: #5c5c65;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer__title,
  .footer__social {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.footer__phone {
  white-space: nowrap;
  color: #000;
  font-weight: 600;
  font-size: 30px;
  line-height: 20px;
}

.footer__privacy,
.footer__privacy--mobile {
  color: #5c5c65;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer__privacy--mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .footer__privacy {
    display: none !important;
  }

  .footer__privacy--mobile {
    font-size: 12px;
  }
}

.footer__social a:not(:last-child) {
  margin-right: 10px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5c5c65;
  font-size: 14px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .footer__bottom {
    display: block;
    font-size: 12px;
    text-align: center;
  }

  .footer__bottom > div:first-of-type {
    margin-bottom: 15px;
  }
}

.footer__bottom a {
  color: #949494;
}

.footer__bottom a:hover {
  color: #986f27;
}

@media (max-width: 991px) {
  .footer__top > img {
    max-width: 180px;
  }
}

.call-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: 100px;
  margin-bottom: 130px;
  z-index: 997;
}
@media (max-width: 767px) {
  .call-widget {
    display: none;
  }
}

.call-widget .wa {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 7px rgb(1, 230, 117, 0.2);
  box-shadow: 0 0 0 7px rgb(1, 230, 117, 0.2);
  background-color: #01e675;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIGltYWdlLXJlbmRlcmluZz0ib3B0aW1pemVRdWFsaXR5IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMjQuMTkgNS42OWMtMi40NS0yLjQ2LTUuNzItMy44MS05LjItMy44MS03LjE3IDAtMTMgNS44My0xMyAxMyAwIDIuMjkuNTkgNC41MyAxLjczIDYuNTFsLTEuODQgNi43MyA2Ljg5LTEuODFjMS45IDEuMDQgNC4wNCAxLjU5IDYuMjIgMS41OSA3LjE3IDAgMTMuMTMtNS44NCAxMy4xMy0xMy4wMSAwLTMuNDgtMS40Ny02Ljc0LTMuOTMtOS4yem0tOS4yIDIwLjAyYy0xLjk0IDAtMy44NS0uNTMtNS41LTEuNTFsLS40LS4yNC00LjA5IDEuMDggMS4wOS0zLjk5LS4yNS0uNDFjLTEuMDktMS43My0xLjY2LTMuNzEtMS42Ni01Ljc2IDAtNS45NiA0Ljg2LTEwLjgxIDEwLjgyLTEwLjgxIDIuODkgMCA1LjYgMS4xMyA3LjY0IDMuMTcgMi4wNCAyLjA1IDMuMjkgNC43NiAzLjI5IDcuNjUgMCA1Ljk2LTQuOTggMTAuODItMTAuOTQgMTAuODJ6bTUuOTMtOC4xYy0uMzItLjE3LTEuOTItLjk1LTIuMjItMS4wNi0uMy0uMTEtLjUxLS4xNi0uNzMuMTctLjIyLjMyLS44NCAxLjA1LTEuMDMgMS4yNy0uMTkuMjItLjM4LjI1LS43LjA5LTEuOTEtLjk2LTMuMTctMS43MS00LjQzLTMuODctLjMzLS41OC4zNC0uNTMuOTYtMS43OC4xLS4yMS4wNS0uNC0uMDMtLjU2LS4wOC0uMTctLjczLTEuNzctMS0yLjQyLS4yNy0uNjMtLjU0LS41NC0uNzQtLjU2bC0uNjItLjAxYy0uMjEgMC0uNTcuMDgtLjg2LjQxLS4zLjMzLTEuMTQgMS4xMS0xLjE0IDIuNzEgMCAxLjYgMS4xNiAzLjE1IDEuMzIgMy4zNi4xNy4yMiAyLjI5IDMuNSA1LjU2IDQuOTEgMi4wNi44OSAyLjg3Ljk3IDMuOS44Mi42My0uMSAxLjkyLS43OSAyLjE5LTEuNTVzLjI3LTEuNDEuMTktMS41NWMtLjA4LS4xNC0uMjktLjIyLS42Mi0uMzh6Ii8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
}

.call-widget .wa::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #01e675;
  border-radius: 50%;
}

.call-widget .wa:not(:hover)::after {
  -webkit-animation: widgetPulse 1.6s 1s infinite;
  animation: widgetPulse 1.6s 1s infinite;
}

.call-widget .wa:hover {
  -webkit-box-shadow: 0 0 0 11px rgb(1, 230, 117, 0.2);
  box-shadow: 0 0 0 11px rgb(1, 230, 117, 0.2);
}

/*TG*/
.call-widget .tg {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 7px #039be547;
  box-shadow: 0 0 0 7px #039be547;
  background-color: #039be5;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDIwIDE3IiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNNy44NDggMTAuOTg1bC0uMzMxIDQuNjUzYy40NzMgMCAuNjc4LS4yMDMuOTI0LS40NDdsMi4yMTktMi4xMjEgNC41OTggMy4zNjhjLjg0My40NyAxLjQzOC4yMjMgMS42NjUtLjc3NmwzLjAxOC0xNC4xNDMuMDAxLS4wMDFjLjI2OC0xLjI0Ny0uNDUxLTEuNzM0LTEuMjcyLTEuNDI4bC0xNy43NDIgNi43OTJjLTEuMjExLjQ3LTEuMTkyIDEuMTQ1LS4yMDYgMS40NTFsNC41MzYgMS40MTEgMTAuNTM2LTYuNTkyYy40OTYtLjMyOC45NDctLjE0Ny41NzYuMTgybC04LjUyMiA3LjY1M3oiPjwvcGF0aD48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: 10px 13px;
  background-size: 35px 35px;
}

.call-widget .tg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #039be5;
  border-radius: 50%;
}

.call-widget .tg:not(:hover)::after {
  -webkit-animation: widgetPulse 1.6s 1s infinite;
  animation: widgetPulse 1.6s 1s infinite;
}

.call-widget .tg:hover {
  -webkit-box-shadow: 0 0 0 11px #039be547;
  box-shadow: 0 0 0 11px #039be547;
}
/*TG*/

@-webkit-keyframes widgetPulse {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes widgetPulse {
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
/*** FOOTER ***/

/*** HOME SLIDER ***/
.home-slider {
  margin: 30px 0 80px;
}
@media (max-width: 767px) {
  .home-slider {
    margin: 70px 0 20px 0;
  }
}

.home-slider__slider:not(.slick-initialized) > *:nth-child(n + 2) {
  display: none;
}

.home-slider__slider .slick-prev {
  margin-left: -50px;
}
@media (max-width: 1320px) {
  .home-slider__slider .slick-prev {
    margin-left: 20px;
  }
}

.home-slider__slider .slick-next {
  margin-right: -50px;
}
@media (max-width: 1320px) {
  .home-slider__slider .slick-next {
    margin-right: 20px;
  }
}

.home-slider__item {
  position: relative;
}

.home-slider__item img {
  min-height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-slider__text {
  position: absolute;
  top: 50%;
  max-width: 480px;
  margin-left: 70px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .home-slider__text {
    text-align: center;
    margin: 0 20px;
  }
}

.home-slider__text h3 {
  color: #fff;
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .home-slider__text h3 {
    font-size: 28px;
  }
}

.home-slider__text p {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-slider__text p {
    font-size: 1.5vw;
  }
}
@media (max-width: 767px) {
  .home-slider__text p {
    font-size: 14px;
  }

  .home-slider__text .btn {
    height: 50px;
  }
}
/*** HOME SLIDER ***/

/*** HOME NEWS ***/
.home-news {
  margin: 100px 0;
}
@media (max-width: 767px) {
  .home-news {
    margin: 30px 0 60px;
  }
}

.home-news__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .home-news__top {
    margin-bottom: 20px;
  }
}

.home-news__top h2 {
  font-size: 42px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .home-news__top h2 {
    font-size: 26px;
  }
}

.home-news__top a {
  color: #5c5c65;
  font-weight: 500;
  letter-spacing: 0.25px;
}

.home-news__top a:not(:hover) {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .home-news__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

.home-news__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .home-news__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.home-news__date {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 15px;
  margin: 20px;
  color: #fff;
  background-color: #986f27;
}
@media (max-width: 767px) {
  .home-news__date {
    font-size: 12px;
    padding: 5px 10px;
    margin: 10px;
  }
}

.home-news__item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .home-news__item img {
    height: 200px;
    margin-bottom: 15px;
  }
}

.home-news__item h3 {
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .home-news__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.home-news__description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #5c5c65;
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .home-news__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.home-news__more {
  font-weight: 500;
}
@media (max-width: 767px) {
  .home-news__more {
    font-size: 14px;
  }
}

.home-news__more:not(:hover) {
  color: #000;
}

.home-news__more svg {
  vertical-align: middle;
  margin-left: 7px;
}
/*** HOME NEWS ***/

/*** HOME BRANDS ***/
.home-brands {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .home-brands {
    margin-bottom: 80px;
  }
}

.home-brands__slider:not(.slick-initialized) > *:nth-child(n + 8) {
  display: none;
}

.home-brands__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-brands__slider .slick-prev {
  margin-left: -50px;
}

.home-brands__slider .slick-next {
  margin-right: -50px;
}
@media (max-width: 1320px) {
  .home-brands__slider .slick-prev,
  .home-brands__slider .slick-next {
    margin: 0;
  }
}

.home-brands__item {
  padding: 10px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.home-brands__item a {
  display: block;
  overflow: hidden;
  text-align: center;
}

.home-brands__item:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.home-brands__item a:hover {
  -webkit-box-shadow: 0 0 10px #949494;
  box-shadow: 0 0 10px #949494;
}

.home-brands .slick-dots {
  margin-bottom: -30px;
}

.home-brands .slick-dots button {
  background-color: #e9e9e9;
}
/*** HOME BRANDS ***/

/*** MAIN ***/
.filter-mobile {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  border: 1px solid #e9e9e9;
}

.filter-mobile__filter {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
}

.filter-mobile__filter svg {
  margin-left: 10px;
}

.filter-mobile__filter:not(.open) svg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.filter-mobile__sort,
.filter-mobile__count {
  -ms-flex-preferred-size: 40px;
  flex-basis: 40px;
  max-width: 40px;
  height: 100%;
  border-left: 1px solid #e9e9e9;
}
@media (min-width: 768px) {
  .filter-mobile {
    display: none !important;
  }
}
/*** MAIN ***/

/*** PAGE ***/
.page__description {
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .page__description {
    font-size: 18px;
  }
}
/*** PAGE ***/

/*** TABS ***/
.tabs-wrapper {
  margin-top: 60px;
}

.tabs {
  margin-top: -1px;
  border: 1px solid #e9e9e9;
}

.tabs__title {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.5px;
  padding: 35px 30px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tabs__title {
    padding: 20px;
  }
}

.tabs__title::before,
.tabs__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 2px;
  margin-right: 30px;
  background-color: #986f27;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.tabs__title:hover {
  background-color: #fafafa;
}

.tabs__title:not(.open)::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.tabs__item {
  display: none;
  letter-spacing: 0.5px;
  margin: 10px 30px 35px;
}
@media (max-width: 767px) {
  .tabs__item {
    margin: 10px 20px 30px;
  }
}
/*** TABS ***/

/*** CONTACTS ***/
@media (min-width: 768px) {
  .contacts__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}

.contacts__right {
  padding: 40px 35px;
  background-color: #f9f9f9;
}
@media (max-width: 575px) {
  .contacts__right {
    padding: 40px 15px;
  }
}

.form-contacts input:not(:focus),
.form-contacts textarea:not(:focus) {
  border: 1px solid transparent;
}

.contacts__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .contacts__buttons {
    display: block;
    text-align: center;
  }
}

.contacts__policy {
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media (max-width: 991px) {
  .contacts__policy {
    margin-top: 15px;
  }
}

.contacts__social {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contacts__social {
    margin: 30px 0;
  }
}

.contacts__social a:not(:hover) {
  color: #986f27;
}

.contacts__social a:not(:last-child) {
  margin-right: 10px;
}
/*** CONTACTS ***/

/*** HOME-SECTIONS / CATALOG SECTIONS ***/
@media (min-width: 768px) {
  .home-sections__grid,
  .catalog-sections__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr)
      20px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 290px) and (max-width: 767px) {
  .home-sections__grid,
  .catalog-sections__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.home-sections__item,
.catalog-sections__item {
  overflow: hidden;
  padding: 20px 20px 0;
  background-color: #f9f9f9;
}
@media (max-width: 379px) {
  .home-sections__item,
  .catalog-sections__item {
    display: block;
  }

  .home-sections__item:not(:last-of-type),
  .catalog-sections__item:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.catalog-sections__item {
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.catalog-sections__item.show {
  opacity: 1;
}

.home-sections__item img,
.catalog-sections__item img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.home-sections__item:hover img,
.catalog-sections__item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.home-sections__item h4,
.catalog-sections__item h4 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 992px) {
  .home-sections__item h4,
  .catalog-sections__item h4 {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) {
  .home-sections__item h4,
  .catalog-sections__item h4 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .home-sections__item h4,
  .catalog-sections__item h4 {
    font-size: 14px;
  }
}

.home-sections__item svg,
.catalog-sections__item svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.home-sections__item:hover h4,
.home-sections__item:hover svg,
.catalog-sections__item:hover h4,
.catalog-sections__item:hover svg {
  color: #986f27;
}
/*** HOME-SECTIONS / CATALOG SECTIONS ***/

/*** CATALOG FILTER ***/
.form-filter {
  padding: 30px 0;
  border: 1px solid #e9e9e9;
}
@media (max-width: 767px) {
  .form-filter {
    border-top: none;
  }
}

.filter__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 0 20px;
}

.filter__close:hover {
  color: #949494;
}

.filter__close svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.filter__close.open svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter__item {
  display: none;
  position: relative;
}

.filter__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 25px;
}

.filter__price input[type="tel"] {
  height: 40px;
  border-radius: 0;
  margin: 0;
}

.filter__price input[type="tel"]:not(:focus) {
  border-color: #e9e9e9;
}

.filter__slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10%;
}

.filter__slider input[type="range"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  pointer-events: none;
  background-color: #cbcbcb;
}

.filter__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #986f27;
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.filter__slider input[type="range"]::-webkit-slider-thumb:hover,
.filter__slider input[type="range"]::-webkit-slider-thumb:active {
  -webkit-box-shadow: 0 0 0 8px rgba(152, 111, 39, 0.2);
  box-shadow: 0 0 0 8px rgba(152, 111, 39, 0.2);
}

.filter__slider input[type="range"]::-moz-range-thumb {
  -moz-appearance: none !important;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  background-color: #986f27;
  cursor: pointer;
  pointer-events: all;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.filter__slider input[type="range"]::-moz-range-thumb:hover,
.filter__slider input[type="range"]::-moz-range-thumb:active {
  box-shadow: 0 0 0 8px rgba(152, 111, 39, 0.2);
}

.filter__sliderinput[type="range"]::-ms-thumb {
  appearance: none !important;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  background-color: #986f27;
  cursor: pointer;
  pointer-events: all;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.filter__slider input[type="range"]::-ms-thumb:hover,
.filter__slider input[type="range"]::-ms-thumb:active {
  box-shadow: 0 0 0 8px rgba(152, 111, 39, 0.2);
}

.filter__item-checkbox,
.filter__item-radio {
  max-height: 320px;
  overflow: hidden auto;
  scrollbar-width: thin;
  margin-bottom: 20px;
}

.filter__item-checkbox::-webkit-scrollbar,
.filter__item-radio::-webkit-scrollbar {
  width: 8px;
}

.filter__item-checkbox::-webkit-scrollbar-track-piece,
.filter__item-radio::-webkit-scrollbar-track-piece {
  background-color: #f0f0f0;
}

.filter__item-checkbox::-webkit-scrollbar-thumb,
.filter__item-radio::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
}

.filter__item-checkbox::-webkit-scrollbar-thumb:active,
.filter__item-radio::-webkit-scrollbar-thumb:active {
  background-color: #606060;
}

.filter__item-checkbox::-webkit-scrollbar-thumb:hover,
.filter__item-radio::-webkit-scrollbar-thumb:hover {
  background-color: #a6a6a6 !important;
}

.filter__item-search {
  padding: 0 20px;
}

.filter__item-search input[type="text"] {
  height: 40px;
}

.filter__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  letter-spacing: 0.5px;
  padding: 6px 20px;
}

.filter__item label:last-of-type {
  margin-bottom: 25px;
}

.filter__item label:hover {
  background-color: #f1f1f1;
}

#filter__slider-min {
  background: none;
  z-index: 1;
}

.filter__item input[type="checkbox"],
.filter__item input[type="radio"] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #e9e9e9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

.filter__item label:hover input[type="checkbox"],
.filter__item label:hover input[type="radio"] {
  border-color: #949494;
}

.filter__item label:active input[type="checkbox"],
.filter__item label:active input[type="radio"] {
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}

.filter__item input[type="checkbox"]:checked,
.filter__item input[type="radio"]:checked {
  background-image: -o-linear-gradient(right, #986f27 100%, transparent 0);
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(100%, #986f27),
    color-stop(0, transparent)
  );
  background-image: linear-gradient(to left, #986f27 100%, transparent 0);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  background-position: center;
}

.form-filter .btn {
  min-width: calc(100% - 40px);
  font-weight: 600;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px 20px 0;
}

.form-filter button[type="submit"] .spinner {
  padding: 0;
}

.filter__reset {
  display: block;
  padding: 10px 0;
  text-align: center;
  color: #949494;
}

.filter__reset:hover {
  color: #000;
}

@media (min-width: 768px) {
  .form-filter__btn-apply {
    position: absolute;
    left: 100%;
    line-height: 38px;
    text-align: center;
    padding: 0 32px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    z-index: 10;
  }

  .form-filter__btn-apply::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-right: 14px solid #000;
    border-bottom: 12px solid transparent;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  @media (hover: hover) {
    .form-filter__btn-apply:hover {
      color: #000;
      background-color: #fff;
    }
  }

  .form-filter__btn-apply:active {
    -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
    box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
    -webkit-transition: top 0.2s;
    -o-transition: top 0.2s;
    transition: top 0.2s;
  }

  .form-filter__btn-apply .spinner {
    padding: 7px !important;
  }

  .form-filter__apply-mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .form-filter__btn-apply {
    display: none !important;
  }

  .form-filter__apply-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -85px;
    height: 85px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 20;
  }

  .form-filter__apply-mobile.open {
    bottom: 50px;
  }

  .form-filter__btn-apply--mobile {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
  }
}
/*** CATALOG FILTER ***/

/*** CATALOG SECTION ***/
.search-section {
  margin-top: 80px;
}

.catalog-section__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .catalog-section__sort {
    width: calc(100% - 260px);
    padding-left: 30px;
    margin-left: auto;
  }

  .js__section-sort,
  .js__section-count {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .catalog-section__sort {
    font-size: 1.4vw;
  }
}
@media (max-width: 767px) {
  .catalog-section__sort {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }

  .catalog-section__sort > div {
    display: none;
    margin: 10px 0;
  }
}

.catalog-section__sort-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.catalog-section__sort-item span {
  color: #939393;
}

.catalog-section__sort-item a {
  color: #000;
}

.catalog-section__sort-item a:hover {
  color: #986f27;
}

@media (min-width: 768px) {
  .catalog-section__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .catalog-section__filter {
    display: block !important;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 260px;
    flex-basis: 260px;
    max-width: 260px;
    margin-top: -60px;
  }

  .catalog-section__product {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .catalog-section__wrapper {
    margin-bottom: 30px;
  }

  .catalog-section__product {
    margin-top: 20px;
  }

  .catalog-section__filter {
    display: none;
  }
  .catalog-section__filter
    .btn.btn-primary:not(.form-filter__btn-apply--mobile) {
    display: none;
  }
}

.catalog-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [5];
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (min-width: 992px) and (max-width: 1199px) {
  .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: -1px 0 0 -1px;
    border-color: #e9e9e9;
  }
}
@media (max-width: 575px) {
  .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 420px) {
  .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.catalog-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid transparent;
  background-color: #fff;
}
@media (max-width: 767px) {
  .catalog-section__item {
    margin: -1px 0 0 -1px;
    border-color: #e9e9e9;
  }
}

@media (min-width: 768px) {
  .catalog-section__item:hover {
    border-color: #e9e9e9;
  }
}

.catalog-section__item > a {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 10px 0 10px;
}

.catalog-section__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
  object-fit: contain;
}

.catalog-section__item h4 {
  font-size: 14px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .catalog-section__item h4 {
    font-size: 12px;
  }
}

.catalog-section__item:not(:hover) h4 {
  color: #000;
}

.catalog-section__characteristics {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5c5c65;
  font-size: 10px;
  letter-spacing: 0.1px;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .catalog-section__characteristics {
    font-size: 8px;
  }
}

.catalog-section__characteristics li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 4px;
  -moz-column-gap: 4px;
  column-gap: 4px;
}

.catalog_section_tags {
  display: flex;
  padding: 0 10px;
  margin-bottom: 10px;
  gap: 2px;
  flex-wrap: wrap;
}

.catalog-section_tags_item {
  width: auto;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 4px;
  font-weight: 500;
  border-radius: 2px;
  color: #000;
  font-size: 9px;
  letter-spacing: 0.5px;
  cursor: help;
}

.catalog_element_tags {
  margin-bottom: 15px;
  display: flex;
}

.catalog_element_tag_item {
  width: auto;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  padding: 3px 10px;
  font-weight: 500;
  margin-right: 5px;
  border-radius: 5px;
  color: #000;
  cursor: help;
}

.catalog-section__characteristics span {
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #000;
}

.catalog-section__buttons {
  position: relative;
}

.catalog-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 4px;
  -moz-column-gap: 4px;
  column-gap: 4px;
  padding: 0 10px;
  margin-bottom: 25px;
}

.catalog-section__price {
  white-space: nowrap;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
}

.old {
  font-size: 12px;
  color: gray;
  text-decoration: line-through;
  padding-left: 12px;
}

.catalog-section__quantity {
  max-width: 80px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e9e9e9;
}

.catalog-section__quantity button {
  min-width: 23px;
  height: 100%;
  padding: 0 5px;
  font-size: 23px;
}

.catalog-section__quantity button:hover {
  background-color: #f1f1f1;
}

.catalog-section__quantity button:active {
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}

.catalog-section__quantity input[type="number"] {
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.catalog-section__quantity input[type="number"]:focus {
  -webkit-box-shadow: inset 1px 1px #cbcbcb, inset -1px -1px #cbcbcb;
  box-shadow: inset 1px 1px #cbcbcb, inset -1px -1px #cbcbcb;
}

.catalog-section__btn-cart {
  width: calc(100% + 2px);
  height: 50px;
  color: #c7ad80;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #000;
  background-color: #000;
  -webkit-transform: translateX(-1px);
  -ms-transform: translateX(-1px);
  transform: translateX(-1px);
}
@media (min-width: 768px) {
  .catalog-section__btn-cart {
    position: absolute;
    z-index: 2;
  }

  .catalog-section__item:not(:hover) .catalog-section__btn-cart {
    display: none;
  }
}
@media (max-width: 767px) {
  .catalog-section__btn-cart {
    width: 100%;
  }
}

.catalog-section__btn-cart:hover {
  color: #000;
  background-color: #fff;
}

.catalog-section__btn-cart:active {
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}

.catalog-section__btn-cart[disabled] {
  color: #000;
  border-color: #949494;
  background-color: #949494;
}

.catalog-section__outstock {
  height: 40px;
  line-height: 40px;
  color: #5c5c65;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .catalog-section__outstock {
    text-align: center;
    margin-bottom: 6px;
  }
}

.catalog-section__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 60px;
}

.catalog-section__description,
.catalog-sections__description {
  letter-spacing: 0.5px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .catalog-section__description,
  .catalog-sections__description {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .catalog-section__description,
  .catalog-sections__description {
    margin-top: 40px;
  }
}

.catalog-section__description ul,
.catalog-sections__description ul {
  font-weight: 500;
  margin: 0;
}

.search-section .catalog-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [6];
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .search-section .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [5];
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .search-section .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .search-section .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 419px) {
  .search-section .catalog-section__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/*** CATALOG SECTION ***/

/*** CATALOG ELEMENT ***/
.catalog-element {
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .catalog-element__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
  }

  .catalog-element__left,
  .catalog-element__right {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .catalog-element__wrapper {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

.catalog-element__left {
  position: relative;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 575px) {
  .catalog-element__left {
    margin-bottom: 20px;
  }

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

.catalog-element__label {
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 576px) {
  .catalog-element__label {
    margin: 40px 20px;
  }
}

.catalog-element__hit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50%;
  background-color: #986f27;
}
@media (max-width: 575px) {
  .catalog-element__hit {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
}

.catalog-element__right h1,
.catalog-element__h1-mobile {
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .catalog-element__right h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .catalog-element__h1-mobile {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .catalog-element__right h1 {
    display: none !important;
  }

  .catalog-element__h1-mobile {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.catalog-element__characteristics {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #5c5c65;
  letter-spacing: 0.5px;
}

.catalog-element__characteristics li:not(:last-child) {
  margin-bottom: 15px;
}

.catalog-element__characteristics:not(.open)
  li:nth-child(n + 8):not(:last-child),
.catalog-element__characteristics li:last-child:not(:nth-child(n + 9)) {
  display: none;
}

.catalog-element__characteristics span {
  color: #000;
}

.catalog-element__characteristics-show:hover {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

.catalog-element__characteristics-show svg {
  margin-left: 7px;
}

.catalog-element__characteristics-show.open svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .catalog-element__characteristics li {
    display: flex;
    justify-content: space-between;
  }
}
.catalog-element__outofstock {
  color: #5c5c65;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-top: 60px;
}

.catalog-element__price {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 1px;
  margin: 25px 0;
}

.old_element {
  font-size: 12px;
  color: gray;
  text-decoration: line-through;
  margin-bottom: -30px;
}

.catalog-element__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .catalog-element__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media (max-width: 575px) {
  .catalog-element__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 15px;
  }
}

.catalog-element__quantity {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  border: 1px solid #e4e4e4;
  max-width: 240px;
}
@media (min-width: 576px) {
  .catalog-element__quantity {
    max-width: 220px;
  }
}
@media (max-width: 575px) {
  .catalog-element__quantity {
    height: 50px;
  }
}

.catalog-element__quantity button {
  min-width: 60px;
  height: 100%;
  color: #986f27;
  font-size: 29px;
}

.catalog-element__quantity-minus {
  border-right: 1px solid #e4e4e4;
}

.catalog-element__quantity-plus {
  border-left: 1px solid #e4e4e4;
}

.catalog-element__quantity button:hover {
  background-color: #f1f1f1;
}

.catalog-element__quantity button:active {
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}

.catalog-element__quantity input[type="number"] {
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.catalog-element__quantity input[type="number"]:focus {
  -webkit-box-shadow: inset 1px 1px #cbcbcb, inset -1px -1px #cbcbcb;
  box-shadow: inset 1px 1px #cbcbcb, inset -1px -1px #cbcbcb;
}

.catalog-element__btn-cart {
  position: relative;
  max-width: 200px;
  height: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.catalog-element__btn-cart[disabled] {
  color: #000;
  border-color: #949494;
  background-color: #949494;
}

@media (min-width: 768px) {
  .catalog-element__description {
    font-size: 18px;
  }

  .catalog-element__feedback {
    font-size: 18px;
  }
}

.catalog-element__tabs {
  list-style: none;
  margin: 60px 0 0 0;
  padding: 0;
  display: flex;
  border-bottom: 1px solid #e9e9e9;
  font-size: 17px;
  letter-spacing: 0.5px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: space-around;
}

.catalog-element__tabs_item {
  letter-spacing: 0.5px;
}

.catalog-element__tabs_item .responsive_store {
  margin: 0;
  padding: 0;
}

.catalog-element__tabs_item .responsive_store li {
  font-size: 14px;
}

#catalog-element__description {
  padding: 10px;
}

#catalog-element__feedback {
  padding: 10px;
}

#catalog-element__feedback p {
  text-align: justify;
  letter-spacing: normal;
}

.catalog-element__tabs li {
  margin: 0 20px 10px 15px;
  cursor: pointer;
}

.catalog-element__tabs li.active {
  text-decoration: underline;
}

.catalog-element__tabs li:hover {
  color: #986f27;
}

.catalog-element__tabs li:active {
  color: #986f27;
}

@media (max-width: 575px) {
  .catalog-element__tabs {
    font-size: 14px;
    letter-spacing: 0.1px;
  }
  .catalog-element__tabs li {
    margin: 0 3px 10px 3px;
  }
}
/*** CATALOG ELEMENT ***/

/*** CART ***/
.cart__items {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cart__items {
    margin: 0;
  }

  .cart__items > div:first-child {
    margin-top: 51px;
  }
}

.cart__item-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  color: #5c5c65;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .cart__item-titles {
    display: none !important;
  }
}

.cart__item-title-1 {
  -ms-flex-preferred-size: 35px;
  flex-basis: 35px;
}

.cart__item-title-2 {
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
}

.cart__item-title-3 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.cart__item-title-4 {
  -ms-flex-preferred-size: 520px;
  flex-basis: 520px;
}

.cart__item-title-5 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 60px;
  flex-basis: 60px;
}

.cart__item-title-6 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 90px;
  flex-basis: 90px;
}

.cart__item-title-7 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 88px;
  flex-basis: 88px;
}

@media (min-width: 768px) {
  .cart__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (max-width: 767px) {
  .cart__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 10px 10px;
    border-bottom: 1px solid #e9e9e9;
    font-size: 10px;
  }
}

.cart__item-n {
  -ms-flex-preferred-size: 35px;
  flex-basis: 35px;
  max-width: 35px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .cart__item-n {
    -ms-flex-preferred-size: 10px;
    flex-basis: 10px;
    max-width: 10px;
  }
}

.cart__item img {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cart__item img {
    max-width: 35px;
    max-height: 35px;
  }
}

.cart__item a {
  -ms-flex-preferred-size: 520px;
  flex-basis: 520px;
  max-width: 520px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .cart__item a {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 15px;
  }
}

.cart__item a:not(:hover) {
  color: #000;
}

.cart__item-r {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  /* column-gap: 20px; */
  flex-wrap: wrap;
}

.cart__price {
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media (min-width: 576px) {
  .cart__price {
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    min-width: 60px;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .cart__price--empty {
    font-size: 10px;
  }
}
.old_cart {
  font-size: 12px;
  color: gray;
  text-decoration: line-through;
}

.cart__quantity {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 90px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e9e9e9;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cart__quantity {
    max-width: 80px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .cart__quantity {
    max-width: 65px;
  }
}

.cart__quantity button {
  min-width: 23px;
  height: 100%;
  padding: 0 5px;
  font-size: 23px;
}
@media (max-width: 767px) {
  .cart__quantity button {
    font-size: 18px;
  }
}

.cart__quantity button:hover {
  background-color: #f1f1f1;
}

.cart__quantity button:active {
  -webkit-box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
}

.cart__quantity input[type="number"] {
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.cart__quantity input[type="number"]:focus {
  -webkit-box-shadow: inset 1px 1px #cbcbcb, inset -1px -1px #cbcbcb;
  box-shadow: inset 1px 1px #cbcbcb, inset -1px -1px #cbcbcb;
}

.cart__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-weight: 500;
}

.cart__remove:hover {
  color: #949494;
}

@media (min-width: 767px) {
  .cart__totals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
}
@media (max-width: 767px) {
  .cart__totals {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

.cart__total-title {
  color: #5c5c65;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.cart__total-count,
.cart__total-price {
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (min-width: 767px) {
  .cart__totals .btn {
    margin-left: 45px;
  }
}

@media (max-width: 767px) {
  .cart__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-direction: row;
    align-items: center;
  }

  .cart__total-title {
    color: #5c5c65;
    letter-spacing: 0.5px;
    margin-bottom: 0;
  }

  .cart__total-count,
  .cart__total-price {
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 5px;
  }

  .cart__totals .btn {
    width: 100%;
  }
}

.cart__addon-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.cart__addon-block-items {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.cart__addon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #d7d4d4;
  padding: 10px;
  height: 90px;
}

.cart__addon_title {
  display: flex;
  flex-direction: column;
  flex-basis: 70%;
}

.cart__addon-name {
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  font-weight: bold;
}

.cart__addon-price {
  flex-basis: 20%;
  text-align: end;
  font-weight: bold;
}

.cart__addon-block-items .btn-primary {
  height: 30px;
  min-width: 100px;
  flex-basis: 100px;
}

.cart__addon-image {
  min-width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .cart__addon-block {
    margin: 30px 0;
    padding: 10px;
  }

  .cart__addon-block-items {
    flex-direction: column;
  }

  .cart__addon-image {
    width: 35px;
    height: 35px;
  }
}
/*** CART ***/

/*** ORDER ***/
@media (min-width: 768px) {
  .order__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
  }

  .order__forms {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
  }

  .order__totals {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
    height: 100%;
  }
}

.order__form-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .order__form-title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.order__form-title button {
  font-weight: 500;
}

.order__form-title button:not(:hover) {
  color: #986f27;
  text-decoration: underline;
}

.order__forms textarea {
  resize: none;
}

@media (min-width: 768px) {
  .order__forms {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 20px;
  }

  .order__form-title,
  .order__forms textarea,
  .order__forms .result {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .order__forms .result {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
  }

  .order__forms input,
  .order__forms textarea {
    margin: 0;
  }
}

.order__forms .btn {
  max-width: 280px;
  width: 100%;
}
@media (max-width: 767px) {
  .order__forms .btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .order__forms .btn {
    max-width: none;
  }
}

.order__totals {
  padding: 40px 30px 20px;
  background-color: #fafafa;
}
@media (min-width: 768px) and (max-width: 991px) {
  .order__totals {
    padding: 40px 15px 20px;
  }
}
@media (max-width: 767px) {
  .order__totals {
    padding: 30px 20px 10px;
    margin-top: 40px;
  }
}

.order__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .order__total {
    margin-bottom: 30px;
  }
}

.order__total-title {
  letter-spacing: 0.5px;
}

.order__total-count {
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.order__total-total {
  white-space: nowrap;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.order__totals .btn {
  width: 100%;
  margin: 10px 0 30px;
}
@media (max-width: 767px) {
  .order__totals .btn {
    margin: 0 0 20px;
  }
}

.order__store {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  max-height: 350px;
  overflow: auto;
  border: 1px solid #e9e9e9;
}

.order__store::-webkit-scrollbar {
  width: 5px;
}

.order__store::-webkit-scrollbar-track {
  background: #e9e9e9;
}

.order__store::-webkit-scrollbar-thumb {
  background: #986f27;
}

.order__store label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 15px;
  cursor: pointer;
  border-bottom: 1px solid #e9e9e9;
  border-left: 2px solid #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.order__store label:hover {
  background-color: #fafafa;
  border-left: 2px solid #986f27;
}

.order__store label:active {
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.17);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.17);
  -webkit-transition: top 0.2s;
  -o-transition: top 0.2s;
  transition: top 0.2s;
  border-left: 2px solid #986f27;
}

.order__store label:last-child {
  border: none;
  border-left: 2px solid #fff;
}

.order__store label:last-child:hover {
  border-left: 2px solid #986f27;
}

.order__store input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}

.order__store input[type="radio"]:checked + label {
  background-color: #fafafa;
  border-left: 2px solid #986f27;
}

.order__store-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .order__store-title {
    font-size: 16px;
  }
}

.order__store-address {
  font-size: 14px;
  margin-bottom: 5px;
  color: #949494;
}
@media (max-width: 767px) {
  .order__store-address {
    font-size: 12px;
  }
  .address-input {
    margin-top: 20px;
  }
}

.order__store-schedule {
  color: #949494;
}

.order__store-notcity {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.order__thk {
  text-align: center;
  padding: 70px 0 100px;
}

.order__thk h1 {
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .order__thk h1 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
}

.order__thk h1 span {
  color: #986f27;
}

.order__thk p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .order__thk p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.order__thk .btn {
  min-width: 280px;
}
/*** ORDER ***/

/*** ACCOUNT ***/
@media (min-width: 576px) {
  .account__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .account__wrapper > div {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .account__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }
}

.account__wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 35px 15px 35px 70px;
  border: 1px solid #e9e9e9;
}
@media (max-width: 767px) {
  .account__wrapper > div {
    padding: 30px 15px 30px 60px;
  }
}
@media (max-width: 575px) {
  .account__wrapper > div {
    padding: 30px 20px;
  }
}

.account h3 {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .account h3 {
    font-size: 16px;
  }
}

@media (min-width: 576px) {
  .account h3 svg {
    position: absolute;
    margin-top: 2px;
    margin-left: -40px;
  }
}
@media (max-width: 575px) {
  .account h3 svg {
    margin-right: 20px;
  }
}

.account p {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.account a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .account a {
    font-size: 12px;
  }
}

.account a:not(:hover, .account__logout) {
  color: #000;
}

.account__logout {
  color: #949494;
  margin-top: 15px;
}

.account__logout:hover {
  color: #000;
}

.account a svg {
  margin-left: 7px;
}

@media (min-width: 768px) {
  .form-account {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 20px;
  }

  .form-account-title,
  .form-account .result {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .form-account .result {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .form-account input {
    margin: 0;
  }
}

.form-account-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .form-account-title {
    margin-bottom: 30px;
  }
}

.account input[type="email"],
.account input[type="tel"],
.account input[type="text"]:not(input[disabled]) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='%23986f27'%3E%3Cpath d='M9.752 0c-.576 0-1.151.219-1.589.658-2.514 2.513-5.027 5.027-7.541 7.541l3.181 3.18c2.514-2.513 5.028-5.027 7.541-7.541.877-.877.874-2.304-.002-3.18-.438-.438-1.014-.658-1.589-.658zm-9.521 8.869l-.23 2.725c-.019.231.174.424.405.405l2.724-.231-2.899-2.898z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 30px;
}

.account .btn {
  max-width: 280px;
  width: 100%;
}
@media (max-width: 767px) {
  .account .btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .account .btn {
    max-width: none;
  }
}
/*** ACCOUNT ***/

/*** MYORDERS ***/
.myorders__menu {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
@media (min-width: 768px) {
  .myorders .select {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .myorders__menu {
    display: none !important;
  }
}

.myorders__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 70px;
  white-space: nowrap;
  line-height: 0;
  color: #5c5c65;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid #e9e9e9;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.myorders__menu a:hover,
.myorders__menu a.active {
  color: #986f27;
  border: 1px solid #986f27;
}

.myorders__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #5c5c65;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 575px) {
  .myorders__item-title {
    display: none !important;
  }
}

.myorders__item-title > div {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.myorders__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  font-weight: 500;
  font-size: 18px;
  padding: 35px 0;
  cursor: pointer;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 767px) {
  .myorders__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 15px 0;
    font-size: 14px;
  }
}

.myorders__item:hover {
  background-color: #fafafa;
}

@media (min-width: 576px) {
  .myorders__item > div {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}

.myorders__id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .myorders__id {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .myorders__id {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .myorders__id svg {
    display: none !important;
  }

  .myorders__date {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .myorders__date,
  .myorders__price {
    text-align: right;
  }

  .myorders__price {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.myorders__item.open .myorders__id {
  color: #986f27;
}

.myorders__item.open .myorders__id svg,
.myorders__toggle.open svg {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.myorders__status {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 24px;
}
@media (max-width: 575px) {
  .myorders__status {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
  }
}

.myorders__status::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .myorders__status::before {
    width: 10px;
    height: 10px;
  }
}

.myorders__status--n::before,
.myorders__status--p::before {
  background-color: #ffd600;
}

.myorders__status--w::before {
  background-color: #ff8a00;
}

.myorders__status--d::before,
.myorders__status--f::before {
  background-color: #00b500;
}

.myorders__status--c::before {
  background-color: #f00;
}

.myorders__baskets {
  padding-top: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.myorders__basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .myorders__basket {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
  }
}

.myorders__basket-num {
  -ms-flex-preferred-size: 8%;
  flex-basis: 8%;
  max-width: 8%;
}
.myorders__basket-name {
  -ms-flex-preferred-size: 42%;
  flex-basis: 42%;
  max-width: 42%;
  padding-right: 10px;
}
@media (max-width: 575px) {
  .myorders__basket-name {
    -ms-flex-preferred-size: 92%;
    flex-basis: 92%;
    max-width: 92%;
    padding-right: 0;
  }
}

.myorders__basket-prices {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .myorders__basket-prices {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-left: 8%;
  }
}

.myorders__basket-prices > div {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.myorders__basket-quantity {
  text-align: center;
}

.myorders__basket-sum {
  text-align: right;
}

@media (min-width: 576px) {
  .myorders__toggle {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .myorders__toggle {
    position: absolute;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    color: #5c5c65;
    margin-bottom: 15px;
  }
}

.myorders__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 60px;
}
/*** MYORDERS ***/

/*** NEWS ***/
@media (min-width: 768px) {
  .news-list__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 20px;
  }
}

.news-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .news-list__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.news-list__date {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 15px;
  margin: 20px;
  color: #fff;
  background-color: #986f27;
}
@media (max-width: 767px) {
  .news-list__date {
    font-size: 12px;
    padding: 5px 10px;
    margin: 10px;
  }
}

.news-list__item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .news-list__item img {
    height: 200px;
    margin-bottom: 15px;
  }
}

.news-list__item h3 {
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .news-list__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.news-list__description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #5c5c65;
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .news-list__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.news-list__more {
  font-weight: 500;
}
@media (max-width: 767px) {
  .news-list__more {
    font-size: 14px;
  }
}

.news-list__more:not(:hover) {
  color: #000;
}

.news-list__more svg {
  vertical-align: middle;
  margin-left: 7px;
}

.news-list__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 60px;
}
/*** NEWS ***/

/*** NEWS DETAIL ***/
.news-detail__top {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .news-detail__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

.news-detail h1 {
  font-size: 32px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .news-detail h1 {
    font-size: 26px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 575px) {
  .news-detail h1 {
    margin-bottom: 20px;
  }
}

.news-detail__date {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 15px;
  color: #fff;
  background-color: #986f27;
}
@media (max-width: 767px) {
  .news-detail__date {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.news-detail__description {
  letter-spacing: 0.25px;
}
@media (min-width: 768px) {
  .news-detail__description {
    font-size: 18px;
  }
}
/*** NEWS DETAIL ***/

/*** H1 ***/
.page,
.contacts,
.home-sections,
.catalog-sections,
.catalog-section,
.search-section,
.cart,
.order,
.account,
.myorders,
.news-list,
.news-detail {
  margin-bottom: 80px;
}

.page h1,
.contacts h1,
.catalog-sections h1,
.catalog-section h1,
.search-section h1,
.cart h1,
.order h1,
.account h1,
.myorders h1,
.news-list h1 {
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .page,
  .contacts,
  .home-sections,
  .catalog-sections,
  .catalog-section,
  .search-section,
  .cart,
  .order,
  .account,
  .myorders,
  .news-list,
  .news-detail {
    margin-bottom: 80px;
  }

  .page h1,
  .contacts h1,
  .catalog-sections h1,
  .catalog-section h1,
  .search-section h1,
  .cart h1,
  .order h1,
  .account h1,
  .myorders h1,
  .news-list h1 {
    font-size: 26px;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
  }
}
/*** H1 ***/

.catalog-section__item .discont-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 4px 6px;
  background-color: #ee3939;
  border-radius: 2px;
}

footer .age_overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

footer .age_modal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  padding: 50px;
  border-radius: 5px;
  background-color: white;
}
footer .age_modal.no_age {
  max-width: 820px;
}
footer .age_modal .title {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1px;
}
footer .age_modal .description {
  text-align: center;
}
footer .age_modal .modal_btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .age_modal .modal_btns .btn {
  min-width: 120px;
}

footer .auth_telegram {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

footer .auth-telegram_modal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  overflow: hidden;
  padding: 50px;
  background-color: white;
  height: 100%;
  justify-content: center;
}

footer .auth-telegram_modal .title {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1px;
}

footer .auth-telegram_modal img {
  height: 20%;
}
footer .auth-telegram_modal .description {
  text-align: center;
}

.noscroll {
  overflow: hidden;
}

/* ÐšÐžÐÐ¢ÐÐšÐ¢Ð« */

.block_contact_info {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #e3e3e3;
}

.block_contact_info p {
  font-size: 16px;
  margin-bottom: 30px;
}

.block_contact_list {
  display: flex;
  justify-content: space-around;
  margin: -15px -25px 30px -25px;
}

.block_contact_list_head {
  margin-bottom: 15px;
}

.contact__item-body {
  display: flex;
  align-items: flex-start;
}

.contact__item-body,
.contact__item-body a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #000;
  font-weight: 500;
  font-size: 25px;
  line-height: 20px;
}

.contact__item-body a:hover {
  color: #949494;
}

.block_contact_list_item {
  display: flex;
  flex-direction: column;
  padding: 15px 50px;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .block_contact_info p {
    font-size: 12px;
  }

  .block_contact_list {
    flex-direction: column;
    align-items: center;
  }

  .block_contact_list_item {
    align-items: center;
  }

  .contact__item-body,
  .contact__item-body a {
    font-size: 20px;
  }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
  .block_contact_info p {
    font-size: 14px;
  }

  .block_contact_list_item {
    padding: 15px 15px;
  }

  .block_contact_list {
    justify-content: space-evenly;
  }

  .contact__item-body,
  .contact__item-body a {
    font-size: 20px;
  }

  .block_contact_list_head {
    font-size: 14px;
  }
}

/* ÐšÐžÐÐ¢ÐÐšÐ¢Ð« */

/* Ð¡ÐŸÐ˜Ð¡ÐžÐš Ð¡ÐšÐ›ÐÐ”ÐžÐ’*/
.stores {
  margin-bottom: 80px;
}
.store_container .responsive_store {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.store_row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.store_row:last-child {
  border-bottom: none;
}

.responsive_store li {
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}

.store_open {
  color: #30c700 !important;
}

.store_closed {
  color: #7d7d7d !important;
}

.store_condition {
  color: #c75e00 !important;
}

.responsive_store small {
  font-weight: 400;
  line-height: 1.2;
  font-size: 13px;
  color: #7d7d7d;
}

.responsive_store .col-1 {
  flex-basis: 30%;
}

.responsive_store .col-2 {
  flex-basis: 30%;
}

.responsive_store .col-3 {
  flex-basis: 20%;
}

@media screen and (max-width: 767px) {
  .responsive_store small {
    font-size: 12px;
  }

  .store_row {
    display: block;
    text-align: center;
  }

  .responsive_store .col-2 .store_row-title {
    display: none;
  }
}

/* ÐœÐžÐ‘Ð˜Ð›Ð¬ÐÐžÐ• ÐœÐ•ÐÐ® Ð‘Ð›ÐžÐš ÐÐ˜Ð–ÐÐ˜Ð¥ ÐšÐÐžÐŸÐžÐš */

.mobile_menu_bottom,
.mobile_menu_info,
.mob_menu_toogle,
.smart_menu,
.mobile_menu_basket {
  display: none;
}
@media (max-width: 767px) {
  .header__top,
  footer .container {
    display: none;
  }

  .search-form .mobile {
    display: block !important;
  }

  .mobile_menu_bottom {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #e9e9e9;
    z-index: 1027;
    list-style-type: none;
    padding: 0;
    margin: 0;
    justify-content: space-evenly;
    height: 65px;
  }

  .mobile_menu_button {
    position: relative;
  }

  .mobile_menu_item:hover {
    color: #949494;
    transition: none;
  }
  .mobile_menu_item:focus {
    color: #949494;
    transition: none;
  }

  .mobile_menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    padding-top: 10px;
  }

  .mobile_menu_item svg {
    width: 27px;
    height: 27px;
  }

  .mobile_menu_item span {
    font-size: 10px;
  }

  .mobile_basket_count {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 8px;
    right: 0px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    background-color: #000;
    width: 15px;
    height: 15px;
    align-items: center;
    padding-top: 3px;
  }

  .mobile_basket_count span {
    font-weight: 500;
    font-size: 10px !important;
    color: #fff;
    padding-bottom: 3px;
  }

  .mobile_menu_info {
    display: none;
    position: fixed;
    bottom: 65px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px -2px rgba(0, 0, 0, 0.15);
    z-index: 1020;
    list-style-type: none;
    margin: 0;
    max-height: 65%;
    overflow: hidden;
    flex-direction: column;
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
    transition: opacity 0.3s ease forwards;
  }

  .mobile_menu_info.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    animation: slideInFromBottom 0.3s ease forwards;
  }

  .mobile_menu_info_content {
    display: flex;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    align-items: center;
    padding: 0 0 10px 0;
  }

  .mobile_menu_info_bottom {
    display: flex;
    width: 100%;
    background-color: #fff;
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
    flex-direction: column;
    align-items: center;
  }

  .mobile_menu_info_bottom li {
    margin-bottom: 10px;
  }

  .mobile_menu_info_bottom a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
  }

  .mobile_menu_info_bottom a:focus,
  a:hover {
    color: #986f27;
  }

  .mobile_menu_info_bottom .active {
    text-decoration: underline;
  }

  .mobile_menu_info_support {
    display: flex;
    background-color: #fff;
    margin: 15px 0 15px 0;
    flex-direction: column;
    align-items: center;
  }

  .mobile_menu_info_support small {
    font-size: 12px;
    color: #949494;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .mobile_menu_info_support_phone {
    padding-top: 10px;
    white-space: nowrap;
    color: #000;
    font-weight: 600;
    font-size: 30px;
    line-height: 20px;
    text-decoration: none;
  }

  .mobile_menu_info_social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile_menu_info_social small {
    font-size: 12px;
    color: #949494;
  }

  .mobile_menu_info_social_item {
    display: flex;
    justify-content: space-around;
  }

  .mobile_menu_info_social_item a {
    padding: 10px 5px 10px 5px;
  }

  .mob_menu_toogle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 0;
    margin-top: 50px;
    border-bottom: 1px solid #e9e9e9;
    background-color: #202020;
    color: #fff;
  }

  .mobile-catalog-menu-button__icon {
    display: block;
    margin: 0 0 0 7px;
    font-size: 0;
    fill: #fff;
  }

  .smart_menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 400;
    position: relative;
    background: #fff;
    flex-direction: column;
    overflow-y: hidden;
    height: auto;
    max-height: 0;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    margin: 0;
    padding: 0;
  }

  .smart_menu.open {
    height: 100%;
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  }
  .smart_menu li {
    width: 100%;
    list-style-type: none;
  }

  .smart_menu span,
  .smart_menu a {
    padding: 5px 30px;
    width: 100%;
    text-align: left;
    justify-content: center;
    display: flex;
    align-items: center;
    color: black;
  }

  .mobile_menu_basket {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px -8px 5px -2px rgba(0, 0, 0, 0.15);
    z-index: 1020;
    padding-bottom: 65px;
    margin: 0;
    max-height: 65%;
    overflow: hidden;
    flex-direction: column;
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
  }

  .mobile_menu_basket.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    animation: slideInFromBottom 0.3s ease forwards;
  }

  .mobile_menu_basket_content {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 50px;
  }

  .mobile_menu_basket_title {
    width: 100%;
    font-size: 12px;
    margin: 0px;
    padding: 15px 10px;
    border-bottom: 1px solid #e9e9e9;
    background-color: #fff;
    z-index: 1030;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .mobile_menu_basket .btn {
    height: 50px;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 400;
    position: fixed;
    bottom: 66px;
    width: 100%;
  }

  .mobile_menu_basket .btn-primary {
    border: 1px solid #202020;
    background-color: #202020;
  }

  .basket_info {
    display: flex;
    position: fixed;
    bottom: 65px;
    left: 0;
    width: 100%;
    z-index: 1026;
    justify-content: space-around;
    align-items: center;
    height: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .basket_info p {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin: 0;
  }

  .basket_info.errorbas {
    background-color: #cd2a2a;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
  }

  .basket_info.add {
    background-color: #986f27;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
  }

  .basket_info.fade-out {
    animation: fadeOut 0.5s ease forwards;
  }

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

  @keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

.pulse {
  display: block;
  position: relative;
  text-align: center;
  padding: 3px;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-left: 5px;
  background: #00b500;
}

.pulse::after,
.pulse::before {
  content: "";
  position: absolute;
  left: -3px;
  border: 2px solid #00b500;
  opacity: 0;
  right: -3px;
  top: -3px;
  bottom: -3px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.likes {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.views_news {
  display: flex;
  justify-content: flex-end;
  height: 14px;
  line-height: 15px;
  color: #818c99;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}

.views__icon {
  display: flex;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: #99a2ad;
}
