

/* Start:/local/templates/avex/src/styles/style.css?177546134283338*/
@font-face {
  font-family: "Inter";
  src:
    url("/local/templates/avex/src/styles/../fonts/Inter.woff2") format("woff2"),
    url("/local/templates/avex/src/styles/../fonts/Inter.woff") format("woff");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --default-font: "Inter", Helvetica, Arial;

  --main-white: #ffffff;
  --main-red: #fb3453;
  --main-black: #232323;
  --main-gray: #f6f6f6;
  --gray: #c9c8c8;
  --dark-grey: #727272;
  --main-hover: #ffebee;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
summary,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  color: var(--main-black);
  text-decoration: none;
}
* .hide {
  display: none !important;
}
figure {
  text-align: center;
}

figcaption {
  margin-top: 15px;
  margin-bottom: 15px;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  padding: 0;
  margin: 0;
  font-family: var(--default-font);
  background-color: transparent;
  border: none;
}

body * {
  font-family: var(--default-font);
}

input,
textarea,
select {
  font-size: 16px;
}

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

img {
  /* width: 100%; */
  max-width: 100%;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/*header */
.header {
  position: fixed;
  z-index: 200;
  width: 100%;
  background-color: var(--main-white);
  box-shadow: 0px 4px 4px 0px #0000000a;
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;

  will-change: transform, opacity;
  transform: translateY(-100%);
}

.header.active {
  opacity: 1;
  transform: translateY(0);
}

.header-container {
  display: flex;
  padding: 20px 20px 25px;
  gap: 50px;
  justify-content: space-between;
}

.header-burger,
.header-search-mob {
  display: none;
}

.header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-location__select {
  width: min-content;
  color: var(--gray);
  border: none;
  height: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-top: auto;
}

.header-logo a {
  width: 100%;
}

.header-logo a svg {
  width: 100%;
}

.header-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.header-nav__list {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 20px;
}

.header-nav__item {
  font-size: 16px;
  color: var(--main-black);
}

.header-nav__item a:hover {
  color: var(--main-red);
}

.header-nav__item--sale a {
  color: var(--main-red);
}

.header-catalog-search-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-catalog-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 60px;
  border-radius: 15px;
  background-color: var(--main-red);
  font-size: 16px;
  font-weight: 600;
  color: var(--main-white);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.header-catalog-link:hover {
  background-color: #ffebee;
  color: var(--main-black);
}

.header-search {
  flex-grow: 1;
}

.header-search__input {
  padding: 0;
  margin: 0;
  border: none;
  background-color: var(--main-gray);
  padding: 16px 40px;
  height: 60px;
  border-radius: 15px;
  width: 100%;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.header-search__input:hover,
.header-search__input:active,
.header-search__input:focus,
.header-search__input:focus-visible {
  border: 1px solid var(--main-red);
  outline: none;
}

.header-search__input::placeholder {
  color: var(--gray);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
}

.header-info {
  display: flex;
  gap: 15px;
  align-items: center;
  height: 20px;
}

.header-info__worktime {
  font-size: 14px;
  color: var(--gray);
}

.header-info__tel {
  font-weight: 600;
  font-size: 16px;
  color: var(--main-black);
}

.header-info__tel:hover {
  color: var(--main-red);
}

.header-tools {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-tools__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  gap: 12px;
  font-size: 13px;
  color: var(--main-black);
  position: relative;
}

.header-tools__img {
  width: 25px;
  height: 25px;
}

.header-tools__item {
  cursor: pointer;
}

.header-tools__item:hover svg path,
.header-tools__item:hover svg circle {
  stroke: var(--main-red);
}

.header-tools__item:hover a,
.header-tools__item:hover span {
  color: var(--main-red);
}

.header-tools__item:hover .circle-notice {
  color: var(--main-white);
}

.circle-notice {
  align-items: center;
  border-radius: 53px;
  /* box-shadow: 1px 1px 2px 1px #00000030; */
  color: var(--main-white);
  display: flex;
  font-size: 13px;
  height: 20px;
  background: var(--main-red);
  backdrop-filter: blur(2px);
  justify-content: center;
  opacity: 1;
  position: absolute;
  right: -4px;
  top: -7px;
  transition: opacity 0.2s linear;
  width: 20px;
}

.header-nav__mob,
.header-search-mob__wrap {
  display: none;
}
.row-3 {
  grid-template-columns: repeat(3, 1fr);
}
/* main banner */
main {
  flex: 1;
  margin-top: 165px;
}

.banner-slider {
  position: relative;
  margin-bottom: 80px;
}

.banner-slider-wrap {
  overflow: hidden;
  border-radius: 50px;
}

.banner-slider .slide-image img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
}

.banner-pagination {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 50px);
  position: absolute;
  width: 100%;
  z-index: 150;
  left: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
.banner-pagination {
  display: none;
}

.banner-swiper-btns {
  position: absolute;
  display: flex;
  gap: 30px;
  right: 95px;
  bottom: 80px;
  z-index: 150;
}

.banner-swiper-btn {
  width: 52px;
  height: 52px;
  background: #23232333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.banner-swiper-btn:hover,
.banner-swiper-btn:active {
  background: var(--main-red);
}

span.swiper-pagination-bullet-active {
  background: #727272;
}

.banner-btn-arrow {
  width: 9px;
  height: 9px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.banner-btn-next .banner-btn-arrow {
  rotate: 135deg;
}

.banner-btn-prev .banner-btn-arrow {
  rotate: -45deg;
}

.main-banner__text {
  position: absolute;
  bottom: 50px;
  left: 140px;
  color: var(--main-white);
  width: 30%;
  text-align: left;
}

.banner-btn-text-wrap {
  position: absolute;
  left: 8%;
  top: 48%;
  right: 0;
}

.banner-text {
  font-size: 40px;
  font-weight: 600;
  max-width: 760px;
  width: 50%;
  color: var(--main-white);
}

.banner-slider .slide-image {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.53) 0%,
    rgba(33, 33, 33, 0.53) 51.49%,
    rgba(102, 102, 102, 0) 100%
  );
}
.banner-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 260px;
  height: 50px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 15px;
  background-color: var(--main-red);
  margin-top: 20px;
  color: var(--main-white);
  padding: 13px;
  transition: all 0.2s ease-in-out;
}

.banner-btn:hover {
  background-color: var(--main-hover);
  color: var(--main-black);
}

/* news section */
.section-news {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  align-items: center;
  /* margin-bottom: 40px; */
  display: block;
}

.section-news__title {
  margin: 0;
}
.section-news__title-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: center;
}

.section-all-links {
  font-size: 20px;
  color: var(--dark-grey);
  transition: all 0.2s ease-in-out;
}

.section-all-links:hover {
  color: var(--main-red);
}

.section-news__img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  max-height: 400px;
  aspect-ratio: 44/35;
  border-radius: 15px;
}

.section-news__content {
  padding-left: 20px;
  padding-right: 10px;
}

.section-news__link:hover .news-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000020;
  z-index: 10;
  border-radius: 15px;
}

.section-news__new-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
  height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

.section-news__annot {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}

.section-news__swiper-btn,
.section-reels__btn,
.section-popular__btn,
.index-catalog__btn {
  position: absolute;
  z-index: 150;
  width: 52px;
  height: 52px;
  top: 50%;
  background: #fff;
  box-shadow: 0px 4px 8px 0px #00000014;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.section-news__swiper-btn {
  top: 48%;
}

.section-news__swiper-btn:hover,
.section-reels__btn:hover,
.section-popular__btn:hover,
.index-catalog__btn:hover {
  background: var(--main-red);
}

.section-news__swiper-btn:hover .section-news__btn-arrow,
.section-reels__btn:hover .section-reels__btn-arrow,
.section-popular__btn:hover .section-popular__btn-arrow,
.index-catalog__btn:hover .index-catalog__btn-arrow {
  border-left: 2px solid var(--main-white);
  border-top: 2px solid var(--main-white);
}

.section-news__swiper-btn:active,
.section-reels__btn:active,
.section-popular__btn:active,
.index-catalog__btn:active {
  background: #fb3453;
}

.section-news__btn-arrow,
.section-reels__btn-arrow,
.section-popular__btn-arrow,
.index-catalog__btn-arrow {
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--main-black);
  border-top: 2px solid var(--main-black);
}

.section-news__btn-next,
.section-reels__btn-next,
.section-popular__btn-next,
.index-catalog__btn-next {
  right: 0px;
}

.section-news__btn-prev,
.section-reels__btn-prev,
.section-popular__btn-prev,
.index-catalog__btn-prev {
  left: 0px;
}

.section-news__btn-next .section-news__btn-arrow,
.section-reels__btn-next .section-reels__btn-arrow,
.section-popular__btn-next .section-popular__btn-arrow,
.index-catalog__btn-next .index-catalog__btn-arrow {
  rotate: 135deg;
}

.section-news__btn-prev .section-news__btn-arrow,
.section-reels__btn-prev .section-reels__btn-arrow,
.section-popular__btn-prev .section-popular__btn-arrow,
.index-catalog__btn-prev .index-catalog__btn-arrow {
  rotate: -45deg;
}

/* section popular */
.section-popular {
  position: relative;
  /* padding-top: 80px; */
  margin-bottom: 80px;
}

.slider-popular-block.swiper {
  padding: 0 2px;
  padding-bottom: 10px;
}

.section-popular__btn {
  top: 33%;
}

.swiper-slide.slide-popular {
  /* box-shadow: 0px 4px 16.3px -7px #00000040; */
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  padding-bottom: 10px;
}

.slide-popular .catalog-img-in-slider {
  max-height: 260px;
}

.slide-popular-img {
  align-self: center;
  padding: 10px;
}

.slide-popular .swiper-slide {
  display: flex;
  justify-content: center;
}

.substrate-slide-popular {
  /* margin-top: 20px; */
  align-self: flex-start;
  font-size: 19px;
  /* padding: 0 10px; */
}

.slide-popular__type {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-title-all-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.slide-popular__name {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide-popular-text {
  margin-bottom: 10px;
}

.popular-slide-price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-popular__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 0 10px; */
}

.popular-slide-price--old {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 500;
}

.percent-sale {
  font-size: 14px;
  color: var(--main-red);
  font-weight: 600;
}

.cart-favorite-compare-wrap {
  display: flex;
  /* padding: 0 10px; */
  gap: 10px;
}

.cart-btn {
  font-size: 16px;
  font-weight: 600;
  width: 145px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #fff;
  background-color: var(--main-red);
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.cart-btn:hover {
  background-color: var(--main-hover);
  color: var(--main-black);
}

.text-add-basket {
  display: block;
}

.text-inner-basket {
  display: none;
}

.cart-btn svg {
  display: none;
}

.favorite-compare-icons {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.section-favorite-btn,
.section-compare-btn {
  border-radius: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
}

.section-favorite-btn.active svg path,
.section-compare-btn.active svg path {
  stroke: var(--main-red);
}

.section-favorite-btn:hover svg path,
.section-compare-btn:hover svg path {
  stroke: var(--main-red);
}

/* section-reels */
.section-reels {
  position: relative;
  padding-bottom: 60px;
}
.section-reels__slide {
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 15px;
  aspect-ratio: 9 / 16;
  max-height: 800px;
}

/* section index catalog  */
.section-catalog-index {
  position: relative;
}

.section-catalog-title {
  display: block;
  margin-bottom: 40px;
}
.index-list-catalog-item {
  padding: 20px;
  box-shadow: 0px 4px 16.3px -7px #00000040;
  border-radius: 15px;
  max-height: 280px;
  max-width: 280px;
  transition: background-color 0.5s ease-in-out;
  background-color: #ffffff;
}

.index-list-catalog-item:hover {
  background-color: #d6d6d6;
}

.index-list-catalog-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-catalog-img {
  padding: 15px;
  max-height: 220px;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.index-list-catalog-items.swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.index-catalog__btn {
  display: none;
}

.index-catalog-name {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  /* height: 48px; */
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.section-index-catalog-swiper.swiper {
  padding: 0 2px;
  padding-bottom: 10px;
}
/*section form */
.formQuestionDefault {
  margin: 30px auto;
  max-width: 1280px;
  padding: 40px 60px;
  box-shadow: 0px 4px 22.7px -8px #00000040;
  border-radius: 25px;
}

.form-tovar-title {
  margin-bottom: 20px;
}

.form-tovar-description {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.siteFormWrap h2 {
  font-size: 32px;
  font-weight: 700;
}
.siteFormWrap .subtitleForm {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 30px;
}
.siteFormWrap .row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.siteFormWrap .row-2 {
  grid-template-columns: 1fr 2fr;
}

.formField {
  position: relative;
  width: 100%;
  min-height: 56px;
  border-radius: 25px;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
  border: 1px solid #d9d9d9;
}

.formLabelField {
  position: absolute;
  left: 27px;
  top: 50%;
  font-weight: 300;
  transform: translateY(-50%);
  color: #b8babc;
  pointer-events: none;
  transition: all 200ms ease-in-out;
}

.formField input,
.formField textarea,
.formField .selectFieldForm {
  border: none;
  width: 100%;
  padding: 8px 16px 0 27px;
  height: 100%;
  height: 52px;
  font-size: 16px;
  font-weight: 300;
  outline: none;
  background-color: transparent;
  color: var(--main-black);
}

.formField .selectFieldForm {
  padding: 22px 16px 0;
  cursor: pointer;
}

.formLabelField.active {
  top: 10px;
  font-size: 12px;
}
.formAuth .formLabelField.active {
  top: 10px !important;
  font-size: 12px !important;
}

.formField:focus-within .formLabelField {
  color: var(--dark-grey);
}

.selectFieldDropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 16px #00000040;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  z-index: 50;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

.selectFieldOptionForm {
  padding: 12px;
  cursor: pointer;
  color: var(--main-black);
  transition: background 0.2s ease;
}

.selectFieldOptionForm:hover {
  background: var(--main-gray);
  color: #000;
}

.fieldCheckBox {
  border: 2px solid #cccccc90 !important;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 6px;
  position: relative;
}

.formFieldNameWuestionTovar {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.formWrap.loading {
  opacity: 0.6;
}

.formFieldNameWuestionTovar.has-tovar {
  flex-wrap: wrap;
  justify-content: space-between;
}

.formFieldNameWuestionTovar.question-long {
  flex-wrap: wrap;
  justify-content: center;
}

.formWrap.loading {
  opacity: 0.6;
}

.formFieldNameWuestionTovar.has-tovar {
  flex-wrap: wrap;
  justify-content: space-between;
}
.successFormWrap {
  text-align: center;
}
.successFormIcon {
  font-size: 70px;
  color: #07e007;
}

.succesFormWrap {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.formFieldNameWuestionTovar.has-tovar .textarea {
  grid-column: span 2;
}

.formFieldNameWuestionTovar.question-long {
  flex-wrap: wrap;
  justify-content: center;
}

.name-field,
.textarea {
  transition:
    width 0.3s ease,
    margin 0.3s ease;
}

.formField textarea {
  padding-top: 20px;
}

.name-field,
.textarea {
  transition:
    width 0.3s ease,
    margin 0.3s ease;
}
.name-field {
  width: 100%;
}

.errorTextSoglasie {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiddenBlock {
  display: none;
}

.checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.requiredFieldText {
  font-size: 13px;
  color: #939393ff;
  margin: 10px 0 20px;
  padding: 0 10px;
}

.btnSubmitForm {
  padding: 16px;
  text-align: center;
  width: 100%;
  color: #fff;
  cursor: pointer;
  border-radius: 18px;
  transition: 0.3s;
  display: block;
  max-width: 220px;
  margin: 30px auto 0;
  background: var(--main-red);
}

.errorText {
  color: #d00;
  font-size: 12px;
  margin-top: 4px;
}

.link-in-agree {
  color: #4d86f7;
  transition: all 0.2s ease-in-out;
}

.link-in-agree:hover {
  text-decoration: underline;
}

/* footer */
.footer {
  border-top: 1px solid #f3f3f3;
  padding-top: 50px;
  padding-bottom: 20px;
  margin-top: 20px;
  /* box-shadow: 0px 4px 14.8px 0px #00000040; */
}
.footer-tel-link:hover {
  color: var(--main-red);
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav__item a {
  font-size: 16px;
  color: var(--main-black);
  font-weight: 600;
}

.footer-nav__item a:hover {
  color: var(--main-red);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-suscribe__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--main-black);
  margin-bottom: 20px;
}

.footer-suscribe__input {
  min-width: 410px;
  height: 60px;
  background: var(--main-gray);
  padding: 20px 40px;
  color: var(--gray);
  border-radius: 15px;
  border: none;
  margin-right: 20px;
}

.footer-suscribe__input::placeholder {
  color: var(--gray);
}

.footer-suscribe__btn {
  background: var(--main-red);
  color: var(--main-white);
  padding: 20px;
  height: 60px;
  width: 145px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.footer-suscribe__btn:hover {
  color: var(--main-black);
  background-color: var(--main-hover);
}

.footer-suscribe__accept {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 400;
}

.footer-socials__list {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 25px;
  display: none;
}

.footer-hotline__tel {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: var(--main-black);
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}

.footer-hotline__tel:hover {
  color: var(--main-red);
}

.footer-hotline__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--main-black);
  max-width: 220px;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-bottom__text {
  color: #bdbdbd;
  font-size: 16px;
}

.footer-mob-menu {
  display: none;
}

.wrap-modal-auth {
  display: none;
}

/* Карточка */
.breadcrumb-mob {
  display: none;
}
.breadcrumbs.mob {
  display: none;
}
.product-details {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #222;
  gap: 20px;
}
.product-details-pictures {
  position: relative;
  width: 37%;
  display: flex;
}

.product-details-pictures .swiper-container.gallery-top {
  min-height: 700px;
  width: 87%;
  border: none;
  border-radius: 6px;
  padding: 10px;
  padding-right: 0;
  overflow: hidden;
}

.gallery-top .swiper-wrapper {
  max-height: 670px;
  max-width: 500px;
}

.product-picture-big .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
  vertical-align: middle;
  max-height: 620px;
}

.catalog-img-in-slider {
  max-width: none;
  max-width: 100%;
  max-height: 620px;
  height: auto;
  width: auto;
  font-size: 0;
  margin: 0;
}

.swiper-container.gallery-thumbs {
  max-height: 620px;
  padding-right: 5px;
  min-width: 85px;
  overflow: hidden;
  margin: 25px 0;
}
.gallery-thumbs .swiper-slide {
  border: 2px solid transparent;
  width: 100%;

  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s linear;
}

.gallery-thumbs .swiper-slide-containers {
  display: flex;
  align-items: center;
}

.catalog-img-in-slider-thumb {
  max-height: 100px;
  max-width: 80px;
  width: 100%;
  height: auto;
}

.swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #c9c8c8;
}

.product-details-pictures .swiper-button-prev {
  top: 28px;
  left: 28px;
  rotate: 90deg;
  height: 22px;
}

.product-details-pictures .swiper-button-next {
  bottom: 25px;
  top: auto;
  left: 28px;
  rotate: 90deg;
  height: 22px;
}

.card-swiper-arrow {
  width: 16px;
  height: 16px;
  border-left: 2px solid #232323;
  border-top: 2px solid #232323;
  rotate: -45deg;
}

.card-swiper-arrow-next {
  rotate: 135deg;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.product-details-in {
  width: 31%;
  display: flex;
  /* justify-content: space-around; */
  /* align-items: center; */
  flex-direction: column;
  position: sticky;
  scrollbar-width: none;
  top: 130px;
  /* max-height: calc(94vh - 50px); */
  height: 100%;
  /* margin-right: 10px; */
}

.wrap-min-charakter {
  margin-bottom: 30px;
}

ul.leaders {
  max-width: 40em;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 35px;
}

.leaders-item {
  font-size: 16px;
  color: var(--dark-grey);
  line-height: 24px;
  height: auto;
  min-height: 25px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.leaders-name {
  text-wrap: balance;
  line-height: 18px;
  width: 70%;
}

.leaders-value {
  flex-shrink: 0;
  min-width: 40px;
  text-align: right;
  width: auto;
  max-width: 41%;
  text-wrap: balance;
}

.all-charakters {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-red);
  cursor: pointer;
}

.all-charakters:hover {
  color: var(--gray);
}

.color-value {
  color: #606060;
  font-size: 16px;
  font-weight: 400;
}

.color-value span {
  color: var(--main-black);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.catalog-element-buyblock {
  width: 28%;
  position: sticky;
  scrollbar-width: none;
  min-width: 350px;
  top: 130px;
  /* max-height: calc(94vh - 50px); */
  height: 100%;
  max-width: 435px;
}

.catalog-element-main-info {
  background-color: #fafafa;
  border-radius: 20px;
  padding: 35px;
  padding-top: 55px;
  margin-bottom: 15px;
}

.product-details-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--main-black);
}

.catalog-element-slider-btns {
  position: absolute;
  top: 25px;
  right: 35px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.catalog-element-slider-btns button {
  cursor: pointer;
}

.catalog-element-slider-btns button:hover svg path {
  stroke: var(--main-red);
}

.btn-view-compare.active svg path {
  stroke: var(--main-red);
}
.rating {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-top: 10px;
  margin-bottom: 10px;
}

.catalog-element-buyblock .rating {
  margin-bottom: 40px;
}

.catalog-price-element {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.catalog-element-baseprice {
  font-size: 32px;
  font-weight: 600;
}

.catalog-element-old-price {
  color: #c9c8c8;
  font-size: 22px;
  font-weight: 500;
  text-decoration: line-through;
}

.catalog-element-discount {
  color: var(--main-red);
  font-size: 22px;
  font-weight: 600;
}

.catalog-element-cart-btn {
  width: 100%;
  border-radius: 15px;
  background: var(--main-red);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.catalog-element-cart-btn:hover {
  background-color: var(--main-hover);
  color: var(--main-black);
}

.catalog-element-cart-btn svg {
  display: none;
}

.hiberg-catalog-title {
  text-align: center;
  margin-top: 20px;
}

.no-balance {
  font-size: 22px;
  color: var(--main-red);
  font-weight: 600;
}

.buy-credit {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  background: #f2f2f2;
  color: var(--main-black);
  font-size: 16px;
  font-weight: 500;
}

.buy-now {
  display: none;
}

.guarantee-delivery-wrap {
  display: none;
}

.buy-online-link:hover {
  opacity: 0.6;
}

.pd-buy-online {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.buy-online-title {
  color: var(--main-black);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.buy-online-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.buy-mp-img {
  width: 49px;
  height: 49px;
}
.wrap-information {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.wrapProductInfo {
  width: 100%;
}
.pd-toggles {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.pd-toggles a {
  font-size: 23px;
  font-weight: 500;
  color: var(--gray);
}

.pd-toggles a.active {
  font-size: 23px;
  font-weight: 600;
  color: var(--main-red);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  width: 100%;
}

.charakter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 10px;
}

.charakter-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.charakters-item-name {
  width: 60%;
  font-size: 16px;
  line-height: 24px;
}

.charakters-item-value {
  margin: 0;
  padding: 0;
  width: 40%;
  line-height: 14px;
  font-size: 16px;
  line-height: 24px;
  justify-content: flex-end;
  justify-content: center;
  text-align: right;
  text-align: center;
  font-weight: 600;
}

.charakter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* расстояние между колонками */
}

.charakter-column {
  display: grid;
  /* grid-auto-rows: 1fr;  */
  background: #f5f5f5;
  padding: 20px;
}

.charakter-column.left {
  border-radius: 15px;
}

.charakter-column.right {
  border-radius: 15px;
}

.charakter-cell {
  padding: 10px 0;
  /* border-bottom: 1px solid #ddd; */
}

.charakter-cell:last-child {
  border-bottom: none;
}

#tab-description p {
  margin-bottom: 6px;
  margin-top: 10px;
  /* text-indent: 24px; */
}

#tab-description h3 {
  margin-bottom: 10px;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
}

#tab-description ul {
  padding-left: 20px;
}

#tab-description ul li {
  list-style: disc;
}
strong {
  font-weight: bold;
}

#tab-description p:nth-child(3n) {
  margin-bottom: 30px;
}

.block-3d-picture {
  position: relative;
}

.block-3d-picture_right {
  position: absolute;
  color: var(--main-white);
  top: 45%;
  left: 120px;
  width: 65%;
}

.block-3d-picture_right-title {
  font-size: 32px;
  font-weight: 600;
}

.advantage-block_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.advantage-block_item {
  width: 47%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.block-3d-picture_img img {
  width: 100%;
  border-radius: 25px;
}

.advantage-block_item-img img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  margin-bottom: 40px;
}

.advantage-block_item-title {
  color: var(--main-black);
  font-size: 32px;
  font-weight: 600;
  padding-left: 15px;
  margin-bottom: 10px;
}

.advantage-block_item-text {
  color: var(--main-black);
  font-size: 24px;
  font-weight: 400;
  line-height: 40px; /* 166.667% */
  padding-left: 15px;
}

.advantage {
  position: relative;
}

.advantage-right {
  margin-bottom: 40px;
}

.advantage-left {
  position: absolute;
  color: var(--main-white);

  left: 50px;
  bottom: 40px;
  max-width: 50%;
}

.advantage-right img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.advantage-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--main-black);
}

.block-3d-picture_right-text {
  font-size: 24px;
  max-width: 50%;
}

.block-3d-picture {
  margin-bottom: 40px;
}
.formCheckBox {
  border: 1px solid #d9d9d9;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 5px;
}
.formCheckBox svg {
  width: 100%;
  max-width: 16px;
  display: block;
  height: 100%;
  max-height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 1px;
}
.advantage-list,
.advantage-item {
  font-size: 24px;
  color: var(--main-black);
}

.breadcrumbs {
  color: #bdbdbd;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  /* margin-bottom: 20px; */
}
.breadcrumbs.mob a {
  color: #071227;
  font-weight: 400;
}

.breadcrumbs-sep {
  margin: 0 5px;
}

.ib-list .ib-item {
  font-size: 13px;
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
  color: #c9c8c8;
}

.ib-list a.ib-item {
  color: var(--main-black);
}

.bc-dd-wrap:hover > a {
  color: var(--main-red);
}

.bc-dd {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: none;
  font-size: 16px;
  left: -12px;
  min-width: 140px;
  border-radius: 6px;
  padding: 12px 16px;
  position: absolute;
  top: 14px;
  flex-direction: column;
  gap: 6px;
  white-space: nowrap;
  z-index: 1000;
}

.bc-dd a:hover {
  color: var(--main-red);
}

.bc-dd-wrap {
  position: relative;
}

.bc-dd-wrap:hover .bc-dd {
  /* display: flex; */
}

.catalog-block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.catalog-item {
  padding: 20px;
  box-shadow: 0px 4px 16.3px -7px #00000040;
  border-radius: 15px;
}

.catalog-item img {
  max-height: 250px;
}

.catalog-block-header {
  border-bottom: none;
  color: var(--main-black);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
}

.tovar-docs_new {
  display: flex;
  gap: 10%;
  justify-content: center;
}

.tovar-docs_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.catalog-element-popular {
  padding-top: 80px;
  position: relative;
  padding-bottom: 50px;
}

.catalog-section-swiper.catalog-section {
  min-height: 0;
}

.popular-swiper-item .pl-name,
.pl-name {
  color: var(--main-black);
  font-size: 19px;
  font-weight: 400;
  line-height: 20px;
}

.popular-swiper-item .catalog-item-title {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-swiper-item .wrap-panel-cart-compare {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 15px;
}

.popular-swiper-item .favorite-compare-icons div {
  border-radius: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
}

.popular-swiper-item .link-add-cart {
  width: 100%;
}

.popular-cart-btn {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  min-width: 125px;
  max-width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #fff;
  background-color: var(--main-red);
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.popular-cart-btn:hover {
  background-color: var(--main-hover);
  color: var(--main-black);
}

.popular-swiper-item .base-price {
  color: var(--main-black);
  font-size: 26px;
  font-weight: 600;
}

.popular-swiper-item .cart-buy-wrapper {
  margin-top: 10px;
}

.catalog-element-swiper-btn {
  position: absolute;
  z-index: 150;
  width: 52px;
  height: 52px;
  top: 50%;
  background: #fff;
  box-shadow: 0px 4px 8px 0px #00000014;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.catalog-element-swiper-btn:hover {
  background-color: var(--main-red);
}

.catalog-element-swiper-btn:hover .catalog-element__btn-arrow {
  border-color: var(--main-white);
}

.catalog-element-swiper-btn-prev {
  left: 0px;
}

.catalog-element-swiper-btn-prev div {
  rotate: -45deg;
}

.catalog-element-swiper-btn-next {
  right: 0px;
}

.catalog-element-swiper-btn-next div {
  rotate: 135deg;
}

.catalog-element__btn-arrow {
  width: 9px;
  height: 9px;
  border-left: 2px solid var(--main-black);
  border-top: 2px solid var(--main-black);
}

.popular-swiper-item .pl-picture a {
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  padding-bottom: 50px;
  max-height: 350px;
  max-width: 225px;
  width: 100%;
  height: auto;
  text-align: center;
}

.catalog-element-pagination.swiper-pagination {
  /* position: static; */
  bottom: 0;
}

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

/* каталог */

.catalog-section-sort-wrapper {
  width: 100%;
}

.catalog-title-count-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.catalog-section-title {
  font-size: 32px;
  font-weight: 600;
}

.catalog-section-count {
  font-size: 28px;
  color: #bdbdbd;
}

.catalog-sort-view-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  background-color: #fff;
  /* position: sticky; */
  top: 158px;
  height: 50px;
  scrollbar-width: none;
  z-index: 50;
  padding-right: 10px;
  box-shadow: 0 3px 4px -4px rgba(0, 0, 0, 0.15);
}
.catalog-sort-section-wrap {
  width: 100%;
  padding-top: 20px;
  padding-left: 30px;
}
.catalog-section {
  min-width: 50%;
  padding-bottom: 30px;
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 30px;
  padding-bottom: 50px;
  padding-top: 20px;
  /* padding-left: 20px; */
  background-color: #fff;
  min-height: 66.5vh;
}

.product-item-container {
  /* border: 1px solid #ccc; */
  border-radius: 5px;
  box-sizing: border-box;
  display: block;
  padding: 10px;
  width: 295px;
  /* min-height: 660px; */
  /* height: calc(100% - 54px); */
}
.arrowLeft {
  display: block;
}
.arrowLeft svg {
  display: block;
}
.swiper-card-category {
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  /* margin-bottom: 20px; */
  padding-bottom: 50px;
  max-height: 365px;
  max-width: 250px;
  width: 100%;
  height: auto;
  text-align: center;
}

.pl-name {
  display: flex;
  flex-direction: column;
}
.wrap-modal-auth {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  background-color: #232323ba;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.wrap-modal-auth.active {
  display: flex;
}

.formWrapAuth {
  padding: 10px;
  max-width: 348px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.formWrapAuth h3 {
  font-size: 32px;
  margin-bottom: 12px !important;
}
.formAuth .formLabelField {
  font-size: 16px !important;
}
.fieldPhoneAuth {
  height: 60px !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}
.agreeText a {
  font-size: 15px;
  font-weight: 400;
}
.formField .errorText {
  position: absolute;
}
.btnSubmitAuth {
  background: var(--main-red);
  padding: 16px 20px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.1s linear;
}
.btnSubmitAuth:hover {
  background: #fc2b4b;
}

.catalog-item-title {
  font-weight: 500;
}
.pageTitleBlock {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--main-black);
}
.text-price {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.base-price {
  color: var(--main-black);
  font-size: 26px;
  font-weight: 600;
  height: 32px;
}

.base-price.not-available {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.old_price-section {
  color: var(--gray);
  text-decoration: line-through;
}

.catalog-sale {
  display: flex;
  gap: 5px;
}

.wrap-panel-cart-compare {
  display: flex;
  gap: 15px;
}

.catalog-item-cart-btn {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  min-width: 145px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #fff;
  background-color: var(--main-red);
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  border: 1px solid transparent;
}

.catalog-item-cart-btn svg {
  display: none;
}

.catalog-item-cart-btn:hover {
  background-color: var(--main-hover);
  color: var(--main-black);
}

.link-add-cart.active .catalog-item-cart-btn,
.link-add-cart.active .popular-cart-btn {
  background-color: transparent;
  color: var(--main-black);
  border: 1px solid var(--main-red);
}

.link-add-cart.active .text-add-basket {
  display: none;
}

.link-add-cart.active .text-inner-basket {
  display: block;
}

.cart-buy-wrapper {
  margin-top: 15px;
}

.link-add-cart {
  width: 100%;
  max-width: 330px;
}

.favorite-compare-icons div {
  border-radius: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
  cursor: pointer;
}

.favorite-compare-icons div:hover svg path {
  stroke: var(--main-red);
}

#sort-select {
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #222;
  padding: 5px;
  background: #fff;
  font-size: 18px;
  font-family: var(--default-font);
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px transparent solid;
}

.dropdown__btn:hover {
  color: var(--main-red);
}

button.dropdown__btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  height: auto;
  padding: 0;
  transition: color 0.25s ease-in-out;
  font-family: var(--default-font);
  color: var(--main-black);
  background-color: transparent;
  text-shadow: none;
  cursor: pointer;
}

.catalog__sort .dropdown__title {
  margin-right: 4px;
}

.sort-icon {
  width: 12px;
  height: 9px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.dropdown.is-open .sort-icon {
  rotate: 180deg;
}

.dropdown__wrapper {
  position: absolute;
  display: none;
  z-index: 2;
  left: 0;
  top: calc(100% + 10px);
  width: 220px;
  background-color: #fff;
  box-shadow: 1px 4px 20px rgba(9, 97, 172, 0.17);
  opacity: 0;
  transition:
    opacity 0.25s ease-in-out,
    transform 0.25s ease-in-out;
  transform: translate3d(0, -10px, 0);
  border-radius: 6px;
}
.ib-item.gray {
  color: var(--gray);
}
.dropdown.is-open .dropdown__wrapper {
  display: block;
  opacity: 1;
  transform: translateZ(0);
  z-index: 200;
}

.dropdown__content {
  z-index: 200;
  position: relative;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  padding: 6px 0;
  border-radius: 6px;
  overflow: hidden;
}
.title-page-profile {
  font-family: "Inter";
  font-size: 32px;
  font-weight: 600;
}
.wrap-page-personal {
  margin-top: 45px;
  display: flex;
  gap: 40px;
}

.dropdown__item {
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  padding: 7px 23px 8px;
  cursor: pointer;
  color: #212121;
  transition: background-color 0.25s ease-in-out;
  background-color: transparent;
  border: 0;
}

.dropdown__item.is-active {
  font-weight: 600;
}

.dropdown__item:hover {
  background-color: #f1f3f8;
}

.filter-btn_mob {
  display: none;
}

.filters-back-btn {
  display: none;
}

.catalog-view-toggler {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  color: #222;
  font-size: 16px;
  opacity: 0.9;
}

.catalog-view-toggler button {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.catalog-view-toggler button svg {
  height: 20px;
  width: 20px;
}

#tile-btn svg path {
  stroke: var(--main-red);
}

.horizontal-section #tile-btn svg path {
  stroke: #d9d9d9;
}

.horizontal-section #horizontal-btn svg path {
  fill: var(--main-red);
  stroke: var(--main-red);
}

.horizontal-section .product-item-small-card {
  width: 100%;
  /* max-width: 975px; */
}

.horizontal-section .product-item-container {
  width: 100%;
  padding-bottom: 5px;
  padding-left: 25px;
  min-height: 370px;
  height: auto;
}

.horizontal-section .pl-in {
  display: flex;
  gap: 35px;
  align-items: center;
}

.horizontal-section .wrap-panel-cart-compare {
  width: 270px;
}

.horizontal-section .product-item .pl-picture {
  margin-right: 20px;
}

.horizontal-section .catalog_section_el-desk {
  height: auto;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  width: 80%;
  padding-left: 10px;
  max-width: 400px;
}

.horizontal-section .catalog-props-buy-wrap {
  display: flex;
  justify-content: space-between;
  width: 72%;
  gap: 35px;
}

.horizontal-section .product-item .pl-in .ib-item {
  width: 100%;
  justify-content: start;
  font-size: 20px;
}

.horizontal-section .cart-buy-wrapper {
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 15px;
  min-width: 270px;
  height: 240px;
}

.catalog_section_el-desk ul li {
  font-size: 16px;
  /* margin-bottom: 12px; */
  line-height: 18px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  line-height: 20px;
  /* height: 28px; */
}

.catalog_section_el-desk ul {
  width: 100%;
  padding: 0;
  margin: 0;
  /* justify-content: space-between; */
  /* gap: 10px; */
  /* height: 240px; */
  /* color: #222; */
  font-size: 14px;
  margin: 10px 0;
  /* padding: 0 13px; */
  /* min-height: 100px; */
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 4px;
}

.catalog_section_el-desk .section-props {
  display: none;
}

.horizontal-section .section-props {
  display: flex;
  gap: 10px;
}

.catalog_section_el-desk ul li {
  color: var(--dark-grey);
}

.prop-value {
  font-weight: 500;
  color: var(--main-black);
}

.wrap-catalog-inner {
  min-width: 320px;
  margin-right: 30px;
  width: 330px;
  /* padding: 20px; */
}

.smart-filter-parameters-box {
  position: relative;
  margin-bottom: 15px;
}

.smart-filter-parameters-box:hover span,
.filter-group-title-box:hover > span {
  color: var(--main-red);
}

.filter-group-filters .smart-filter-parameters-box:hover span {
  color: var(--main-black);
}

.smart-filter-button-box .smart-filter-block,
.smart-filter-parameters-box.bx-active .smart-filter-block {
  display: block;
}

.smart-filter-parameters-box-container {
  padding-top: 4px;
}

.smart-filter-input-group-checkbox-list {
  padding-left: 36px;
  position: relative;
}

.smart-filter-parameters-box-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smart-filter-slider-handle.right,
.smart-filter-slider-handle.left {
  border: 2px solid #fb3453;
}

.form-check {
  align-items: center;
  display: flex;
  font-size: 16px;
  gap: 4px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.smart-filter-input-group-checkbox-list input[type="checkbox"],
.smart-filter-input-group-checkbox-list input[type="radio"] {
  display: none;
}

.form-check input {
  display: block;
  height: 16px;
  width: 16px;
}

.form-check label {
  cursor: pointer;
  display: block;
  font-size: 16px;
  width: 100%;
  /* max-width: 80%; */
  color: #00000090;
}

.smart-filter-input-group-checkbox-list label:after,
.filter-color-block-hex-label:after {
  border-radius: 3px;
  content: "";
  display: block;
  height: 24px;
  position: absolute;
  width: 24px;
}

.smart-filter-input-group-checkbox-list label:after {
  left: -35px;
  outline: 1px solid #939598;
  top: 0px;
}

label.smart-filter-checkbox-text,
label.smart-filter-dropdown-text {
  color: var(--main-black);
}

label.available-filter::after,
label.sale-filter::after {
  top: -4px;
}

.smart-filter-input-group-checkbox-list
  input[type="checkbox"]:checked
  + label:after {
  /* background-image: url(/local/templates/avex/src/images/icons/filter-icon.svg) no-repeat center;
  background-color: var(--main-red); */
  background: var(--main-red)
    url("/local/templates/avex/src/images/icons/filter-icon.svg") no-repeat
    center;
  /* border: 2px solid #fff; */
  /* height: 18px; */
  /* outline: 1px solid #939598; */
  /* width: 18px; */
}

.filter-group-title-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid var(--default-color-bej); */
  margin-bottom: 10px;
  padding-bottom: 6px;
  cursor: pointer;
}

.smart-filter-input-group-number-items {
  display: flex;
  justify-content: space-between;
}

.smart-filter-input-container input {
  background-color: transparent;
  width: 120px;
  border: none;
  height: 40px;
  padding-left: 8px;
  /* box-shadow: 0 8px 32px #00000040; */
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  background: #fff;
}

.smart-filter-slider-track {
  height: 2px;
}

.smart-filter-slider-handle {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  border: 2px solid #fb3453;
  background: #fff;
  top: -9px;
}

.smart-filter-slider-price-bar-v {
  background-color: var(--main-red);
}

.smart-filter-slider-price-bar-vn {
  background: #d6d6d6;
}

.smart-filter-angle {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-top: 2px solid var(--main-black);
  border-left: 2px solid var(--main-black);
  rotate: 45deg;
  transition: all 0.3s ease-in-out;
}

.smart-filter-parameters-box-title-text {
  font-weight: 600;
  font-size: 16px;
}

.smart-filter-parameters-box-title {
  cursor: pointer;
}

label.filter-color-block-hex-label:after {
  border-radius: 50%;
  display: none;
}

.filter-color-hex {
  /* z-index: -1; */
  border: 1px solid #a1a1a1;
  border-radius: 50%;
  height: 24px;
  left: -35px;
  position: absolute;
  width: 24px;
  top: 0;
}

.form-check-input:checked + label .filter-color-hex {
  border: 2px solid var(--main-red);
}
.filter-group-title {
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  /* font-size: 18px; */
}
.filters-clear-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.filters-title {
  font-size: 24px;
  font-weight: 600;
}

.cleare-filter__btn-top {
  color: var(--main-red);
  transition: all 0.2s ease-in-out;
}

.cleare-filter__btn-top:hover {
  color: var(--main-black);
}

.cleare-filter__btn-bottom {
  color: var(--main-red);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 15px;
  border: 1px solid #fb3453;
  transition: all 0.2s ease-in-out;
}

.cleare-filter__btn-bottom:hover {
  background-color: var(--main-red);
  color: var(--main-white);
}

.filter-color-block-hex .form-check {
  max-width: 84%;
}

.smartfilter-count-items {
  color: var(--main-red);
}

.filter-group-wrap.bx-active .smart-filter-angle,
.smart-filter-parameters-box.bx-active .smart-filter-angle {
  rotate: -135deg;
}

.sticky-block,
.cleare-filter {
  position: sticky;
  width: 100%;
}

.sticky-block {
  /* border: 1px solid #4d86f7cc; */
  /* box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15); */
  border-radius: 6px;
  max-height: calc(94vh - 150px);
  /* min-width: 313px; */
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 30px;
  background-color: #fafafa;
  /* padding-right: 30px; */
  padding-bottom: 0;
  scrollbar-color: hsl(0 0% 50%);
  scrollbar-track-color: #d3d3d3;
  scrollbar-width: none;
  top: 190px;
  margin-bottom: 2px;
}

.collaps {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 0.2s linear;
}

.filter-group-filters.open {
  grid-template-rows: 1fr;
}

.collaps.open {
  grid-template-rows: 1fr;
}

/* Новости */
.news-page-menu {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
  margin-top: 10px;
}

.news-wrap_title {
  color: var(--main-black);
  font-size: 32px;
  font-weight: 600;
}

.news-list-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.news-link {
  font-size: 22px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.news-link:hover {
  color: var(--main-red);
}

.news-link.active {
  color: var(--main-red);
}

.news-list_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.news-item-img {
  margin-bottom: 20px;
  position: relative;
  border-radius: 15px;
}

.news-item:hover .news-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000020;
  z-index: 10;
  border-radius: 15px;
}

.news-description {
  padding-left: 25px;
}

.news-item-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--main-black);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 54px;
}

.news-text_preview {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 7px;
  height: 40px;
}

.wrap-news-info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #bdbdbd;
}

.wrap-news-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 19px;
  color: #bdbdbd;
}

.wrap-news-info-item svg {
  margin-left: 5px;
}

.news-detail .news-info-item-count {
  font-size: 19px;
}

.title-news-detail {
  margin-top: 10px;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 50px;
}

.news-item-detail-img {
  margin-bottom: 45px;
}

.news-item-detail-img img {
  height: auto;
}

.news-item-preview-text,
.news-item-detail-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
}

.news-item-preview-text {
  margin-bottom: 30px;
}

.news-item-detail-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 25px;
}

.news-item-detail-text ul {
  padding-left: 30px;
  list-style: disc;
  margin-bottom: 20px;
}

.news-item-detail-text ol {
  padding-left: 30px;
  list-style: decimal;
  margin-bottom: 20px;
}

.news-item-detail-text p:nth-child(3n) {
  margin-bottom: 20px;
}
.loader {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  display: none;
  z-index: 10;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
  /* кольцо */
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    #000 0
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 0);
}
.loader.active {
  display: flex;
}

.news-detail table {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-wrap: balance;
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-detail td {
  border: 1px solid var(--main-black);
  text-align: center;
  vertical-align: middle;
  padding: 5px;
  line-height: 20px;
}

.news-detail p {
  text-align: justify;
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 20px;
}

.news-detail td p {
  text-align: center;
  margin: 0;
}

.news-detail td:nth-of-type(1) p {
  text-align: left;
  padding-left: 10px;
}

.news-detail p b {
  font-weight: 500;
}

/* сама "комета" */
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 34deg,
    #f6516a 320deg,
    var(--main-red) 340deg
  );
  filter: blur(3px); /* вот это ключ — даёт "хвост" */
}
.loader.white::before {
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 34deg,

    white 340deg
  );
}

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

/*START LK PROFILE*/
.wrap-list-personal-link {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 300px;
}
.wrap-list-personal-link a {
  color: var(--gray);
  font-size: 23px;
  font-weight: 500;
}
.wrap-list-personal-link a.active {
  color: var(--main-black);
}
.wrap-list-personal-link a:hover {
  color: var(--main-black);
}
.wrap-personal-profile {
  width: 100%;
  max-width: 675px;
}
.profilePersonalData {
  padding: 22px;
}
.blockShadow {
  box-shadow: 0 4px 22.7px -8px rgba(0, 0, 0, 0.25);
}
.borderRadius {
  border-radius: 25px;
}
.profilePersonalData {
  margin-bottom: 20px;
}
.profilePersonalEmptyData {
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  border-radius: 15px;
  border: 1px dashed #d9d9d9;
  padding: 13px;
  cursor: pointer;
  transition: all 0.1s linear;
}
.wrapProfilePersonalData {
  position: relative;
  display: none;
  min-height: 150px;
}
.wrapProfilePersonalData {
  display: block;
}

.profilePersonalDataNotEmpty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 13px;
  border-radius: 15px;
  border: 1px solid #d9d9d9;
  transition: all 0.1s linear;
  font-size: 16px;
  font-weight: 500;
  color: var(--main-black);
}
.profilePersonalDataNotEmpty:hover {
  border: 1px solid var(--main-red);
}
.wrapProfileAddressItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 13px;
  border-radius: 15px;
  border: 1px solid #d9d9d9;
  transition: all 0.1s linear;
  font-size: 16px;
  font-weight: 500;
  color: var(--main-black);
}
.wrapProfileAddressItem:hover {
  border: 1px solid var(--main-red);
}
.radioCircle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc; /* серый внешний круг */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.1s linear;
}
.wrapProfileAddressList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personalFormDataAddressTest {
  margin-bottom: 30px;
  text-align: center;
}

.wrapRadioCircle {
  width: 30px;
  height: 30px;
}
.wrapProfileAddressItem .wrapRadioCircle {
  padding: 5px;
  margin-right: -5px;
}
/* внутренний круг */
.radioCircle::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
}

/* активное состояние */
.radioCircle:hover {
  border-color: var(--main-red); /* красный */
}
.radioCircle.active {
  border-color: var(--main-red); /* красный */
}

.profileAddressItemControl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.profileAddressItemControl svg:hover path {
  stroke: var(--main-red) !important;
}
.profileAddressItemText {
  max-width: 450px;
}

.radioCircle.active::after {
  background: var(--main-red);
}
.profilePersonalDataNotEmpty > svg > path {
  transition: all 0.1s linear;
}
.profilePersonalDataNotEmpty:hover > svg > path {
  stroke: var(--main-red);
}

.profilePersonalEmptyData:hover {
  border: 1px dashed var(--main-red);
  color: var(--main-red);
}
.profilePersonalEmptyData > svg > path {
  transition: all 0.1s linear;
}
.profilePersonalEmptyData:hover > svg > path {
  stroke: var(--main-red);
}
.profilePersonalEmptyData.active {
  display: flex;
}
.profilePersonalDataWrapTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}
.profilePersonalDataWrapTitle h3 {
  color: var(--main-black);
  font-size: 20px;
  font-weight: 500;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 30px 20px;
  width: 100%;
  max-width: 500px;
  margin: auto 10px;
  overflow-y: auto;
  max-height: 100%;
}
.modal h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--main-black);
}
.formAuth .modal {
  padding: 40px 20px;
  max-width: 458px;
}

.textErrorRequest {
  color: #c30202;
  font-size: 12px;
  text-align: center;
}
.wrapPersonalFormData {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 348px;
  margin: 0 auto;
}
.wrapPersonalFormFields {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.requiredFormFieldsText {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  text-align: left;
  width: 100%;
  padding-left: 16px;
  margin: 4px auto 10px;
}

.modal button:hover {
  box-shadow: 0 1px 5px 4px #cccccc70;
}
.modal button {
  color: var(--main-black);
  border: 1px solid var(--main-red);
  border-radius: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 17px 0;
  width: 100%;
  margin: 6px auto;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
  transition: all 0.1s linear;
  min-height: 60px;
}
.wrapPersonalFormFields .errorText {
  position: absolute;
  left: 16px;
  bottom: 0;
}
/* .btnModalSave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    #ef5f7a 0%,
    var(--main-red) 80%
  );
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: -1;
}

.btnModalSave:hover::before {
  opacity: 1;
} */
.btnModalSave {
  background-color: var(--main-red);
  color: #fff;
}
.btnModalSave.disabled {
  opacity: 0.7;
}
.btnModalSave span {
  color: #fff;
}
.btnModalSave:hover {
  box-shadow: 0 1px 5px 4px #cccccc70;
}
/*END LK PROFILE*/

/* избранное favorite */
.wrap-favorite-cart {
  display: flex;
  margin: 0 auto;
  margin-bottom: 60px;
  margin-top: 20px;
}

.col-block-profile {
  width: 23%;
  max-width: 300px;
}

.wrap-favorite-items {
  width: calc(100% - 252px);
  max-width: 1030px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 50px;
}

.btn-view-favorite.active .text-add-favorite {
  display: none;
}

.btn-view-favorite.active .text-inner-favorite {
  display: block;
  /* color: var(--default-color-bej); */
}

.btn-view-favorite.active .svg-favorite-n,
.btn-view-favorite .svg-favorite-y {
  display: none;
}

.btn-view-favorite .svg-favorite-n,
.btn-view-favorite.active .svg-favorite-y {
  display: flex;
}

.wrap-list-personal-link {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.personal-link-item {
  /* padding: 15px 0; */
  /* border-bottom: 1px solid #898989; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* color: #222; */
}

.personal-link-item.active .personal-link-item-left {
  color: var(--main-black);
}

.personal-link-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 23px;
  color: var(--gray);
}

.inner-setting-fullname {
  font-size: 32px;
  font-weight: 600;
}

.inner-setting-block {
  margin-bottom: 45px;
}

.wrap-list-personal-link .circle-notice {
  position: static;
}

.wrap-empty-compare {
  width: 75%;
  height: 100%;
  min-height: 451px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.empty-compare-title {
  font-weight: 500;
  font-size: 24px;
  color: #bdbdbd;
}

.empty-compare-link {
  font-size: 16px;
  color: var(--main-red);
  padding: 15px 52px;
  border-radius: 15px;
  border: 1px solid var(--main-red);
  font-weight: 600;
}

.favorite-title {
  display: none;
}

/* сравнение compare */
.compare-wrap {
  display: flex;
  gap: 80px;
}

.compare-wrap p {
  display: none;
}

.compare-wrap .col-block-profile {
  width: 100%;
}

.compare-wrap .wrap-page-personal {
  width: 23%;
  max-width: 300px;
}

.wrap-compare-category {
  display: flex;
  justify-content: space-between;
}

.btn-control-compare {
  display: flex;
  gap: 60px;
  align-items: center;
}

.title-page-compare {
  display: none;
}

/* 404 */
.page-404-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  min-height: 50dvh;
}
.page-404-title {
  font-size: 128px;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.page-404-subtitle {
  font-size: 32px;
  font-weight: 600;
}

.page-404-link {
  color: var(--main-red);
  padding: 20px 41px;
  border-radius: 15px;
  border: 1px solid #fb3453;
  font-weight: 600;
  margin-top: 20px;
}

.cookie-notification-modal {
  bottom: 0;
  color: #21262f;
  font-size: 18px;
  left: calc(50% - 35%);
  line-height: 1.5;
  opacity: 0.99;
  padding: 10px;
  position: fixed;
  width: 70%;
  z-index: 1060;
  border-radius: 15px;
  background: #f6f6f6;
}
.cookie-agree__button {
  cursor: pointer;
}

.cookie-agree {
  align-items: center;
  -webkit-box-pack: justify;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.cookie-agree__text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0 20px;
}

.cookie-agree__text a {
  color: var(--main-red);
  text-decoration: underline;
}

.cookie-agree__button {
  color: var(--main-red);
  /* width: 150px; */
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1600px) {
  .banner-text {
    font-size: 40px;
  }
  .header-container {
    gap: 25px;
  }
  .header-nav__list {
    flex-wrap: wrap;
    gap: 15px;
    height: auto;
  }
  .header-right {
    justify-content: space-between;
  }

  .horizontal-section .pl-in {
    gap: 25px;
  }

  .horizontal-section .catalog-props-buy-wrap {
    gap: 25px;
  }

  .cart-btn {
    min-width: 120px;
  }

  .popular-slide-price {
    font-size: 20px;
  }

  .popular-slide-price--old,
  .percent-sale {
    font-size: 14px;
  }

  .substrate-slide-popular {
    font-size: 16px;
  }
}

@media (max-width: 1350px) {
  .banner-text {
    font-size: 32px;
    width: 72%;
  }
}
@media (max-width: 1200px) {
  .catalog-section {
    padding-left: 0;
  }

  .cookie-notification-modal {
    width: 96%;
    left: 2%;
  }

  .cookie-agree__text {
    padding: 0;
  }
}
@media (max-width: 880px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* header */
  .header {
    gap: 0;
  }
  .formWrapAuth {
    padding: 0;
    width: 100%;
    max-width: 340px;
  }
  .formWrapAuth h3 {
    font-size: 18px;
  }
  .header-container {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    align-items: center;
  }

  .header-burger,
  .header-search-mob {
    display: block;
    width: 25px;
  }

  .header-burger {
    width: 24px;
    height: 24px;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .header-burger span {
    height: 2px;
    width: 100%;
    background: #232323;
    border-radius: 2px;
    transition: 0.3s;
  }

  .header-burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .header-burger.active span:nth-child(2) {
    opacity: 0;
  }

  .header-burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header-nav__item a {
    font-weight: 600;
  }

  .header-search-mob__wrap {
    padding: 15px;
    padding-bottom: 12px;
  }

  .header-search-mob__wrap.active {
    display: block;
    position: absolute;
    width: 100%;
    background-color: #fff;
    top: 0;
  }

  .header-search-mob__form {
    position: relative;
  }

  .header-search-mob__input {
    width: 100%;
    padding: 12px 17px;
    border-radius: 10px;
    height: 42px;
    border: 1px solid var(--main-gray);
  }

  .header-search-mob__input:focus-visible {
    border: 1px solid var(--main-red);
    outline: none;
  }
  .header-search-mob__input::placeholder {
    color: var(--gray);
    border: none;
  }
  .header-search-mob__btn {
    position: absolute;
    top: 6px;
    right: 10px;
  }

  .header-location__select {
    display: none;
  }

  .header-middle {
    display: none;
  }

  /* .header-catalog-search-wrap {
    display: none;
  } */

  .header-info {
    display: none;
  }

  .header-tools__item--busket,
  .header-tools__item--profile {
    display: none;
  }

  .header-tools {
    gap: 12px;
    display: none;
  }
  .header-tools__title {
    display: none;
  }
  .header-logo {
    height: auto;
  }
  .logo {
    width: 94px;
  }

  .header-tools__img {
    width: 19px;
    height: 19px;
  }

  .header-nav__mob.active {
    display: block;
    padding: 15px;
    padding-bottom: 30px;
  }

  .header-nav__list {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  /* banner section */
  .banner-pagination {
    display: flex;
    gap: 3px;
  }

  .banner-slider-wrap {
    border-radius: 0;
  }

  .banner-pagination .swiper-pagination-bullet-active {
    background-color: #d6d6d6;
  }

  .banner-slider {
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .banner-slider.container {
    padding-right: 0;
    padding-left: 0;
  }
  main {
    margin-top: 69px;
  }
  .main-banner__text {
    bottom: 10px;
    left: 10px;
    width: 85%;
    font-size: 16px;
    text-align: center;
  }

  .banner-swiper-btns {
    display: none;
  }

  .banner-btn-text-wrap {
    top: 60%;
    left: 16%;
    width: 70%;
  }

  .banner-text {
    font-size: 20px;
    width: 100%;
    text-align: center;
  }

  .banner-btn {
    font-size: 12px;
    width: 145px;
    height: 40px;
    padding: 13px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 50px;
  }

  .banner-slider .slide-image img {
    height: auto;
  }

  /* news-section */

  .section-news__new-title {
    height: auto;
  }

  .section-news__swiper-btn {
    display: none;
  }

  .section-news {
    padding-right: 0;
  }

  .section-news-wrap {
    padding-right: 20px;
  }

  .section-news-slider.swiper {
    /* overflow: visible; */
  }

  .section-news__title-links {
    padding-right: 20px;
    align-items: end;
  }

  .section-news__link {
    max-width: 95%;
  }

  /* reels section */
  .section-reels__btn {
    display: none;
  }

  /* section popular */
  .popular-title-all-wrap {
    align-items: end;
  }

  .section-popular {
    margin-bottom: 20px;
  }

  .favorite-compare-icons {
    margin-left: 0;
  }

  .link-add-cart {
    max-width: 200px;
  }
  .popular-title-all-wrap {
    margin-bottom: 20px;
  }

  .swiper-slide.slide-popular {
    max-width: 90%;
  }

  /* section catalog */
  .section-catalog-index {
    margin-bottom: 20px;
  }

  .section-all-links {
    font-size: 12px;
  }

  .section-catalog-title {
    margin-bottom: 20px;
  }

  .index-catalog-name {
    font-size: 14px;
  }

  .index-list-catalog-item {
    padding: 10px;
  }

  .index-list-catalog-items.swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* form section */
  .formQuestionDefault {
    padding: 20px 30px;
  }

  .siteFormWrap .row-2 {
    grid-template-columns: 1fr;
  }

  .formFieldNameWuestionTovar {
    grid-template-columns: 1fr;
  }

  .formFieldNameWuestionTovar {
    flex-direction: column;
  }

  .name-field {
    width: 100%;
  }

  .formFieldNameWuestionTovar.has-tovar .textarea {
    grid-column: unset;
  }
  /* footer */
  .footer-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .footer-info-block {
    order: 4;
  }

  .footer-nav {
    order: 3;
  }

  .footer-suscribe__subtitle {
    font-size: 14px;
    text-align: center;
  }

  .footer-suscribe__input {
    width: 100%;
    min-width: 0;
  }

  .footer-suscribe__btn {
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
  }

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

  .footer-info-block {
    text-align: center;
  }

  .footer-hotline__subtitle {
    display: none;
  }

  .footer-socials__list {
    justify-content: center;
  }

  .footer-mob-menu {
    box-shadow: 0px 0px 5px 0px #00000014;
    height: 75px;
    background-color: #fff;
    position: fixed;
    bottom: -100px;
    display: none;
    width: 100%;
    z-index: 200;
    padding: 15px;
    transition: bottom 0.3s ease;
  }

  .footer-mob-menu.visible {
    /* bottom: 0; */
  }

  .footer-mob-menu-list {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }

  .footer-suscribe__input {
    margin-right: 0;
  }

  .footer-mob-menu-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-mob-menu__icon-title {
    font-size: 10px;
  }

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

  /* карточка */
  .product-details-pictures {
    width: 100%;
  }

  .gallery-thumbs {
    display: none;
  }

  div.card-swiper-btn-next,
  div.card-swiper-btn-prev {
    display: none;
  }

  .product-details-pictures .swiper-container.gallery-top {
    margin: 0 auto;
  }

  .breadcrumb-mob {
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 18px 0;
  }

  button.dropdown__btn {
    font-size: 14px;
  }

  .breadcrumbs {
    display: none;
  }
  .breadcrumbs a {
    color: var(--main-black);
  }
  .breadcrumbs.mob {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .wrap-page-personal {
    margin-top: 20px;
  }
  .product-details {
    flex-direction: column;
  }

  .product-details-in {
    width: 100%;
  }

  .product-details-title {
    font-size: 15px;
  }

  .catalog-element-baseprice {
    font-size: 24px;
  }

  .catalog-element-old-price {
    font-size: 16px;
  }

  .percent-sale {
    font-size: 14px;
  }
  .catalog-price-element {
    align-items: end;
  }

  .charakter-wrapper {
    grid-template-columns: 1fr;
  }

  .pd-toggles {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .product-details-in {
    position: static;
  }

  .catalog-element-main-info {
    padding: 0;
    background-color: transparent;
  }

  .catalog-element-buyblock {
    width: 100%;
  }
  .catalog-element-slider-btns {
    top: 48px;
  }

  .block-3d-picture_right {
    left: 25px;
    top: auto;
    bottom: 25px;
  }

  .block-3d-picture_right-title {
    font-size: 16px;
  }

  .block-3d-picture_right-text {
    font-size: 14px;
  }

  .block-3d-picture_right-text {
    max-width: 100%;
  }

  .advantage-block_item {
    width: 100%;
  }

  .block-3d-picture_img img {
    min-height: 200px;
    object-fit: cover;
    border-radius: 15px;
  }

  .advantage-title {
    font-size: 24px;
  }

  .advantage-item {
    font-size: 14px;
    max-width: 100%;
  }

  .advantage-right img {
    min-height: 250px;
    border-radius: 15px;
  }

  .advantage-left {
    max-width: 100%;
    border-radius: 15px;
  }

  .product-details-pictures .swiper-container.gallery-top {
    min-height: 500px;
  }

  .product-picture-big .swiper-slide {
    min-height: 500px;
  }

  /* каталог */

  .catalog-title-count-wrap {
    display: none;
  }
  .catalog-view-toggler {
    display: none;
  }

  .sticky-block {
    top: 0;
  }

  .wrap-catalog-inner {
    margin-right: 0px;
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #fff;
    z-index: 999;
    top: 0px;
    left: 0;
    display: none;
  }
  .wrap-catalog-inner.active {
    display: block;
  }

  .wrap-sort-filter {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .filter-btn_mob {
    display: flex;
    gap: 5px;
    font-size: 14px;
    align-items: center;
  }

  .filters-back-btn {
    display: block;
    width: 75px;
    height: 24px;
  }

  .filters-back-arrow {
    border-left: 2px solid var(--main-red);
    border-top: 2px solid var(--main-red);
    rotate: -45deg;
    width: 9px;
    height: 9px;
  }

  .filters-title {
    font-size: 20px;
  }

  .catalog-sort-view-wrap {
    padding: 0;
    height: auto;
    margin-bottom: 20px;
  }

  .catalog_section_el-desk .section-props {
    display: block;
  }

  .catalog-section {
    padding: 0;
    flex-direction: column;
    padding-bottom: 25px;
  }

  .catalog-sort-section-wrap {
    padding: 0;
  }

  .catalog-section-default .product-item-container,
  .product-item-container {
    padding: 0;
    width: 100%;
  }

  .product-item-small-card {
    width: 100%;
  }

  .catalog-section-default .pl-in {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .catalog-section-default .pl-picture {
    width: 25%;
  }

  span.swiper-pagination-bullet {
    width: 4px;
    height: 4px;
  }

  .catalog-item-cart-btn,
  .popular-cart-btn {
    min-width: 110px;
    font-size: 12px;
    height: 40px;
    padding: 13px;
    border-radius: 10px;
  }

  .sp-star-on svg {
    width: 13px;
    height: 13px;
  }

  .rating {
    font-size: 13px;
    gap: 5px;
    margin-top: 0;
  }

  .popular-swiper-item .pl-name,
  .pl-name {
    font-size: 14px;
  }

  .prop-name,
  .prop-value {
    font-size: 12px;
  }

  .base-price,
  .popular-swiper-item .base-price {
    font-size: 20px;
  }

  .base-price.not-available {
    font-size: 18px;
  }

  .popular-swiper-item .pl-picture a {
    padding-bottom: 25px;
    margin-bottom: 10px;
  }

  .old_price-section,
  .percent-sale,
  .popular-swiper-item .old_price-section,
  .popular-swiper-item .percent-sale {
    font-size: 14px;
  }

  .text-price {
    gap: 6px;
  }

  .catalog-sale {
    gap: 3px;
  }

  .favorite-compare-icons div,
  .popular-swiper-item .favorite-compare-icons div {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .favorite-compare-icons div svg {
    width: 19px;
    height: 17px;
  }
  .catalog-props-buy-wrap {
    width: 74%;
  }

  .wrap-banner-category img {
    width: 100%;
  }

  .catalog-block-header {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .wrapCrumbSort {
    margin-top: 30px;
  }

  /*news */
  .news-page-menu {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .news-wrap_title {
    font-size: 20px;
  }

  .news-link {
    font-size: 15px;
  }

  .news-list_items {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-item-img {
    margin-bottom: 12px;
  }

  .news-item-img img {
    margin: 0 auto;
  }

  .news-description {
    padding-left: 15px;
  }

  .news-item-title {
    font-size: 16px;
    height: auto;
    margin-bottom: 7px;
  }

  .news-text_preview {
    font-size: 14px;
    height: auto;
    -webkit-line-clamp: 3;
  }

  .wrap-news-info-item {
    font-size: 10px;
  }

  .breadCrumbsDesk {
    display: none;
  }

  .news-container .breadcrumbs {
    display: block;
    padding: 0;
  }

  .news-container {
    margin-top: 30px;
  }

  .wrap-news-info {
    font-size: 12px;
    gap: 12px;
  }

  .news-detail .news-info-item-count {
    font-size: 12px;
  }

  .news-detail .wrap-news-info-item {
    gap: 5px;
  }

  .news-detail .wrap-news-info-item svg {
    width: 20px;
  }

  .title-news-detail {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .news-item-preview-text,
  .news-item-detail-text {
    font-size: 14px;
    line-height: 22px;
  }

  .news-item-preview-text {
    margin-bottom: 15px;
  }

  .news-item-detail-text h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 7px;
  }

  .news-item-detail-text ul,
  .news-item-detail-text ol {
    padding-left: 20px;
  }

  .news-item-detail-text p:nth-child(3n) {
    margin-bottom: 15px;
  }

  /* избранное favorite */
  .favorite-container {
    margin-top: 60px;
  }
  .wrap-favorite-cart .col-block-profile {
    display: none;
  }

  .wrap-favorite-cart {
    margin-bottom: 0;
  }

  .wrap-favorite-items {
    width: 100%;
    flex-direction: column;
  }

  .raiting-favorite {
    display: none;
  }

  .pl-in-favorite {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .favorite-item {
    background-color: #fafafa;
    border-radius: 15px;
    padding: 15px;
    width: 100%;
  }

  .favorite-item .cart-favorite-compare-wrap {
    justify-content: center;
  }

  .pl-picture-favorite {
    width: 30%;
    margin-bottom: 20px;
  }

  .favorite-item .swiper-card-category {
    padding-bottom: 20px;
  }
  .favorite-item .text-price {
    flex-wrap: wrap;
  }

  .favorite-item .base-price {
    height: auto;
  }

  .favorite-title {
    display: block;
    color: var(--main-black);
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
  }

  .wrap-empty-compare {
    text-align: center;
    width: 100%;
  }

  .wrap-list-personal-link {
    position: absolute;
    left: -400px;
  }
  .wrap-personal-profile {
    max-width: none;
  }
  .wrapProfilePersonalData .blockShadow {
    box-shadow: none;
  }
  .profilePersonalData {
    padding: 0;
  }
  .profileAddressItemControl {
    gap: 12px;
  }
  .profilePersonalDataWrapTitle {
    margin-bottom: 16px;
  }
  .modal h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .modal-close {
    right: 5px;
    top: 5px;
  }

  /* сравнение compare */
  .compare-wrap .wrap-page-personal {
    display: none;
  }

  .compare-form {
    width: 100%;
  }

  .title-page-compare {
    display: block;
    font-weight: 600;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .section-popular__btn {
    display: none;
  }
  .profilePersonalDataWrapTitle {
    margin-bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .catalog-section-swiper {
    max-width: 90%;
  }
  .siteFormWrap h2 {
    font-size: 17px;
  }
  .siteFormWrap .subtitleForm {
    font-size: 13px;
    font-weight: 500;
    margin: 10px 0 20px;
  }
  .swiper-slide.product-item-small-card {
    max-width: 80%;
    width: 100% !important;
  }

  .catalog-section-swiper.swiper {
    overflow: visible;
  }

  .catalog-element-popular {
    overflow: hidden;
    padding-top: 30px;
  }

  .catalog-element-swiper-btn {
    display: none;
  }

  .section-index-catalog-swiper .swiper-slide {
    width: 100% !important;
  }
  .pageTitleBlock {
    font-size: 17px;
  }
  .formAuth .modal {
    padding: 40px 23px 30px;
    max-width: 320px;
  }
  .agreeText a {
    font-size: 12px;
  }
  .formWrapAuth {
    gap: 20px;
  }
  .formWrapAuth .formField {
    min-height: 40px;
  }
  .fieldPhoneAuth {
    font-size: 16px !important;
    height: 46px !important;
  }
  .formWrapAuth h3 {
    margin-bottom: 0 !important;
  }

  /* 404 */
  .page-404-container {
    gap: 10px;
  }
  .page-404-title {
    font-size: 70px;
  }

  .page-404-title img {
    width: 85px;
    height: 85px;
  }

  .page-404-subtitle {
    font-size: 18px;
  }

  .page-404-link {
    padding: 14px 24px;
    margin-top: 10px;
    font-size: 14px;
  }
  .cookie-agree__button {
    font-size: 14px;
  }

  .cookie-agree__text {
    font-size: 12px;
  }
}
@media (max-width: 460px) {
  .section-title {
    font-size: 20px;
    /* margin-bottom: 20px; */
  }
  .section-news__title {
    margin: 0;
  }
  /* news-section */
  .section-news {
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .section-news__new-title {
    font-size: 16px;
  }

  .section-news__annot {
    font-size: 14px;
  }

  .section-news__content {
    padding-left: 10px;
  }

  .section-news__all-links {
    font-size: 12px;
  }

  .section-news__title-links {
    margin-bottom: 20px;
  }

  .spanLinkAgree {
    line-height: 16px;
  }
  .link-in-agree {
    font-size: 12px;
  }
}

/* End */
/* /local/templates/avex/src/styles/style.css?177546134283338 */
