.header-drop-menu__pages-item {
    margin-bottom: 20px;
}
.header-drop-menu__pages {
    max-height: 600px;
}body {
  background: var(--color-background) !important;
  font-family: var(--font-jost) !important;
}

a,
button {
  transition: all 0.2s ease;
}

a:hover {
  color: #855858;
}

a:active {
  color: #6f4a4a;
}

.button {
  background-color: var(--color-brown) !important;
  padding: 12px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:active {
  background-color: #6f4a4a;
}

.button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-brown);
  z-index: -2;
}

.button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #855858;
  transition: all 0.3s;
  z-index: -1;
}

.button:hover:before {
  width: 100%;
}

.button__icon {
  margin-left: 8px;
}

.headline {
  margin-bottom: 40px;
}

.headline-2 {
  font-weight: 400;
  font-size: 60px;
  line-height: 80px;
  text-transform: uppercase;
  color: #28282c;
  font-family: var(--font-tenor-sans);
  z-index: 10;
  position: relative;
}

.headline-3 {
  font-weight: 400;
  font-size: 44px;
  line-height: 80px;
  text-transform: uppercase;
  color: #28282c;
  font-family: var(--font-tenor-sans);
  z-index: 10;
}

.headline-4 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  text-transform: uppercase;
  color: #28282c;
  font-family: var(--font-tenor-sans);
}

.headline-5 {
  font-weight: 400;
  font-size: 49px;
  line-height: 71px;
  text-transform: uppercase;
  font-family: var(--font-tenor-sans);
  color: var(--color-black);
}

.headline-6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black);
}

.headline-7 {
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  text-transform: uppercase;
  font-family: var(--font-tenor-sans);
  color: var(--color-black);
}

/*header*/

.header {
  padding: 23px 0;
  background: #fff;
  transition: 2.5s;
  position: relative;
  z-index: 99;
  margin: 0 !important;

}

.header__fixed {
  position: sticky;
  z-index: 999;
  width: 100%;
  top: 0;
  opacity: 0;
  margin: 0 !important;
  animation: fixed-menu 0.5s forwards;
}

@keyframes fixed-menu {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.header__menu-button {
  line-height: 19px;
  cursor: pointer;
  padding: 2.25rem 2rem 2.25rem 2rem;
  margin: -2.25rem -2rem -2.25rem -2rem;
  width: fit-content;
}
@media (max-width:768px) {
  .header__menu-button {
    padding: 0;
    margin:  0;
    width: auto;
  }
}
.header__menu-button.active .header__menu-burger div:first-child,
.header__menu-button.active .header__menu-burger div:last-child {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}


.header__menu-button.active .header__menu-burger {
  height: 23px;
}

.header__menu-button .header__menu-burger {
  height: 11px;
  margin-right: 44px;
}

.header__menu-button .header__menu-burger div:nth-child(2) {
  height: 0;
  transition: 0.5s ease-in-out;
  opacity: 0;

}

.header__menu-button.active .header__menu-burger div:nth-child(2) {
  transition: 0.5s ease-in-out;
  opacity: 1;
  height: 2px;

}

.header__menu-button .header__menu-burger div:first-child {
  transform: rotateZ(45deg);
  transition: 0.5s ease-in-out;
}
.header__menu-button .header__menu-burger div:last-child {
  transform: rotate(135deg) translate(-6px, 6px);
  transition: 0.5s ease-in-out;
}

.header__menu-burger {
  width: 23px;
  position: relative;
}

.header__menu-burger div {
  height: 2px;
  background-color: #545454;
  width: inherit;
  position: absolute;
}

.header__menu-burger div:first-child {
  top: 0;
}
/* decode start */
.header__menu-burger div:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
/* decode end */


.header__menu-burger div:last-child {
  bottom: 0;
}

.header__menu-title {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #6f4a4a;
  margin-left: 7px;
  transition: 1s ease-in-out;
}

.header__menu-button.active .header__menu-title {
  color: #28282c;
  transition: 1s ease-in-out;
}

.header-drop-menu {
  overflow: auto;
  position: fixed;
  left: -100%;
  /* width: 100%; */
  background: #ffffff;
  box-shadow: 0 12px 17px rgba(0, 0, 0, 0.12);
  transition: 1s;
  top: 0;
  z-index: 10002;
  height: 100%;
  /* max-height: 518px; */
  padding: 143px 0 60px;
  border-top: 1px solid #dee3f2;
  border-bottom: 1px solid #dee3f2;
}

@media screen and (max-width: 991px) {
  .header-drop-menu {
    top: -100%;
    height: 518px;
    max-height: 518px;
    width: 100%;
    left: 0;
  }
  .header-drop-menu.active {
    top: 71px;
  }
}

.header-drop-menu.active {
  left: 0;
}

.header-drop-menu__nested {
  overflow: auto;
}

.header-drop-menu__nested.nested-top {
  z-index: 10001;
}
.header-drop-menu__nested.nested-bottom {
  z-index: 10000;
}
.header-drop-menu__nested {
  position: fixed;
  height: calc(100% - 83px);
  top: 83px;
  background: #fff;
  box-shadow: 0 12px 17px rgba(0, 0, 0, 0.12);
  padding: 66px 0;
  border-top: 1px solid #dee3f2;
  border-bottom: 1px solid #dee3f2;
}

.header-drop-menu__categories {
  grid-gap: 10px;
}

.header-drop-menu__col {
  width: 100%;
  flex-basis: 33%;
}

a.header-drop-menu__categories-title {
  font-family: var(--font-tenor-sans);
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 20px;
  display: block;
  white-space: nowrap;
}

/* a.header-drop-menu__categories-title.active::after {
  content: "\00A0\27F6";
} */

/* .header-drop-menu__categories-list {
  margin-left: 50px;
} */

.header-drop-menu__categories-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
}

.header-drop-menu__categories-item:last-child {
  margin-bottom: 0;
}

.header-drop-menu__categories-item.active a {
  color: #000;
}

a.header-drop-menu__categories-link {
  display: block;
  padding: 0 50px;
  color: #5b646b;
}

a.header-drop-menu__categories-link:hover, a.header-drop-menu__categories-link:active {
  color: #9c702d;
}

.header-drop-menu__pages {
  display: flex;
  flex-direction: column;
  grid-column-gap: 95px;
  max-height: 250px;
  flex-wrap: wrap;
  max-width: 200px;
  margin-top: 10px;
}

.header-drop-menu__pages-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 25px;
}

.header-drop-menu__pages-item:last-child {
  margin-bottom: 0;
}

a.header-drop-menu__pages-link {
  color: #2d373e;
}

.header__nav {
}

.header__nav-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  margin-right: 44px;
}

.header__nav-item:last-child {
  margin-right: 0;
}

.header__nav-link {
  color: #28282c;
  position: relative;
}

/*.header__nav-item:last-child .header__nav-link{*/
/*    color: var(--color-brown);*/
/*    font-weight: 700;*/
/*}*/

.header__nav-link.selected {
  color: var(--color-brown);
  font-weight: 500;
}

.header__nav-link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #855858;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.header__phone {
  color: #828080;
}

.header__personal {
  position: relative;
  z-index: 10;
  gap: 1em;
}

.header__language {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.header__language-link {
  color: #28282c;
}

.header__search {
  cursor: pointer;
  margin-right: auto;
}

.header__search .search-container {
  -moz-transition: ease-in 0.15s;
  -o-transition: ease-in 0.15s;
  -webkit-transition: ease-in 0.15s;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
  right: 0;
  top: 40px;
  transition: all 0.2s ease 0s;
}

.header__search .search-container.opened {
  max-height: 50px;
}

.header__search .search-container input[type="text"] {
  outline: none;
  background-color: inherit;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  border-right: 0;
}

.header__search .search-container input[type="text"]::placeholder {
  font-style: italic;
}

.header__search .search-container .search-icon {
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__search-form {
  display: grid;
  grid-template-columns: 18px minmax(100px, 170px) 0px;
  align-items: center;
}

.header__personal-block {
}

.header__cabinet {
  margin-right: 44px;
}

.header__favorites {
  margin-right: 44px;
  position: relative;
}

.header__favorites.header__navbar--link .header__basket-counter {
  top: 8px;
  right: 4px;
}
.header__navbar--link.header__favorites {
  margin-right: 0;
}

.header__basket {
  position: relative;
}
.header__basket-counter {
  position: absolute;
  top: -8px;
  right: -12px;
  user-select: none;
  background: #9d6e6e;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  height: 14px;
  font-weight: bold;
  width: 14px;
  line-height: 14px;
  text-align: center;
}
.header__navbar {
  background-color: rgba(255, 255, 255, 95%);
  z-index: 500;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.header__basket.header__navbar--link .header__basket-counter {
  top: 8px;
  right: 4px;
}
.header__navbar--link {
  padding: 1rem;
  display: block;
}


.catalog-brands .products-title {
  margin-top: 50px;
  margin-bottom: 50px;
}

.catalog-brands .bx-pagination {
  margin-bottom: 50px;
}

.catalog-brands .catalog-items {
  margin-bottom: 50px;
}

/*product card*/
.product {
  position: relative;
  display: block;
}
.catalog-items>div {
  opacity: 0;
}
.catalog-items.loaded>div {
  opacity: 1;
  animation: loaded .5s;
}
.catalog-items>div.js-loader {
  animation: none;
}
@keyframes loaded {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
div[data-entity=image-wrapper] {
  text-align: center;
  height: 400px;
  background-color: rgb(247 247 247);
}
@media (max-width:1440px) {
  div[data-entity=image-wrapper] {
    height: 300px;
  }
}
@media (max-width:768px) {
  div[data-entity=image-wrapper] {
    height: 220px;
  }
}
@media (max-width:480px) {
  div[data-entity=image-wrapper] {
    height: 180px;
  }
}
@media (max-width:320px) {
  div[data-entity=image-wrapper] {
    height: 110px;
  }
}
.product__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /*
  width: 100%;
  height: 379px !important;
  height: 100%; 
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  object-position: center center;
  */
}

.product__image-available {
  width: 100%;
  /*min-height: 460px;*/
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  object-position: center center;
}

.product__image-incoming .product__image {
  min-height: 680px;
  height: 680px !important;
}

.product__image-telegram {
  width: 100%;
  /*min-height: 379px;*/
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  object-position: center center;
}

.product__favorites {
	position: absolute;
	top: 31px;
	right: 2px;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	z-index: 200;
	cursor: pointer;
	display: inline-flex;
}

.product__favorites.active {
  background-image: url("../images/main/favorites-active.svg");
}

.product__sale-ring {
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  left: 20px;
  top: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  font-weight: bold;
  display: inline-block;
  clear: both;
  margin-bottom: 2px;
  background: #c92929;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  transition: all 250ms ease;
  position: absolute;
  z-index: 15;
}

.product__offer-block,
.product__offer-large-block {
  display: grid;
  grid-template-columns: auto 2fr;
  column-gap: 15px;
}

.product__link {
  color: #28282c;
}

a.product:hover {
  opacity: 0.9;
  color: #855858;
}

a.product:hover .product__link {
  color: #855858;
}

.product__price {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  /* color: var(--color-brown); */
}

.product__price span {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-right: 9px;
  vertical-align: bottom;
}

.product__old-price {
  text-decoration: line-through;
  color: #8d8e9a;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

/*large item card*/
.product__large-block {
  position: absolute;
  top: 46px;
  left: -90px;
}

a.product__large-link {
  color: var(--color-black);
}

.product__large-price {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  color: var(--color-brown);
}

.product__large-old-price {
  text-decoration: line-through;
  color: #8d8e9a;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.product__large-price span {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  margin-right: 9px;
  vertical-align: bottom;
}

/*breadcrumbs*/

.breadcrumbs {
  margin: 24px 0 32px 0;
}

.breadcrumbs.large-padding {
  margin: 40px 0;
}

.breadcrumbs__list {
}

.breadcrumbs__item {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #a5b0b7;
  display: inline;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "|";
  padding: 0 22px;
  color: #a5b0b7;
}

a.breadcrumbs__link {
  color: #a5b0b7;
}



/*footer*/
.footer {
  background: linear-gradient(
      0deg,
      rgba(35, 42, 48, 0.95),
      rgba(35, 42, 48, 0.95)
    ),
    #2d323e;
  color: var(--color-white);
}

.footer__border-right {
  border-right: 1px solid #515763;
}

.footer__border-bottom {
  border-bottom: 1px solid #515763;
}

/*footer line first*/
.footer__line-first {
  padding: 42px 0 40px 0;
}

/*footer line second*/
.footer__line-second {
}

.footer__contacts-title {
  font-family: var(--font-tenor-sans);
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  padding-top: 34px;
}

.footer__contacts-list {
  padding: 42px 0 36px 0;
}

.footer__contacts-item {
  margin-bottom: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}

.footer__contacts-item:last-child {
  margin-bottom: 0;
}

.footer__contacts-name {
  margin-bottom: 7px;
}

.footer__contacts-name a {
  color: var(--color-white);
}

a.footer__contacts-link {
  font-weight: 600;
  color: var(--color-white);
}

.footer__categories-list {
  padding: 34px 0 34px 32px;
}

.footer__categories-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 18px;
}

.footer__categories-item:last-child {
  margin-bottom: 0;
}

a.footer__categories-link {
  color: var(--color-white);
}

.footer__pages-list {
  padding: 34px 0 34px 32px;
}

.footer__pages-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 18px;
}

.footer__pages-item:last-child {
  margin-bottom: 0;
}

a.footer__pages-link {
  color: var(--color-white);
}

.footer__subscription:after {
  position: absolute;
  height: 1px;
  background-color: #515763;
  content: "";
  width: 100%;
}

.footer__subscription-title {
  font-family: var(--font-tenor-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  padding: 34px 0 46px 32px;
  width: 80%;
}

.footer__subscription-description {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  padding-left: 32px;
}

.footer__subscription-form {
  padding: 15px 0 64px 0;
  padding-left: 32px;
}

input.footer__subscription-input {
  padding-left: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #8a909e;
  border-right: 0;
  flex-basis: 50%;
}

button.footer__subscription-btn {
  background: var(--color-brown);
  border-radius: 0;
  height: 51px;
  width: 51px;
  margin: 0;
}

button.footer__subscription-btn:hover {
  opacity: 0.7;
}

.footer__subscription-icon {
  display: inline-block;
  content: "";
  background-image: url("../images/footer/arrow.svg");
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
}

.footer__telegram-list {
  padding: 32px 0 36px 32px;
  grid-template-columns: repeat(4, auto);
}

.footer__telegram-item {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}

.footer__telegram-link {
  color: var(--color-white);
}

/*footer line third*/
.footer__line-third {
}

.footer__public-offer {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-white);
  padding: 17px 0 18px 0;
  display: block;
}

.footer__privacy-policy {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-white);
  padding: 17px 0 18px 32px;
  display: block;
}

.footer__download-app {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #8a909e;
  padding: 17px 0 18px 32px;
}

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

/*login and register pages*/
.login-page {
  margin-bottom: 176px;
}

.login-page__block {
  background-color: #fff;
  padding: 65px;
  border-radius: 16px;
}

.login-page__data-input {
  padding: 7px 13px;
  background: #ffffff;
  border: 1px solid #dee3ee;
  font-weight: 300;
  font-size: 14px;
  color: #77777e;
  line-height: 35px;
  width: 100%;
  margin-bottom: 19px;
}

.login-page__button {
  line-height: 24px !important;
  margin-bottom: 19px;
}

.login-page__remember {
  margin-bottom: 19px;
}

.login-page__remember .input-group-text {
  background: inherit;
  border: 0px;
  padding: 0;
  padding-right: 1px;
}

.login-page__remember input.form-check-input:checked[type="checkbox"] {
  background-image: url(/local/templates/meetropol/assets/css/../images/order/check.svg);
  background-color: inherit;
}

.login-page__remember input.form-check-input {
  width: 14px;
  height: 14px;
  border: 1px solid #9a9fa3;
  border-radius: 2px;
}

.login-page__text {
  border: 0 !important;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black);
}

.login-page__links-row {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black);
}

.login-page__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration-line: underline !important;
  color: var(--color-brown);
}

.login-page .bx-authform-note-container {
  padding-bottom: 15px;
}

/*mobile search*/
.header__search-form-mobile {
  align-items: unset;
  margin-top: 15px;
  grid-template-columns: 1fr 50px !important;
  padding-left: 20px;
  padding-right: 20px;
}

.header__search-form-mobile input[type="text"] {
  outline: none;
  background-color: inherit;
  padding: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  border: 1px solid rgb(187 192 209 / 50%);
  border-right: 0;
  width: 100%;
}

.header__search-form-mobile .search-icon {
  vertical-align: middle;
  background: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sale-order-detail-payment-options-methods-container:before {
  content: none !important;
}

/*mobile menu*/
.menu-wrapper {
  margin: 0 auto;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 100%;
}

.main-menu,
.back-btn {
  background: #fff;
}

.rwd-menu {
  background: #fff;
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 1s ease;
  padding-left: 10px;
}

.rwd-menu li:hover {
  background: #fff;
}
.rwd-menu li a.link-gold {
  color: #9c702d;
} 
.rwd-menu li a {
  /*display: block;*/
  padding: 10px;
  font-size: 16px;
  color: #28282c;
  display: flex;
}

.rwd-menu li a svg {
  margin-right: 10px;
}

.rwd-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  width: 100%;
  visibility: hidden;
  transition: all 0.2s ease;
}

.open-submenu > .rwd-submenu {
  left: 0;
  top: 0;
  z-index: 2;
  visibility: visible;
  transition: all 0.2s ease;
  height: 100vh;
}

.sale-personal-section-index-block {
  background-color: #23303a !important;
}

.footer__subscription form > div:first-of-type,
.measuring-card__form .product-order__size:first-child {
  display: none !important;
}
.menu-wrapper {
    position: relative;
}
.article-wrapper h1 {
    margin-bottom: 2.31rem;
}

.header-drop-menu__pages-item {
    margin-bottom: 20px;
}
.header-drop-menu__pages {
    max-height: 600px;
}

.rwd-menu2 {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  width: 100%;
  visibility: hidden;
  transition: all 0.2s ease;
}

.open-submenu .rwd-submenu2 {
  left: 0;
  top: 0;
  z-index: 2;
  visibility: visible;
  transition: all 0.2s ease;
  height: 100vh;
}
.rwd-submenu.open-submenu  {
  left: 0;
  top: 0;
  z-index: 2;
  visibility: visible;
  transition: all 0.2s ease;
  height: 100vh;
}
