@charset "UTF-8";
@font-face {
  font-family: HelveticaNeue;
  font-display: swap;
  src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue;
  font-display: swap;
  src: url("../fonts/HelveticaNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue;
  font-display: swap;
  src: url("../fonts/HelveticaNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue;
  font-display: swap;
  src: url("../fonts/HelveticaNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue;
  font-display: swap;
  src: url("../fonts/HelveticaNeue-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
/* ------------------------------------------------------------------------------------------------------------------------------
KEYFRAMES
--------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes show-header {
  0% {
    inset-block-start: -100%;
  }
  100% {
    inset-block-start: 0;
  }
}
@keyframes show-header {
  0% {
    inset-block-start: -100%;
  }
  100% {
    inset-block-start: 0;
  }
}
@-webkit-keyframes fade-up-big {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up-big {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes list-down {
  0% {
    opacity: 0;
    max-height: 0;
  }
  100% {
    opacity: 1;
    max-height: initial;
  }
}
@keyframes list-down {
  0% {
    opacity: 0;
    max-height: 0;
  }
  100% {
    opacity: 1;
    max-height: initial;
  }
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@-webkit-keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------
MEDIAQUERIES 
--------------------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------------------
RESET
--------------------------------------------------------------------------------------------------------------------------------*/
* {
  margin: 0;
  border: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  inline-size: 100%;
  block-size: 100%;
}

body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

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

button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

/* ------------------------------------------------------------------------------------------------------------------------------
ROOT
--------------------------------------------------------------------------------------------------------------------------------*/
:root {
  --container-width: 1310px;
  --container-padding: 15px;
  --bs-gutter-x: var(--container-padding);
  --font-main: "HelveticaNeue", sans-serif;
  --font-title: "HelveticaNeue", sans-serif;
  --white: white;
  --black: #1a1a1a;
  --accent: #e60000;
  --red: #e60000;
  --border: #efeaea;
  --gold: #f7c74d;
  --green: #45c34e;
  --scrollbar: gray;
  --scrollbar-track: gray;
  --scrollbar-thumb: var(--accent);
}

/* ------------------------------------------------------------------------------------------------------------------------------
TYPOGRAPHY
--------------------------------------------------------------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

.icon--like {
  width: 22px;
  height: 20px;
}

.icon--map-pin {
  width: 15px;
  height: 20px;
}

.icon--eagle {
  width: 34px;
  height: 40px;
}

.icon--burgersvg {
  width: 28px;
  height: 19px;
}

.icon--searchsvg {
  width: 20px;
  height: 20px;
}

.icon--plus {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
}

.icon--refresh {
  width: 16px;
  height: 16px;
}

.icon--pre-flash {
  width: 1rem;
  height: 1.4375rem;
}

.icon--pre-photo {
  width: 1.75rem;
  height: 1.625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
BASE
--------------------------------------------------------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  opacity: 0.2;
  -webkit-transition: opacity 0.75s ease-in-out;
  transition: opacity 0.75s ease-in-out;
}
html.loaded {
  opacity: 1;
}

body {
  position: relative;
  text-wrap: balance;
}
body .fake-scrollbar {
  position: fixed; /* или absolute, если нужно внутри контейнера */
  top: 0;
  right: 0;
  height: 100%;
  background-color: var(--scrollbar-track); /* цвет скроллбара */
  z-index: 9999; /* чтобы был сверху */
}

*::-webkit-scrollbar {
  inline-size: 0.625rem;
  background-color: var(--scrollbar);
}
*::-webkit-scrollbar-track {
  border-radius: 0.625rem;
  -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  background: var(--scrollbar-track);
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.625rem;
  border: 0 none #fff;
  background-color: var(--scrollbar-thumb);
  cursor: pointer;
}

.container-greyout {
  margin-inline: auto;
  max-inline-size: calc(var(--container-width) + 50px);
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding-inline: 40px;
  padding-block: 40px;
}

.container {
  margin-inline: auto;
  max-inline-size: var(--container-width);
  padding-inline: var(--container-padding);
}

.container-full {
  padding: 0 var(--container-padding);
  max-width: 100%;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.img-reponsive-contain {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

.site-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
}

.hidden {
  display: none;
}

.posar {
  position: relative;
}

.image-bg {
  position: relative;
}
.image-bg img {
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  -o-object-fit: cover;
     object-fit: cover;
  block-size: 100%;
  inline-size: 100%;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  background: #000; /* или другой фон для выделения */
  color: #fff; /* цвет текста */
  padding: 8px;
  z-index: 1000;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important; /* предотвращает перенос текста */
  border: 0 !important;
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-block-size: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}

.accent {
  color: var(--accent);
}

svg {
  max-width: 50px;
  max-height: 50px;
}

/* --------------------------------------------------------------- Breadcrumbs --------------------------------------------------------------------*/
.profile .breadcrumbs {
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-padding-after: 30px;
          padding-block-end: 30px;
}

.auto .breadcrumbs,
.services .breadcrumbs {
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
  -webkit-padding-after: 30px;
          padding-block-end: 30px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.breadcrumbs__list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.breadcrumbs__list li a {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #969696;
}
.breadcrumbs__list li a:hover {
  color: var(--accent);
}
.breadcrumbs__list li span {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #1a1a1a;
}

/*-----------------------------------------------------------------------------------------------------------------
НИжняя часть меню в хедере (КРАСНАЯ ПОЛОСА С мЕНЮШКОЙ)
 ------------------------------------------------------------------------------------------------------------------*/
.header-bottom {
  background-color: var(--accent);
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.header-bottom.hide {
  visibility: hidden;
  opacity: 0;
  min-height: 0;
}
.header-bottom:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -110vw;
  height: 100%;
  width: 110vw;
  background-color: var(--accent);
}
.header-bottom:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -110vw;
  height: 100%;
  width: 110vw;
  background-color: var(--accent);
}
.header-bottom__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  padding-block: 20px;
}
.header-bottom__nav ul li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-bottom__nav ul li a:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------------------------------------------
LAYOUTS
 ------------------------------------------------------------------------------------------------------------------*/
.fdc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.gap-20,
.gap-x-20 {
  gap: 0 20px;
}

.gap-20,
.gap-y-20 {
  gap: 20px 0;
}

.gap-30,
.gap-x-30 {
  gap: 0 30px;
}

.gap-30,
.gap-y-30 {
  gap: 30px 0;
}

.gap-40,
.gap-x-40 {
  gap: 0 40px;
}

.gap-40,
.gap-y-40 {
  gap: 40px 0;
}

.column_66 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 66.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.column_66--spaceborder {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.column_33 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Listings block
--------------------------------------------------------------------------------------------------------------------------------*/
.listings-block {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #efeaea;
  margin-bottom: 30px;
  border-bottom: 1px solid #efeaea;
}
.listings-block--noborder {
  border-bottom: none;
}
.listings-block__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 0.3125rem;
}
.listings-block__title span {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
}
.listings-block__title small {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 120%;
  color: #b1b1b1;
}
.listings-block__description {
  display: block;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 130%;
  color: #b1b1b1;
  margin-bottom: 1.25rem;
}
.listings-block__all {
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
}
.listings-block__all .btn {
  padding-inline: 1.875rem;
}
.listings-block .product-card {
  padding: 0;
}
.listings-block .product-card_like {
  top: 0.875rem;
  right: 0.5rem;
}
.listings-block .product-card_like svg {
  width: 1.625rem;
  height: 1.5rem;
}
.listings-block .product-card_meta {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.25rem;
}
.listings-block .product-card_spacebetween {
  padding-inline: 0;
}
.listings-block .product-card_price {
  margin-bottom: 0.5rem;
}
.listings-block .product-card_price strong {
  font-weight: 500;
}
.listings-block .product-card_title {
  margin-bottom: 0.9375rem;
}
.listings-block_noadds {
  padding-top: 2.1875rem;
  padding-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.listings-block_noicon {
  margin-bottom: 0.4375rem;
}
.listings-block_noicon svg {
  width: 2rem;
  height: 2rem;
}
.listings-block_warning {
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  line-height: 130%;
  color: #3d3d3d;
  margin-bottom: 1.5625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Reviews block
--------------------------------------------------------------------------------------------------------------------------------*/
.reviews-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.reviews-block__rating {
  margin-bottom: 12px;
}
.reviews-block__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
}
.reviews-block__title span {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
}
.reviews-block__title small {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 120%;
  color: #b1b1b1;
}
.reviews-block__description {
  display: block;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 130%;
  color: #b1b1b1;
  margin-bottom: 1.25rem;
}
.reviews-block__collection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.reviews-block__collection a {
  aspect-ratio: 1/1;
  width: 80px;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.reviews-block__collection a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.reviews-block__collection a img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Simple block
--------------------------------------------------------------------------------------------------------------------------------*/
.simple-block__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.simple-block__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #3d3d3d;
}

/* ------------------------------------------------------------------------------------------------------------------------------
HEADER SIGN SLIDERS
--------------------------------------------------------------------------------------------------------------------------------*/
.authorize-login,
.authorize-signup {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 24vw;
  min-width: 31.25rem;
  background-color: #fff;
  padding-block: 2.5rem;
  z-index: 9999;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.5rem;
  overflow: hidden;
}
.authorize-login.active,
.authorize-signup.active {
  right: 0;
}
.authorize-login_close,
.authorize-signup_close {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}
.authorize-login_close:hover svg,
.authorize-signup_close:hover svg {
  fill: var(--accent);
}
.authorize-login_close svg,
.authorize-signup_close svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: #b1b1b1;
  width: 1.25rem;
  height: 1.25rem;
}
.authorize-login_title,
.authorize-signup_title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
}
.authorize-login_spacebetween,
.authorize-signup_spacebetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.authorize-login_top,
.authorize-signup_top {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.authorize-login_bottom,
.authorize-signup_bottom {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.authorize-login_bottom p,
.authorize-signup_bottom p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  color: #3d3d3d;
}
.authorize-login .panel-login-btn,
.authorize-login .panel-signup-btn,
.authorize-signup .panel-login-btn,
.authorize-signup .panel-signup-btn {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.authorize-login .panel-login-btn:hover,
.authorize-login .panel-signup-btn:hover,
.authorize-signup .panel-login-btn:hover,
.authorize-signup .panel-signup-btn:hover {
  border-bottom: 1px solid var(--accent);
}
.authorize-login .panel-reset-btn,
.authorize-signup .panel-reset-btn {
  display: inline-block;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
}
.authorize-login .panel-reset-btn:hover,
.authorize-signup .panel-reset-btn:hover {
  color: var(--accent);
}
.authorize-login .panel-remember-label,
.authorize-signup .panel-remember-label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #3d3d3d;
  margin-bottom: 1.25rem;
}
.authorize-login .panel-remember-label span,
.authorize-signup .panel-remember-label span {
  padding-top: 0.125rem;
  display: block;
}
.authorize-login .panel-shorter-text,
.authorize-signup .panel-shorter-text {
  display: inline-block;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #3d3d3d;
  margin-bottom: 1.5625rem;
}
.authorize-login_panels label,
.authorize-signup_panels label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #3d3d3d;
}
.authorize-login_panels input[type=number],
.authorize-login_panels input[type=phone],
.authorize-login_panels input[type=email],
.authorize-login_panels input[type=text],
.authorize-login_panels input[type=password],
.authorize-signup_panels input[type=number],
.authorize-signup_panels input[type=phone],
.authorize-signup_panels input[type=email],
.authorize-signup_panels input[type=text],
.authorize-signup_panels input[type=password] {
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}
.authorize-login_panels input[type=checkbox],
.authorize-signup_panels input[type=checkbox] {
  cursor: pointer;
}
.authorize-login_panels .login-panel,
.authorize-login_panels .signup-panel,
.authorize-signup_panels .login-panel,
.authorize-signup_panels .signup-panel {
  display: none;
}
.authorize-login_panels .login-panel.active,
.authorize-login_panels .signup-panel.active,
.authorize-signup_panels .login-panel.active,
.authorize-signup_panels .signup-panel.active {
  display: block;
  -webkit-animation: fade-up-big 0.3s ease-in-out;
          animation: fade-up-big 0.3s ease-in-out;
}
.authorize-login .checkbox-item,
.authorize-signup .checkbox-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
.authorize-login .checkbox-input,
.authorize-signup .checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d8d8d8;
  border-radius: 0.3125rem;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.authorize-login .checkbox-input:checked,
.authorize-signup .checkbox-input:checked {
  background-image: url("../icons/check.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
  outline: 1px solid var(--accent);
}
.authorize-login .checkbox-input:active,
.authorize-signup .checkbox-input:active {
  outline: 1px solid var(--accent);
}
.authorize-login .btn,
.authorize-signup .btn {
  display: initial;
  width: 100%;
  text-align: center;
}

.authorize-signup input[type=password] {
  margin-bottom: 0.625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Banners and advertising elements
--------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------- long baner -----------------------------------------------------------*/
.long-banner {
  color: var(--white);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 53px 63px;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.long-banner--red {
  background-image: url("../images/featured/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.long-banner h2 {
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 10px;
}
.long-banner p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  max-width: 65%;
  margin-bottom: 10px;
}

/*----------------------------------------------- Adv mini -----------------------------------------------------------*/
.adv-mini {
  border-radius: 0.625rem;
  min-height: 6.6875rem;
  width: 18.0625rem;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #e6e6e6;
  border-radius: 0.625rem;
}
.adv-mini:hover > * {
  cursor: pointer;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.adv-mini > * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.adv-mini img {
  height: 100%; /* растягиваем изображение по высоте контейнера */
  width: auto; /* сохраняем пропорции изображения по ширине */
  max-width: 100%; /* чтобы не выйти за границы контейнера по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.adv-mini__title {
  font-weight: 200;
  font-size: 3.125rem;
  text-align: center;
  color: #aeaeae;
}
.adv-mini__annotation {
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  color: #aeaeae;
}

/*--------------------------------------------- Adv ------------------------------------------*/
.adv {
  border-radius: 0.625rem;
  aspect-ratio: 400/370;
  background: #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 200;
  font-size: 6rem;
  text-align: center;
  color: #aeaeae;
}
.adv:hover > * {
  cursor: pointer;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.adv > * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.adv img {
  height: 100%; /* растягиваем изображение по высоте контейнера */
  width: auto; /* сохраняем пропорции изображения по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/*--------------------------------------------- Adv expanded ------------------------------------------*/
.adv-expanded {
  border-radius: 0.625rem;
  height: 100%;
  max-height: 730px;
  background: #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #aeaeae;
  font-weight: 200;
  font-size: 6rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.11);
}
.adv-expanded b {
  font-weight: 200;
  font-size: 6rem;
  line-height: 100%;
}
.adv-expanded p {
  font-weight: 300;
  font-size: 14px;
}
.adv-expanded--transparent {
  background-color: transparent;
}
.adv-expanded:hover > * {
  cursor: pointer;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.adv-expanded > * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.adv-expanded img {
  height: 100%; /* растягиваем изображение по высоте контейнера */
  width: auto; /* сохраняем пропорции изображения по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* ------------------------------------------------------------------------------------------------------------------------------
BOOTSTRAP EXTRA
--------------------------------------------------------------------------------------------------------------------------------*/
.spaceborder-40 {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.g-16,
.gx-16 {
  --bs-gutter-x: 1rem;
}

.g-16,
.gy-16 {
  --bs-gutter-y: 1rem;
}

.g-20,
.gx-20 {
  --bs-gutter-x: 1.25rem;
}

.g-20,
.gy-20 {
  --bs-gutter-y: 1.25rem;
}

.g-25,
.gx-25 {
  --bs-gutter-x: 1.55rem;
}

.g-25,
.gy-25 {
  --bs-gutter-y: 1.55rem;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 1.875rem;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 1.875rem;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
}

.g-60,
.gx-60 {
  --bs-gutter-x: 3.75rem;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 3.75rem;
}

.g-70,
.gx-70 {
  --bs-gutter-x: 70px;
}

.g-70,
.gy-70 {
  --bs-gutter-y: 70px;
}

.custom-col-5 {
  width: 20%;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CATEGORIES OVERLAY
--------------------------------------------------------------------------------------------------------------------------------*/
.catsoverlay {
  --base-top: 130px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.35);
  width: 100%;
  top: var(--base-top);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.catsoverlay.active {
  opacity: 1;
  visibility: visible;
}
.catsoverlay-wrapper {
  background-color: #fff;
  height: 100%;
}
.catsoverlay-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  margin: 0 auto;
  max-width: var(--container-width);
  padding-right: 0.3125rem;
}
.catsoverlay-menu_lg-header {
  display: none;
  position: relative;
  text-align: center;
  padding: 1.875rem 1.875rem 0rem;
}
.catsoverlay-menu_lg-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.catsoverlay-menu_lg-close {
  position: absolute;
  top: 2.1875rem;
  right: 1.875rem;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../icons/close.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  opacity: 0.65;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.catsoverlay-menu_lg-close:hover {
  opacity: 1;
}
.catsoverlay-menu_cats_wrapper {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16.5625rem;
  padding: 1.5625rem 0.9375rem 1.5625rem 0;
}
.catsoverlay-menu_cats_wrapper:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 1px;
  height: 10000px;
  z-index: 1;
  border-right: 1px solid var(--border);
}
.catsoverlay-menu_cats {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow-y: auto;
  max-height: calc(100vh - var(--base-top) - 30px);
  padding-left: 15px;
}
.catsoverlay-menu_cats::-webkit-scrollbar {
  inline-size: 0rem;
  background-color: transparent;
}
.catsoverlay-menu_cats::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}
.catsoverlay-menu_cats::-webkit-scrollbar-thumb {
  border: 0 none;
}
.catsoverlay-menu_cats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 2.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1.25rem;
  overflow: hidden;
  border-radius: 0rem;
}
.catsoverlay-menu_cats-item:hover {
  background: #f8f8f8;
}
.catsoverlay-menu_cats-item:hover a {
  color: var(--accent);
}
.catsoverlay-menu_cats-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 2.625rem;
  color: #262626;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  font-weight: 500;
}
.catsoverlay-menu_cats-arrow {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.catsoverlay-menu_content {
  position: relative;
  width: 100%;
  padding: 3.125rem;
  overflow-y: auto;
}
.catsoverlay-menu_content::-webkit-scrollbar {
  inline-size: 0rem;
  background-color: var(--scrollbar);
}
.catsoverlay-menu_subcats {
  position: relative;
  height: 100%;
  display: none;
}
.catsoverlay-menu_subcats.active {
  display: block;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}
.catsoverlay-menu_subcats-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.catsoverlay-menu_subcats-title {
  font-weight: 500;
  font-size: 1.375rem;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
}
.catsoverlay-menu_subcats-blocks {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.catsoverlay-menu_subcats-block {
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  padding-bottom: 25px;
}
.catsoverlay-menu_subcats-linkwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  overflow: hidden;
}
.catsoverlay-menu_subcats-link {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #262626;
  line-height: 190%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.catsoverlay-menu_subcats-link:hover {
  color: var(--accent);
}
.catsoverlay-menu_subcats-link.title--subcats-link {
  width: auto;
  white-space: normal;
  font-size: 1rem;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.catsoverlay-menu_subcats-back {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.catsoverlay-menu_subcats-close {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../icons/close.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}
.catsoverlay-menu_subcats-arrow {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center center;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CUSTOM CHOICES SELECT
--------------------------------------------------------------------------------------------------------------------------------*/
.choices {
  position: relative;
}
.choices:focus .choices__inner {
  border: 1px solid var(--accent);
}

/* Добавляем стрелку через псевдоэлемент */
.choices::before {
  content: "";
  position: absolute;
  right: 10px; /* позиция справа */
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  opacity: 0.5;
  pointer-events: none; /* чтобы не мешала кликам */
}

.choices.is-open::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.choices__inner {
  border: 1px solid #efeaea;
  border-radius: 0.3125rem;
  min-height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  width: initial;
  background-color: transparent;
}

.choices__placeholder {
  opacity: 1;
}

.choices__list--dropdown .choices__item {
  padding: 0.9375rem 1.25rem !important;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #efeaea;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  overflow: hidden;
  word-break: break-all;
  min-width: 75px;
  border-color: var(--accent) !important;
}

.choices.is-focused .choices__inner {
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
}

.choices__item--choice.is-selected {
  background-color: var(--accent) !important;
  color: #fff;
}

.choices__item--disabled {
  display: none;
}

.choices[data-type*=select-one]::after {
  display: none;
}

/*------------------------------------------- Usual select with label -----------------------------------------------*/
.usual-select-label {
  color: #1a1a1a;
}
.usual-select-label label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}
.usual-select-label .choices::before {
  right: 10px;
  width: 26px;
  height: 26px;
}
.usual-select-label .choices.is-focused .choices__inner {
  border-radius: 5px;
}
.usual-select-label .choices__inner {
  font-size: 1rem;
  border: 1px solid #efeaea;
  border-radius: 5px;
  min-height: 3.125rem;
}

/*------------------------------------------- Small select with label -----------------------------------------------*/
.small-select-label {
  color: #1a1a1a;
}
.small-select-label label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
}
.small-select-label .choices:focus .choices__inner {
  border: 1px solid #efeaea;
}
.small-select-label .choices::before {
  right: 5px;
  width: 20px;
  height: 20px;
}
.small-select-label .choices__inner {
  font-size: 0.875rem;
  border: 1px solid #efeaea !important;
  border-radius: 5px !important;
  min-height: 2.5rem;
}

/*------------------------------------------- Search orderby filter -----------------------------------------------*/
.search-orderby .choices:focus .choices__inner {
  border: 1px solid transparent;
}
.search-orderby .choices::before {
  right: 5px;
  width: 20px;
  height: 20px;
}
.search-orderby .choices__inner {
  border: 1px solid transparent;
  padding-right: 15px;
}
.search-orderby .choices__list--dropdown,
.search-orderby .choices__list[aria-expanded] {
  border-color: #efeaea !important;
}

/* ------------------------------------------------------------------------------------------------------------------------------
COMPONENTS
--------------------------------------------------------------------------------------------------------------------------------*/
.separate-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/*----------------------------------------------search-form  ----------------------------------------------------*/
.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 0.625rem;
  min-height: 3.125rem;
  border: 1px solid #f8f8f8;
  background-color: #f8f8f8;
  padding: 0.5rem 1.25rem;
  border-radius: 0.3125rem;
  margin-right: 1.5625rem;
}
.search-form .search-input {
  width: 100%;
  font-size: 1rem;
  background-color: #f8f8f8;
  padding-left: 0.125rem;
}
.search-form .search-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.3125rem;
}

/*---------------------------------------------- shopBullet ----------------------------------------------------*/
.shopBullet {
  aspect-ratio: 305/240;
  border-radius: 0.625rem;
}
.shopBullet_dots {
  padding-inline: 0.35rem;
}
.shopBullet_dot:after {
  height: 0.25rem;
  margin-bottom: 0.35rem;
}
.shopBullet img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.shopBullet:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.section-ajax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  padding-inline: 1.875rem;
  min-height: 3.125rem;
  border-radius: 0.3125rem;
  margin-inline: auto;
  background: var(--accent);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  margin-top: 3.125rem;
}
.section-ajax:hover {
  opacity: 0.75;
}
.section-ajax_icon {
  display: block;
  width: 1rem;
  height: 1rem;
}
.section-ajax_name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
}

/*---------------------------------------------- SECTION HEADER ----------------------------------------------------*/
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.875rem;
}
.section-header_title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 120%;
  color: #1a1a1a;
}
.section-header_link {
  display: block;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  text-align: right;
  color: var(--accent);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section-header_link:hover {
  color: black;
}

/*---------------------------------------------- PRODUCT CARD ----------------------------------------------------*/
.product-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--white);
  padding: 0.625rem 0.625rem 1.25rem 0.625rem;
  border-radius: 0.625rem;
  height: 100%;
}
.product-card_preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-card_preloader_body {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: relative;
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}
.product-card_preloader_body::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px solid rgba(230, 0, 0, 0.65);
  -webkit-animation: prixClipFix 2s linear infinite;
          animation: prixClipFix 2s linear infinite;
}
.product-card_image {
  position: relative;
  aspect-ratio: 305/240;
  border-radius: 0.625rem;
  overflow: hidden;
}
.product-card_image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-card_image:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.product-card_rating {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  padding: 0.5625rem 0.625rem;
  border-radius: 0.3125rem;
  color: var(--white);
  background-color: var(--accent);
  z-index: 3;
}
.product-card_rating svg {
  fill: var(--white);
  width: 0.875rem;
  height: 0.875rem;
}
.product-card_rating span {
  display: block;
  max-height: 0.875rem;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 120%;
  text-transform: uppercase;
}
.product-card_like {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 3;
}
.product-card_like svg {
  width: 27px;
  height: 27px;
  stroke-width: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-card_spacebetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-inline: 0.625rem;
}
.product-card_info {
  padding-top: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.product-card_price {
  margin-bottom: 0.625rem;
}
.product-card_price strong {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  color: var(--black);
  margin-right: 0.4375rem;
}
.product-card_price small {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.product-card_title {
  margin-bottom: 1.25rem;
}
.product-card_title h2 {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 120%;
  color: var(--black);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.product-card_title h2:hover {
  color: var(--accent);
}
.product-card_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-card_meta .meta-timeago {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #3d3d3d;
  opacity: 0.5;
}
.product-card_meta .meta-location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-card_meta .meta-location:hover {
  opacity: 0.75;
}
.product-card_meta .meta-location_name {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: var(--black);
}
.product-card_meta .icon--map-pin {
  width: 0.875rem;
  height: 1.125rem;
}

/*---------------------------------------------- INPUTS ----------------------------------------------------*/
.textarea {
  display: block;
  width: 100%;
  border: 1px solid #efeaea;
  border-radius: 0.3125rem;
  min-height: 12.5rem;
  padding: 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #3d3d3d;
  resize: none;
}
.textarea::-webkit-input-placeholder {
  color: #969696;
}
.textarea::-moz-placeholder {
  color: #969696;
}
.textarea:-ms-input-placeholder {
  color: #969696;
}
.textarea::-ms-input-placeholder {
  color: #969696;
}
.textarea::placeholder {
  color: #969696;
}
.textarea:focus {
  outline: 1px solid var(--accent);
}

.input {
  display: block;
  width: 100%;
  border: 1px solid #efeaea;
  border-radius: 0.3125rem;
  min-height: 3.125rem;
  padding-inline: 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #3d3d3d;
}
.input::-webkit-input-placeholder {
  color: #969696;
}
.input::-moz-placeholder {
  color: #969696;
}
.input:-ms-input-placeholder {
  color: #969696;
}
.input::-ms-input-placeholder {
  color: #969696;
}
.input::placeholder {
  color: #969696;
}
.input:focus {
  outline: 1px solid var(--accent);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--accent);
  border-radius: 0.3125rem;
  min-height: 3.125rem;
  cursor: pointer;
  padding-inline: 0.9375rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  opacity: 0.75;
}
.btn--short {
  -ms-flex-item-align: start;
      align-self: start;
  padding-inline: 30px;
}

.btn-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  padding-inline: 1.875rem;
  min-height: 3.125rem;
  border-radius: 0.3125rem;
  background: var(--accent);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.btn-add:hover {
  opacity: 0.75;
}
.btn-add_before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 0.1875rem;
  background-color: var(--white);
}
.btn-add_name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
}

.btn-gray {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1.875rem;
  min-height: 3.125rem;
  border-radius: 0.3125rem;
  background: #f0f0f0;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.btn-gray:hover {
  color: var(--accent);
}

.btn-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1.875rem;
  min-height: 3.125rem;
  border-radius: 0.3125rem;
  background: var(--white);
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.btn-white:hover {
  color: var(--accent);
}

/*-------------------------------------------- Rating ----------------------------------------------------*/
[class*=_rating] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.78125rem;
}
[class*=_rating] .rating-num {
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
}
[class*=_rating] .rating-stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
}
[class*=_rating] .rating-stars_star svg {
  fill: transparent;
  stroke: #f7c74d;
  width: 1.125rem;
  height: 1.0625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[class*=_rating] .rating-stars_star.active svg {
  fill: #f7c74d;
}
[class*=_rating] .rating-reviews {
  font-weight: 400;
  font-size: 0.875rem;
  color: #969696;
}

/*-------------------------------------------- ads-tabs ----------------------------------------------------*/
[class*=_tabs] {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  width: 100%;
  margin-bottom: 2.5rem;
  overflow-x: hidden;
}
[class*=_tabs]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6.25rem;
  right: -6.25rem;
  height: 1px;
  border-bottom: 1px solid #efeaea;
}
[class*=_tabs] .site-tab,
[class*=_tabs] .login-tab,
[class*=_tabs] .signup-tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  border-bottom: 3px solid transparent;
  padding: 0.625rem 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[class*=_tabs] .site-tab span,
[class*=_tabs] .login-tab span,
[class*=_tabs] .signup-tab span {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[class*=_tabs] .site-tab small,
[class*=_tabs] .login-tab small,
[class*=_tabs] .signup-tab small {
  display: inline-block;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 120%;
  color: #b1b1b1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[class*=_tabs] .site-tab:hover,
[class*=_tabs] .login-tab:hover,
[class*=_tabs] .signup-tab:hover {
  color: rgba(230, 0, 0, 0.65);
}
[class*=_tabs] .site-tab:hover span,
[class*=_tabs] .site-tab:hover small,
[class*=_tabs] .login-tab:hover span,
[class*=_tabs] .login-tab:hover small,
[class*=_tabs] .signup-tab:hover span,
[class*=_tabs] .signup-tab:hover small {
  color: rgba(230, 0, 0, 0.65);
}
[class*=_tabs] .site-tab.active,
[class*=_tabs] .login-tab.active,
[class*=_tabs] .signup-tab.active {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}
[class*=_tabs] .site-tab.active span,
[class*=_tabs] .site-tab.active small,
[class*=_tabs] .login-tab.active span,
[class*=_tabs] .login-tab.active small,
[class*=_tabs] .signup-tab.active span,
[class*=_tabs] .signup-tab.active small {
  color: rgb(230, 0, 0);
}

/*-------------------------------------------- RADIO CHECKBOX  ----------------------------------------------------*/
.radio,
.checkbox {
  display: block;
  position: relative;
  font-size: 0.875rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-weight: 400;
}

/* скрываем оригинальный радиобатон */
.checkbox input[type=checkbox],
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

/* стиль кастомного овала */
.custom-radio,
.custom-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 2.5rem;
  padding: 0.3125rem 1.25rem;
  border: 1px solid #d5d5d5;
  border-radius: 6.25rem;
  color: #3d3d3d;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* выделение выбранного варианта */
.checkbox input[type=checkbox]:checked + .custom-checkbox,
.radio input[type=radio]:checked + .custom-radio {
  border-color: var(--accent);
  color: var(--accent);
}

/* Можно добавить эффект при наведении */
.checkbox:hover .custom-checkbox,
.radio:hover .custom-radio {
  border-color: #999;
}

/* --------------------------------------------------------------- Search orderby --------------------------------------------------------------------*/
.search-orderby__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.search-orderby__select {
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

/* ------------------------------------------------- Rate label  --------------------------------------------------------------------*/
.rate-label {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  min-height: 30px;
  padding-top: 1px;
  padding-inline: 10px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.rate-label--top {
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: #1a1a1a;
}
.rate-label--top svg {
  stroke: #1a1a1a;
  fill: #1a1a1a;
}
.rate-label--new {
  background-color: transparent;
  border: 1px solid #45c34e;
  color: #45c34e;
}
.rate-label--new svg {
  stroke: #45c34e;
  fill: #45c34e;
}
.rate-label svg {
  width: 12px;
  aspect-ratio: 1/1;
}

/* ------------------------------------------------- Price  --------------------------------------------------------------------*/
.price-base {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: var(--black);
  margin-right: 7px;
}
.price-base--top {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  min-height: 34px;
  padding-top: 1px;
  padding-inline: 10px;
  border-radius: 5px;
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: #1a1a1a;
}
.price-base--big {
  font-size: 30px;
}
.price-convert, .price-old {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #b1b1b1;
}

/* ------------------------------------------------- tags-panel  --------------------------------------------------------------------*/
.tags-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.tags-panel > * {
  border: 1px solid #d5d5d5;
  border-radius: 40px;
  padding-inline: 15px;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ------------------------------------------------- metas  --------------------------------------------------------------------*/
.metas {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.metas-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5);
}
.metas-item svg {
  fill: rgb(0, 0, 0);
  opacity: 0.5;
  width: 16px;
  aspect-ratio: 1/1;
}

.btn-tile {
  min-height: 44px;
  aspect-ratio: 1/1;
  border-radius: 0.3125rem;
  background: rgba(177, 177, 177, 0.2);
  font-weight: 500;
  font-size: 1rem;
  color: #b1b1b1;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.btn-tile svg {
  width: 22px;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-tile svg.icon--like {
  margin-top: 3px;
  stroke-width: 2;
}

/* ------------------------------------------------- splitlist  --------------------------------------------------------------------*/
.splitlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.splitlist li {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 15px;
}
.splitlist-col1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 47%;
  color: #b1b1b1;
}
.splitlist-col2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 53%;
  color: #1a1a1a;
}

/* ------------------------------------------------- seller  --------------------------------------------------------------------*/
.seller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.seller-avatar {
  position: relative;
  width: 60px;
  aspect-ratio: 1/1;
}
.seller-avatar:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../icons/checked-ok.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.seller-avatar img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}
.seller-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.seller-info__name {
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
}

/*------------------------------------------------- like ---------------------------------------------*/
[data-shared=false] svg,
[data-liked=false] svg {
  stroke: #b1b1b1;
  fill: transparent;
}
[data-shared=false]:hover svg,
[data-liked=false]:hover svg {
  stroke: var(--accent);
}

[data-shared=true] svg,
[data-liked=true] svg {
  stroke: var(--accent) !important;
  fill: var(--accent) !important;
}

/* ------------------------------------------------------------------------------------------------------------------------------
FOOTER
--------------------------------------------------------------------------------------------------------------------------------*/
.footer-empty {
  margin-top: 8.125rem;
}

.footer {
  position: relative;
  min-height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.1875rem;
}
.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  height: 1px;
  width: 300vw;
  border-top: 1px solid #efeaea;
}
.footer-text {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  font-size: 5rem;
  line-height: 140%;
  color: #c0c0c0;
}

/* ------------------------------------------------------------------------------------------------------------------------------
HEADER PROFILE DROPDOWN
--------------------------------------------------------------------------------------------------------------------------------*/
.header-profile_btn {
  border-radius: 50%;
  background-color: #f4f4f4;
  border: 1px solid #b1b1b1;
  width: 3.125rem;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-profile_btn span {
  font-weight: 500;
  font-size: 1.25rem;
  color: #1a1a1a;
}
.header-profile_btn:hover {
  border: 1px solid var(--accent);
}
.header-profile_dropdown {
  display: none;
  max-width: 18.125rem;
  width: 100%;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background-color: #fff;
  border-radius: 0.625rem;
  z-index: 1000;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  /* при открытии меню */
}
.header-profile_dropdown.show {
  display: block;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}
.header-profile_dropdown-inner {
  padding: 1.5625rem;
  max-width: 18.125rem;
  width: 100%;
  overflow-y: auto;
  max-height: 70vh;
}
.header-profile_dropdown-inner::-webkit-scrollbar {
  inline-size: 0rem;
  background-color: var(--scrollbar);
}
.header-profile_dropdown-inner:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0.9375rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 1.375rem;
  height: 0.625rem;
  background-image: url("../icons/polygon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.header-profile_rating {
  margin-bottom: 1.875rem;
}
.header-profile_group .profile-group-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.9375rem;
  cursor: pointer;
}
.header-profile_group .profile-group-item.active svg, .header-profile_group .profile-group-item:hover svg {
  stroke: var(--accent);
}
.header-profile_group .profile-group-item.active svg.icon--profile, .header-profile_group .profile-group-item:hover svg.icon--profile {
  stroke: none;
  fill: var(--accent);
}
.header-profile_group .profile-group-item.active svg.icon--bussines, .header-profile_group .profile-group-item:hover svg.icon--bussines {
  fill: var(--accent);
}
.header-profile_group .profile-group-item.active .profile-group-text, .header-profile_group .profile-group-item:hover .profile-group-text {
  color: var(--accent);
}
.header-profile_group .profile-group-item svg {
  stroke: #b1b1b1;
  stroke-width: 1.8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-profile_group .profile-group-item svg.icon--profile {
  fill: #b1b1b1;
  stroke: none;
  stroke-width: none;
}
.header-profile_group .profile-group-item svg.icon--bussines {
  fill: #b1b1b1;
  stroke-width: 0.1px;
}
.header-profile_group .profile-group-item svg.icon--profile {
  width: 1.125rem;
  height: 1.1875rem;
}
.header-profile_group .profile-group-item svg.icon--wallet {
  width: 1.25rem;
  height: 1.1875rem;
}
.header-profile_group .profile-group-item svg.icon--ads {
  width: 1.125rem;
  height: 1.125rem;
}
.header-profile_group .profile-group-item svg.icon--bussines {
  width: 1.25rem;
  height: 1.25rem;
}
.header-profile_group .profile-group-item svg.icon--orders {
  width: 1.25rem;
  height: 1.25rem;
}
.header-profile_group .profile-group-item svg.icon--wallet {
  width: 1.0625rem;
  height: 1.25rem;
}
.header-profile_group .profile-group-item svg.icon--messages {
  width: 1.1875rem;
  height: 1.1875rem;
}
.header-profile_group .profile-group-item svg.icon--favourite {
  width: 1.1875rem;
  height: 1.0625rem;
}
.header-profile_group .profile-group-item svg.icon--reviews {
  width: 1.1875rem;
  height: 1.1875rem;
}
.header-profile_group .profile-group-item svg.icon--settings {
  width: 1.1875rem;
  height: 1.125rem;
}
.header-profile_group .profile-group-item svg.icon--logout {
  width: 1.1875rem;
  height: 1.1875rem;
}
.header-profile_group .profile-group-item svg.icon--down-think {
  width: 0.875rem;
  height: 0.5rem;
  stroke-width: 1px;
}
.header-profile_group .profile-group-item:last-child {
  margin-bottom: 0;
}
.header-profile_group .profile-group-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.header-profile_group .profile-group-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
  padding-left: 1.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-profile_group .profile-group-badge {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  text-align: right;
  color: #b1b1b1;
}
.header-profile_group .profile-group-badge.accent {
  border-radius: 0.125rem;
  width: 1.375rem;
  height: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  padding-top: 0.0625rem;
  background: var(--accent);
}
.header-profile_group .profile-group_list {
  padding-left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-profile_group .profile-group_list.active {
  opacity: 1;
  visibility: visible;
}
.header-profile_group .profile-group_list li,
.header-profile_group .profile-group_list li a {
  font-size: 0.9375rem;
  color: #605f5f;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header-profile_group .profile-group_list li:hover,
.header-profile_group .profile-group_list li a:hover {
  color: var(--accent);
}
.header-profile_group .profile-group_list li:hover a,
.header-profile_group .profile-group_list li a:hover a {
  color: var(--accent);
}
.header-profile_separator {
  height: 1px;
  background-color: var(--border);
  margin: 1.1875rem 0;
}

/* ------------------------------------------------------------------------------------------------------------------------------
HEADER
--------------------------------------------------------------------------------------------------------------------------------*/
.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 50;
}
.header-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  height: 100%;
  min-height: 46px;
  max-height: 46px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-top.hide {
  min-height: 0;
  visibility: hidden;
  opacity: 0;
}
.header-top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100vw;
  height: 1px;
  width: 300vw;
  border-bottom: 1px solid #efeaea;
}
.header-top_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.header-top_list a {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #3d3d3d;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-top_list a:hover {
  color: var(--accent);
}
.header-top_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.125rem;
}
.header-top_currency {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header-top_currency_name {
  font-weight: 400;
  font-size: 0.9375rem;
  color: #b1b1b1;
  text-transform: uppercase;
}
.header-top_currency_rate {
  font-weight: 400;
  font-size: 0.9375rem;
  text-align: right;
  color: #3d3d3d;
}
.header-top_inaccount:hover svg {
  fill: var(--accent);
}
.header-top_inaccount svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: #b1b1b1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-top_profile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.375rem;
  padding-top: 0.3125rem;
}
.header-top_messages {
  position: relative;
  cursor: pointer;
}
.header-top_messages:hover svg {
  stroke: var(--accent);
}
.header-top_messages svg {
  stroke: #b1b1b1;
  stroke-width: 1.8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 1.1875rem;
  height: 1.0625rem;
}
.header-top_messages.accent:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  -webkit-transform: translate(30%, -40%);
      -ms-transform: translate(30%, -40%);
          transform: translate(30%, -40%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  border-radius: 50%;
}
.header-top_orders {
  cursor: pointer;
}
.header-top_orders:hover svg {
  stroke: var(--accent);
}
.header-top_orders svg {
  stroke: #b1b1b1;
  stroke-width: 1.8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 1.0625rem;
  height: 1.25rem;
}
.header-top_favourite {
  cursor: pointer;
}
.header-top_favourite:hover svg {
  stroke: var(--accent);
}
.header-top_favourite svg {
  stroke: #b1b1b1;
  stroke-width: 1.8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 1.1875rem;
  height: 1.0625rem;
}
.header-medium {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 1.25rem;
}
.header-medium:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100vw;
  height: 1px;
  width: 300vw;
  border-bottom: 1px solid #efeaea;
}
.header-medium_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.header-medium_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.header-burger {
  position: relative;
  display: inline-block;
  width: 1.75rem;
  height: 1.1875rem;
  margin-right: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.header-burger span, .header-burger::before, .header-burger::after {
  display: block;
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  border-radius: 0.625rem;
  opacity: 0.85;
}
.header-burger::before {
  top: 0;
}
.header-burger::after {
  bottom: 0;
}
.header-burger span {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-burger.active span {
  width: 0;
  background-color: var(--accent);
}
.header-burger.active::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  background-color: var(--accent);
}
.header-burger.active::after {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
      -ms-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
  background-color: var(--accent);
}
.header-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  margin-right: 2.1875rem;
}
.header-logo_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-logo_name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--accent);
}
.header-location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-right: 2.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-location:hover {
  opacity: 0.75;
}
.header-location_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-location_name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
}
.header-sign-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 1.875rem;
  min-height: 3.125rem;
  border-radius: 0.3125rem;
  background: #f0f0f0;
}
.header-sign-in:hover .header-sign-in_name {
  color: var(--accent);
}
.header-sign-in_name {
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CUSTOM IMAGES mediaload
--------------------------------------------------------------------------------------------------------------------------------*/
.advertising_form-mediaload:hover .mediaload-upload-area {
  border: 2px dashed var(--accent) !important;
}

.advertising_mediaload-block .mediaload-banner {
  min-height: inherit;
}
.advertising_mediaload-block .mediaload-banner_icon {
  margin-bottom: 0.625rem;
}
.advertising_mediaload-block .mediaload-banner_title {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.3125rem;
}
.advertising_mediaload-block .mediaload-banner_desc {
  font-weight: 400;
  font-size: 0.875rem;
  color: #969696;
  margin-bottom: 1.25rem;
}
.advertising_mediaload-block .mediaload-banner_button .btn {
  margin-inline: auto;
  display: inline-block;
  width: initial;
  padding-inline: 2.5rem;
}
.advertising_mediaload-block .mediaload-upload-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px dashed #ccc;
  padding: 1.25rem 0 0;
  position: relative;
  margin: 1.25rem auto 0rem;
  text-align: center;
  border-radius: 0.625rem;
  cursor: pointer;
  max-width: 100%;
  height: 13.75rem;
  margin-bottom: 0.625rem;
}
.advertising_mediaload-block .mediaload-upload-area:hover {
  background-color: #f9f9f9;
}
.advertising_mediaload-block .mediaload-previews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 0;
  padding-block: 0.625rem;
  margin-left: -5px;
  margin-right: -5px;
}
.advertising_mediaload-block .mediaload-previews_item {
  position: relative;
  aspect-ratio: 4/3;
  width: 20%;
  padding-left: 5px;
  padding-right: 5px;
}
.advertising_mediaload-block .mediaload-previews_item-delete {
  position: absolute;
  top: 0.4375rem;
  right: 0.75rem;
  width: 1.5625rem;
  height: 1.5625rem;
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.advertising_mediaload-block .mediaload-previews_item-delete:hover {
  border-color: var(--accent);
}
.advertising_mediaload-block .mediaload-previews_item-delete:hover svg {
  fill: var(--accent);
}
.advertising_mediaload-block .mediaload-previews_item-delete svg {
  fill: rgba(0, 0, 0, 0.45);
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.advertising_mediaload-block .mediaload-previews img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px dashed #ccc;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.advertising_mediaload-block .mediaload-warning {
  background: rgba(230, 0, 0, 0.07);
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: #3d3d3d;
  border-radius: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding-inline: 1.25rem;
  min-height: 3.125rem;
  margin-bottom: 1.875rem;
}
.advertising_mediaload-block .mediaload-warning.hidden {
  display: none;
}

/*-----------------------------------------------------------------------------------------------------------------
SIGN UP AND LOGIN MODAL WINDOWS
 ------------------------------------------------------------------------------------------------------------------*/
.modal-sign-in,
.modal-sign-up {
  /* Стили модального окна */
  /* Кнопка закрытия */
  /* Стиль для Reset password */
  /* Отступы для мобильных устройств */
}
.modal-sign-in_overlay,
.modal-sign-up_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
}
.modal-sign-in_overlay.active,
.modal-sign-up_overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}
.modal-sign-in_window,
.modal-sign-up_window {
  background-color: #fff;
  padding: 3.125rem 3.125rem 1.25rem;
  border-radius: 1.25rem;
  max-width: 38.75rem;
  width: calc(100% - 30px); /* 15px слева и справа на мобильных */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.modal-sign-in_title,
.modal-sign-up_title {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  color: #1a1a1a;
  width: 100%;
  margin-bottom: 0.625rem;
}
.modal-sign-in_text,
.modal-sign-up_text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #3d3d3d;
  width: 100%;
  margin-bottom: 1.5625rem;
}
.modal-sign-in_input,
.modal-sign-up_input {
  background: #f8f8f8;
  display: block;
  width: 100%;
  border: 1px solid #f8f8f8;
  border-radius: 0.625rem;
  min-height: 3.125rem;
  padding-inline: 0.9375rem;
  margin-bottom: 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #3d3d3d;
}
.modal-sign-in_input::-webkit-input-placeholder, .modal-sign-up_input::-webkit-input-placeholder {
  color: #969696;
}
.modal-sign-in_input::-moz-placeholder, .modal-sign-up_input::-moz-placeholder {
  color: #969696;
}
.modal-sign-in_input:-ms-input-placeholder, .modal-sign-up_input:-ms-input-placeholder {
  color: #969696;
}
.modal-sign-in_input::-ms-input-placeholder, .modal-sign-up_input::-ms-input-placeholder {
  color: #969696;
}
.modal-sign-in_input::placeholder,
.modal-sign-up_input::placeholder {
  color: #969696;
}
.modal-sign-in_input:focus,
.modal-sign-up_input:focus {
  outline: 1px solid var(--accent);
}
.modal-sign-in_btn,
.modal-sign-up_btn {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  color: var(--white);
  background-color: var(--accent);
  min-height: 3.125rem;
  width: 100%;
  padding-inline: 0.9375rem;
  border-radius: 0.625rem;
  margin-bottom: 0.625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-sign-in_btn:hover,
.modal-sign-up_btn:hover {
  opacity: 0.75;
}
.modal-sign-in_first, .modal-sign-in_second,
.modal-sign-up_first,
.modal-sign-up_second {
  display: none;
}
.modal-sign-in_first.active, .modal-sign-in_second.active,
.modal-sign-up_first.active,
.modal-sign-up_second.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}
.modal-sign-in_closeBtn,
.modal-sign-up_closeBtn {
  position: absolute;
  top: 1.5625rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-sign-in_closeBtn:hover svg,
.modal-sign-up_closeBtn:hover svg {
  fill: var(--accent);
}
.modal-sign-in_closeBtn svg,
.modal-sign-up_closeBtn svg {
  fill: rgba(0, 0, 0, 0.35);
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-sign-in_backBtn,
.modal-sign-up_backBtn {
  -ms-flex-item-align: start;
      align-self: start;
  margin-bottom: 1.5625rem;
  cursor: pointer;
}
.modal-sign-in_backBtn:hover svg,
.modal-sign-up_backBtn:hover svg {
  fill: var(--accent);
}
.modal-sign-in_backBtn svg,
.modal-sign-up_backBtn svg {
  fill: #1a1a1a;
  width: 1.25rem;
  height: 0.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-sign-in_great,
.modal-sign-up_great {
  -ms-flex-item-align: start;
      align-self: start;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.modal-sign-in_remember,
.modal-sign-up_remember {
  -ms-flex-item-align: start;
      align-self: start;
  margin-bottom: 0.9375rem;
}
.modal-sign-in_remember .panel-remember-label,
.modal-sign-up_remember .panel-remember-label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #3d3d3d;
}
.modal-sign-in_remember .panel-remember-label span,
.modal-sign-up_remember .panel-remember-label span {
  padding-top: 0.125rem;
  display: block;
}
.modal-sign-in_remember .checkbox-item,
.modal-sign-up_remember .checkbox-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
.modal-sign-in_remember .checkbox-input,
.modal-sign-up_remember .checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d8d8d8;
  border-radius: 0.3125rem;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.modal-sign-in_remember .checkbox-input:checked,
.modal-sign-up_remember .checkbox-input:checked {
  background-image: url("../icons/check.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
  outline: 1px solid var(--accent);
}
.modal-sign-in_remember .checkbox-input:active,
.modal-sign-up_remember .checkbox-input:active {
  outline: 1px solid var(--accent);
}
.modal-sign-in_resetBtn,
.modal-sign-up_resetBtn {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.625rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0.9375rem;
}
.modal-sign-in_resetBtn:hover,
.modal-sign-up_resetBtn:hover {
  color: var(--accent);
}
.modal-sign-in_terms,
.modal-sign-up_terms {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  color: #969696;
  width: 100%;
  word-break: nowrap;
  padding-top: 0.3125rem;
  margin-bottom: 1.25rem;
}
.modal-sign-in_terms a,
.modal-sign-up_terms a {
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-sign-in_terms a:hover,
.modal-sign-up_terms a:hover {
  color: var(--accent);
}

/* ------------------------------------------------------------------------------------------------------------------------------
Review card
--------------------------------------------------------------------------------------------------------------------------------*/
.review-card {
  border: 1px solid #efeaea;
  border-radius: 0.625rem;
  padding: 25px 30px;
}
.review-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.review-card__avatar {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 60px;
  border-radius: 50%;
}
.review-card__avatar img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  overflow: hidden;
}
.review-card__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.review-card__body {
  margin-top: 0.625rem;
  padding-left: 80px;
}
.review-card__response {
  margin-top: 1.25rem;
  background: #f8f8f8;
  padding: 1.875rem;
  border-radius: 0.3125rem;
}
.review-card .info__name {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 0.3125rem;
}
.review-card .info__rating {
  margin-bottom: 0.3125rem;
}
.review-card .info__subject,
.review-card .info__date {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #b1b1b1;
}
.review-card .subject__text,
.review-card .response__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.review-card .subject__collection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5625rem;
}
.review-card .subject__collection a {
  aspect-ratio: 1/1;
  width: 80px;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.review-card .subject__collection a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.review-card .subject__collection a img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.review-card .response-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.25rem;
}
.review-card .response-header_date {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #969696;
}
.review-card .response-header_btn {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #969696;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.review-card .response-header_btn svg {
  width: 0.875rem;
  height: 0.75rem;
  fill: #b1b1b1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.review-card .btn {
  min-height: 2.5rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
TITLES
--------------------------------------------------------------------------------------------------------------------------------*/
.title-20 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.title-20--nomargin {
  margin-bottom: 0;
}

.title-26 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.title-26--nomargin {
  margin-bottom: 0;
}

.title-28 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.title-28--nomargin {
  margin-bottom: 0;
}

.title-30 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.title-30--nomargin {
  margin-bottom: 0;
}

.title-34 {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.title-34--nomargin {
  margin-bottom: 0;
}

/* ------------------------------------------------------------------------------------------------------------------------------
CATEGORIES IN SUBMIT AND ADWERTISING START PAGE
--------------------------------------------------------------------------------------------------------------------------------*/
.catsadvert_title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #1a1a1a;
  padding-top: 0.9375rem;
  margin-bottom: 1.5625rem;
}
.catsadvert_text {
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.catsadvert-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  margin: 0 auto;
  max-width: var(--container-width);
  padding-right: 1.125rem;
  border: 1px solid var(--border);
  border-radius: 0.3125rem;
}
.catsadvert-menu_cats {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 18.125rem;
  padding: 1.5625rem 0;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid var(--border);
}
.catsadvert-menu_cats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 2.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1.25rem;
  overflow: hidden;
  border-radius: 0rem;
}
.catsadvert-menu_cats-item:hover {
  background: #f8f8f8;
}
.catsadvert-menu_cats-item:hover a {
  color: var(--accent);
}
.catsadvert-menu_cats-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 2.625rem;
  font-weight: 500;
  color: #262626;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.catsadvert-menu_cats-arrow {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.catsadvert-menu_content {
  position: relative;
  width: 100%;
  padding: 2.5rem 3.125rem;
  overflow-y: auto;
}
.catsadvert-menu_content.catsadvert-zindex.over {
  z-index: 1;
}
.catsadvert-menu_subcats {
  position: relative;
  height: 100%;
  display: none;
}
.catsadvert-menu_subcats.active {
  display: block;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}
.catsadvert-menu_subcats-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.catsadvert-menu_subcats-title {
  font-weight: 500;
  font-size: 1.375rem;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
}
.catsadvert-menu_subcats-blocks {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.catsadvert-menu_subcats-block {
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  padding-bottom: 25px;
}
.catsadvert-menu_subcats-linkwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  overflow: hidden;
}
.catsadvert-menu_subcats-link {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #262626;
  line-height: 190%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.catsadvert-menu_subcats-link:hover {
  color: var(--accent);
}
.catsadvert-menu_subcats-link.title--subcats-link {
  width: auto;
  white-space: normal;
  font-size: 1rem;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.catsadvert-menu_subcats-back {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.catsadvert-menu_subcats-close {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../icons/close.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}
.catsadvert-menu_subcats-arrow {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../icons/down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

/* ------------------------------------------------------------------------------------------------------------------------------
ADVERTISING CUSTOM FORM ELEMENTS
--------------------------------------------------------------------------------------------------------------------------------*/
.advertising {
  --form-accent: rgb(188, 188, 188);
  padding-top: 1.25rem;
  width: 70%;
  /********************************************************************* БЛОКИ *************************************************************/
  /********************************************************************* ДОП СТИЛИ *************************************************************/
}
.advertising_title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
}
.advertising_form-part {
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--border);
}
.advertising_form-part h3 {
  font-weight: 500;
  font-size: 1.25rem;
  color: #1a1a1a;
  padding-bottom: 1.5625rem;
}
.advertising_form-part.advertising_form-location {
  border-bottom: none;
}
.advertising_form-intro {
  padding-top: 0.625rem;
}
.advertising_form-intro .advertising_input-block {
  width: 100%;
}
.advertising_form-mediaload h3 {
  padding-bottom: 0.625rem;
}
.advertising_form-description {
  padding-top: 2.1875rem;
  padding-bottom: 1.5625rem;
}
.advertising_form-description h3 {
  padding-bottom: 0.9375rem;
}
.advertising_form-price {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.advertising_form-price .checkbox input[type=checkbox]:checked + .custom-checkbox,
.advertising_form-price .radio input[type=radio]:checked + .custom-radio {
  border-color: var(--accent);
  color: white !important;
  background-color: var(--accent);
}
.advertising_form-mediaload {
  padding-bottom: 1.25rem;
}
.advertising_form-mediaload .advertising_input-block {
  width: 100%;
}
.advertising_form-location {
  padding-bottom: 6.25rem;
}
.advertising_form-location .btn {
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}
.advertising_textarea-block {
  margin-bottom: 1.25rem;
}
.advertising_textarea-block .textarea {
  margin-bottom: 0.625rem;
  outline: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.advertising_textarea-block .textarea:focus {
  outline: 1px solid var(--accent);
}
.advertising_block-name {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.advertising_block-hint {
  font-weight: 400;
  font-size: 1rem;
  color: #878787;
}
.advertising_block-hint a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.advertising_block-hint a:hover {
  opacity: 0.65;
}
.advertising_input-block {
  margin-bottom: 1.25rem;
  width: 50%;
}
.advertising_input-block label[for] {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.advertising_input-block .form-group .input {
  margin-bottom: 0.625rem;
  outline: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.advertising_input-block .form-group .input:focus {
  outline: 1px solid var(--accent);
}
.advertising_breadcrumbs-block .categorie-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.9375rem;
}
.advertising_breadcrumbs-block .categorie-breadcrumbs_link {
  color: #1a1a1a;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.advertising_breadcrumbs-block .categorie-breadcrumbs_link:hover {
  color: var(--accent);
}
.advertising_breadcrumbs-block .categorie-breadcrumbs_span {
  color: #1a1a1a;
}
.advertising_select-block {
  margin-bottom: 1.25rem;
  width: 50%;
}
.advertising_radio-block, .advertising_checkbox-block {
  margin-bottom: 1.25rem;
}
.advertising_radio-block .form-group-inrow, .advertising_checkbox-block .form-group-inrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
.advertising_inputsrow-block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.advertising_inputsrow-block .input {
  max-width: 13.75rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 1px solid transparent;
}
.advertising_inputsrow-block .input:focus {
  outline: 1px solid var(--accent);
}
.advertising_product-name {
  margin-bottom: 1.875rem;
}
.advertising_transmission-type .custom-radio {
  background-color: #f3f3f3;
}
.advertising_transmission-type .radio input[type=radio]:checked + .custom-radio {
  border-color: var(--accent);
  color: var(--accent);
  background-color: #fff;
}
.advertising_modification .choices {
  margin-bottom: 0.625rem;
}
.advertising-new .advertising_breadcrumbs-block, .advertising-electric .advertising_breadcrumbs-block {
  margin-bottom: 0.9375rem;
}
.advertising-used .advertising_breadcrumbs-block {
  margin-bottom: 1.875rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Объявление в разделе АВТО
--------------------------------------------------------------------------------------------------------------------------------*/
.autoad {
  color: #1a1a1a;
}
.autoad-desc__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #3d3d3d;
}
.autoad-desc__text p:not(:last-child) {
  margin-bottom: 10px;
}
.autoad-desc__notation {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding-block: 30px;
}
.autoad-desc--borderbottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.autoad-equip__tags-panel:not(:last-child) {
  margin-bottom: 30px;
}
.autoad-footer {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.autoad-base__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.autoad-base__header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.autoad-base__price {
  margin-bottom: 20px;
}
.autoad-base__splitlist {
  margin-bottom: 15px;
}
.autoad-base__rate {
  margin-bottom: 30px;
}
.autoad-base__buttons {
  margin-bottom: 20px;
}
.autoad-base__metas {
  margin-bottom: 15px;
}
.autoad-base__notation {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #b1b1b1;
  margin-bottom: 20px;
}
.autoad-base__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.tup-35 {
  -webkit-transform: translateY(-35px);
      -ms-transform: translateY(-35px);
          transform: translateY(-35px);
}

/* ------------------------------------------------------------------------------------------------------------------------------
AUTO AD GALLERY
--------------------------------------------------------------------------------------------------------------------------------*/
.autoad-gallery__full img, .autoad-gallery__thumbnails img {
  height: auto; /* растягиваем изображение по высоте контейнера */
  width: 100%; /* сохраняем пропорции изображения по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.autoad-gallery__full {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.625rem;
}
.autoad-gallery__full img {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease; /* плавное смещение */
  will-change: transform; /* оптимизация для transform */
}
.autoad-gallery__full a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  aspect-ratio: 620/450;
}
.autoad-gallery__full a:hover {
  cursor: url("../icons/search-gallery.svg"), auto;
}
.autoad-gallery__thumbnails .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  aspect-ratio: 110/80;
  overflow: hidden;
  border-radius: 5px;
}
.autoad-gallery__thumbnails .swiper-slide a:hover {
  cursor: url("../icons/search-gallery.svg"), auto;
}

/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - Companies and services (АВТОРАЗДЕЛ) 
--------------------------------------------------------------------------------------------------------------------------------*/
.companys-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.companys-services__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.875rem;
}
.companys-services__list {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5; /* Количество колонок */
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px; /* Расстояние между колонками */
}
.companys-services__list a {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.companys-services__list a:hover {
  color: var(--accent);
}
.companys-services__list li {
  margin-bottom: 10px;
}
.companys-services__list > *:last-child {
  margin-bottom: 0;
}

.companys-card {
  position: relative;
  color: #fff;
  padding: 1.25rem;
  border-radius: 0.625rem;
  overflow: hidden;
  aspect-ratio: 305/200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.companys-card:hover:before {
  opacity: 0;
}
.companys-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(23.56%, rgba(0, 0, 0, 0)), color-stop(67.67%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 23.56%, rgba(0, 0, 0, 0) 67.67%, #000 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.companys-card__bottom {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.companys-card__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}
.companys-card__location {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
.companys-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  min-height: 26px;
  padding-inline: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid transparent;
  text-transform: uppercase;
  color: var(--white);
  background: #e60000;
}
.companys-card img {
  z-index: -1;
}

/* ------------------------------------------------------------------------------------------------------------------------------
5ти колоночный список - АВТОРАЗДЕЛ
--------------------------------------------------------------------------------------------------------------------------------*/
.fivecols-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}
.fivecols-list__title {
  font-weight: 700;
  font-size: 2.12rem;
  line-height: 1.2;
  color: #1a1a1a;
}
.fivecols-list__annotation {
  font-weight: 400;
  font-size: 0.94rem;
  color: #b1b1b1;
  margin-top: 10px;
}
.fivecols-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
  margin-bottom: 1.25rem;
}
.fivecols-list__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.6875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fivecols-list__labels a {
  width: 4.3125rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fivecols-list__labels a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.fivecols-list__labels a img {
  height: 100%; /* растягиваем изображение по высоте контейнера */
  width: auto; /* сохраняем пропорции изображения по ширине */
  max-width: 100%; /* чтобы не выйти за границы контейнера по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fivecols-list__list {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5; /* Количество колонок */
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px; /* Расстояние между колонками */
}
.fivecols-list__list li {
  margin-bottom: 10px;
}
.fivecols-list__list li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.4375rem;
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
  white-space: nowrap;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.fivecols-list__list li a .fivecols-count {
  font-weight: 400;
  font-size: 13px;
  color: #b1b1b1;
}
.fivecols-list__list li a:hover {
  color: var(--accent);
}
.fivecols-list__list li a:hover .brand-count {
  color: #b1b1b1;
}
.fivecols-list__list > *:last-child {
  margin-bottom: 0;
}
.fivecols-list__footer .btn {
  padding-inline: 3.75rem;
}

/*----------------------------------------- Brand Link ---------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - Found 6,217 listings (АВТОРАЗДЕЛ) 
--------------------------------------------------------------------------------------------------------------------------------*/
.found-listing {
  color: #1a1a1a;
}
.found-listing__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.found-listing__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.found-listing__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.found-listing__showorderby {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.found-listing__showorderby .btn-show-map {
  font-size: 16px;
  line-height: 1.2;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.found-listing__showorderby .btn-show-map:hover {
  color: var(--accent);
}

/*----------------------------------------------- Found card ----------------------------------*/
.found-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #efeaea;
}
.found-card:hover .found-card_title {
  color: var(--accent);
}
.found-card:hover .found-card_desc {
  color: #3d3d3d;
}
.found-card:hover .found-card_image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.found-card_image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.found-card_image-wrap {
  overflow: hidden;
  aspect-ratio: 24/18;
  width: 15rem;
  border-radius: 0.3125rem;
}
.found-card_image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.found-card_title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.found-card_desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #b1b1b1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0.9375rem;
}
.found-card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.found-card_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.found-card_col-1 {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.found-card_col-2 {
  width: 30%;
}
.found-card_col-3 {
  width: 30%;
}
.found-card_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.found-card_infolist {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.found-card_infolist li {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}
.found-card_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.found-card_meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.375rem;
}
.found-card_meta .meta-timeago {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #3d3d3d;
  opacity: 0.5;
}
.found-card_meta .meta-location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.found-card_meta .meta-location:hover {
  opacity: 0.75;
}
.found-card_meta .meta-location_name {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: var(--black);
}
.found-card_meta .icon--map-pin {
  width: 0.875rem;
  height: 1.125rem;
}
.found-card_link {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #e60000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.found-card_link:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - Interesting today (АВТОРАЗДЕЛ) 
--------------------------------------------------------------------------------------------------------------------------------*/
.interesting-today .section-header {
  margin-bottom: 20px;
}
.interesting-today .section-header_title {
  font-size: 24px;
}
.interesting-today__footer {
  margin-top: 1.25rem;
}
.interesting-today__footer .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 3.75rem;
  font-size: 1rem;
}

.interesting-card {
  display: block;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
}
.interesting-card:hover .interesting-card__top:before {
  opacity: 0;
}
.interesting-card__top {
  position: relative;
  border-radius: 0.625rem;
  aspect-ratio: 410/300;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.interesting-card__top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(23.56%, rgba(0, 0, 0, 0)), color-stop(67.67%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 23.56%, rgba(0, 0, 0, 0) 67.67%, #000 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.interesting-card__top img {
  aspect-ratio: 410/300;
  height: 100%; /* растягиваем изображение по высоте контейнера */
  width: auto; /* сохраняем пропорции изображения по ширине */
  max-width: 100%; /* чтобы не выйти за границы контейнера по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.interesting-card__content {
  padding: 1.25rem;
}
.interesting-card__description {
  font-size: 15px;
  line-height: 1.2;
  color: #1a1a1a;
  padding-top: 5px;
  margin-bottom: 15px;
}
.interesting-card__price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.interesting-card__price--all {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #1a1a1a;
  background: #f7c74d;
  border-radius: 5px;
  padding: 0.625rem 1.25rem;
}
.interesting-card__price--small {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #b1b1b1;
}

.card-rating {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 10px 10px 8px;
  border-radius: 5px;
  color: var(--black);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #1a1a1a;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.card-rating svg {
  width: 12px;
  height: 12px;
}
.card-rating--top {
  background: #f7c74d;
}
.card-rating--new {
  border: 1px solid var(--white);
  background-color: transparent;
  color: white;
}

/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - New vehicles (АВТОРАЗДЕЛ) 
--------------------------------------------------------------------------------------------------------------------------------*/
.new-vehicles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  height: 100%;
}
.new-vehicles__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
}
.new-vehicles__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.new-vehicles__grow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.new-vehicles__footer {
  margin-top: 1.25rem;
}
.new-vehicles__footer .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 3.75rem;
  font-size: 1rem;
}

/*------------------------------------- Vehicles card ---------------------------------------------*/
.vehicles-card {
  color: #fff;
  padding: 1.25rem;
  border-radius: 0.625rem;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vehicles-card:hover:before {
  opacity: 0;
}
.vehicles-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), color-stop(23.56%, rgba(0, 0, 0, 0)), color-stop(67.67%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 23.56%, rgba(0, 0, 0, 0) 67.67%, #000 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.vehicles-card__top {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.vehicles-card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.vehicles-card__price {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}
.vehicles-card__price small {
  font-weight: 400;
  font-size: 14px;
}
.vehicles-card__bottom {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.vehicles-card__circles {
  -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
          transform: translateY(7px);
}
.vehicles-card__circles svg {
  max-width: 74px;
  max-height: 22px;
}
.vehicles-card img {
  z-index: -1;
}

/*-----------------------------------------------------------------------------------------------------------------
БЛОК - Recommended listings (АВТОРАЗДЕЛ) 
 ------------------------------------------------------------------------------------------------------------------*/
.similar-listings .product-card,
.recomended-listings .product-card {
  padding: 0;
}
.similar-listings .product-card_spacebetween,
.recomended-listings .product-card_spacebetween {
  padding-inline: 0;
}
.similar-listings .product-card_meta,
.recomended-listings .product-card_meta {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}
.similar-listings .product-card_like,
.recomended-listings .product-card_like {
  right: 8px;
  top: 15px;
}
.similar-listings .product-card_like svg,
.recomended-listings .product-card_like svg {
  width: 25px;
  height: 25px;
}
.similar-listings .btn,
.recomended-listings .btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 60px;
  font-size: 16px;
  margin-top: 2.5rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - Search by parameters (АВТОРАЗДЕЛ) 
--------------------------------------------------------------------------------------------------------------------------------*/
.search-by-params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
.search-by-params__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 0.9375rem;
}
.search-by-params__block > * {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}
.search-by-params__shortselect {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.search-by-params__shortselect .choices {
  margin-right: -10px;
  padding-right: 0px;
}
.search-by-params__shortselect .choices:before {
  right: 0;
}
.search-by-params__inputgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  border-left: 1px solid #e6e6e6;
}
.search-by-params__inputgroup input {
  display: block;
  min-height: 25px;
  padding-right: 0.9375rem;
  border-right: 2px solid #b1b1b1;
  padding-left: 15px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #3d3d3d;
}
.search-by-params__inputgroup input::-webkit-input-placeholder {
  color: var(--black);
}
.search-by-params__inputgroup input::-moz-placeholder {
  color: var(--black);
}
.search-by-params__inputgroup input:-ms-input-placeholder {
  color: var(--black);
}
.search-by-params__inputgroup input::-ms-input-placeholder {
  color: var(--black);
}
.search-by-params__inputgroup input::placeholder {
  color: var(--black);
}
.search-by-params__inputgroup input:nth-of-type(1) {
  width: 40%;
}
.search-by-params__inputgroup input:nth-of-type(2) {
  width: 30%;
}
.search-by-params__footer {
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  border-top: 1px solid #e6e6e6;
}
.search-by-params__spacebetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.search-by-params__group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2.5rem;
}
.search-by-params .btn {
  padding-inline: 2.5rem;
}
.search-by-params .choices__inner {
  border: 1px solid transparent;
  border-radius: 0;
}
.search-by-params .choices {
  position: relative;
}
.search-by-params .choices:focus .choices__inner {
  border: 1px solid transparent;
}
.search-by-params .rect-select-item .choices {
  border-radius: 0;
}
.search-by-params .rect-select-item .choices__inner {
  border-radius: 0;
  border: 1px solid transparent !important;
}
.search-by-params .rect-select-item:nth-child(n+2) {
  background-color: #f3f3f3;
  border-left: 1px solid #d8d8d8;
}
.search-by-params .block-part .choices__inner {
  border-radius: 0;
  border: 1px solid transparent;
}
.search-by-params .block-part:nth-child(n+3) {
  border-left: 1px solid #e6e6e6;
  padding-right: 20px;
}
.search-by-params .choices__list--dropdown,
.search-by-params .choices__list[aria-expanded] {
  border: 1px solid #e6e6e6 !important;
}

.btn-reset,
.btn-allparams {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-reset:hover,
.btn-allparams:hover {
  color: var(--accent);
}
.btn-reset img,
.btn-allparams img {
  width: 20px;
  height: 20px;
}

/*----------------------------------------------- Currency switcher ----------------------------------*/
.params-currency-switcher {
  padding-left: 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.params-currency-switcher__red {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.2;
  color: #e60000;
}
.params-currency-switcher__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

/* ------------------------------------------------------------------------------------------------------------------------------
PAGE MAIN CATEGORIES SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.main-categories-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
.main-categories-card:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.main-categories-card:hover .main-categories-card_title {
  color: var(--accent);
}
.main-categories-card_image {
  aspect-ratio: 1/1;
  width: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.3125rem;
}
.main-categories-card_image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-categories-card_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.main-categories-card_title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--black);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  margin-bottom: 0.3125rem;
}
.main-categories-card_description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.55);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  max-width: 85%;
}

/*-----------------------------------------------------------------------------------------------------------------
MAIN COMPANYS AND SERVICES BLOCK
 -------------------------------------------------------------------------------------------------------------------*/
.companys-tile {
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
}
.companys-tile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.companys-tile__image {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--accent);
}
.companys-tile__image img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.companys-tile__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}
.companys-tile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.companys-tile__list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.companys-tile__rect {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #e60000;
  border-radius: 0.3125rem;
  border: 1px solid #e41b17;
  min-height: 2.25rem;
  padding-inline: 0.5rem;
}

/*-----------------------------------------------------------------------------------------------------------------
PAGE MAIN ELLIPSES SECTION
 -------------------------------------------------------------------------------------------------------------------*/
.main-ellipses-pushdown .main-ellipses {
  padding-top: 20px;
  margin-bottom: -10px;
}

.main-ellipses {
  /* --------------------------------------- SWIPER EXTRA -----------------------------------*/
}
.main-ellipses-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  max-width: 6.25rem;
}
.main-ellipses-card:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.main-ellipses-card:hover .main-ellipses-card_description p {
  color: var(--accent);
}
.main-ellipses-card:hover .main-ellipses-card_gradient:before {
  -webkit-animation: rotation 0.5s linear infinite;
          animation: rotation 0.5s linear infinite;
}
.main-ellipses-card_gradient {
  position: relative;
  display: inline-block;
  padding: 0.1875rem;
  border-radius: 50%;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.main-ellipses-card_gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: conic-gradient(from 270deg, rgb(255, 91, 91) 0deg, rgb(228, 27, 23) 128.077deg, rgb(255, 91, 91) 360deg);
}
.main-ellipses-card_image {
  border: 3px solid #ffffff;
  overflow: hidden;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.main-ellipses-card_image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-ellipses-card_description {
  text-align: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  text-align: center;
  color: var(--black);
  padding-top: 0.3125rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.main-ellipses .swiper {
  margin-right: 6.25rem;
}
.main-ellipses .swiper-button-prev {
  display: none;
}
.main-ellipses .swiper-button-next {
  bottom: none;
  left: none;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  top: 32%;
  display: block;
  background-color: #f8f8f8;
  background-image: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin: 0 !important;
  padding: 1.875rem;
}
.main-ellipses .swiper-button-next svg.icon--next {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.25rem;
  height: 0.875rem;
}
.main-ellipses .swiper-button-next:after {
  content: "";
}
.main-ellipses .swiper-button-next:hover {
  background-color: #c5c4c4;
}

/* ------------------------------------------------------------------------------------------------------------------------------
PAGE MAIN FEATURED SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.main-featured {
  margin-bottom: 0.625rem;
}
.main-featured .container-greyout {
  margin-bottom: 3.125rem;
}
.main-featured .product-card_like {
  top: 1.25rem;
  right: 1.25rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
PAGE MAIN FIGURES SECTION
--------------------------------------------------------------------------------------------------------------------------------*/
.main-figures-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
}
.main-figures-card:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.main-figures-card_image {
  overflow: hidden;
}
.main-figures-card_image img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-figures-card.light-figure {
  background-color: #efeaea;
}
.main-figures-card.dark-figure {
  background-color: var(--black) !important;
}
.main-figures-card.dark-figure h3 {
  color: var(--white) !important;
}
.main-figures-card_title {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 1.25rem;
}
.main-figures-card_title h3 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 120%;
  color: var(--black);
}

/*-----------------------------------------------------------------------------------------------------------------
PAGE MAIN RECOMEND SECTION
 -------------------------------------------------------------------------------------------------------------------*/
.product-section .section-header {
  margin-bottom: 1.25rem;
}
.product-section .section-banner {
  margin-top: 40px;
}
.product-section .product-card {
  padding: 0;
}
.product-section .product-card_spacebetween {
  padding-inline: 0;
}
.product-section .product-card_meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0.9375rem;
}

.home {
  padding-top: 30px;
}

.proffesional {
  padding-top: 50px;
}
.proffesional .recomended-listings__title {
  font-size: 30px;
  margin-bottom: 30px;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE ADS
 ------------------------------------------------------------------------------------------------------------------*/
.profile-user_ads .ads_tabs {
  margin-bottom: 1.875rem;
}
.profile-user_ads .ads-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
.profile-user_ads .ads-list[data-panelAds] {
  display: none;
}
.profile-user_ads .ads-list[data-panelAds].active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}

.ads-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #efeaea;
}
.ads-card:hover .ads-card_title h2 {
  color: var(--accent);
}
.ads-card:hover .ads-card_image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.ads-card_image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ads-card_image-wrap {
  overflow: hidden;
  aspect-ratio: 24/18;
  width: 15rem;
  border-radius: 0.3125rem;
}
.ads-card_image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ads-card_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 0.625rem;
}
.ads-card_title h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.ads-card_title span {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #3d3d3d;
  opacity: 0.5;
}
.ads-card_description {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #3d3d3d;
  margin-bottom: 0.9375rem;
}
.ads-card_price {
  margin-bottom: 0.625rem;
}
.ads-card_price strong {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 120%;
  color: var(--black);
  margin-right: 0.4375rem;
}
.ads-card_price small {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.ads-card_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ads-card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ads-card_info-counters {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.ads-card_info-counters .counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.9375rem;
}
.ads-card_info-counters .counter-item span {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  text-align: right;
  color: #1a1a1a;
}
.ads-card_info-counters .counter-item .icon--views {
  width: 1.25rem;
  height: 0.75rem;
}
.ads-card_info-counters .counter-item .icon--called {
  width: 1.25rem;
  height: 0.8125rem;
}
.ads-card_info-counters .counter-item .icon--liked {
  width: 1.25rem;
  height: 0.8125rem;
}
.ads-card_info-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ads-card_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.ads-card_status.active .status-label {
  background: #45c34e;
}
.ads-card_status.active .status-description {
  color: #45c34e;
}
.ads-card_status.inactive-pause .status-label {
  background: var(--accent);
}
.ads-card_status.inactive-pause .status-description {
  color: var(--accent);
}
.ads-card_status.inactive-review .status-label {
  background: #ffb042;
}
.ads-card_status.inactive-review .status-description {
  color: #ffb042;
}
.ads-card_status .status-label {
  border-radius: 0.3125rem;
  min-height: 1.625rem;
  padding-inline: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 120%;
  color: #fff;
}
.ads-card_status .status-description {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: var(--dark);
}
.ads-card_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ads-card_footer-meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
}
.ads-card_footer-meta .meta-timeago {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #3d3d3d;
  opacity: 0.5;
}
.ads-card_footer-meta .meta-location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ads-card_footer-meta .meta-location:hover {
  opacity: 0.75;
}
.ads-card_footer-meta .meta-location_name {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: var(--black);
}
.ads-card_footer-meta .icon--map-pin {
  width: 0.875rem;
  height: 1.125rem;
}
.ads-card_footer-buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
.ads-card_footer .btn-ads {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.ads-card_footer .btn-ads:hover span {
  color: var(--accent);
}
.ads-card_footer .btn-ads span {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ads-card_footer .btn-ads .icon--promote {
  width: 0.875rem;
  height: 0.75rem;
}
.ads-card_footer .btn-ads .icon--edit {
  width: 0.875rem;
  height: 0.875rem;
}
.ads-card_footer .btn-ads .icon--pause {
  width: 0.875rem;
  height: 0.875rem;
}
.ads-card_footer .btn-ads .icon--delete {
  width: 0.875rem;
  height: 0.875rem;
}
.ads-card_footer .btn-ads .icon--play {
  width: 0.75rem;
  height: 0.875rem;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE ASIDE
 ------------------------------------------------------------------------------------------------------------------*/
.profile-aside_btn {
  border-radius: 50%;
  background-color: #f4f4f4;
  border: 1px solid #b1b1b1;
  width: 3.125rem;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile-aside_btn span {
  font-weight: 500;
  font-size: 1.25rem;
  color: #1a1a1a;
}
.profile-aside_btn:hover {
  border: 1px solid var(--accent);
}
.profile-aside_avatar {
  aspect-ratio: 1/1;
  width: 8.75rem;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.9375rem;
}
.profile-aside_avatar img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.profile-aside_name {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  color: #1a1a1a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}
.profile-aside_name svg {
  width: 1.375rem;
  height: 1.375rem;
}
.profile-aside_body {
  width: 100%;
}
.profile-aside_body::-webkit-scrollbar {
  inline-size: 0rem;
  background-color: var(--scrollbar);
}
.profile-aside_body:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0.9375rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 1.375rem;
  height: 0.625rem;
  background-image: url("../icons/polygon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.profile-aside_rating {
  margin-bottom: 1.875rem;
}
.profile-aside_group .profile-group-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.9375rem;
  cursor: pointer;
}
.profile-aside_group .profile-group-item.active svg, .profile-aside_group .profile-group-item:hover svg {
  stroke: var(--accent);
}
.profile-aside_group .profile-group-item.active svg.icon--profile, .profile-aside_group .profile-group-item:hover svg.icon--profile {
  stroke: none;
  fill: var(--accent);
}
.profile-aside_group .profile-group-item.active svg.icon--bussines, .profile-aside_group .profile-group-item:hover svg.icon--bussines {
  fill: var(--accent);
}
.profile-aside_group .profile-group-item.active .profile-group-text, .profile-aside_group .profile-group-item:hover .profile-group-text {
  color: var(--accent);
}
.profile-aside_group .profile-group-item svg {
  stroke: #b1b1b1;
  stroke-width: 1.8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile-aside_group .profile-group-item svg.icon--profile,
.profile-aside_group .profile-group-item svg.icon--referral {
  fill: #b1b1b1;
  stroke: none;
  stroke-width: none;
}
.profile-aside_group .profile-group-item svg.icon--bussines {
  fill: #b1b1b1;
  stroke-width: 0.1px;
}
.profile-aside_group .profile-group-item svg.icon--profile {
  width: 1.125rem;
  height: 1.1875rem;
}
.profile-aside_group .profile-group-item svg.icon--wallet {
  width: 1.25rem;
  height: 1.1875rem;
}
.profile-aside_group .profile-group-item svg.icon--ads {
  width: 1.125rem;
  height: 1.125rem;
}
.profile-aside_group .profile-group-item svg.icon--bussines {
  width: 1.25rem;
  height: 1.25rem;
}
.profile-aside_group .profile-group-item svg.icon--orders {
  width: 1.25rem;
  height: 1.25rem;
}
.profile-aside_group .profile-group-item svg.icon--wallet {
  width: 1.0625rem;
  height: 1.25rem;
}
.profile-aside_group .profile-group-item svg.icon--messages {
  width: 1.1875rem;
  height: 1.1875rem;
}
.profile-aside_group .profile-group-item svg.icon--favourite {
  width: 1.1875rem;
  height: 1.0625rem;
}
.profile-aside_group .profile-group-item svg.icon--reviews {
  width: 1.1875rem;
  height: 1.1875rem;
}
.profile-aside_group .profile-group-item svg.icon--referral {
  width: 1.3125rem;
  height: 1.1875rem;
}
.profile-aside_group .profile-group-item svg.icon--settings {
  width: 1.1875rem;
  height: 1.125rem;
}
.profile-aside_group .profile-group-item svg.icon--logout {
  width: 1.1875rem;
  height: 1.1875rem;
}
.profile-aside_group .profile-group-item svg.icon--down-think {
  width: 0.875rem;
  height: 0.5rem;
  stroke-width: 1px;
}
.profile-aside_group .profile-group-item:last-child {
  margin-bottom: 0;
}
.profile-aside_group .profile-group-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.profile-aside_group .profile-group-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
  padding-left: 1.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile-aside_group .profile-group-badge {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  text-align: right;
  color: #b1b1b1;
}
.profile-aside_group .profile-group-badge.accent {
  border-radius: 0.125rem;
  width: 1.375rem;
  height: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  padding-top: 0.0625rem;
  background: var(--accent);
}
.profile-aside_group .profile-group_list {
  padding-left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile-aside_group .profile-group_list.active {
  opacity: 1;
  visibility: visible;
}
.profile-aside_group .profile-group_list li,
.profile-aside_group .profile-group_list li a {
  font-size: 0.9375rem;
  color: #605f5f;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.profile-aside_group .profile-group_list li:hover,
.profile-aside_group .profile-group_list li a:hover {
  color: var(--accent);
}
.profile-aside_group .profile-group_list li:hover a,
.profile-aside_group .profile-group_list li a:hover a {
  color: var(--accent);
}
.profile-aside_separator {
  height: 1px;
  background-color: var(--border);
  margin: 1.1875rem 0;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE CONVERSATIONS SIDEBAR STYLES
 ------------------------------------------------------------------------------------------------------------------*/
.conversations {
  border: 1px solid #efeaea;
  border-radius: 0.625rem;
  width: 100%;
}
.conversations-header {
  padding-block: 1.5625rem;
  padding-inline: 1.875rem;
  border-bottom: 1px solid #efeaea;
}
.conversations-header_title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  color: #1a1a1a;
}
.conversations-list {
  position: relative;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 0.125rem;
}
.conversations-list .scroll-arrow-up {
  top: 5px;
}
.conversations-list .scroll-arrow-down {
  bottom: 5px;
}
.conversations-list .scroll-arrow-down,
.conversations-list .scroll-arrow-up {
  position: absolute;
  right: 2px;
  width: 0.375rem;
  height: 0.3125rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.conversations-list .scroll-arrow-down svg,
.conversations-list .scroll-arrow-up svg {
  position: absolute;
  top: 0;
  left: 0;
  fill: #efeaea;
  width: 0.375rem;
  height: 0.3125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.conversations-list .scroll-arrow-down:hover svg,
.conversations-list .scroll-arrow-up:hover svg {
  fill: var(--accent);
}
.conversations-list_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 70vh;
  overflow-y: auto;
}
.conversations-list_scroll::-webkit-scrollbar {
  inline-size: 0.375rem;
  background-color: transparent;
}
.conversations-list_scroll::-webkit-scrollbar-track {
  border-radius: 0.625rem;
  background: #efeaea;
}
.conversations-list_scroll::-webkit-scrollbar-thumb {
  border-radius: 0.625rem;
  border: 0 none #fff;
  background-color: rgb(238, 0, 0);
  cursor: pointer;
}
.conversations-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  padding-left: 1.625rem;
  margin-right: 0.4375rem;
  border-radius: 0 0.3125rem 0.3125rem 0;
  padding-block: 1.25rem;
  border-left: 4px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.conversations-card_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.625rem;
}
.conversations-card_name {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
}
.conversations-card_date {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  text-align: right;
  color: #b1b1b1;
  padding-right: 1.25rem;
}
.conversations-card_subject {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
}
.conversations-card_excerpt {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #6c6c6c;
}
.conversations-card_start {
  width: 100%;
  max-width: 6.25rem;
}
.conversations-card_end {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.conversations-card_end:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #efeaea;
}
.conversations-card:last-child .conversations-card_end:after {
  content: none;
}
.conversations-card_image {
  width: inherit;
  aspect-ratio: 10/8;
  position: relative;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.conversations-card_image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.conversations-card.without-border .conversations-card_end:after {
  border-bottom: 1px solid transparent;
}
.conversations-card.active {
  background-color: rgba(230, 0, 0, 0.05) !important;
  border-left: 4px solid rgb(230, 0, 0) !important;
}
.conversations-card.active .conversations-card_end:after {
  border-bottom: 1px solid transparent;
}
.conversations-card:hover {
  background-color: rgba(230, 0, 0, 0.01);
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE LAYOUT
 ------------------------------------------------------------------------------------------------------------------*/
.profile-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4.375rem;
}
.profile-layout_aside {
  width: 18.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.profile-layout_conversations {
  width: 25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.profile-layout_content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE MESSENGER STYLES
 ------------------------------------------------------------------------------------------------------------------*/
.messenger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 1px solid #efeaea;
  border-radius: 0.625rem;
  /*---------------------------------------------------------------- Messager header -----------------------------------------------*/
  /*---------------------------------------------------------------- Messager list -----------------------------------------------*/
  /*---------------------------------------------------------------- Messager footer -----------------------------------------------*/
  /*---------------------------------------------------------------- Attach media files for message -----------------------------------------------*/
  /*---------------------------------------------------------------- If messager is an empty -----------------------------------------------*/
}
.messenger-full {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 70vh;
}
.messenger_header {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.messenger_header-top, .messenger_header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1.875rem;
  border-bottom: 1px solid #efeaea;
}
.messenger_header-back-btn:hover svg {
  fill: var(--accent);
}
.messenger_header-back-btn svg {
  fill: #b1b1b1;
  width: 0.6875rem;
  height: 1.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_header-options-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.messenger_header-options-item {
  position: relative;
  cursor: pointer;
}
.messenger_header-options-item:hover .item--dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.messenger_header-options-item:hover svg {
  fill: var(--accent);
}
.messenger_header-options-item svg {
  fill: #b1b1b1;
  width: 1.5rem;
  height: 0.375rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_header-options-dropdown {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
  position: absolute;
  top: calc(100% + 15px);
  right: -0.75rem;
  min-width: 10.1875rem;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0.625rem;
  padding: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
.messenger_header-options-dropdown li,
.messenger_header-options-dropdown li a,
.messenger_header-options-dropdown li button {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_header-options-dropdown li:hover,
.messenger_header-options-dropdown li a:hover,
.messenger_header-options-dropdown li button:hover {
  color: var(--accent);
}
.messenger_header-options-dropdown:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0.9375rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 1.375rem;
  height: 0.625rem;
  background-image: url("../icons/polygon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.messenger_header-top {
  min-height: 4.5rem;
}
.messenger_header-bottom {
  min-height: 5rem;
}
.messenger_header-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.messenger_header-column .btn-gray {
  min-height: 2rem;
  font-size: 0.875rem;
  padding-inline: 0.9375rem;
}
.messenger_header-column .column-group {
  min-width: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.messenger_header-user-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.messenger_header .user-link_avatar {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 2.75rem;
}
.messenger_header .user-link_avatar img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.messenger_header .user-link_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1875rem;
}
.messenger_header .user-link_title:hover .user-link_title-name {
  color: var(--accent);
}
.messenger_header .user-link_title-name {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_header .user-link_title-status {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #3d3d3d;
  opacity: 0.5;
}
.messenger_header-ad-subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.messenger_header-ad-subject .ad-subject_image {
  aspect-ratio: 8/6;
  overflow: hidden;
  width: 5rem;
  border-radius: 0.3125rem;
}
.messenger_header-ad-subject .ad-subject_image img {
  aspect-ratio: 8/6;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.messenger_header-ad-subject .ad-subject_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1875rem;
}
.messenger_header-ad-subject .ad-subject_title-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 0.3125rem;
}
.messenger_header-ad-subject .ad-subject_title-price {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #1a1a1a;
}
.messenger-attach_previews {
  padding-inline: 1.875rem;
}
.messenger-attach_warning {
  padding-inline: 1.875rem;
}
.messenger_list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-inline: 1.875rem;
  padding-top: 1.875rem;
  overflow-y: auto;
}
.messenger_list::-webkit-scrollbar {
  inline-size: 0.375rem;
  background-color: transparent;
}
.messenger_list::-webkit-scrollbar-track {
  border-radius: 0.625rem;
  background: #efeaea;
}
.messenger_list::-webkit-scrollbar-thumb {
  border-radius: 0.625rem;
  border: 0 none #fff;
  background-color: rgb(238, 0, 0);
  cursor: pointer;
}
.messenger_list-separator {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #000;
  opacity: 0.45;
  width: 100%;
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 1.5625rem;
}
.messenger_list-seller-message {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
  margin-bottom: 0.625rem;
}
.messenger_list-seller-message .seller-avatar {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 2.75rem;
}
.messenger_list-seller-message .seller-avatar img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.messenger_list-seller-message .seller-tile {
  position: relative;
  padding: 0.6875rem 0.9375rem 0.6875rem 0.9375rem;
  border-radius: 0.3125rem;
  min-height: 2.75rem;
  background: #f8f8f8;
  padding-right: 4.0625rem;
}
.messenger_list-seller-message .seller-tile_text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
}
.messenger_list-seller-message .seller-tile_date {
  position: absolute;
  bottom: 0.375rem;
  right: 0.4375rem;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 120%;
  color: #000;
  opacity: 0.5;
}
.messenger_list-user-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
  margin-bottom: 0.625rem;
}
.messenger_list-user-message .user-tile {
  position: relative;
  padding: 0.6875rem 0.9375rem 0.6875rem 0.9375rem;
  border-radius: 0.3125rem;
  min-height: 2.75rem;
  background: #3d3d3d;
  padding-right: 4.0625rem;
  cursor: pointer;
}
.messenger_list-user-message .user-tile:hover .user-tile_options {
  visibility: visible;
  opacity: 1;
}
.messenger_list-user-message .user-tile_text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #ffffff;
}
.messenger_list-user-message .user-tile_date {
  position: absolute;
  bottom: 0.375rem;
  right: 0.4375rem;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 120%;
  color: #fff;
  opacity: 0.5;
}
.messenger_list-user-message .user-tile_options {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.messenger_list-user-message .user-tile_options:hover {
  z-index: 100;
}
.messenger_list-user-message .user-tile_options:hover .item--dropdown {
  visibility: visible;
  opacity: 1;
}
.messenger_list-user-message .user-tile_options:hover svg {
  fill: var(--accent);
}
.messenger_list-user-message .user-tile_options svg {
  fill: #b1b1b1;
  width: 1.5rem;
  height: 0.375rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_list-user-message .user-tile_options-dropdown {
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
  position: absolute;
  top: calc(100% + 15px);
  right: -0.75rem;
  min-width: 10.1875rem;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0.625rem;
  padding: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
.messenger_list-user-message .user-tile_options-dropdown li,
.messenger_list-user-message .user-tile_options-dropdown li a,
.messenger_list-user-message .user-tile_options-dropdown li button {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_list-user-message .user-tile_options-dropdown li:hover,
.messenger_list-user-message .user-tile_options-dropdown li a:hover,
.messenger_list-user-message .user-tile_options-dropdown li button:hover {
  color: var(--accent);
}
.messenger_list-user-message .user-tile_options-dropdown:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0.9375rem;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 1.375rem;
  height: 0.625rem;
  background-image: url("../icons/polygon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.messenger_footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-top: 1px solid #efeaea;
  min-height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 1.875rem;
}
.messenger_footer form {
  width: 100%;
}
.messenger_footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.messenger_footer .messenger-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.messenger_footer .messenger-field_input {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #1a1a1a;
  width: 100%;
}
.messenger_footer .messenger-field_input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.messenger_footer .messenger-field_input::-moz-placeholder {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.messenger_footer .messenger-field_input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.messenger_footer .messenger-field_input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.messenger_footer .messenger-field_input::placeholder {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #b1b1b1;
}
.messenger_footer .messenger-button_attach {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.messenger_footer .messenger-button_attach:hover svg {
  stroke: var(--accent);
}
.messenger_footer .messenger-button_attach svg {
  stroke: #b1b1b1;
  stroke-width: 0.125rem;
  width: 1.375rem;
  height: 1.6875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger_footer .messenger-button_send {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.messenger_footer .messenger-button_send:hover svg {
  -webkit-transform: scale(1.25);
      -ms-transform: scale(1.25);
          transform: scale(1.25);
  opacity: 0.75;
}
.messenger_footer .messenger-button_send svg {
  fill: var(--accent);
  width: 1.1875rem;
  height: 1.1875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger .mediaload-previews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 0;
  margin-left: -5px;
  margin-right: -5px;
}
.messenger .mediaload-previews_item {
  position: relative;
  aspect-ratio: 4/3;
  width: 10%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 0.625rem;
}
.messenger .mediaload-previews_item-delete {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger .mediaload-previews_item-delete:hover {
  border-color: var(--accent);
}
.messenger .mediaload-previews_item-delete:hover svg {
  fill: var(--accent);
}
.messenger .mediaload-previews_item-delete svg {
  fill: rgba(0, 0, 0, 0.45);
  width: 0.375rem;
  height: 0.375rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messenger .mediaload-previews img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px dashed #ccc;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.messenger .mediaload-warning {
  margin-bottom: 0.9375rem;
}
.messenger .mediaload-warning.hidden {
  display: none;
}
.messenger .mediaload-warning_inner {
  background: rgba(230, 0, 0, 0.07);
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: #3d3d3d;
  border-radius: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding-inline: 1.25rem;
  min-height: 3.125rem;
}
.messenger-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 70vh;
}
.messenger-empty_image {
  aspect-ratio: 288/107;
  overflow: hidden;
  width: 18rem;
  margin-bottom: 1.25rem;
}
.messenger-empty_image img {
  aspect-ratio: 288/107;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.messenger-empty_title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 120%;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 0.3125rem;
}
.messenger-empty_description {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 120%;
  text-align: center;
  color: #b1b1b1;
}

[data-panelFull] {
  display: none;
}
[data-panelFull].active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE SETTINGS PAGE
 ------------------------------------------------------------------------------------------------------------------*/
.settings-tile {
  border: 1px solid #efeaea;
  border-radius: 0.625rem;
  overflow: hidden;
}
.settings-tile_title {
  position: relative;
  font-weight: 500;
  font-size: 1.125rem;
  color: #1a1a1a;
  padding-inline: 2.1875rem;
  padding-top: 1.6875rem;
  padding-bottom: 1.375rem;
}
.settings-tile_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 300%;
  height: 1px;
  border-bottom: 1px solid #efeaea;
}
.settings-tile_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  padding-block: 1.875rem;
  padding-inline: 2.1875rem;
}
.settings-tile .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.settings-tile .form-group_title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.125rem;
  margin-right: 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  color: #1a1a1a;
}
.settings-tile .form-group .input {
  color: #1a1a1a;
  max-width: 23.125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 1px solid transparent;
}
.settings-tile .form-group .input:focus {
  outline: 1px solid var(--accent);
}
.settings-tile .form-group-inrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
.settings-tile .input-wrapper_description {
  font-weight: 400;
  font-size: 0.875rem;
  color: #b1b1b1;
  padding-top: 0.625rem;
}
.settings-tile .btn,
.settings-tile .btn-gray {
  min-height: 2.5rem;
  font-size: 0.9375rem;
  padding-inline: 1.25rem;
}
.settings-tile_footer {
  background-color: rgba(230, 0, 0, 0.05);
  padding-inline: 2.1875rem;
  padding-block: 1.875rem;
}
.settings-tile_footer-desc {
  font-weight: 400;
  font-size: 0.875rem;
  color: #3d3d3d;
  padding-top: 0.9375rem;
}
.settings-tile .custom-radio {
  background-color: #f3f3f3;
}
.settings-tile .radio input[type=radio]:checked + .custom-radio {
  background-color: transparent;
}

.settings-save {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1.25rem;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE USER PAGE
 ------------------------------------------------------------------------------------------------------------------*/
.profile-user {
  /*------------------------------------------------------------- TOP TILES PART ---------------------------------------------------*/
  /*------------------------------------------------------------- LISTINGS PART ---------------------------------------------------*/
  /*------------------------------------------------------------- REVIEWS PART ---------------------------------------------------*/
}
.profile-user_title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
}
.profile-user_title span {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  color: #1a1a1a;
}
.profile-user_title small {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 120%;
  color: #b1b1b1;
}
.profile-user_description {
  display: block;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 130%;
  color: #b1b1b1;
  margin-bottom: 1.25rem;
}
.profile-user_collection {
  margin-bottom: 1.5625rem;
}
.profile-user_tile {
  border: 1px solid #efeaea;
  border-radius: 0.625rem;
  padding: 2.1875rem 2.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.profile-user_tile .tile_title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 120%;
  color: #1a1a1a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}
.profile-user_tile .tile_title svg {
  width: 1.375rem;
  height: 1.375rem;
}
.profile-user_tile .tile_description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
  color: #b1b1b1;
  margin-bottom: 1.25rem;
}
.profile-user_tile .tile_row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.profile-user_tile .tile_row .btn,
.profile-user_tile .tile_row .btn-gray {
  padding-inline: 1.875rem;
}
.profile-user_listings .product-card {
  padding: 0;
}
.profile-user_listings .product-card_like {
  top: 0.875rem;
  right: 0.5rem;
}
.profile-user_listings .product-card_like svg {
  width: 1.625rem;
  height: 1.5rem;
}
.profile-user_listings .product-card_meta {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.25rem;
}
.profile-user_listings .product-card_spacebetween {
  padding-inline: 0;
}
.profile-user_listings .product-card_price {
  margin-bottom: 0.5rem;
}
.profile-user_listings .product-card_price strong {
  font-weight: 500;
}
.profile-user_listings .product-card_title {
  margin-bottom: 0.9375rem;
}
.profile-user_rating {
  margin-bottom: 0.9375rem;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE VERIFICATION PAGE
 ------------------------------------------------------------------------------------------------------------------*/
.verification .profile-user_tile {
  padding-block: 1.75rem;
}
.verification .tile_title {
  margin-bottom: 0.9375rem;
}
.verification .tile_row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.verification .tile_row-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.verification .tile_row-item svg {
  width: 1.25rem;
  height: 1.25rem;
}
.verification .tile_row.mb-0 {
  margin-bottom: 0;
}
.verification .tile_paragraph {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #3d3d3d;
  margin-bottom: 1.25rem;
}
.verification .tile_row:last-child {
  margin-bottom: 0;
}
.verification_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.9375rem;
  padding-bottom: 1.25rem;
}
.verification_list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.9375rem;
}
.verification_row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5rem;
}
.verification_description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  color: #3d3d3d;
  max-width: 25rem;
}
.verification .mediaload-previews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 0;
  margin-left: -5px;
  margin-right: -5px;
}
.verification .mediaload-previews_item {
  position: relative;
  aspect-ratio: 4/3;
  width: 20%;
  margin-top: 1.5625rem;
  padding-left: 5px;
  padding-right: 5px;
}
.verification .mediaload-previews_item-delete {
  position: absolute;
  top: 0.4375rem;
  right: 0.75rem;
  width: 1.5625rem;
  height: 1.5625rem;
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.verification .mediaload-previews_item-delete:hover {
  border-color: var(--accent);
}
.verification .mediaload-previews_item-delete:hover svg {
  fill: var(--accent);
}
.verification .mediaload-previews_item-delete svg {
  fill: rgba(0, 0, 0, 0.45);
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.verification .mediaload-previews img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px dashed #ccc;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.verification .mediaload-warning {
  margin-top: 1.0625rem;
}
.verification .mediaload-warning.hidden {
  display: none;
}
.verification .mediaload-warning_inner {
  background: rgba(230, 0, 0, 0.07);
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: #3d3d3d;
  border-radius: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding-inline: 1.25rem;
  min-height: 3.125rem;
}

/*-----------------------------------------------------------------------------------------------------------------
PROFILE WALLET PAGE
 ------------------------------------------------------------------------------------------------------------------*/
.wallet_tabs {
  margin-bottom: 1.875rem;
}

.wallet-balance {
  padding-top: 0.625rem;
  margin-bottom: 1.875rem;
}
.wallet-balance_description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 120%;
  color: #b1b1b1;
}
.wallet-balance_all {
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 120%;
  color: #1a1a1a;
}

.wallet-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.wallet-form .btn {
  padding-inline: 1.875rem;
  margin-top: 0.625rem;
}

.wallet-panel {
  display: none;
}
.wallet-panel.active {
  display: block;
  -webkit-animation: fade-up 0.3s ease-in-out;
          animation: fade-up 0.3s ease-in-out;
}
.wallet-panel .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wallet-panel .form-group_title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.75rem;
  margin-right: 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  color: #1a1a1a;
}
.wallet-panel .form-group .input {
  color: #1a1a1a;
  max-width: 9.375rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: 1px solid transparent;
}
.wallet-panel .form-group .input:focus {
  outline: 1px solid var(--accent);
}
.wallet-panel .form-group-inrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
.wallet-panel .custom-radio {
  background-color: #f3f3f3;
}
.wallet-panel .radio input[type=radio]:checked + .custom-radio {
  background-color: transparent;
}

.wallet-transaction_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.wallet-transaction_list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.9375rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
4х колоночный список 
--------------------------------------------------------------------------------------------------------------------------------*/
.fourth-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}
.fourth-list__title {
  font-weight: 700;
  font-size: 2.12rem;
  line-height: 1.2;
  color: #1a1a1a;
}
.fourth-list__annotation {
  font-weight: 400;
  font-size: 0.94rem;
  color: #b1b1b1;
}
.fourth-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
  margin-bottom: 1.25rem;
}
.fourth-list__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.6875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fourth-list__labels a {
  width: 4.3125rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fourth-list__labels a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.fourth-list__labels a img {
  height: 100%; /* растягиваем изображение по высоте контейнера */
  width: auto; /* сохраняем пропорции изображения по ширине */
  max-width: 100%; /* чтобы не выйти за границы контейнера по ширине */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fourth-list__list {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4; /* Количество колонок */
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px; /* Расстояние между колонками */
}
.fourth-list__list li {
  margin-bottom: 10px;
}
.fourth-list__list li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.4375rem;
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
  white-space: nowrap;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.fourth-list__list li a .fourth-count {
  font-weight: 400;
  font-size: 13px;
  color: #b1b1b1;
}
.fourth-list__list li a:hover {
  color: var(--accent);
}
.fourth-list__list li a:hover .brand-count {
  color: #b1b1b1;
}
.fourth-list__list > *:last-child {
  margin-bottom: 0;
}
.fourth-list__footer .btn {
  margin-top: 10px;
  padding-inline: 3.75rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - Catalog of Professional  Services and Companies (MAIN)
--------------------------------------------------------------------------------------------------------------------------------*/
.proffesional-search {
  color: #1a1a1a;
}
.proffesional-search__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.proffesional-search__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #b1b1b1;
  margin-bottom: 20px;
}
.proffesional-search__field {
  margin-bottom: 15px;
}
.proffesional-search__tags {
  color: var(--accent);
}
.proffesional-search__tags .tags-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #b1b1b1;
  margin-right: 5px;
}

/*-----------------------------------------------------------------------------------------------------------------
SERVICES ASIDE
 ------------------------------------------------------------------------------------------------------------------*/
.services-filter {
  padding-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid #efeaea;
}
.services-filter .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-aside {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.services-aside__avatar {
  aspect-ratio: 1/1;
  width: 8.75rem;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.services-aside__avatar img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.services-aside__name {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 120%;
  color: #1a1a1a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.services-aside__name svg {
  width: 1.375rem;
  height: 1.375rem;
}
.services-aside__rating {
  margin-bottom: 10px;
}
.services-aside__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.services-aside__points li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5);
}
.services-aside__points svg {
  fill: var(--accent);
  width: 15px;
  max-height: 20px;
}
.services-aside__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

/* ------------------------------------------------------------------------------------------------------------------------------
БЛОК - 72 companies SERVICES AND COMPANYS
--------------------------------------------------------------------------------------------------------------------------------*/
.services-cards {
  color: #1a1a1a;
}
.services-cards__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.services-cards__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.services-cards__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

/*----------------------------------------------- Services card ----------------------------------*/
.services-card {
  color: #1a1a1a;
  border: 1px solid #efeaea;
  border-radius: 5px;
  padding: 30px 40px 25px 40px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-card:hover {
  border: 1px solid #f7c74d;
}
.services-card:hover .services-card__title {
  color: var(--accent);
}
.services-card:hover .services-card__middle {
  color: #3d3d3d;
}
.services-card:hover .services-card__image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.services-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.services-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100px;
  border-radius: 10px;
}
.services-card__image img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-card__grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.services-card__grow .btn-gray {
  padding-inline: 15px;
  line-height: 1.2;
  color: #3d3d3d;
  font-size: 14px;
  min-height: 32px;
}
.services-card__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.services-card__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.services-card__name--checked {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.services-card__name--usual {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.services-card__name--usual svg {
  display: none;
}
.services-card__name--top {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-item-align: start;
      align-self: start;
  padding: 5px 10px;
  background-color: var(--gold);
  margin-bottom: -5px;
  border-radius: 8px;
}
.services-card__name svg {
  width: 22px;
  height: 22px;
}
.services-card__address {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #b1b1b1;
}
.services-card__middle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #b1b1b1;
  padding-block: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-card__bottom {
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #1a1a1a;
}
.services-card__bottom .tags-label {
  color: #b1b1b1;
  margin-right: 5px;
}

.services-catalog {
  color: #1a1a1a;
}
.services-catalog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}
.services-catalog__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.services-catalog__showorderby {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.services-catalog__showorderby .btn-show-map {
  font-size: 16px;
  line-height: 1.2;
  color: #1a1a1a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services-catalog__showorderby .btn-show-map:hover {
  color: var(--accent);
}
.services-catalog__endcapt {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: #b1b1b1;
  padding-top: 40px;
}

/*-----------------------------------------------------------------------------------------------------------------
Шапка для страницы компании в разделе SERVICES
 ------------------------------------------------------------------------------------------------------------------*/
.services-head {
  background: #f4f4f4;
}
.services-head .breadcrumbs {
  position: relative;
  z-index: 1;
}
.services-head .container {
  height: 100%;
  min-height: 360px;
}
.services-head__banner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* по горизонтали */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* по вертикали */
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #aeaeae;
  font-weight: 200;
  font-size: 6rem;
  text-align: center;
}
.services-head__banner > *:not(img) {
  z-index: 1;
}
.services-head__banner .example-b {
  font-weight: 200;
  font-size: 96px;
  text-align: center;
}
.services-head__banner .example-p {
  font-weight: 200;
  font-size: 30px;
  text-align: center;
  color: #aeaeae;
}
.services-head__banner--transparent {
  background-color: transparent;
}
.services-head__banner img {
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  -o-object-fit: cover;
     object-fit: cover;
  block-size: 100%;
  inline-size: 100%;
  z-index: 0;
}

/*-----------------------------------------------------------------------------------------------------------------
SERVICES COMPANY LAYOUT
 ------------------------------------------------------------------------------------------------------------------*/
.services-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-bottom: 4.375rem;
}
.services-layout--paddingtop {
  padding-top: 30px;
}
.services-layout_aside {
  width: 18.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.services-layout_aside--withheader .services-aside {
  -webkit-transform: translateY(-140px);
      -ms-transform: translateY(-140px);
          transform: translateY(-140px);
}
.services-layout_content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.services-layout .listings-block {
  padding-top: 25px;
}

.services-search .search-form {
  margin-right: 0;
}

@media (min-width: 992px){
  .catsoverlay-menu_cats-item.active {
    background: #f8f8f8;
  }
  .catsoverlay-menu_cats-item.active a {
    color: var(--accent);
  }
  .catsadvert-menu_cats-item.active {
    background: #f8f8f8;
  }
  .catsadvert-menu_cats-item.active a {
    color: var(--accent);
  }
}

@media (max-width: 1200px){
  .tup-35 {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .new-vehicles__grow {
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .new-vehicles__grow .vehicles-card {
    aspect-ratio: 400/200;
    width: 50%;
  }
}

@media (max-width: 992px){
  body .fake-scrollbar {
    display: none;
  }
  .header-bottom__nav {
    padding-bottom: 5px;
  }
  .catsoverlay {
    top: 0;
  }
  .catsoverlay-menu {
    display: block;
  }
  .catsoverlay-menu_lg-header {
    display: block;
  }
  .catsoverlay-menu_navigation {
    width: 100%;
  }
  .catsoverlay-menu_cats_wrapper {
    width: 100%;
    padding: 0 15px 0.9375rem 0;
  }
  .catsoverlay-menu_cats_wrapper:after {
    border-right: none;
  }
  .catsoverlay-menu_cats {
    border-right: none;
    width: 100%;
    margin-top: 20px;
    max-height: calc(100vh - 120px);
  }
  .catsoverlay-menu_cats-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0.3125rem;
  }
  .catsoverlay-menu_cats-arrow {
    display: block;
  }
  .catsoverlay-menu_subcats {
    position: fixed;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    padding: 1.25rem 0.9375rem;
    background-color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .catsoverlay-menu_subcats.active-lg {
    left: 0;
  }
  .catsoverlay-menu_subcats-header {
    padding-top: 0.625rem;
    margin-bottom: 1.25rem;
  }
  .catsoverlay-menu_subcats-title {
    margin-bottom: 0;
  }
  .catsoverlay-menu_subcats-blocks {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
  .catsoverlay-menu_subcats-block {
    padding-bottom: 0rem;
  }
  .catsoverlay-menu_subcats-list {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
    margin-top: 0.15625rem;
    margin-bottom: 0.15625rem;
  }
  .catsoverlay-menu_subcats-linkwrap {
    min-height: 2.625rem;
    padding-inline: 1.25rem;
    border-radius: 0.3125rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .catsoverlay-menu_subcats-linkwrap:hover {
    background: #f8f8f8;
  }
  .catsoverlay-menu_subcats-linkwrap:hover a {
    color: var(--accent);
  }
  .catsoverlay-menu_subcats-linkwrap.active {
    border: 1px solid rgba(238, 0, 0, 0.5);
    background: #f8f8f8;
  }
  .catsoverlay-menu_subcats-linkwrap.active a {
    color: var(--accent);
  }
  .catsoverlay-menu_subcats-link.title--subcats-link {
    margin-bottom: 0;
  }
  .catsoverlay-menu_subcats-back {
    display: block;
  }
  .catsoverlay-menu_subcats-close {
    display: block;
    margin-right: 24px;
  }
  .catsoverlay-menu_subcats-arrow {
    display: block;
  }
  .search-form {
    margin-right: 0;
  }
  .header-medium {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-medium_nav {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .catsadvert-menu {
    display: block;
    border: none;
    padding-right: 0;
  }
  .catsadvert-menu_navigation {
    width: 100%;
  }
  .catsadvert-menu_cats {
    border-right: none;
    width: 100%;
    padding: 0;
    overflow: auto;
  }
  .catsadvert-menu_cats:after {
    content: none;
  }
  .catsadvert-menu_cats-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0.3125rem;
  }
  .catsadvert-menu_cats-arrow {
    display: block;
  }
  .catsadvert-menu_content {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  .catsadvert-menu_subcats {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.25rem 0.9375rem;
    background-color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .catsadvert-menu_subcats.active-lg {
    left: 0;
  }
  .catsadvert-menu_subcats-header {
    padding-top: 0.625rem;
    margin-bottom: 1.25rem;
  }
  .catsadvert-menu_subcats-title {
    margin-bottom: 0;
  }
  .catsadvert-menu_subcats-blocks {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
  .catsadvert-menu_subcats-block {
    padding-bottom: 0rem;
  }
  .catsadvert-menu_subcats-list {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
    margin-top: 0.15625rem;
    margin-bottom: 0.15625rem;
  }
  .catsadvert-menu_subcats-linkwrap {
    min-height: 2.625rem;
    padding-inline: 1.25rem;
    border-radius: 0.3125rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .catsadvert-menu_subcats-linkwrap:hover {
    background: #f8f8f8;
  }
  .catsadvert-menu_subcats-linkwrap:hover a {
    color: var(--accent);
  }
  .catsadvert-menu_subcats-linkwrap.active {
    border: 1px solid rgba(238, 0, 0, 0.5);
    background: #f8f8f8;
  }
  .catsadvert-menu_subcats-linkwrap.active a {
    color: var(--accent);
  }
  .catsadvert-menu_subcats-link.title--subcats-link {
    margin-bottom: 0;
  }
  .catsadvert-menu_subcats-back {
    display: block;
  }
  .catsadvert-menu_subcats-close {
    display: block;
    margin-right: 1.5rem;
  }
  .catsadvert-menu_subcats-arrow {
    display: block;
  }
  .advertising {
    width: 100%;
  }
  .search-by-params__spacebetween {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .search-by-params__spacebetween .btn {
    margin-top: 30px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px){
  .header-bottom__nav ul {
    gap: 10px 15px;
    padding-block: 10px;
  }
  .header-bottom__nav ul li a {
    font-size: 12px;
  }
  .custom-col-5 {
    width: 50%;
  }
  .section-banner {
    aspect-ratio: 128/42;
  }
  .section-banner img {
    display: block;
    border-radius: 0.625rem;
    overflow: hidden;
    height: 100%;
  }
  .search-orderby__select {
    font-size: 0.75rem;
  }
  .header-location {
    display: none;
  }
  .advertising_mediaload-block .mediaload-previews_item {
    width: 33.33%;
  }
  .advertising_input-block {
    width: 75%;
  }
  .advertising_select-block {
    width: 75%;
  }
  .companys-services__list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .fivecols-list__list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .fivecols-list .adv-mini {
    display: none;
  }
  .messenger .mediaload-previews_item {
    width: 20%;
  }
  .verification .mediaload-previews_item {
    width: 33.33%;
  }
  .fourth-list__list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .fourth-list .adv-mini {
    display: none;
  }
}

@media (max-width: 576px){
  .authorize-login,
  .authorize-signup {
    min-width: 100%;
  }
  .mb-sm-10 {
    margin-bottom: 10px;
  }
  .mb-sm-20 {
    margin-bottom: 20px;
  }
  .mb-sm-25 {
    margin-bottom: 25px;
  }
  .mb-sm-30 {
    margin-bottom: 30px;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .mb-sm-50 {
    margin-bottom: 50px;
  }
  .section-ajax {
    margin-top: 1.875rem;
  }
  .header-top_list {
    gap: 1.25rem;
  }
  .header-top_list a {
    font-size: 12px;
  }
  .header-top_right {
    gap: 20px;
  }
  .header-medium_intro {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-location {
    margin-right: 0;
  }
  .advertising_mediaload-block .mediaload-previews_item {
    width: 50%;
  }
  .modal-sign-in,
  .modal-sign-up {
    max-width: calc(100% - 30px); /* 15px слева и справа */
  }
  .advertising_input-block {
    width: 100%;
  }
  .advertising_select-block {
    width: 100%;
  }
  .new-vehicles__grow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .new-vehicles__grow .vehicles-card {
    aspect-ratio: 400/200;
    width: 100%;
  }
  .messenger .mediaload-previews_item {
    width: 33.33%;
  }
  .verification .mediaload-previews_item {
    width: 50%;
  }
}

@media (max-width: 440px){
  .custom-col-5 {
    width: 100%;
  }
  .header-top_list {
    display: none;
  }
}

@media (any-hover: hover){
  *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(238, 0, 0, 0.5);
  }
  .conversations-list_scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(238, 0, 0, 0.5);
  }
  .messenger_list::-webkit-scrollbar-thumb:hover {
    background-color: rgba(238, 0, 0, 0.5);
  }
}
/*# sourceMappingURL=main.min.css.map */
