:root {
  --font-size-base: 1rem;
  --font-size-sm: calc(var(var(--font-size-base) * 0.875));
  --font-size-lg: calc(var(var(--font-size-base) * 1.25));

  --line-height-base: 1.5;
  --line-height-sm: 1.25;
  --line-height-lg: 2;

  --h1-font-size: calc(1.375rem + 1.5vw);
  --h2-font-size: calc(1.325rem + 0.9vw);
  --h3-font-size: calc(1.3rem + 0.6vw);
  --h4-font-size: calc(1.275rem + 0.3vw);
  --h5-font-size: calc(var(--font-size-base) * 1.25)
  --h6-font-size: var(--font-size-base);
}

a:focus,
a:active {
  text-decoration: underline;
}

/* app header */
.app-header__top {
  display: none;
  border-bottom: 1px solid #f6f6f6;
  background-color: #fff;
}
.app-header__top--inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-header__top .separator {
  width: 2px;
  height: 20px;
  background-color: #f1f1f1;
  margin: 0 16px;
}

.app-header__top-left {
  height: 100%;
  display: flex;
  align-items: center;
}

.app-header__top .customer_city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fc1d1d;
}

.app-header__top .header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.app-header__top .header-nav > li a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #6c6f71;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.app-header__top .header-nav li:hover > a {
  text-decoration: none;
  color: #010101;
}
.app-header__top .header-nav li.dropdown {
  padding-right: 12px;
}
.app-header__top .header-nav li.dropdown > a::after {
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.app-header__top .header-nav li.dropdown.open > .dropdown-menu {
  border-radius: 8px;
}
.app-header__top .header-nav li.dropdown .dropdown-menu li > a {
  transition: 0.3s ease-in-out;
}
.app-header__top .header-nav li.dropdown .dropdown-menu li > a:hover {
  background-color: #f9f9fa;
  color: #fc1d1d;
}
.app-header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-header__socials a {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2f2f2;
}
.app-header__socials a svg {
  width: 70%;
  height: auto;
}
.app-header__socials a.vk {
  background: #0077ff;
  color: #fff;
}
.app-header__socials a.tg {
  background: #27a6e5;
  color: #fff;
}
.app-header__socials a.max {
  background-color: rgba(67, 92, 248, 1);
  background-image: linear-gradient(
    150deg,
    rgba(67, 92, 248, 1) 40%,
    rgba(157, 76, 219, 1) 60%
  );
  color: #fff;
}

@media (max-width: 1023px) {
  .app-header__top .header-nav {
    display: none;
  }
}

.app-header__main {
  display: none;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #f9f9f9;
  position: relative;
}
.app-header__main--inner {
  height: 60px;
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.app-header__main .logo {
  height: 42px;
}
.app-header__main .logo img {
  width: auto;
  height: 100%;
}

.app-header__main .app-header-catalog-btn {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 25px;
  color: #fff;
  background: #fc1d1d;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  line-height: 0;
  transition: 0.3s ease-in-out;
}
.app-header__main .app-header-catalog-btn svg {
  width: 20px;
  height: 20px;
}
.app-header__main .app-header-catalog-btn:hover {
  background: #011120;
}

.app-header__main .app-header-search {
  width: 100%;
  margin-left: 12px;
  background-color: #fc1d1d;
  border-radius: 8px;
}
.app-header__main .app-header-search form {
  display: flex;
  border-radius: 8px;
  padding: 2px;
}
.app-header__main .app-header-search input {
  width: 100%;
  background: none;
  border: none;
  padding-left: 12px;
  border-radius: 6px 0 0 6px;
  font-size: 15px;
  background-color: #f9f9fa;
}
.app-header__main .app-header-search button {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fc1d1d;
  border: none;
  color: #fff;
  border-radius: 0 8px 8px 0;
  transition: 0.3s ease-in-out;
}
.app-header__main .app-header-search button svg {
  width: 20px;
  height: 20px;
  line-height: 1;
}
.app-header__main .app-header-search button:hover {
  background: #2f2f2f;
}

.app-header__main .app-header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 24px;
}
.app-header__main .app-header-contacts__phone {
  text-wrap: nowrap;
  font-weight: 600;
  color: #2f2f2f;
  transition: 0.3s ease-in-out;
}
.app-header__main .app-header-contacts__phone:hover {
  color: #fc1d1d;
  text-decoration: none;
}
.app-header__main .app-header-contacts__timetable {
  text-wrap: nowrap;
  font-size: 12px;
  color: #8c8c8c;
}

.app-header-user-actions {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
}
.app-header-user-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9fa;
  position: relative;
  border-radius: 6px;
  color: #fc1d1d;
  transition: 0.3s ease-in-out;
}
.app-header-user-link--target {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.app-header-user-link__icon {
  line-height: 1;
}
.app-header-user-link__name {
  font-size: 12px;
  font-weight: 600;
  color: #2f2f2f;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.app-header-user-link .count {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 6px;
  font-size: 10px;
  background-color: #2f2f2f;
  color: #fff;
}

.app-header-user-link .popup {
  position: absolute;
  right: 0;
  top: calc(100% + 1px);
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 6px;
}

.app-header-user-link:hover {
  color: #2f2f2f;
}
.app-header-user-link
  .app-header-user-link--target:hover
  .app-header-user-link__name {
  bottom: -6px;
  visibility: visible;
  opacity: 1;
}

.app-header-profile-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 160px;
  padding: 16px;
  background-color: #f9f9fa;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 100;
}

.app-header-user-link.dropdown .app-header-profile-dropdown {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 8px);
}
.app-header-user-link .profile-dropdown-nav {
  width: 100%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}
.app-header-user-link .profile-dropdown-nav a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #2f2f2f;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.app-header-user-link .profile-dropdown-nav a:not(:last-child) {
  margin-bottom: 12px;
}
.app-header-user-link .profile-dropdown-nav a:hover {
  text-decoration: none;
  color: #fc1d1d;
}
.app-header-user-link .profile-dropdown-nav .separator {
  width: 100%;
  height: 1px;
  background-color: #e1e6ef;
  margin-bottom: 12px;
}

.app-header-user-link.dropdown {
  color: #2f2f2f;
}

@media (max-width: 1100px) {
  .app-header__main .app-header-contacts {
    margin-left: 24px;
  }
}
@media (min-width: 1024px) {
  .app-header__top,
  .app-header__main {
    display: block;
  }
  .app-header-user-actions {
    display: flex;
  }
}

.header-mobile__top {
}
.header-mobile__top--inner {
}
.header-mobile__bottom {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-mobile__bottom--inner {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
}
.header-mobile__bottom .mob-menu-btn {
  width: 40px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fc1d1d;
  color: #fff;
  border: none;
}
.header-mobile__bottom .header-search {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #f5f6f7;
  border-radius: 6px;
}
.header-mobile__bottom .header-search input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0 8px;
}
.header-mobile__bottom .header-search button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fc1d1d;
  color: #fff;
  border: none;
}

@media (min-width: 1024px) {
  .header-mobile__bottom {
    display: none;
  }
}

/* app footer */

.app-footer {
  background-color: rgba(25, 35, 49, 1);
  background-image: linear-gradient(
    175deg,
    rgba(25, 35, 49, 1) 0%,
    rgba(13, 13, 13, 1) 50%,
    rgba(25, 35, 49, 1) 100%
  );
  color: #fff;
  margin-top: 48px;
}
.app-footer--inner {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  margin: 0 -16px;
}
.app-footer__column {
  max-width: 25%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
.app-footer__column-title {
  font-size: 18px;
  font-weight: 600;
}
.app-footer__logo {
  display: flex;
  flex-direction: column;
}
.app-footer__logo .app-footer__logo-title {
  font-size: 20px;
  font-weight: 600;
}
.app-footer__logo .app-footer__logo-subtitle {
  color: #888;
  font-size: 14px;
}
.app-footer__payments {
  margin-top: 14px;
}
.app-footer__payments-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.app-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}
.app-footer__legal a {
  max-width: 300px;
  color: #888;
  font-size: 12px;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
  text-wrap: balance;
}
.app-footer__legal a:hover {
  color: #888;
  opacity: 0.5;
}
.app-footer__corp {
  margin-top: 14px;
  font-size: 12px;
  color: #888;
}
.app-footer__contact {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}
.app-footer__contact a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.app-footer__contact a:hover {
  opacity: 0.5;
  text-decoration: none;
  color: #fff;
}
.app-footer__contact a:focus {
  text-decoration: none;
}
.app-footer__contact span {
  font-size: 14px;
  color: #888;
}
.app-footer__socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.app-footer__socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2f2f2;
}
.app-footer__socials a svg {
  width: 70%;
  height: auto;
}
.app-footer__socials a.vk {
  background: #0077ff;
  color: #fff;
}
.app-footer__socials a.tg {
  background: #27a6e5;
  color: #fff;
}
.app-footer__socials a.max {
  background-color: rgba(67, 92, 248, 1);
  background-image: linear-gradient(
    150deg,
    rgba(67, 92, 248, 1) 40%,
    rgba(157, 76, 219, 1) 60%
  );
  color: #fff;
}
.app-footer__nav {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-footer__nav a {
  width: max-content;
  color: #a8a8a8;
  font-size: 14px;
}
.app-footer__nav a:hover {
  text-decoration: none;
  color: #fff;
}
.app-footer__nav a:focus,
.app-footer__nav a:active {
  text-decoration: none;
  color: #a8a8a8;
}
@media (width <= 1023px) {
  .app-footer--inner {
    padding-bottom: 85px;
  }
}
@media (max-width: 980px) {
  .app-footer--inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .app-footer__column {
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  .app-footer__column {
    max-width: 100%;
  }
}

/* page */

.boxed {
  overflow: hidden;
}

.page {
  margin-top: 24px;
  display: flex;
}
.page .page-sidebar {
  display: none;
  width: 100%;
  min-width: 240px;
  max-width: 260px;
  padding-right: 20px;
}
.page .page-sidebar--inner {
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
  border: 1px solid #dddddd;
}
.page .page-sidebar__title {
  font-size: var(--h5-font-size);
  font-weight: 500;
  color: #070707;
  margin-bottom: 12px;
  margin-left: 8px;
}
.page .page-sidebar__nav a {
  width: max-content;
  display: flex;
  align-items: center;
  color: #252525;
  font-size: var(--font-size-sm);
  padding: 2px 8px;
  margin-bottom: 10px;
  transition: .3s ease-in-out;
}
.page .page-sidebar__nav a:hover {
  text-decoration: none;
  color: #fc1d1d;
}
.page .page-sidebar__nav a:focus,
.page .page-sidebar__nav a:focus {
  text-decoration: none;
}
.page .page-sidebar__nav a:last-child {
  margin-bottom: 0;
}
.page .page-sidebar__nav .link-row {
  justify-content: space-between;
}
.page .page-sidebar__island {
  margin-bottom: 24px;
}
.page .page-sidebar__island:last-child {
  margin-bottom: 0;
}

.page .page-content {
  width: 100%;
}
.page .page-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .page .page-sidebar {
    display: block;
  }
}

/* lk */

.lk-home-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.lk-home-grid__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #ddd;
}
.lk-home-grid__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lk-home-grid__item-title {
  font-size: var(--font-size-lg);
  font-weight: 500;
}
.lk-home-grid__item-body {
  margin-top: 4px;
}
.lk-home-grid__item-actions {
  margin-top: 6px;
}
.lk-home-grid .user-balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lk-home-grid .user-balance p {
  margin-bottom: 0;
}
.lk-home-grid .garage-item .garage-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lk-home-grid .garage-item .garage-empty img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 768px) {
  .lk-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lk-home-grid__item-body {
    height: 140px;
  }
  .lk-home-grid .garage-item {
    grid-area: 2 / 1 / 2 / 3;
  }
  .lk-home-grid .garage-item .lk-home-grid__item-body {
    height: 210px;
  }
}

/* news */

.swiper-news {
  overflow: hidden;
}

.news-block {
  height: auto !important;
  background-color: #fff;
  padding: 4px;
  border-radius: 8px;
}
.news-block .news-block--inner {
  border-radius: 4px;
  padding: 4px;
}
.news-block .news-block__image {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6e8ea;
  border-radius: 4px;
  overflow: hidden;
}
.news-block .news-block__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.news-block__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.news-block__date {
  font-size: 12px;
  color: #a7a7a7;
}
.news-block__title {
  margin-top: 14px;
  font-size: 16px;
  font-weight: bold;
  color: #010101;
  transition: 0.3s ease-in-out;
}
.news-block__excerpt {
  margin-top: 6px;
  font-size: 14px;
  color: #7e7e7e;
}
.news-block__more {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #fc1d1d;
}
.news-block:hover,
.news-block:focus,
.news-block:active {
  text-decoration: none;
}
.news-block:hover .news-block__title {
  color: var(--color-primary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* about front */

.about-info-front {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
}
.about-info-front .about-info-row {
  display: flex;
  gap: 62px;
}
.about-info-front .about-info-row .about-info-title {
  width: 50%;
  text-wrap: balance;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
.about-info-front .about-info-row .about-info-mission {
  width: 50%;
  font-size: 15px;
  color: #818181;
  text-wrap: balance;
}

.about-info-front .about-advantages-grid {
  gap: 24px;
  margin-top: 24px;
  overflow: hidden;
}
.about-info-front .about-advantages-grid__item {
  display: flex;
  flex-direction: column;
}
.about-info-front .about-advantages-grid__item-caption {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}
.about-info-front .about-advantages-grid__item-text {
  font-size: 14px;
  margin-top: 2px;
}

@media (max-width: 1023px) {
  .about-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-info-front .about-info-row {
    flex-direction: column;
    gap: 24px;
  }
  .about-info-front .about-info-row .about-info-title {
    width: 100%;
    text-align: center;
  }
  .about-info-front .about-info-row .about-info-mission {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 425px) {
  .about-info-front {
    padding: 24px 16px;
  }
  .about-info-front .about-info-row .about-info-title {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* zap search */

.parts-search {
  width: 100%;
  display: flex;
  gap: 24px;
}
.parts-search .parts-search-block {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
}
.parts-search .parts-search-block__label {
  width: max-content;
  font-size: 12px;
  font-weight: 200;
  padding: 4px 8px;
  border-radius: 6px;
  margin: 0 auto;
  background-color: #252525;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
}
.parts-search .parts-search-block__title {
  font-size: 24px;
  font-weight: bold;
  color: #040404;
  margin: 0;
}
.parts-search .parts-search-block__title sup {
  font-size: 14px;
  font-weight: 200;
  color: #333;
}
.parts-search .parts-search-block__subtitle {
  color: #6b6b6b;
}
.parts-search-block__content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.parts-search-block__content input {
  width: 100%;
  height: 42px;
  border: 1px solid #e1e5ea;
  border-radius: 8px;
  padding: 0 8px;
  background: #fff;
  color: #010101;
}
.parts-search-block.vin-variant {
  background-color: rgba(72, 72, 72, 1);
  background-image: linear-gradient(
    205deg,
    rgba(72, 72, 72, 1) 0%,
    rgba(16, 16, 16, 1) 100%
  );
  color: #fff;
}
.parts-search-block.vin-variant .parts-search-block__title {
  color: #fff;
}
.parts-search-block.vin-variant .parts-search-block__subtitle {
  color: #9d9d9d;
}
.parts-search-block.vin-variant .parts-search-block__label {
  background-color: #d4d4d4;
  color: #010101;
}

.parts-search-block #search-num.error {
  border-color: orangered;
  position: relative;
}
.parts-search-block button {
  position: relative;
}
.parts-search-block .error::after {
  content: "VIN/FRAME введен неверно";
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  font-size: 12px;
  background-color: #cc0002bf;
  color: #fff;
  padding: 4px 6px;
  z-index: 99;
  text-wrap: nowrap;
  border-radius: 5px;
}
.parts-search-block .error:hover:after {
  opacity: 1 !important;
}

@media (max-width: 1023px) {
  .parts-search {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 580px) {
  .parts-search-block__title {
    font-size: 20px;
  }
}
@media (max-width: 425px) {
  .parts-search-block__label {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    margin-bottom: 12px !important;
  }
  .parts-search-block__title {
    text-align: center;
  }
  .parts-search-block__subtitle {
    text-align: center;
  }
  .parts-search-block__content {
    justify-content: center;
  }
}

/* catalog */
.swiper-catalog-wrapper {
  position: relative;
}
.swiper-catalog {
  overflow: hidden;
  position: relative;
}
.catalog-grid-item {
  height: 120px !important;
  background: #fff;
  position: relative;
  border-radius: 12px;
  padding: 12px;
  transition: 0.3s ease-in-out;
  user-select: none;
}

.catalog-grid-item .catalog-grid-item__name {
  font-size: 14px;
  font-weight: bold;
  color: #1e1e1e;
  transition: 0.3s ease-in-out;
}
.catalog-grid-item .catalog-grid-item__img {
  width: 100%;
  height: 75px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.catalog-grid-item .catalog-grid-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: 0.3s ease-in-out;
}
.catalog-grid-item:hover .catalog-grid-item__img img {
  transform: scale(1.1);
}
.catalog-grid-item:hover .catalog-grid-item__name {
  color: #fc1d1d;
}
.catalog-grid-item:hover,
.catalog-grid-item:focus,
.catalog-grid-item:active {
  text-decoration: none;
}

.swiper-catalog-prev {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: #fc1d1d;
  transition: 0.3s ease-in-out;
  user-select: none;
}
.swiper-catalog-prev svg {
  line-height: 0;
}
.swiper-catalog-next {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transform: translate(50%, -50%);
  cursor: pointer;
  color: #fc1d1d;
  transition: 0.3s ease-in-out;
  user-select: none;
}
.swiper-catalog-next svg {
  line-height: 0;
}

@media (min-width: 1024px) {
  .swiper-catalog-prev:hover,
  .swiper-catalog-next:hover {
    opacity: 0.65;
  }
}

@media (max-width: 1320px) {
  .swiper-catalog-prev {
    transform: translate(0, -50%);
  }
  .swiper-catalog-next {
    transform: translate(0, -50%);
  }
}

/* banners */

.banners--inner {
  padding-top: 24px;
}
.banners .banner-slide {
  width: 100%;
  height: 180px;
  background-color: #2f2f2f;
  border-radius: 16px;
}

@media (min-width: 1024px) {
  .banners .banner-slide {
    height: 420px;
  }
}
