@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&family=Public+Sans:wght@400;500;600&family=Inter:wght@200;400;500;600&family=Montserrat:wght@600&family=General+Sans:wght@400&family=Poppins:wght@400&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

img, svg, video, canvas {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

.btn-demo {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-demo:hover {
  background-color: #2980b9;
}
.btn-demo--large {
  padding: 12px 24px;
  font-size: 18px;
}
.btn-demo--small {
  padding: 6px 12px;
  font-size: 12px;
}
.btn-demo--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mob_modal {
  display: none;
}
@media (max-width: 650px) {
  .mob_modal.active {
    display: flex;
  }
}
.mob_modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.mob_modal__close-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.ablosute {
  position: absolute;
}

.main-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.main-container__wrapper {
  display: flex;
  flex-grow: 1;
  width: 100%;
  height: 100%;
}
.main-container__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: calc(100% - 316px - 24px);
  position: relative;
}

.container-w1240 {
  max-width: 1240px;
  width: 100%;
}

.container-w1580 {
  max-width: 1580px;
  width: 100%;
}

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

.m-24 {
  margin-left: 24px;
}
@media (max-width: 650px) {
  .m-24 {
    margin-left: 16px;
  }
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.empty-basket {
  font-family: "Source Sans Pro", sans-serif;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.empty-basket__illustration {
  max-width: 100px;
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.empty-basket__illustration:hover {
  opacity: 1;
}
.empty-basket__illustration img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.empty-basket__title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #282828;
}
.empty-basket__subtitle {
  font-size: 18px;
  color: #5c5c5c;
  line-height: 150%;
  max-width: 480px;
}
.empty-basket__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 48px;
  border-radius: 6px;
  background: #c10404;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.empty-basket__btn:hover {
  background: #a00707;
}

@media (max-width: 480px) {
  .empty-basket {
    padding: 48px 16px;
  }
  .empty-basket__title {
    font-size: 24px;
  }
  .empty-basket__subtitle {
    font-size: 16px;
  }
  .empty-basket__illustration {
    max-width: 80px;
  }
}
.contact_block {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  padding: 0 24px;
}
@media (max-width: 650px) {
  .contact_block {
    padding: 0 16px;
  }
}
.contact_block .hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 32px 0;
}
@media (max-width: 650px) {
  .contact_block .hero {
    padding: 16px 0;
  }
}
.contact_block .hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  color: #282828;
  text-align: start;
}
@media (max-width: 768px) {
  .contact_block .hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .contact_block .hero h1 {
    font-size: 24px;
  }
}
.contact_block .content {
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact_block .content {
    padding: 24px 0;
  }
}
.contact_block .content h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: start;
  color: #282828;
}
.contact_block .content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #282828;
}
.contact_block .content p {
  font-size: 18px;
  line-height: 150%;
  color: #282828;
}
.contact_block .content p + p {
  margin-top: -8px;
}
.contact_block .content strong {
  font-weight: 700;
  color: #282828;
}
.contact_block .content ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact_block .contact-card {
  margin-top: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact_block .contact-card .name {
  font-size: 18px;
  font-weight: 700;
  color: #282828;
}
.contact_block .contact-card .position {
  font-size: 16px;
  font-weight: 600;
  color: #5c5c5c;
}
.contact_block .contact-card .info {
  font-size: 15px;
  line-height: 150%;
  color: #282828;
}

.delivery_block {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  padding: 0 24px;
}
@media (max-width: 650px) {
  .delivery_block {
    padding: 0 16px;
  }
}
.delivery_block .hero {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  padding: 32px 0;
}
@media (max-width: 650px) {
  .delivery_block .hero {
    padding: 16px 0;
  }
}
.delivery_block .hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 120%;
  text-transform: uppercase;
  color: #282828;
  text-align: center;
}
@media (max-width: 768px) {
  .delivery_block .hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .delivery_block .hero h1 {
    font-size: 24px;
  }
}
.delivery_block .content {
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .delivery_block .content {
    padding: 24px 0;
  }
}
.delivery_block .content p {
  font-size: 18px;
  line-height: 150%;
  color: #282828;
}
.delivery_block .content p.accent {
  font-weight: 700;
  color: #282828;
}
.delivery_block .content ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.delivery_block .content ul li {
  list-style: disc;
  font-size: 17px;
  line-height: 150%;
  color: #282828;
}
.delivery_block .content ul li::marker {
  color: #c10404;
  font-size: 1.2em;
}

.service_block {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  padding: 0 24px;
}
@media (max-width: 650px) {
  .service_block {
    padding: 0 16px;
  }
}
.service_block .hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 32px 0;
}
@media (max-width: 650px) {
  .service_block .hero {
    padding: 16px 0;
  }
}
.service_block .hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 120%;
  text-transform: uppercase;
  color: #282828;
}
@media (max-width: 768px) {
  .service_block .hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .service_block .hero h1 {
    font-size: 20px;
  }
}
.service_block .content {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .service_block .content {
    padding: 24px 0;
  }
}
.service_block .content p {
  font-size: 18px;
  line-height: 150%;
  color: #282828;
}
.service_block .content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service_block .content ul li {
  list-style: disc;
  font-size: 17px;
  line-height: 150%;
  color: #282828;
}
.service_block .content ul li::marker {
  color: #c10404;
  font-size: 1.2em;
  font-weight: 700;
}
.service_block .content .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.service_block .service-card {
  display: none;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 20px 28px;
  max-width: 480px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service_block .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.service_block .service-card .img-wrapper {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
}
.service_block .service-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service_block .service-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  color: #282828;
}
.service_block .cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
@media (max-width: 650px) {
  .service_block .cta {
    margin-top: 0px;
  }
}
.service_block .cta button {
  display: none;
  padding: 16px 56px;
  border-radius: 6px;
  background: #c10404;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.2s ease;
}
.service_block .cta button:hover {
  background: #a00707;
  color: #fff;
}

@media (max-width: 768px) {
  .service_block .service-card {
    flex-direction: column;
    text-align: center;
  }
  .service_block .service-card .img-wrapper {
    width: 100%;
    height: 180px;
  }
  .service_block .hero h1 {
    font-size: 32px;
  }
  .service_block .content p, .service_block .content ul li {
    font-size: 16px;
  }
  .service_block .content .cards {
    justify-content: center;
    gap: 24px;
  }
}
.mob_modal_quit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 39, 50, 0.3);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  .mob_modal_quit.active {
    display: flex;
  }
}
.mob_modal_quit__container {
  max-width: 273px;
  max-height: 115px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.mob_modal_quit__title {
  text-align: center;
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.36);
  padding: 16px;
}
.mob_modal_quit__title h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 129%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
}
.mob_modal_quit__title h5 {
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #000;
}
.mob_modal_quit__buttons {
  display: flex;
  height: 42px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
}
.mob_modal_quit__buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 11px 16px;
}
.mob_modal_quit__quit-btn {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #c10404;
  border-right: 0.5px solid rgba(60, 60, 67, 0.36);
}
.mob_modal_quit__cancel-btn {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #5c5c5c;
}

.mob_category_mini {
  flex-direction: column;
  width: 100%;
  height: calc(60% - 50px);
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .mob_category_mini.active {
    display: flex;
  }
}
.mob_category_mini__content {
  flex: 1;
  overflow-y: auto;
}
.mob_category_mini__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mob_category_mini__option {
  border-bottom: 1px solid #F5F5F5;
}
.mob_category_mini__option:last-child {
  border-bottom: none;
}
.mob_category_mini__label {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  position: relative;
  width: 100%;
  gap: 12px;
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
}
.mob_category_mini__radio {
  width: 20px;
  height: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.mob_category_mini__radio:checked {
  border-color: #c10404;
}
.mob_category_mini__radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #c10404;
  border-radius: 50%;
}
.mob_category_mini__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  flex: 1;
  transition: all 0.2s ease;
}
.mob_category_mini__radio:checked + .mob_category_mini__text {
  font-weight: 600;
  color: #c10404;
}

.LK_mobile_sidebar_personal {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: absolute;
  top: -45px;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
.LK_mobile_sidebar_personal__header {
  margin-bottom: 16px;
  margin-left: 16px;
  margin-right: 16px;
}
.LK_mobile_sidebar_personal__title {
  margin-top: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.LK_mobile_sidebar_personal__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #d9d9d9;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}
.LK_mobile_sidebar_personal__link:hover {
  background-color: #FAFAFA;
}
.LK_mobile_sidebar_personal__link-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
}
.LK_mobile_sidebar_personal--show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.LK_mobile_sidebar_personal--hide {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.LK_mobile_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  z-index: 1000;
}
.LK_mobile_sidebar__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.LK_mobile_sidebar__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c10404;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.LK_mobile_sidebar__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  border-radius: 24px 24px 0 0;
  background-color: #fff;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.LK_mobile_sidebar__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-45px);
}
.LK_mobile_sidebar__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.LK_mobile_sidebar__user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.LK_mobile_sidebar__avatar {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 100%;
  border: 6px solid #fff;
}
.LK_mobile_sidebar__username {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #282828;
}
.LK_mobile_sidebar__change-photo {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #282828;
  cursor: pointer;
}
.LK_mobile_sidebar__change-photo:active {
  color: #c10404;
  text-decoration: none;
}
.LK_mobile_sidebar__menu-item {
  display: flex;
  padding: 10px 16px;
  border-bottom: 1px solid #d9d9d9;
}
.LK_mobile_sidebar__menu-item:active {
  background-color: #d9d9d9;
}
.LK_mobile_sidebar__menu-link {
  display: flex;
  gap: 16px;
  width: 100%;
}
.LK_mobile_sidebar__menu-arrow {
  margin-left: auto;
}
.LK_mobile_sidebar__menu-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
}
.LK_mobile_sidebar__menu-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.LK_mobile_sidebar__footer {
  margin-top: auto;
  padding: 0 16px;
}
.LK_mobile_sidebar__logout {
  width: 100%;
  border-radius: 8px;
  padding: 10px 24px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.LK_mobile_sidebar__logout:active {
  background: #a00707;
}
.LK_mobile_sidebar__content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 120px);
  padding-top: 20px;
  margin-top: -42px;
}
.LK_mobile_sidebar--show {
  visibility: visible;
  transition: visibility 0s;
}
.LK_mobile_sidebar--show .LK_mobile_sidebar__backdrop {
  opacity: 1;
}
.LK_mobile_sidebar--show .LK_mobile_sidebar__content {
  transform: translateY(0);
}
.LK_mobile_sidebar--hide {
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.4s;
}
.LK_mobile_sidebar--hide .LK_mobile_sidebar__backdrop {
  opacity: 0;
}
.LK_mobile_sidebar--hide .LK_mobile_sidebar__content {
  transform: translateY(120%);
}

.mob_promo_mini {
  flex-direction: column;
  width: 100%;
  height: calc(60% - 50px);
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .mob_promo_mini.active {
    display: flex;
  }
}
.mob_promo_mini__content {
  flex: 1;
  overflow-y: auto;
}

.modal_promo {
  display: block;
}

.mobile-basket-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0px;
  border-bottom: 1px solid #d9d9d9;
}
.mobile-basket-item__header {
  display: flex;
}
.mobile-basket-item__image-container {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  width: 88px;
  height: 88px;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 360px) {
  .mobile-basket-item__image-container {
    width: 60px;
    height: 60px;
  }
}
.mobile-basket-item__image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-basket-item__product {
  display: flex;
  gap: 8px;
}
.mobile-basket-item__controls {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
.mobile-basket-item__product-info-header {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.mobile-basket-item__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #282828;
}
.mobile-basket-item__article {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
}
.mobile-basket-item__size {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
}
.mobile-basket-item__price {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  align-items: center;
  text-wrap: nowrap;
}
.mobile-basket-item__old-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-decoration: line-through;
  color: #929fa5;
  text-wrap: nowrap;
}
.mobile-basket-item__current-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #c10404;
}

.mobile-post-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid #d9d9d9;
}
.mobile-post-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mobile-post-item__order-info {
  display: flex;
  gap: 4px;
  align-items: center;
}
.mobile-post-item__order-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #5c5c5c;
}
.mobile-post-item__order-date {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #c10404;
}
.mobile-post-item__price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #c10404;
}
.mobile-post-item__content {
  display: flex;
  flex-direction: column;
}
.mobile-post-item__images {
  display: flex;
  position: relative;
}
.mobile-post-item__image-container {
  display: flex;
  position: relative;
  gap: 8px;
}
.mobile-post-item__image {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  width: 88px;
  height: 88px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 360px) {
  .mobile-post-item__image {
    width: 60px;
    height: 60px;
  }
}
.mobile-post-item__image-count {
  margin-left: 12px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #c10404;
  white-space: nowrap;
  align-self: center;
}
.mobile-post-item__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-post-item__quantity {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #5c5c5c;
}
.mobile-post-item__remove {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
}

.mob_size_modal {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_size_modal.active {
    display: flex;
  }
}
.mob_size_modal__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_size_modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mob_size_modal__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #191c1f;
  margin-bottom: 16px;
}
.mob_size_modal__content-item {
  flex: 1;
  margin-bottom: 20px;
}
.mob_size_modal__size-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mob_size_modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.mob_size_modal__button {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
}
.mob_size_modal__button--apply {
  background-color: #C10404;
  color: white;
}
.mob_size_modal__button--apply:hover {
  background-color: #a00303;
}
.mob_size_modal__button--apply:active {
  background-color: #8f0202;
}
.mob_size_modal__button--reset {
  background-color: transparent;
  color: #C10404;
  border: 1px solid #E5E5E5;
}
.mob_size_modal__button--reset:hover {
  background-color: #f5f5f5;
}
.mob_size_modal__button--reset:active {
  background-color: #e5e5e5;
}

.mob_filter_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_filter_mini.active {
    display: flex;
  }
}
.mob_filter_mini__content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.mob_catalog_modal {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_catalog_modal.active {
    display: flex;
  }
}
.mob_catalog_modal__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.catalog-cards-modal {
  display: none;
}
@media (max-width: 650px) {
  .catalog-cards-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
}
@media (max-width: 330px) {
  .catalog-cards-modal {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog-cards-modal__item, .catalog-cards-modal__item--big {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 292px;
  background: #eee;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .catalog-cards-modal__item, .catalog-cards-modal__item--big {
    min-height: 186px;
  }
}
.catalog-cards-modal__item:hover, .catalog-cards-modal__item--big:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}
.catalog-cards-modal__item--big {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .catalog-cards-modal__item--big {
    grid-column: span 1;
  }
}
.catalog-cards-modal__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.catalog-cards-modal__title {
  position: relative;
  z-index: 2;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 5vw, 20px);
  line-height: 130%;
  color: #fff;
  margin: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.mobile_header_modal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 10px 16px;
  position: relative;
  z-index: 1001;
  height: 42px;
}
.mobile_header_modal__modal-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #282828;
}
.mobile_header_modal__modal-close {
  display: flex;
}

.mob_confrm_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_confrm_mini.active {
    display: flex;
  }
}
.mob_confrm_mini__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_confrm_mini__form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mob_confrm_mini__info {
  margin-bottom: 16px;
}
.mob_confrm_mini__description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #5c5c5c;
}
.mob_confrm_mini__field {
  margin-bottom: 40px;
}
.mob_confrm_mini__field label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.mob_confrm_mini__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.mob_confrm_mini__input:focus {
  border-color: #c10404;
  outline: none;
}
.mob_confrm_mini__input::-moz-placeholder {
  color: #aaa;
}
.mob_confrm_mini__input::placeholder {
  color: #aaa;
}
.mob_confrm_mini__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 14px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  background-color: #c10404;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mob_confrm_mini__button:hover {
  background-color: #990303;
}
.mob_confrm_mini__field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob_confrm_mini__label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.mob_confrm_mini__link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #a00707;
}

.mob_res_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_res_mini.active {
    display: flex;
  }
}
.mob_res_mini__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_res_mini__form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mob_res_mini__info {
  margin-bottom: 16px;
}
.mob_res_mini__description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #5c5c5c;
}
.mob_res_mini__field {
  margin-bottom: 40px;
}
.mob_res_mini__field label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.mob_res_mini__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.mob_res_mini__input:focus {
  border-color: #c10404;
  outline: none;
}
.mob_res_mini__input::-moz-placeholder {
  color: #aaa;
}
.mob_res_mini__input::placeholder {
  color: #aaa;
}
.mob_res_mini__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 14px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  background-color: #c10404;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mob_res_mini__button:hover {
  background-color: #990303;
}
.mob_res_mini__button-icon {
  margin-left: auto;
}
.mob_res_mini__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.mob_res_mini__link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  margin-top: auto;
}
.mob_res_mini__link-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  margin: 0;
}
.mob_res_mini__link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}
.mob_res_mini__link:hover {
  text-decoration: underline;
}
.mob_res_mini__support {
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
}
.mob_res_mini__support-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #5c5c5c;
}
.mob_res_mini__support-link {
  color: #c10404;
  text-decoration: none;
}
.mob_res_mini__support-link:hover {
  text-decoration: underline;
}

.mob_forgot_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_forgot_mini.active {
    display: flex;
  }
}
.mob_forgot_mini__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_forgot_mini__form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mob_forgot_mini__info {
  margin-bottom: 16px;
}
.mob_forgot_mini__description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #5c5c5c;
}
.mob_forgot_mini__field {
  margin-bottom: 40px;
}
.mob_forgot_mini__field label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.mob_forgot_mini__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.mob_forgot_mini__input:focus {
  border-color: #c10404;
  outline: none;
}
.mob_forgot_mini__input::-moz-placeholder {
  color: #aaa;
}
.mob_forgot_mini__input::placeholder {
  color: #aaa;
}
.mob_forgot_mini__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 14px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  background-color: #c10404;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mob_forgot_mini__button:hover {
  background-color: #990303;
}
.mob_forgot_mini__button-icon {
  margin-left: auto;
}
.mob_forgot_mini__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.mob_forgot_mini__link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  margin-top: auto;
}
.mob_forgot_mini__link-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  margin: 0;
}
.mob_forgot_mini__link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}
.mob_forgot_mini__link:hover {
  text-decoration: underline;
}
.mob_forgot_mini__support {
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
}
.mob_forgot_mini__support-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #5c5c5c;
}
.mob_forgot_mini__support-link {
  color: #c10404;
  text-decoration: none;
}
.mob_forgot_mini__support-link:hover {
  text-decoration: underline;
}

.mob_auth_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_auth_mini.active {
    display: flex;
  }
}
.mob_auth_mini__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_auth_mini__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mob_auth_mini__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.mob_auth_mini__field label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.mob_auth_mini__password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob_auth_mini__forgot-password {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  line-height: 120%;
  color: #c10404;
  text-decoration: none;
}
.mob_auth_mini__forgot-password:hover {
  text-decoration: underline;
}
.mob_auth_mini__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.mob_auth_mini__input:focus {
  border-color: #c10404;
  outline: none;
}
.mob_auth_mini__input::-moz-placeholder {
  color: #aaa;
}
.mob_auth_mini__input::placeholder {
  color: #aaa;
}
.mob_auth_mini__password-wrapper {
  position: relative;
}
.mob_auth_mini__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 5px;
}
.mob_auth_mini__password-toggle svg {
  width: 20px;
  height: 20px;
}
.mob_auth_mini__password-toggle:hover {
  color: #333;
}
.mob_auth_mini__button {
  margin-top: 16px;
  border-radius: 8px;
  padding: 14px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  background-color: #c10404;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mob_auth_mini__button:hover {
  background-color: #990303;
}
.mob_auth_mini__register {
  margin-top: 24px;
  text-align: center;
}
.mob_auth_mini__register-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #8B8B8B;
}
.mob_auth_mini__register-button {
  width: 100%;
  padding: 12px 16px;
  background-color: transparent;
  border: 1px solid #EFEFEF;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  cursor: pointer;
  transition: all 0.3s;
}
.mob_auth_mini__register-button:hover {
  border-color: #c10404;
  color: #c10404;
}

.mob_burger_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_burger_mini.active {
    display: flex;
  }
}
.mob_burger_mini__modal-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 10px 16px;
  position: relative;
  z-index: 1001;
  height: 42px;
}
.mob_burger_mini__modal-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #282828;
}
.mob_burger_mini__modal-content {
  padding: 0px 16px;
}
.mob_burger_mini__nav {
  width: 100%;
}
.mob_burger_mini__menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mob_burger_mini__menu-item {
  padding: 6px 0px;
}
.mob_burger_mini__menu-link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #282828;
}
.mob_burger_mini__menu-link:hover {
  color: #c10404;
}
.mob_burger_mini__callback {
  padding: 0px 16px;
  margin-top: 24px;
}
.mob_burger_mini__callback-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #8b8b8b;
}
.mob_burger_mini__callback-phone {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #c10404;
}

.mob_geo_mini {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_geo_mini.active {
    display: flex;
  }
}
.mob_geo_mini__search {
  display: flex;
  align-items: center;
  margin: 0px 10px;
  padding: 10px 0px;
  border-bottom: 1px solid #d9d9d9;
}
.mob_geo_mini__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.mob_geo_mini input {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #282828;
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  transition: border-color 0.3s ease;
}
.mob_geo_mini input::-moz-placeholder {
  color: #5c5c5c;
}
.mob_geo_mini input::placeholder {
  color: #5c5c5c;
}
.mob_geo_mini__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_geo_mini__cities-list {
  display: flex;
  flex-direction: column;
}
.mob_geo_mini__major-cities {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.mob_geo_mini__city {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid #EFEFEF;
}
.mob_geo_mini__city--major {
  color: #c10404;
  font-weight: 600;
  font-size: 16px;
}
.mob_geo_mini__cities-by-letter {
  display: flex;
  flex-direction: column;
}
.mob_geo_mini__letter-group {
  margin-bottom: 16px;
}
.mob_geo_mini__letter {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #c10404;
  margin-bottom: 8px;
}
.mob_geo_mini__cities-group {
  display: flex;
  flex-direction: column;
}

.mob_reg_modal {
  flex-direction: column;
  width: 100%;
  height: calc(100% - 50px);
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 650px) {
  .mob_reg_modal.active {
    display: flex;
  }
}
.mob_reg_modal__modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.mob_reg_modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mob_reg_modal__form label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.mob_reg_modal__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.mob_reg_modal__input:focus {
  border-color: #c10404;
  outline: none;
}
.mob_reg_modal__input::-moz-placeholder {
  color: #aaa;
}
.mob_reg_modal__input::placeholder {
  color: #aaa;
}
.mob_reg_modal__password-wrapper {
  position: relative;
}
.mob_reg_modal__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 5px;
}
.mob_reg_modal__password-toggle svg {
  width: 20px;
  height: 20px;
}
.mob_reg_modal__password-toggle:hover {
  color: #333;
}
.mob_reg_modal__button {
  margin-top: 16px;
  border-radius: 8px;
  padding: 14px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  background-color: #c10404;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.mob_reg_modal__button:hover {
  background-color: #990303;
}
.mob_reg_modal__alternative {
  margin-top: 16px;
}
.mob_reg_modal__alternative-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.mob_reg_modal__alternative-wrapper:before, .mob_reg_modal__alternative-wrapper:after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #d9d9d9;
  margin: 0 10px;
}
.mob_reg_modal__alternative-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #8B8B8B;
  text-align: center;
}
.mob_reg_modal__social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob_reg_modal__social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #EFEFEF;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #8B8B8B;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.mob_reg_modal__social-button:hover {
  border-color: #c10404;
  box-shadow: 0px 0px 2px 0px rgba(193, 4, 4, 0.3);
}
.mob_reg_modal__social-icon {
  width: 20px;
  height: 20px;
}

.mob_modal_call {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 39, 50, 0.3);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  .mob_modal_call.active {
    display: flex;
  }
}
.mob_modal_call__container {
  max-width: 273px;
  max-height: 115px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.mob_modal_call__title {
  text-align: center;
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.36);
  padding: 16px;
}
.mob_modal_call__title h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 129%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
}
.mob_modal_call__title h5 {
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #000;
}
.mob_modal_call__buttons {
  display: flex;
  height: 42px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #cf1212;
}
.mob_modal_call__buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 11px 16px;
}
.mob_modal_call__cancel-btn {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #5c5c5c;
}

.mobile_header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile_header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #fff;
}
.mobile_header__btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile_header__logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  color: #c10404;
}
.mobile_header__search {
  display: flex;
  align-items: center;
  margin: 0px 10px;
  padding: 10px 0px;
  border-bottom: 1px solid #d9d9d9;
}
.mobile_header__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.mobile_header input {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #282828;
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  transition: border-color 0.3s ease;
}
.mobile_header input::-moz-placeholder {
  color: #5c5c5c;
}
.mobile_header input::placeholder {
  color: #5c5c5c;
}

.mob_burger {
  display: none;
}
@media (max-width: 1376px) {
  .mob_burger {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 24px 40px;
    padding-top: 0;
  }
}
@media (max-width: 1376px) {
  .mob_burger__nav-list {
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1376px) {
  .mob_burger__nav-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 1376px) {
  .mob_burger__title {
    padding: 6px 0px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #282828;
    display: flex;
    cursor: pointer;
  }
}
@media (max-width: 1376px) {
  .mob_burger__content-item {
    display: none;
  }
}
@media (max-width: 1376px) {
  .mob_burger__content-item--open {
    display: flex;
    border-top: 1px solid #d9d9d9;
  }
}
@media (max-width: 1376px) {
  .mob_burger-sidebar-menu {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #282828;
  }
}

.mob_modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.mob_sort {
  flex-direction: column;
  width: 100%;
  height: calc(60% - 50px);
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .mob_sort.active {
    display: flex;
  }
}
.mob_sort__content {
  flex: 1;
  overflow-y: auto;
}
.mob_sort__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mob_sort__option {
  border-bottom: 1px solid #F5F5F5;
}
.mob_sort__option:last-child {
  border-bottom: none;
}
.mob_sort__label {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  position: relative;
  width: 100%;
  gap: 12px;
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
}
.mob_sort__radio {
  width: 20px;
  height: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.mob_sort__radio:checked {
  border-color: #c10404;
}
.mob_sort__radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #c10404;
  border-radius: 50%;
}
.mob_sort__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  flex: 1;
  transition: all 0.2s ease;
}
.mob_sort__radio:checked + .mob_sort__text {
  font-weight: 600;
  color: #c10404;
}

.mob_filter {
  display: none;
}
@media (max-width: 1024px) {
  .mob_filter {
    width: 100%;
    flex-direction: column;
    padding: 24px 40px;
    padding-top: 0;
  }
}
.mob_filter.active {
  display: flex;
}
.mob_filter__path {
  display: none;
}
@media (max-width: 1024px) {
  .mob_filter__path {
    display: block;
  }
}

@media (max-width: 1024px) {
  .filter__mob {
    display: flex;
    flex-direction: column;
    padding: 24px 0px;
  }
}

@media (max-width: 1024px) {
  .mob_geo {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 24px 40px;
    padding-top: 0;
  }
}
.mob_geo__path {
  display: none;
}
@media (max-width: 1024px) {
  .mob_geo__path {
    display: block;
  }
}
@media (max-width: 1024px) {
  .mob_geo__header {
    padding: 6px 0px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #282828;
  }
}
@media (max-width: 1024px) {
  .mob_geo__input-container {
    position: relative;
  }
}
@media (max-width: 1024px) {
  .mob_geo__input {
    padding: 10px 40px;
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #282828;
  }
  .mob_geo__input::-moz-placeholder {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #5c5c5c;
  }
  .mob_geo__input::placeholder {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #5c5c5c;
  }
}
@media (max-width: 1024px) {
  .mob_geo__svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) {
  .mob_geo__nav {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .mob_geo__nav-item, .mob_geo__letter {
    border-bottom: 0.5px solid #d9d9d9;
    padding: 8px 0px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #c10404;
    margin-top: 16px;
  }
}
@media (max-width: 1024px) {
  .mob_geo__nav-btn-text-small {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 129%;
    color: #282828;
  }
}

.mob_bott_header {
  display: none;
}
@media (max-width: 1024px) {
  .mob_bott_header {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    background-color: #fff;
    padding: 5px 40px;
  }
}
@media (max-width: 650px) {
  .mob_bott_header {
    padding: 5px 10px;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__nav-list {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .mob_bott_header__nav-link svg {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 560px) {
  .mob_bott_header__nav-item--search {
    display: none;
  }
}
.mob_bott_header__nav-item--home {
  display: none;
}
@media (max-width: 560px) {
  .mob_bott_header__nav-item--home {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__nav-link-icon {
    position: relative;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__icon-badge,
  .mob_bott_header .header__icon-badge {
    min-width: 15px;
    height: 15px;
    top: -3px;
    right: -5px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    font-size: 9px;
    text-transform: uppercase;
    text-align: center;
    color: #c10404;
  }
}
@media (max-width: 1024px) {
  .mob_bott_header__nav-link-label {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #5c5c5c;
  }
}
@media (max-width: 560px) {
  .mob_bott_header__nav-link-label {
    font-size: 10px;
  }
}

.quit_modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.quit_modal__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 4px;
}
.quit_modal__message {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #282828;
  margin-bottom: 16px;
}
.quit_modal__buttons {
  display: flex;
  gap: 16px;
  width: 100%;
}
@media (max-width: 480px) {
  .quit_modal__buttons {
    flex-direction: column;
  }
}
.quit_modal__button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 24px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.quit_modal__button svg {
  transition: transform 0.2s ease;
}
.quit_modal__button--primary {
  background-color: #c10404;
  color: #fff;
  border: none;
}
.quit_modal__button--primary:hover {
  background-color: #990303;
}
.quit_modal__button--primary:hover svg {
  transform: translateX(3px);
}
.quit_modal__button--secondary {
  background-color: transparent;
  color: #c10404;
  border: 1px solid #c10404;
}
.quit_modal__button--secondary:hover {
  background-color: rgba(193, 4, 4, 0.05);
}

.LK_FAQ {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-right: 180px;
  width: 100%;
}
@media (max-width: 1600px) {
  .LK_FAQ {
    margin-right: 120px;
    padding: 0px;
  }
}
@media (max-width: 1440px) {
  .LK_FAQ {
    margin-right: 80px;
  }
}
@media (max-width: 1024px) {
  .LK_FAQ {
    margin-right: 40px;
  }
}
@media (max-width: 650px) {
  .LK_FAQ {
    margin-right: 0px;
    padding: 0px 16px;
    gap: 16px;
    margin-top: 24px;
  }
}
.LK_FAQ__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.LK_FAQ__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 650px) {
  .LK_FAQ__list {
    gap: 16px;
  }
}

.top-panel {
  display: block;
}

.LK_FdBck {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 180px;
  width: 50%;
}
@media (max-width: 1600px) {
  .LK_FdBck {
    padding-right: 80px;
  }
}
@media (max-width: 1440px) {
  .LK_FdBck {
    padding-right: 0px;
  }
}
@media (max-width: 650px) {
  .LK_FdBck {
    width: 100%;
    padding: 0px 16px;
    margin-top: 24px;
  }
}
.LK_FdBck__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.LK_FdBck__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.LK_FdBck__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 4px;
}
.LK_FdBck__fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_FdBck__fields-row {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .LK_FdBck__fields-row {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .LK_FdBck__fields-row {
    gap: 16px;
  }
}
.LK_FdBck__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.LK_FdBck__field--full {
  grid-column: 1/-1;
}
.LK_FdBck__label {
  display: block;
  text-align: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.LK_FdBck__label .required {
  color: #c10404;
}
.LK_FdBck__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.LK_FdBck__input:focus {
  border-color: #c10404;
  outline: none;
}
.LK_FdBck__input::-moz-placeholder {
  color: #5c5c5c;
}
.LK_FdBck__input::placeholder {
  color: #5c5c5c;
}
.LK_FdBck__textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  resize: none;
}
.LK_FdBck__textarea:focus {
  border-color: #c10404;
  outline: none;
}
.LK_FdBck__textarea::-moz-placeholder {
  color: #5c5c5c;
}
.LK_FdBck__textarea::placeholder {
  color: #5c5c5c;
}
.LK_FdBck__submit-wrapper {
  display: flex;
  margin-top: 16px;
}
.LK_FdBck__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #c10404;
  padding: 0px 24px;
  min-height: 48px;
  width: 160px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (max-width: 650px) {
  .LK_FdBck__submit {
    width: 100%;
  }
}
.LK_FdBck__submit:hover {
  background-color: #a00707;
}

.QA {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.QA__item {
  border: 1px solid #E4E7E9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.QA__item:last-child {
  margin-bottom: 0;
}
.QA__item--open .QA__answer {
  max-height: 1000px;
  padding: 16px 24px 24px;
  opacity: 1;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.QA__item--open .QA__question {
  background-color: #c10404;
  color: white;
}
.QA__item--open .QA__icon--plus {
  display: none;
}
.QA__item--open .QA__icon--minus {
  display: block;
}
.QA__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 650px) {
  .QA__question {
    font-size: 16px;
  }
}
.QA__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}
.QA__icon--plus {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.QA__icon--minus {
  display: none;
}
.QA__answer {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
  overflow: hidden;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #282828;
  background-color: white;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}

.LK_review {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 180px;
}
@media (max-width: 1600px) {
  .LK_review {
    padding-right: 120px;
  }
}
@media (max-width: 1440px) {
  .LK_review {
    padding-right: 80px;
  }
}
@media (max-width: 1024px) {
  .LK_review {
    padding-right: 40px;
  }
}
@media (max-width: 650px) {
  .LK_review {
    padding-right: 16px;
    padding-left: 16px;
    gap: 16px;
    margin-top: 24px;
  }
}
.LK_review__comments {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.LK_review__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
}

.LK_fav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-right: 24px;
}
@media (max-width: 1024px) {
  .LK_fav {
    margin-right: 40px;
  }
}
@media (max-width: 650px) {
  .LK_fav {
    margin-right: 0px;
  }
}
@media (max-width: 650px) {
  .LK_fav__top-panel {
    display: none;
  }
}
.LK_fav__item-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .LK_fav__item-container {
    padding: 0px 16px;
    margin-bottom: 0px;
  }
}
.LK_fav__tab-head {
  display: grid;
  grid-template-columns: 360px 1fr 1fr 1fr 190px 24px;
  gap: 20px;
  align-items: center;
  padding: 16px;
  padding-right: 60px;
  border-bottom: 1px solid #d9d9d9;
  background: #f3f3f3;
}
@media (max-width: 1895px) {
  .LK_fav__tab-head {
    grid-template-columns: 5fr 2fr 1fr 1fr 2fr 24px;
    padding-right: 32px;
  }
}
@media (max-width: 1750px) {
  .LK_fav__tab-head {
    padding-right: 10px;
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .LK_fav__tab-head {
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 24px;
    gap: 24px;
    padding-right: 0px;
  }
}
@media (max-width: 768px) {
  .LK_fav__tab-head {
    gap: 12px;
  }
}
@media (max-width: 750px) {
  .LK_fav__tab-head {
    display: none;
  }
}
.LK_fav__tab-head-item {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #282828;
}
.LK_fav__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
  margin: 0;
  margin-bottom: 16px;
}
@media (max-width: 650px) {
  .LK_fav__title {
    padding: 0px 16px;
    margin-top: 16px;
    margin-bottom: 0px;
  }
}
.LK_fav__items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.LK_fav__top-panel-mobile {
  display: none;
}
@media (max-width: 650px) {
  .LK_fav__top-panel-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
}
.LK_fav__top-panel-mobile-btn {
  border-radius: 8px;
  padding: 0px 8px;
  background: #f3f3f3;
  width: 100%;
  max-width: 180px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #09090b;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.LK_fav__top-panel-mobile-btn:hover {
  border: 1px solid #282828;
}
.LK_fav__top-panel-mobile-all-categories {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #ce1853;
}

.LK_comment-item {
  display: flex;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 650px) {
  .LK_comment-item {
    padding: 8px 0px 16px 0px;
    border: none;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0px;
  }
}
.LK_comment-item__wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 650px) {
  .LK_comment-item__wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.LK_comment-item__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 221px;
  width: 100%;
}
@media (max-width: 650px) {
  .LK_comment-item__content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    gap: 6px;
  }
}
@media (max-width: 320px) {
  .LK_comment-item__content {
    flex-direction: column;
  }
}
.LK_comment-item__header {
  display: flex;
  gap: 12px;
}
.LK_comment-item__avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.LK_comment-item__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.LK_comment-item__info {
  display: flex;
  flex-direction: column;
}
.LK_comment-item__name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #191c1f;
}
@media (max-width: 650px) {
  .LK_comment-item__name {
    white-space: nowrap;
  }
}
.LK_comment-item__date {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #5c5c5c;
}
@media (max-width: 650px) {
  .LK_comment-item__rating {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 650px) and (max-width: 320px) {
  .LK_comment-item__rating {
    justify-content: flex-start;
  }
}
.LK_comment-item__body-comment {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.LK_comment-item__product {
  display: flex;
  gap: 4px;
}
@media (max-width: 650px) {
  .LK_comment-item__product {
    display: none;
  }
}
.LK_comment-item__product-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.LK_comment-item__product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.LK_comment-item__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  display: flex;
}
.LK_comment-item__edit {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
@media (max-width: 650px) {
  .LK_comment-item__edit {
    order: -1;
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
}
.LK_comment-item__edit:hover {
  color: #c10404;
}

.fav-item {
  display: grid;
  grid-template-columns: 376px 1fr 1fr 1fr 190px 24px;
  gap: 20px;
  align-items: center;
  padding: 16px 0px;
  padding-right: 60px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
@media (max-width: 1895px) {
  .fav-item {
    grid-template-columns: 5fr 2fr 1fr 1fr 2fr 24px;
    padding-right: 32px;
  }
}
@media (max-width: 1750px) {
  .fav-item {
    padding-right: 10px;
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .fav-item {
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 24px;
    gap: 24px;
    padding-right: 0px;
  }
}
@media (max-width: 768px) {
  .fav-item {
    gap: 12px;
  }
}
@media (max-width: 750px) {
  .fav-item {
    display: none;
  }
}
.fav-item__product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fav-item__image {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.fav-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fav-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fav-item__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin: 0;
}
@media (max-width: 1024px) {
  .fav-item__title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .fav-item__title {
    font-size: 12px;
  }
}
.fav-item__article {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #5c5c5c;
  margin: 0;
}
.fav-item__size {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #5c5c5c;
  margin: 0;
}
.fav-item__category {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #282828;
}
@media (max-width: 768px) {
  .fav-item__category {
    font-size: 12px;
  }
}
.fav-item__availability {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #5c5c5c;
}
@media (max-width: 768px) {
  .fav-item__availability {
    font-size: 12px;
  }
}
.fav-item__availability:empty {
  display: none;
}
.fav-item__price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #c10404;
  text-wrap: nowrap;
}
.fav-item__actions {
  margin-right: 16px;
}
@media (max-width: 1750px) {
  .fav-item__actions {
    margin-right: 0px;
  }
}
.fav-item__cart-btn {
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 189px;
  height: 48px;
  background-color: #c10404;
  border: none;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (max-width: 1024px) {
  .fav-item__cart-btn {
    padding: 0px 6px;
  }
}
@media (max-width: 750px) {
  .fav-item__cart-btn {
    max-width: 100%;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
  }
}
.fav-item__cart-btn:hover {
  background-color: #8f0303;
}
.fav-item__remove-btn {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fav-item__remove-btn svg {
  stroke: #5c5c5c;
  transition: stroke 0.3s;
}
.fav-item__remove-btn:hover svg {
  stroke: #c10404;
}
.fav-item__availability--in-stock {
  color: #44ce52;
}
.fav-item__availability--out-of-stock {
  color: #5c5c5c;
}
.fav-item__availability--not-available {
  color: #d9d9d9;
}

.fav-item-mobile {
  display: none;
}
@media (max-width: 750px) {
  .fav-item-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0px;
  }
}
.fav-item-mobile__content {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.fav-item-mobile__container {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (max-width: 750px) {
  .fav-item-mobile__container {
    align-items: flex-start;
  }
}
.fav-item-mobile__mobile-image {
  width: 115px;
  height: 115px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  display: flex;
  flex-shrink: 0;
}
.fav-item-mobile__mobile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fav-item-mobile__mobile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.fav-item-mobile__mobile-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.fav-item-mobile__mobile-info-container-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fav-item-mobile__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.fav-item-mobile__remove-btn {
  border: 2px solid #c10404;
  border-radius: 8px;
  padding: 0px 6px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #c10404;
  cursor: pointer;
  transition: background-color 0.3s;
}
.fav-item-mobile__remove-btn:hover {
  background-color: #c10404;
  color: #fff;
}

.LK_order_item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  padding: 10px 24px;
  border-bottom: 1px solid #d9d9d9;
  width: 100%;
  font-family: "Source Sans Pro", sans-serif;
  align-items: center;
}
@media (max-width: 650px) {
  .LK_order_item {
    display: none;
  }
}
.LK_order_item__order-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0px;
}
@media (max-width: 768px) {
  .LK_order_item__order-info {
    align-self: center;
  }
}
@media (max-width: 650px) {
  .LK_order_item__order-info {
    padding: 0px;
    gap: 0px;
  }
}
.LK_order_item__order-number {
  display: flex;
}
.LK_order_item__order-quantity {
  display: flex;
  gap: 4px;
}
.LK_order_item__label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #282828;
}
.LK_order_item__number {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #ce1853;
}
@media (max-width: 650px) {
  .LK_order_item__number {
    align-self: flex-end;
  }
}
.LK_order_item__label-quantity {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
}
.LK_order_item__quantity {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
}
.LK_order_item__date {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.LK_order_item__customer {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.LK_order_item__price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #ce1853;
}
.LK_order_item__status-btn {
  border-radius: 30px;
  padding: 6px 12px;
  width: 100%;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 650px) {
  .LK_order_item__status-btn {
    width: 135px;
    height: 31px;
  }
}
@media (max-width: 375px) {
  .LK_order_item__status-btn {
    width: 100px;
    font-size: 12px;
  }
}
.LK_order_item__status-btn--waiting {
  border: 1px solid #0797ff;
  background: rgba(7, 151, 255, 0.2);
  color: #0797ff;
}
.LK_order_item__status-btn--processing {
  border: 1px solid #fa8232;
  background: rgba(255, 119, 0, 0.2);
  color: #fa8232;
}
.LK_order_item__status-btn--completed {
  border: 1px solid #44ce52;
  background: #eaf7e9;
  color: #44ce52;
}
.LK_order_item__status-btn--cancelled {
  border: 1px solid #5c5c5c;
  background: rgba(144, 144, 144, 0.2);
  color: #5c5c5c;
}
.LK_order_item__mobile-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 6px;
}
.LK_order_item__mobile-info-date {
  display: flex;
  flex-direction: column;
}
.LK_order_item__label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}

.LK_order_item__mobile {
  display: none;
}
@media (max-width: 650px) {
  .LK_order_item__mobile {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.09);
    width: 100%;
    gap: 8px;
  }
}

@media (max-width: 1378px) {
  .LK-margin {
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .LK-margin {
    padding: 0px 16px;
  }
}

.LK_orders {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  margin-right: 160px;
}
@media (max-width: 1600px) {
  .LK_orders {
    margin-right: 120px;
  }
}
@media (max-width: 1440px) {
  .LK_orders {
    margin-right: 80px;
  }
}
@media (max-width: 1024px) {
  .LK_orders {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .LK_orders {
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .LK_orders {
    padding: 0px 16px;
    margin-top: 24px;
    margin-right: 0px;
  }
}
.LK_orders__header-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #282828;
}
.LK_orders__tab-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  padding: 10px 24px;
  border-bottom: 1px solid #d9d9d9;
  align-items: center;
  background: #f3f3f3;
}
@media (max-width: 650px) {
  .LK_orders__tab-head {
    display: none;
  }
}
.LK_orders__tab-head-item {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
@media (max-width: 650px) {
  .LK_orders__item-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }
}

.LK_personal {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin-right: 165px;
}
@media (max-width: 1600px) {
  .LK_personal {
    margin-right: 120px;
  }
}
@media (max-width: 1440px) {
  .LK_personal {
    margin-right: 80px;
  }
}
@media (max-width: 1024px) {
  .LK_personal {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .LK_personal {
    gap: 24px;
  }
}
.LK_personal__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.LK_personal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.LK_personal__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.LK_personal__section-title {
  border: 1px solid #e4e7e9;
  border-radius: 4px 4px 0 0;
  padding: 16px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #282828;
}
@media (max-width: 1024px) {
  .LK_personal__section-title {
    background: #f3f3f3;
    border: none;
  }
}
.LK_personal__profile {
  display: flex;
  gap: 24px;
}
.LK_personal__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 157px;
  width: 100%;
}
@media (max-width: 1024px) {
  .LK_personal__avatar {
    max-width: 218px;
  }
}
@media (max-width: 768px) {
  .LK_personal__avatar {
    max-width: 150px;
  }
}
.LK_personal__avatar img {
  width: 133px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .LK_personal__avatar img {
    width: 100px;
    height: 100px;
  }
}
.LK_personal__avatar-change {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.LK_personal__fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (max-width: 1024px) {
  .LK_personal__fields-wrapper {
    padding-right: 80px;
  }
}
@media (max-width: 768px) {
  .LK_personal__fields-wrapper {
    padding-right: 0;
  }
}
.LK_personal__fields-row {
  display: flex;
  gap: 24px;
}
.LK_personal__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.LK_personal__label {
  display: flex;
  text-align: start;
  font-size: 14px;
  margin-bottom: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  flex-grow: 1;
}
.LK_personal__label span {
  color: #5c5c5c;
}
@media (max-width: 966px) {
  .LK_personal__label span {
    font-size: 10px;
  }
}
.LK_personal__label .required {
  color: #c10404;
}
.LK_personal__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.LK_personal__input:focus {
  border-color: #c10404;
  outline: none;
}
.LK_personal__input::-moz-placeholder {
  color: #5c5c5c;
}
.LK_personal__input::placeholder {
  color: #5c5c5c;
}
@media (max-width: 768px) {
  .LK_personal__input::-moz-placeholder {
    font-size: 10px;
  }
  .LK_personal__input::placeholder {
    font-size: 10px;
  }
}
.LK_personal__password-wrapper {
  position: relative;
}
.LK_personal__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 5px;
}
.LK_personal__password-toggle:hover {
  color: #333;
}
.LK_personal__submit-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .LK_personal__submit-wrapper {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .LK_personal__submit-wrapper {
    justify-content: flex-end;
  }
}
.LK_personal__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #c10404;
  padding: 0px 24px;
  text-wrap: nowrap;
  min-height: 48px;
  max-width: 190px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (max-width: 1024px) {
  .LK_personal__submit {
    max-width: 218px;
  }
}
.LK_personal__submit:hover {
  background-color: #a00707;
}

.LK_base {
  display: flex;
  margin-top: 24px;
  margin-bottom: 85px;
  margin-left: 40px;
}
@media (max-width: 650px) {
  .LK_base {
    margin: 0;
    margin-bottom: 28px;
  }
}
.LK_base__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 450px;
}
@media (max-width: 1600px) {
  .LK_base__wrapper {
    max-width: 350px;
  }
}
@media (max-width: 1024px) {
  .LK_base__wrapper {
    display: none;
  }
}
.LK_base__table {
  display: none;
}
@media (max-width: 1024px) {
  .LK_base__table {
    display: flex;
  }
}
@media (max-width: 650px) {
  .LK_base__table {
    display: none;
  }
}
.LK_base__table-mobile {
  display: none;
}
@media (max-width: 650px) {
  .LK_base__table-mobile {
    display: flex;
  }
}
.LK_base__title {
  padding: 20px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
@media (max-width: 1024px) {
  .LK_base__title {
    display: none;
  }
}
.LK_base__content {
  display: flex;
}
.LK_base__user-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.LK_base__user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.LK_base__avatar {
  width: 82px;
  height: 82px;
  margin-left: 24px;
}
.LK_base__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.LK_base__username {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.LK_base__nav {
  display: flex;
}
.LK_base__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.LK_base__menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
  width: 100%;
}
.LK_base__menu-link:hover {
  background-color: #f3f3f3;
}
.LK_base__menu-link--red {
  color: #c10404;
  stroke: #c10404;
}
.LK_base__menu-icon {
  width: 20px;
  height: 20px;
}

.cheque_item {
  display: flex;
  padding: 8px 0px;
}
.cheque_item__image {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  width: 75px;
  height: 76px;
  display: flex;
  flex-shrink: 0;
  margin-right: 8px;
}
.cheque_item__content {
  display: flex;
  flex-direction: column;
  margin-right: 16px;
  gap: 4px;
  justify-content: space-between;
  max-width: 285px;
}
.cheque_item__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #282828;
}
.cheque_item__details {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
  display: flex;
  flex-direction: column;
}
.cheque_item__action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 75px;
}
.cheque_item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cheque_item__price-old {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-decoration: line-through;
  color: #929fa5;
}
.cheque_item__price-new {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #c10404;
}
.cheque_item__controls {
  display: flex;
  flex-direction: column;
}
.cheque_item__delete {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #5c5c5c;
}
.cheque_item__delete:hover {
  color: #c10404;
  cursor: pointer;
}

.cheque {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0px 24px 24px 24px;
  margin-left: 24px;
  margin-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 450px;
}
@media (max-width: 1650px) {
  .cheque {
    width: 350px;
  }
}
@media (max-width: 1378px) {
  .cheque {
    display: none;
  }
}
.cheque__title {
  padding: 20px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
}
.cheque__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cheque__delimiter {
  border-top: 1px solid #d9d9d9;
}
.cheque__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cheque__total-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.cheque__total-value {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #c10404;
}

@media (max-width: 1378px) {
  .breadcrumbs-s-by-s {
    padding: 0px 16px;
  }
}

.step_by_step_ordering {
  display: flex;
  margin-bottom: 83px;
  width: 100%;
}
@media (max-width: 650px) {
  .step_by_step_ordering {
    margin-bottom: 0px;
  }
}
.step_by_step_ordering__container {
  display: flex;
  flex-direction: column;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0px 0px 16px 0px;
  width: 100%;
}
@media (max-width: 1378px) {
  .step_by_step_ordering__container {
    border: 2px solid transparent;
  }
}
@media (max-width: 1024px) {
  .step_by_step_ordering__container {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__container {
    padding: 0;
  }
}
.step_by_step_ordering__header {
  padding: 20px 24px;
  align-self: start;
}
@media (max-width: 1024px) {
  .step_by_step_ordering__header {
    padding: 24px 40px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__header {
    padding: 16px 16px;
  }
}
.step_by_step_ordering__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
@media (max-width: 650px) {
  .step_by_step_ordering__title {
    font-size: 24px;
  }
}
.step_by_step_ordering__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  width: 100%;
  border: 1px solid #e4e7e9;
}
@media (max-width: 1024px) {
  .step_by_step_ordering__content {
    padding: 0px 40px;
    border: none;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__content {
    padding: 0px 16px;
  }
}
.step_by_step_ordering__order-number {
  border: 1px solid #f7e99e;
  border-radius: 4px;
  padding: 24px;
  background: #fdfae7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 650px) {
  .step_by_step_ordering__order-number {
    display: none;
  }
}
.step_by_step_ordering__number-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #191c1f;
}
.step_by_step_ordering__order-details {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #475156;
  display: flex;
  gap: 8px;
}
.step_by_step_ordering__progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  margin-bottom: 24px;
  padding: 0px 156px;
}
.step_by_step_ordering__progress-steps {
  position: relative;
  height: 8px;
  border-radius: 100px;
  width: 100%;
  background: rgba(202, 8, 8, 0.1);
  margin: 8px 0;
}
.step_by_step_ordering__step {
  position: absolute;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-8px);
  z-index: 2;
}
.step_by_step_ordering__step svg, .step_by_step_ordering__step img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 3;
}
.step_by_step_ordering__step:nth-child(1) {
  left: 0;
  transform: translateX(-50%) translateY(-8px);
}
.step_by_step_ordering__step:nth-child(2) {
  left: 33.33%;
  transform: translateX(-50%) translateY(-8px);
}
.step_by_step_ordering__step:nth-child(3) {
  left: 66.66%;
  transform: translateX(-50%) translateY(-8px);
}
.step_by_step_ordering__step:nth-child(4) {
  left: 100%;
  transform: translateX(-50%) translateY(-8px);
}
.step_by_step_ordering__step::before {
  content: "";
  position: absolute;
  left: 0;
  height: 8px;
  background: #c10404;
  z-index: 1;
}
.step_by_step_ordering__step--active::before {
  width: 100%;
  background: #c10404;
}
.step_by_step_ordering__progress-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  height: 60px;
}
.step_by_step_ordering__progress-icons .step_by_step_ordering__icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  transform: translateX(-50%);
}
.step_by_step_ordering__progress-icons .step_by_step_ordering__icon:nth-child(1) {
  left: 0%;
}
.step_by_step_ordering__progress-icons .step_by_step_ordering__icon:nth-child(2) {
  left: 33.33%;
}
.step_by_step_ordering__progress-icons .step_by_step_ordering__icon:nth-child(3) {
  left: 66.66%;
}
.step_by_step_ordering__progress-icons .step_by_step_ordering__icon:nth-child(4) {
  left: 100%;
}
.step_by_step_ordering__icon-label {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5c5c5c;
  white-space: nowrap;
}
.step_by_step_ordering__form {
  padding: 24px;
  margin: 24px 134px 16px 134px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.step_by_step_ordering__form-header {
  margin-bottom: 24px;
}
@media (max-width: 650px) {
  .step_by_step_ordering__form-header {
    margin-bottom: 0px;
  }
}
.step_by_step_ordering__form-body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.step_by_step_ordering__form-info {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #383838;
}
@media (max-width: 650px) {
  .step_by_step_ordering__form-info {
    font-size: 14px;
  }
}
.step_by_step_ordering__link {
  color: #ce1853;
  text-decoration: none;
}
.step_by_step_ordering__link:hover {
  text-decoration: underline;
}
.step_by_step_ordering__customer-type {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
@media (max-width: 650px) {
  .step_by_step_ordering__customer-type {
    gap: 0px;
  }
}
.step_by_step_ordering__radio-group {
  position: relative;
}
.step_by_step_ordering__radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}
.step_by_step_ordering__radio-label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  margin-right: 10px;
}
.step_by_step_ordering__radio:checked + .step_by_step_ordering__radio-label:before {
  border-color: #c10404;
  background: radial-gradient(circle, #c10404 40%, transparent 50%);
}
.step_by_step_ordering__contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
.step_by_step_ordering__input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step_by_step_ordering__label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.step_by_step_ordering__input {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 12px 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  display: flex;
  width: 100%;
}
.step_by_step_ordering__input:focus {
  border-color: #c10404;
  outline: none;
}
.step_by_step_ordering__form-footer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}
.step_by_step_ordering__submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  padding: 0px 24px;
  background: #c10404;
  border: none;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  max-width: 291px;
  height: 49px;
}
@media (max-width: 1024px) {
  .step_by_step_ordering__submit-btn {
    max-width: 295px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__submit-btn {
    max-width: 100%;
  }
}
.step_by_step_ordering__submit-btn:hover {
  background: #a80303;
}
.step_by_step_ordering__form--delivery {
  display: flex;
  flex-direction: column;
}
.step_by_step_ordering__form-body--delivery {
  display: flex;
  flex-direction: column;
}
.step_by_step_ordering__address-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
  margin-bottom: 24px;
}
.step_by_step_ordering__address-row {
  display: flex;
  gap: 16px;
}
.step_by_step_ordering__delivery-methods {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d9d9d9;
  gap: 40px;
}
.step_by_step_ordering__section-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #383838;
  margin-top: 24px;
}
.step_by_step_ordering__delivery-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.step_by_step_ordering__delivery-option {
  display: flex;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  padding: 8px 24px;
  cursor: pointer;
}
.step_by_step_ordering__delivery-option:hover {
  border-color: #c10404;
}
.step_by_step_ordering__delivery-option--active {
  border-color: #c10404;
  background: rgba(202, 8, 8, 0.1);
}
.step_by_step_ordering__delivery-label {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  cursor: pointer;
}
.step_by_step_ordering__delivery-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
  cursor: pointer;
}
.step_by_step_ordering__delivery-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5c5c5c;
  cursor: pointer;
}
.step_by_step_ordering__delivery-type {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step_by_step_ordering__checkbox-group {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
.step_by_step_ordering__input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step_by_step_ordering__checkbox-label {
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.step_by_step_ordering__textarea {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 12px 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  min-height: 80px;
  resize: none;
}
.step_by_step_ordering__form-footer--delivery {
  display: flex;
  justify-content: flex-start;
}
.step_by_step_ordering__submit-btn--delivery {
  margin-top: 0px;
}
.step_by_step_ordering__form--confirmation {
  margin-top: 0px;
  gap: 0px;
}
.step_by_step_ordering__form-body--confirmation {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 24px;
  border-bottom: 1px solid #d9d9d9;
}
.step_by_step_ordering__form-header--confirmation {
  margin-bottom: 0px;
}
.step_by_step_ordering__section-title--confirmation {
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #383838;
}
.step_by_step_ordering__info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step_by_step_ordering__info-row {
  display: flex;
  gap: 4px;
}
.step_by_step_ordering__info-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.step_by_step_ordering__info-value {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  display: flex;
}
.step_by_step_ordering__form-section--confirmation {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d9d9d9;
  padding: 24px;
  width: 100%;
}
.step_by_step_ordering__payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step_by_step_ordering__payment-option {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  display: flex;
  align-items: center;
  position: relative;
}
.step_by_step_ordering__payment-radio {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.step_by_step_ordering__payment-label {
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
.step_by_step_ordering__payment-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #E4E7E9;
  border-radius: 50%;
  background-color: white;
  box-sizing: border-box;
}
.step_by_step_ordering__payment-radio:checked + .step_by_step_ordering__payment-label:before {
  border: 2px solid #c10404;
}
.step_by_step_ordering__payment-radio:checked + .step_by_step_ordering__payment-label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c10404;
}
.step_by_step_ordering__form--payment {
  margin: 0px;
  gap: 0px;
  padding: 0px 159px 24px 159px;
}
.step_by_step_ordering__form-body--payment {
  display: flex;
  flex-direction: column;
  padding: 20px 0px 32px 0px;
  gap: 20px;
}
.step_by_step_ordering__section-title--payment {
  margin-top: 0px;
}
.step_by_step_ordering__invoice-container {
  display: flex;
  align-items: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}
.step_by_step_ordering__invoice-info {
  display: flex;
  padding: 16px;
  background: #fa8232;
  align-items: center;
}
.step_by_step_ordering__invoice-icon {
  width: 33px;
  height: 40px;
  margin-right: 8px;
}
.step_by_step_ordering__invoice-download {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  margin-left: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.step_by_step_ordering__invoice-warning {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.step_by_step_ordering__invoice-date {
  font-size: 18px;
  color: #ce1853;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.step_by_step_ordering__form-footer--payment {
  display: flex;
  justify-content: flex-start;
}
.step_by_step_ordering__submit-btn--payment {
  margin-top: 16px;
}
.step_by_step_ordering__form--success {
  max-width: 500px;
  margin: 80px auto;
  padding: 0px;
  text-align: center;
}
.step_by_step_ordering__form-body--success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.step_by_step_ordering__success-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  color: #282828;
}
.step_by_step_ordering__success-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step_by_step_ordering__success-icon {
  width: 70px;
  height: 70px;
}
.step_by_step_ordering__order-id {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #282828;
}
.step_by_step_ordering__order-status {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #5c5c5c;
}
.step_by_step_ordering__form-footer--success {
  display: flex;
  justify-content: center;
  align-items: center;
}
.step_by_step_ordering__submit-btn--success {
  margin-top: 8px;
  background: #c10404;
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.step_by_step_ordering__submit-btn--success:hover {
  background: #a80303;
}
@media (max-width: 1650px) {
  .step_by_step_ordering__form {
    margin: 0px 100px;
  }
}
@media (max-width: 1024px) {
  .step_by_step_ordering__form {
    margin: 0;
    padding: 16px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__form-body {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}
@media (max-width: 1650px) {
  .step_by_step_ordering__progress {
    padding: 0px 124px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__progress {
    padding: 0px 16px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__contact-info {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .step_by_step_ordering__form--payment {
    padding: 0px 24px;
    align-self: start;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__form--payment {
    padding: 0px 16px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__form-body--confirmation {
    padding: 16px 0px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__form-section--confirmation {
    padding: 16px 0px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__form-section--payment {
    padding: 16px 0px;
  }
}
@media (max-width: 1024px) {
  .step_by_step_ordering__form--success {
    padding: 0px 100px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__form--success {
    width: 100%;
    padding: 0px 16px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__address-info {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__address-row {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__checkbox-group {
    margin-bottom: 16px;
  }
}
@media (max-width: 650px) {
  .step_by_step_ordering__payment-methods {
    margin-bottom: 24px;
  }
}

.border-none {
  border: none;
}

.step_by_step_ordering__past-order-container {
  display: none;
}
@media (max-width: 1378px) {
  .step_by_step_ordering__past-order-container {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .step_by_step_ordering__past-order-container {
    display: none;
  }
}

.step_by_step__last-order-mobile {
  display: none;
}
@media (max-width: 750px) {
  .step_by_step__last-order-mobile {
    display: block;
  }
}

.visually-hidden {
  display: none;
}

.import_block {
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
}
@media (max-width: 1440px) {
  .import_block {
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .import_block {
    margin-bottom: 16px;
    padding: 0;
  }
}
@media (max-width: 1440px) {
  .import_block__breadcrumbs {
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .import_block__breadcrumbs {
    display: none;
  }
}
.import_block__header {
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 40px;
  margin-top: 32px;
}
@media (max-width: 650px) {
  .import_block__header {
    font-size: 18px;
    margin-bottom: 24px;
    margin-top: 8px;
    padding: 10px 16px;
    border-radius: 4px;
    background: #f3f3f3;
  }
}
.import_block__vendor {
  color: #c10404;
  margin-left: 16px;
}
@media (max-width: 650px) {
  .import_block__vendor {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .import_block__vendor {
    margin-left: 4px;
  }
}
.import_block__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 650px) {
  .import_block__content {
    padding: 0px 16px;
    gap: 40px;
  }
}
.import_block__xml_loader {
  display: flex;
  flex-direction: column;
  padding: 0px 24px;
}
@media (max-width: 1440px) {
  .import_block__xml_loader {
    padding: 0;
  }
}
.import_block__header-loader {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .import_block__header-loader {
    margin-bottom: 16px;
  }
}
.import_block__btn-container {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 650px) {
  .import_block__btn-container {
    margin-bottom: 0px;
  }
}
@media (max-width: 650px) {
  .import_block__btn-container--mobile {
    margin-bottom: 24px;
  }
}
.import_block__btn-choice {
  border: 2px solid #c10404;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 196px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #c10404;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 650px) {
  .import_block__btn-choice {
    text-wrap: nowrap;
  }
}
@media (max-width: 375px) {
  .import_block__btn-choice {
    text-wrap: wrap;
  }
}
.import_block__btn-no-choice {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
  cursor: pointer;
  text-wrap: nowrap;
}
@media (max-width: 650px) {
  .import_block__btn-no-choice {
    display: none;
  }
}
.import_block__btn-no-choice--mobile {
  display: none;
}
@media (max-width: 650px) {
  .import_block__btn-no-choice--mobile {
    display: flex;
    justify-content: flex-start;
  }
}
.import_block__btn-load {
  border-radius: 8px;
  padding: 0px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  background-color: #c10404;
  cursor: pointer;
  width: 100%;
  max-width: 170px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 650px) {
  .import_block__btn-load {
    display: none;
  }
}
.import_block__btn-load--mobile {
  display: none;
}
@media (max-width: 650px) {
  .import_block__btn-load--mobile {
    display: flex;
    text-wrap: nowrap;
  }
}
@media (max-width: 375px) {
  .import_block__btn-load--mobile {
    text-wrap: wrap;
  }
}
.import_block__markup-section {
  display: flex;
  flex-direction: column;
  padding: 0px 24px;
  gap: 8px;
}
@media (max-width: 650px) {
  .import_block__markup-section {
    padding: 0;
  }
}
.import_block__markup-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #c10404;
}
.import_block__input-percent {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 12px 16px;
  background: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
  width: 100%;
  max-width: 170px;
  height: 48px;
  display: flex;
  align-items: start;
  justify-content: center;
}
.import_block__import-section {
  display: flex;
  flex-direction: column;
  border: 1px solid #d9d9d9;
  padding: 24px;
  gap: 40px;
}
@media (max-width: 650px) {
  .import_block__import-section {
    border: none;
    gap: 16px;
    width: 100%;
    padding: 0;
  }
}
.import_block__import-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.import_block__select-container {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 425px;
}
.import_block__select {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  width: 100%;
  display: flex;
}
.import_block__buttons-container {
  display: flex;
  gap: 24px;
  margin-right: 80px;
}
@media (max-width: 650px) {
  .import_block__buttons-container {
    flex-direction: column;
    gap: 16px;
    margin-right: 0px;
  }
}
.import_block__btn-import {
  border-radius: 8px;
  padding: 0px 24px;
  max-width: 252px;
  height: 48px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 650px) {
  .import_block__btn-import {
    max-width: 100%;
  }
}
.import_block__btn-import--products {
  color: #c10404;
  background: #fff;
  border: 1px solid #c10404;
}

.past-order-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 24px;
  align-items: center;
  padding: 24px;
  padding-right: 111px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 1650px) {
  .past-order-item {
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 24px;
  }
}
@media (max-width: 1440px) {
  .past-order-item {
    padding: 16px;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 24px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 1024px) {
  .past-order-item {
    width: 100%;
    padding: 10px 0px;
  }
}
@media (max-width: 850px) {
  .past-order-item {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.past-order-item__image-container {
  display: flex;
  position: relative;
}
.past-order-item__images {
  display: flex;
  gap: 4px;
}
.past-order-item__image {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.past-order-item__image-count {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #c10404;
}
.past-order-item__content {
  display: flex;
  align-items: center;
  gap: 4px;
}
.past-order-item__date {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5c5c5c;
  text-align: center;
}
.past-order-item__quantity {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5c5c5c;
  text-align: center;
}
.past-order-item__total {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #c10404;
  text-align: center;
}
.past-order-item__actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.past-order-item__action {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #c10404;
  margin-right: 8px;
}
.past-order-item__action:hover {
  text-decoration: underline;
}
.past-order-item__delete-button {
  display: flex;
  justify-content: center;
}
.past-order-item__action-remove {
  background: #f3f3f3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.past-order-item__action-remove svg {
  width: 24px;
  height: 24px;
}
.past-order-item__action-remove svg path {
  transition: stroke 0.2s;
}
.past-order-item__action-remove:hover svg path {
  stroke: #c10404;
}

.delimiter--m-8 {
  margin: 8px 0;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  margin-right: 24px;
  margin-left: 24px;
}
@media (max-width: 1700px) {
  .delimiter--m-8 {
    margin: 0px;
  }
}

.auth {
  width: 100%;
}
.auth__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 20px;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.auth__form label {
  display: block;
  text-align: start;
  font-size: 14px;
  margin-bottom: 8px;
  color: #282828;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.auth__field {
  width: 100%;
}
.auth__field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth__forgot {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #a00707;
}
.auth__forgot:hover {
  text-decoration: underline;
}
.auth__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.auth__input:focus {
  border-color: #c10404;
  outline: none;
}
.auth__input::-moz-placeholder {
  color: #5c5c5c;
}
.auth__input::placeholder {
  color: #5c5c5c;
}
.auth__password-wrapper {
  position: relative;
}
.auth__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 5px;
}
.auth__password-toggle:hover {
  color: #333;
}
.auth__button {
  margin-top: 4px;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 360px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.auth__button--primary {
  background-color: #c10404;
  color: white;
  border: none;
}
.auth__button:hover {
  background-color: #990303;
}
.auth__no-account {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #5c5c5c;
}
.auth__no-account:before, .auth__no-account:after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #d9d9d9;
  margin: 0 10px;
}
.auth__register-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #c10404;
  text-decoration: none;
}
.auth__register-link:hover {
  border-color: #c10404;
  box-shadow: 0px 0px 2px 0px #a00707;
}

.basket-item {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 120px 120px 120px 24px;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-right: 111px;
  padding-left: 24px;
}
@media (max-width: 1440px) {
  .basket-item {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media (max-width: 1024px) {
  .basket-item {
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 24px 40px;
    border-bottom: 1px solid #d9d9d9;
    padding-left: 0px;
    margin-left: 40px;
    margin-bottom: 12px;
  }
}
.basket-item__image-container {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  margin-right: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  overflow: hidden;
}
.basket-item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.basket-item__content {
  display: flex;
  justify-content: start;
}
.basket-item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 20%;
}
@media (max-width: 1700px) {
  .basket-item__info {
    padding-right: 0;
  }
}
.basket-item__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 4px;
}
.basket-item__article {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
  margin-bottom: 2px;
}
.basket-item__size {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #5c5c5c;
  margin-bottom: 4px;
}
.basket-item__price {
  width: 120px;
  text-align: center;
}
.basket-item__old-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #5c5c5c;
  text-decoration: line-through;
}
.basket-item__current-price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #c10404;
}
.basket-item__quantity {
  width: 120px;
  display: flex;
  justify-content: center;
}
.basket-item__quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  overflow: hidden;
}
.basket-item__quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #282828;
}
.basket-item__quantity-btn:hover {
  background-color: #f3f3f3;
}
.basket-item__quantity-input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.basket-item__total {
  width: 120px;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #c10404;
}
.basket-item__remove {
  background: #f3f3f3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.basket-item__remove svg {
  width: 24px;
  height: 24px;
  transition: stroke 0.2s;
}
.basket-item__remove:hover svg path {
  stroke: #c10404;
}

.product-card {
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  height: 100%;
  max-width: 292px;
  min-height: 446px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 3px 0 rgba(196, 196, 196, 0.8);
  background: #fff;
}
@media (max-width: 560px) {
  .product-card {
    padding: 8px;
    min-height: 300px;
  }
}
.product-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 560px) {
  .product-card__favorite {
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
.product-card__favorite.active {
  transform: scale(1.1);
}
.product-card__favorite:hover {
  transform: scale(1.1);
}
.product-card__img-wrapper {
  position: relative;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  min-height: 226px;
  cursor: pointer;
  overflow: hidden;
  max-height: 226px;
}
@media (max-width: 560px) {
  .product-card__img-wrapper {
    min-height: 150px;
    max-height: 150px;
  }
}
.product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.product-card__img-wrapper:hover .product-card__overlay {
  opacity: 1;
}
.product-card__img-wrapper:hover .product-card__img {
  transform: scale(1.05);
}
.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 56, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-card__view-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.product-card__view-icon:hover {
  transform: scale(1.1);
}
.product-card__code-wrapper {
  flex-grow: 1;
}
.product-card__badges-wrapper {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  gap: 8px;
  margin: 8px;
}
@media (max-width: 560px) {
  .product-card__badges-wrapper {
    flex-direction: column;
    gap: 4px;
    max-width: 100px;
  }
}
.product-card__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 5px 10px;
}
.product-card__badges--new {
  background: #fa8232;
}
.product-card__badges--hit {
  background: #44ce52;
}
.product-card__badges--discount {
  background: #c10404;
}
.product-card__badges--success {
  background: #fa8232;
}
.product-card__badge {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
.product-card__content {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.product-card__code {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #5c5c5c;
}
.product-card__title {
  margin-top: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
@media (max-width: 560px) {
  .product-card__title {
    font-size: 14px;
  }
}
@media (max-width: 340px) {
  .product-card__title {
    font-size: 12px;
  }
}
.product-card__prices {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 260px;
  width: 100%;
  max-height: 48px;
}
@media (max-width: 560px) {
  .product-card__prices {
    flex-direction: column;
    align-items: stretch;
    max-height: none;
    gap: 10px;
  }
}
.product-card__price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #000;
}
@media (max-width: 560px) {
  .product-card__price-container {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }
}
.product-card__old-price {
  display: flex;
  height: 24px;
  width: 100%;
  color: #5c5c5c;
  font-size: 14px;
  text-decoration: line-through;
  text-align: right;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #5c5c5c;
}
@media (max-width: 560px) {
  .product-card__old-price {
    margin-left: 8px;
    width: auto;
    height: auto;
    white-space: nowrap;
  }
}
.product-card__price {
  height: 24px;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #282828;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 560px) {
  .product-card__price {
    width: auto;
    text-align: center;
    font-size: 24px;
    height: auto;
    white-space: nowrap;
  }
}
.product-card__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 3px 16px;
  width: 82px;
  height: 48px;
  background-color: #c10404;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
  overflow: visible;
}
.product-card__add-btn .add-animation {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
  color: #c10404;
  pointer-events: none;
  z-index: 100;
  animation: plusOneClick 0.8s ease-out forwards;
}
.product-card__add-btn:hover {
  background-color: #a00707;
}
.product-card__add-btn:active {
  background-color: #c10404;
}
@media (max-width: 560px) {
  .product-card__add-btn {
    width: 100%;
    margin-left: 0px;
    height: 40px;
  }
}
.product-card .icon-plus {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.product-card .icon-cart {
  margin-left: 8px;
  width: 24px;
  height: 24px;
}
.product-card__rating-wrapper .rating__stars svg {
  width: 20px !important;
  height: 20px !important;
}

.product-card__overlay {
  pointer-events: auto;
}

@keyframes plusOneClick {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -80%) scale(1.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -150%) scale(0.8);
  }
}
.category-card {
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 24px;
  max-width: 292px;
  max-height: 96px;
  box-shadow: 0 0 3px 0 rgba(196, 196, 196, 0.8);
  background: #fff;
  gap: 16px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .category-card {
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
    gap: 4px;
    padding: 12px 8px;
  }
}
.category-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.category-card__image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .category-card__image {
    padding: 3px 6px;
    width: 60px;
    height: 60px;
  }
}
.category-card__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #282828;
}
@media (max-width: 768px) {
  .category-card__title {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: #252833;
  }
}

.custom-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-checkbox__input:checked ~ .custom-checkbox__label .custom-checkbox__box {
  background-color: #c10404;
  border-color: #c10404;
}
.mailing-list-container .custom-checkbox__input:checked ~ .custom-checkbox__label .custom-checkbox__box {
  background-color: #282828;
  border-color: #282828;
}
.custom-checkbox__input:checked ~ .custom-checkbox__label .custom-checkbox__box svg {
  opacity: 1;
}
.custom-checkbox__label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-checkbox__box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid #5c5c5c;
  border-radius: 4px;
  margin-right: 10px;
  transition: all 0.2s ease;
}
.custom-checkbox__box svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.custom-checkbox__text {
  font-size: 14px;
  color: #282828;
  line-height: 1.3;
}

.verify-account {
  width: 100%;
}
.verify-account__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 12px;
}
.verify-account__description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #5c5c5c;
  margin-bottom: 24px;
}
.verify-account__field {
  width: 100%;
  margin-bottom: 24px;
}
.verify-account__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.verify-account__label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.verify-account__reset-link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #a00707;
  text-decoration: none;
  cursor: pointer;
}
.verify-account__reset-link:hover {
  text-decoration: underline;
}
.verify-account__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.verify-account__input:focus {
  border-color: #c10404;
  outline: none;
}
.verify-account__input::-moz-placeholder {
  color: #5c5c5c;
}
.verify-account__input::placeholder {
  color: #5c5c5c;
}
.verify-account__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  background-color: #c10404;
  border: none;
  transition: background-color 0.3s;
}
.verify-account__button:hover {
  background-color: #a00707;
}

.modal__content-wrapper--w1240 {
  position: absolute;
  width: 100%;
  max-width: 1240px;
  max-height: 589px;
  z-index: 200;
}
@media (max-width: 1024px) {
  .modal__content-wrapper--w1240 {
    max-width: 944px;
  }
}
.modal__body {
  overflow-x: hidden;
  border: 1px solid #e4e7e9;
  border-radius: 4px;
  padding: 0;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
}
.modal .fast-view {
  padding: 0px;
}

.fast-view {
  display: flex;
  gap: 24px;
  padding: 40px;
}
@media (max-width: 1024px) {
  .fast-view {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .fast-view {
    padding: 20px;
  }
}
@media (max-width: 860px) {
  .fast-view {
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .fast-view {
    display: none;
  }
}
.fast-view__product-container {
  max-width: 568px;
  max-height: 456px;
  display: flex;
  gap: 24px;
  position: relative;
}
@media (max-width: 1440px) {
  .fast-view__product-container {
    max-width: 468px;
  }
}
@media (max-width: 1024px) {
  .fast-view__product-container {
    flex-direction: column-reverse;
    max-width: 324px;
    max-height: 460px;
    gap: 0px;
  }
}
@media (max-width: 860px) {
  .fast-view__product-container {
    max-width: 290px;
  }
}
@media (max-width: 768px) {
  .fast-view__product-container {
    max-width: 250px;
  }
}
.fast-view__mini-preview {
  width: 98px;
  height: 98px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.fast-view__mini-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fast-view__mini-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fast-view__video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fast-view__video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.fast-view__video-overlay svg {
  width: 14px;
  height: 14px;
}
.fast-view__product-preview {
  overflow: hidden;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}
.fast-view__product-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fast-view__main-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.fast-view__info-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fast-view__info-container-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.fast-view__info-container-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fast-view__badges-wrapper {
  display: flex;
  gap: 16px;
  max-height: 24px;
}
.fast-view__details-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.fast-view__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fast-view__details-row {
  display: flex;
  gap: 2px;
}
@media (max-width: 650px) {
  .fast-view__details-row {
    gap: 8px;
  }
}
.fast-view__details-label {
  text-align: left;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #5c5c5c;
}
.fast-view__details-value {
  text-align: left;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  color: #282828;
  font-size: 14px;
  line-height: 143%;
}
.fast-view__price-container {
  display: flex;
  gap: 4px;
}
.fast-view__price-old {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-decoration: line-through;
  color: #5c5c5c;
}
@media (max-width: 650px) {
  .fast-view__price-old {
    font-size: 24px;
  }
}
.fast-view__price-new {
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 140%;
  color: #c10404;
}
.fast-view__delivery-container {
  display: flex;
  justify-content: space-between;
}
.fast-view__delivery-container-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 860px) {
  .fast-view__delivery-container-left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .fast-view__delivery-container-left {
    width: 200px;
  }
}
.fast-view__delivery-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.fast-view__section-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
.fast-view__delivery-option {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #282828;
}
.fast-view__delivery-option span {
  font-weight: 600;
}
.fast-view__payment-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.fast-view__section-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
.fast-view__payment-options {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #282828;
}
.fast-view__payment-guarantee {
  padding: 4px;
  background: #f3f3f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #5c5c5c;
}
.fast-view__product-options-container {
  text-align: left;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .fast-view__product-options-container {
    width: 200px;
  }
}
.fast-view__product-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fast-view__quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fast-view__option-title {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #282828;
}
.fast-view__quantity-control {
  display: flex;
  align-items: center;
}
.fast-view__quantity-control-wrapper {
  display: flex;
  align-items: center;
}
.fast-view__quantity-button {
  height: 48px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #e4e7e9;
  cursor: pointer;
}
.fast-view__quantity-button--decrease {
  border-radius: 4px 0 0 4px;
  border-right: none;
}
.fast-view__quantity-button--increase {
  border-radius: 0 4px 4px 0;
  border-left: none;
}
.fast-view__quantity-input {
  display: flex;
  height: 48px;
  width: 44px;
  border-top: 1px solid #e4e7e9;
  border-bottom: 1px solid #e4e7e9;
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.fast-view__quantity-unit {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #5c5c5c;
  margin-left: 8px;
}
.fast-view__size-selector {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #282828;
}
.fast-view__size-dropdown {
  width: 100%;
  height: 40px;
  border: 1px solid #e4e7e9;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23282828' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: #fff;
  color: #282828;
  cursor: pointer;
}
.fast-view__color-selector {
  display: flex;
  gap: 8px;
}
.fast-view__color-options {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 40px;
  gap: 16px;
}
.fast-view__color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
@media (max-width: 650px) {
  .fast-view__color-option {
    width: 30px;
    height: 30px;
  }
}
.fast-view__color-option--black {
  background-color: #000;
}
.fast-view__color-option--grey {
  background-color: #666;
}
.fast-view__color-option--red {
  background-color: #c10404;
}
.fast-view__color-option--selected:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #c10404;
  border-radius: 50%;
}
@media (max-width: 650px) {
  .fast-view__color-option--selected:before {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
  }
}
.fast-view__color-option--selected:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.fast-view__button-container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.fast-view__button {
  cursor: pointer;
  transition: all 0.2s ease;
}
.fast-view__button--buy-now {
  border: 2px solid #c10404;
  border-radius: 8px;
  padding: 0px 24px;
  width: 272px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #c10404;
}
@media (max-width: 768px) {
  .fast-view__button--buy-now {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .fast-view__button--buy-now {
    width: 100%;
  }
}
.fast-view__button--buy-now:hover {
  background-color: #c10404;
  color: #fff;
}
.fast-view__button--add-to-cart {
  background-color: #c10404;
  border: 2px solid #c10404;
  border-radius: 8px;
  padding: 0px 24px;
  width: clamp(160px, 272px, 100%);
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
@media (max-width: 768px) {
  .fast-view__button--add-to-cart {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .fast-view__button--add-to-cart {
    width: 100%;
  }
}
.fast-view__button--add-to-cart:hover {
  background-color: #a00707;
}
.fast-view__product-title {
  display: flex;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #282828;
  text-align: left;
}
@media (max-width: 768px) {
  .fast-view__product-title {
    font-size: 18px;
  }
}
@media (max-width: 650px) {
  .fast-view__product-title {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
  }
}
.fast-view__action-icons {
  display: flex;
  align-items: start;
}
.fast-view__favorite {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .fast-view__favorite {
    width: 32px;
    height: 32px;
  }
}
.fast-view__share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fast-view__share-button:hover {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .fast-view__share-button {
    width: 32px;
    height: 32px;
  }
}
.fast-view__expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fast-view__expand-button:hover {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .fast-view__expand-button {
    width: 32px;
    height: 32px;
  }
}
.fast-view__full-previewSwiper {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.fast-view__full-previewSwiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.fast-view__rating-stars .rating__stars svg {
  width: 17px !important;
  height: 17px !important;
}

.swiper-container-m24,
.swiper-container-m24-page {
  margin-bottom: 24px;
  margin-top: 24px;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1024px) {
  .swiper-container-m24,
  .swiper-container-m24-page {
    margin-bottom: 16px;
  }
}

.swiper-slide-thumb-active .fast-view__mini-preview {
  border: 2px solid #c10404;
  border-radius: 2px;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-button-next-page,
.swiper-button-prev-page {
  border-radius: 100px;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 3px 0 rgba(196, 196, 196, 0.8);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 100;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-button-next:after,
.swiper-button-prev:after,
.swiper-button-next-page:after,
.swiper-button-prev-page:after {
  display: none;
}
.swiper-button-next svg,
.swiper-button-prev svg,
.swiper-button-next-page svg,
.swiper-button-prev-page svg {
  width: 24px;
  height: 24px;
  transition: stroke 0.3s ease;
}
.swiper-button-next svg path,
.swiper-button-prev svg path,
.swiper-button-next-page svg path,
.swiper-button-prev-page svg path {
  transition: stroke 0.3s ease;
}
.swiper-button-next svg svg path,
.swiper-button-prev svg svg path,
.swiper-button-next-page svg svg path,
.swiper-button-prev-page svg svg path {
  stroke: white;
}

.swiper-button-prev,
.swiper-button-prev-page {
  position: absolute;
  top: 22px;
  left: 24px;
}
@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-prev-page {
    right: auto;
    bottom: 40px;
    transform: rotate(-90deg);
    left: -24px;
    top: auto;
  }
}

.swiper-button-next-page {
  cursor: pointer;
}

.swiper-button-prev-page {
  top: 0px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .swiper-button-prev-page {
    right: auto;
    bottom: 40px;
    transform: rotate(-90deg);
    left: -24px;
    top: auto;
  }
}

.swiper-button-prev-page.swiper-button-disabled,
.swiper-button-next-page.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next,
.swiper-button-next-page {
  position: absolute;
  top: auto;
  bottom: 0px;
  right: auto;
  left: 24px;
}
@media (max-width: 1024px) {
  .swiper-button-next,
  .swiper-button-next-page {
    left: auto;
    bottom: 40px;
    transform: rotate(-90deg);
    right: -24px;
  }
}

.full-previewSwiper,
.full-previewSwiper-page {
  width: 100%;
  height: 456px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.full-previewSwiper .swiper-slide,
.full-previewSwiper-page .swiper-slide {
  display: flex;
  justify-content: center;
  border-radius: 4px;
}
.full-previewSwiper button,
.full-previewSwiper-page button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.full-previewSwiper button:hover,
.full-previewSwiper-page button:hover {
  background: #f5f5f5;
}

@media (max-width: 1024px) {
  .mini-previewSwiper,
  .mini-previewSwiper-page {
    width: 100%;
  }
}
.mini-previewSwiper .swiper-slide,
.mini-previewSwiper-page .swiper-slide {
  width: auto;
}

.fast-view-mobile {
  display: none;
  flex-direction: column;
}
@media (max-width: 700px) {
  .fast-view-mobile {
    display: flex;
    padding: 16px;
    gap: 24px;
  }
}
.fast-view-mobile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.fast-view-mobile__badges-wrapper {
  display: flex;
}
.fast-view-mobile__action-icons {
  display: flex;
  gap: 6px;
}
.fast-view-mobile__swiper-container {
  border-radius: 4px;
  position: relative;
}
.fast-view-mobile__swiper-container .swiper {
  border-radius: 4px;
  padding-bottom: 26px;
}
.fast-view-mobile__mobile-video-slide img, .fast-view-mobile__mobile-slide img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.fast-view-mobile__mobile-video-slide video, .fast-view-mobile__mobile-slide video {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fast-view-mobile__swiper-pagination {
  bottom: 0px !important;
}
.fast-view-mobile .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #5c5c5c;
}
.fast-view-mobile .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #5c5c5c;
}
.fast-view-mobile__content-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fast-view-mobile__product-title-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fast-view-mobile__details-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fast-view-mobile__details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fast-view-mobile__size-and-color-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.fast-view-mobile__size-selector-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 8px;
  width: 157px;
  height: 36px;
  border-radius: 8px;
  background: #f3f3f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #09090b;
}
.fast-view-mobile__summary-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fast-view-mobile__price-and-discount-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fast-view-mobile__price-container {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fast-view-mobile__discount-container {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5c5c5c;
}
.fast-view-mobile__quantity-and-add-to-cart-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.fast-view-mobile__button-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fast-view-mobile__services-container {
  border-radius: 12px;
  border: 1px solid #d9d9d9;
}
.fast-view-mobile__service-item {
  display: flex;
  gap: 16px;
  padding: 16px;
}
.fast-view-mobile__service-item:nth-child(1) {
  border-bottom: 1px solid #d9d9d9;
}
.fast-view-mobile__service-item svg {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.fast-view-mobile__service-content {
  width: 100%;
}

.forgot-password {
  width: 100%;
}
.forgot-password__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 12px;
}
.forgot-password__description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
  text-align: center;
  color: #5c5c5c;
  margin-bottom: 24px;
}
.forgot-password__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.forgot-password__form label {
  display: block;
  text-align: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.forgot-password__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.forgot-password__input:focus {
  border-color: #c10404;
  outline: none;
}
.forgot-password__input::-moz-placeholder {
  color: #5c5c5c;
}
.forgot-password__input::placeholder {
  color: #5c5c5c;
}
.forgot-password__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  background-color: #c10404;
  border: none;
  transition: background-color 0.3s;
}
.forgot-password__button:hover {
  background-color: #a00707;
}
.forgot-password__account-row-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.forgot-password__login-link, .forgot-password__register-link {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  text-decoration: none;
  cursor: pointer;
}
.forgot-password__login-link:hover, .forgot-password__register-link:hover {
  text-decoration: underline;
}
.forgot-password__account-row {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5c5c5c;
  text-align: start;
}
.forgot-password__divider {
  margin: 24px 0;
  border-bottom: 1px solid #d9d9d9;
}
.forgot-password__support {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #5c5c5c;
  text-align: start;
}
.forgot-password__support a {
  color: #c10404;
  text-decoration: none;
}
.forgot-password__support a:hover {
  text-decoration: underline;
}

.mailing-list-container {
  display: flex;
  justify-content: center;
  background-color: #c10404;
}
.mailing-list-container .custom-checkbox__box svg path {
  stroke: #fff;
}

.mailing-list {
  display: flex;
  width: 100%;
  padding: 24px 32px;
}
@media (max-width: 1024px) {
  .mailing-list {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .mailing-list {
    flex-direction: column;
    padding: 24px 16px;
  }
}
.mailing-list__title-container {
  display: flex;
  align-items: flex-start;
  max-width: 487px;
  margin-right: 124px;
}
@media (max-width: 1024px) {
  .mailing-list__title-container {
    max-width: 100%;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .mailing-list__title-container {
    margin: 0;
    padding-right: 60px;
    margin-bottom: 35px;
  }
}
.mailing-list__container {
  display: flex;
  flex-direction: column;
  padding: 0px 24px;
  max-width: 503px;
  gap: 24px;
}
@media (max-width: 1024px) {
  .mailing-list__container {
    padding: 0;
    max-width: 450px;
  }
}
@media (max-width: 650px) {
  .mailing-list__container {
    max-width: 100%;
  }
}
.mailing-list__title {
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #fff;
}
@media (max-width: 650px) {
  .mailing-list__title {
    font-size: 20px;
  }
}
.mailing-list__form {
  display: flex;
  width: 100%;
}
@media (max-width: 650px) {
  .mailing-list__form {
    flex-direction: column;
    gap: 16px;
  }
}
.mailing-list__input {
  display: flex;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  padding: 12px 16px;
  width: 262px;
  height: 43px;
  background: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.mailing-list__input:focus {
  outline: none;
  border-color: #282828;
}
@media (max-width: 650px) {
  .mailing-list__input {
    width: 100%;
  }
}
.mailing-list__btn {
  margin-left: 8px;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 154px;
  height: 48px;
  background: #282828;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mailing-list__btn:hover {
  background: #2A2A2A;
}
@media (max-width: 650px) {
  .mailing-list__btn {
    max-width: 100%;
    margin-left: 0;
  }
}
.mailing-list__agreement {
  display: flex;
  align-items: flex-start;
  text-wrap: balance;
}

.checkbox__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 120%;
  color: #fff;
}
.checkbox__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox__text-link {
  font-weight: 600;
  color: #fff;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  outline: none;
  transition: transform 0.2s ease;
}
.nav-btn:hover {
  transform: scale(1.05);
}
.nav-btn:hover .nav-btn__icon[data-direction=left] {
  content: url("/icon/btn/nav/Status=False, Circle=Left, Type=Secondary.svg");
}
.nav-btn:hover .nav-btn__icon[data-direction=right] {
  content: url("/icon/btn/nav/Status=False, Circle=Right, Type=Secondary.svg");
}
.nav-btn:focus {
  box-shadow: 0 0 0 3px rgba(193, 4, 4, 0.3);
}
.nav-btn:focus .nav-btn__icon[data-direction=left] {
  content: url("/icon/btn/nav/Status=False, Circle=Left, Type=Secondary.svg");
}
.nav-btn:focus .nav-btn__icon[data-direction=right] {
  content: url("/icon/btn/nav/Status=False, Circle=Right, Type=Secondary.svg");
}
.nav-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 2px rgba(193, 4, 4, 0.5);
}
.nav-btn--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}
.nav-btn--disabled .nav-btn__icon[data-direction=left] {
  content: url("/icon/btn/nav/Status=False, Circle=Left, Type=Tertiary.svg");
}
.nav-btn--disabled .nav-btn__icon[data-direction=right] {
  content: url("/icon/btn/nav/Status=False, Circle=Right, Type=Tertiary.svg");
}
.nav-btn--primary:hover, .nav-btn--primary:focus {
  filter: brightness(0.9);
}
.nav-btn--primary:focus {
  box-shadow: 0 0 0 3px rgba(193, 4, 4, 0.3);
}
.nav-btn--secondary:hover, .nav-btn--secondary:focus {
  background-color: rgba(193, 4, 4, 0.05);
}
.nav-btn--secondary:focus {
  box-shadow: 0 0 0 3px rgba(193, 4, 4, 0.2);
}
.nav-btn--tertiary:hover, .nav-btn--tertiary:focus {
  background-color: rgba(193, 4, 4, 0.02);
}
.nav-btn--tertiary:focus {
  box-shadow: 0 0 0 3px rgba(193, 4, 4, 0.1);
}
.nav-btn svg {
  width: 40px;
  height: 40px;
}
.nav-btn__icon {
  width: 40px;
  height: 40px;
}

.order {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
}
@media (max-width: 1024px) {
  .order {
    background: #f3f3f3;
    border: none;
  }
}
.order__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #282828;
  text-align: center;
  margin: 0 0 24px 0;
}
@media (max-width: 1024px) {
  .order__title {
    text-align: start;
  }
}
.order__content {
  margin-bottom: 20px;
}
.order__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.order__row--total {
  margin-top: 16px;
  margin-bottom: 0;
}
.order__label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
.order__value {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
.order__value--total {
  font-weight: 700;
  font-size: 24px;
  color: #c10404;
}
.order__separator {
  height: 1px;
  background-color: #d9d9d9;
  margin: 16px 0;
}
.order__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background-color: #c10404;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  text-decoration: none;
}
.order__button:hover {
  background-color: #a80303;
}
.order__button svg {
  margin-left: 4px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5c5c5c;
  margin-bottom: 24px;
  height: 40px;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 0px;
  }
}
@media (max-width: 700px) {
  .breadcrumbs__separator, .breadcrumbs__item {
    display: none !important;
  }
  .breadcrumbs__item--active {
    display: flex !important;
    align-items: center;
  }
  .breadcrumbs__item--active::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background: url("data:image/svg+xml,%3Csvg%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4.5%202.25L8.25%206L4.5%209.75'%20stroke='%235C5C5C'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transform: scaleX(-1);
  }
}
.breadcrumbs__item {
  color: #5c5c5c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 700px) {
  .breadcrumbs__item {
    gap: 0px;
  }
}
.breadcrumbs__item--active {
  color: #c10404;
  font-weight: 500;
}
@media (max-width: 700px) {
  .breadcrumbs__item--active {
    color: #5c5c5c;
  }
}
.breadcrumbs__separator {
  color: #5c5c5c;
}
.breadcrumbs__icon {
  margin-right: 4px;
  fill: #5c5c5c;
}

.promo {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .promo {
    padding: 0px;
    border: none;
  }
}
@media (max-width: 750px) {
  .promo {
    padding: 0px 16px;
    padding-top: 16px;
  }
}
.promo__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #282828;
  text-align: center;
  margin: 0 0 16px 0;
}
@media (max-width: 750px) {
  .promo__title {
    display: none;
  }
}
.promo__min-amount {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5c5c5c;
  text-align: center;
  margin: 0 0 16px 0;
}
.promo__form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 1570px) {
  .promo__form {
    flex-wrap: wrap;
  }
}
.promo__input {
  height: 48px;
  padding: 0 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .promo__input {
    width: 100%;
  }
}
.promo__input:focus {
  outline: none;
  border-color: #5c5c5c;
}
.promo__input::-moz-placeholder {
  color: #5c5c5c;
}
.promo__input::placeholder {
  color: #5c5c5c;
}
.promo__button {
  min-width: 120px;
  height: 48px;
  background-color: #c10404;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  padding: 0 20px;
}
@media (max-width: 1570px) {
  .promo__button {
    width: 100%;
  }
}
.promo__button:hover {
  background-color: #a80303;
}
.promo__error {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #c10404;
  margin: 8px 0 0 0;
}
.promo__success {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #44ce52;
  margin: 8px 0 0 0;
}

.rating {
  display: flex;
}
.rating__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.rating__stars .star-inactive {
  display: inline;
}
.rating__stars .star-active {
  display: none;
}
.rating__stars[data-rating="1"] svg:nth-child(-n+1) .star-inactive, .rating__stars[data-rating="2"] svg:nth-child(-n+2) .star-inactive, .rating__stars[data-rating="3"] svg:nth-child(-n+3) .star-inactive, .rating__stars[data-rating="4"] svg:nth-child(-n+4) .star-inactive, .rating__stars[data-rating="5"] svg:nth-child(-n+5) .star-inactive {
  display: none;
}
.rating__stars[data-rating="1"] svg:nth-child(-n+1) .star-active, .rating__stars[data-rating="2"] svg:nth-child(-n+2) .star-active, .rating__stars[data-rating="3"] svg:nth-child(-n+3) .star-active, .rating__stars[data-rating="4"] svg:nth-child(-n+4) .star-active, .rating__stars[data-rating="5"] svg:nth-child(-n+5) .star-active {
  display: inline;
}
.rating__reviews {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  margin-left: 8px;
  display: flex;
  align-items: center;
  border-left: 1px solid #5c5c5c;
  padding-left: 5px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.register {
  width: 100%;
}
.register__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 20px;
}
.register__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.register__form label {
  display: block;
  text-align: start;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.register__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.register__input:focus {
  border-color: #d32f2f;
  outline: none;
}
.register__input::-moz-placeholder {
  color: #aaa;
}
.register__input::placeholder {
  color: #aaa;
}
.register__password-wrapper {
  position: relative;
}
.register__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 5px;
}
.register__password-toggle:hover {
  color: #333;
}
.register__button {
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 360px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.register__button--primary {
  background-color: #c10404;
  color: white;
  border: none;
}
.register__button:hover {
  background-color: #990303;
}
.register__alternative {
  text-align: center;
  margin-top: 24px;
}
.register__alternative-text {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #5c5c5c;
}
.register__social-buttons {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.register__social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 12px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #5c5c5c;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  background-color: #fff;
}
.register__social-button:hover {
  border: 1px solid #c10404;
  box-shadow: 0px 0px 2px 0px #a00707;
}
.register__social-icon {
  width: 20px;
  height: 20px;
}

.register__alternative-wrapper {
  display: flex;
  align-items: center;
}
.register__alternative-wrapper:before, .register__alternative-wrapper:after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #d9d9d9;
  margin: 0 10px;
}

.reset-password {
  width: 100%;
}
.reset-password__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 24px;
}
.reset-password__form {
  display: flex;
  flex-direction: column;
}
.reset-password__form label {
  display: block;
  text-align: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.reset-password__account-row-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.reset-password__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
}
.reset-password__input:focus {
  border-color: #c10404;
  outline: none;
}
.reset-password__input::-moz-placeholder {
  color: #5c5c5c;
}
.reset-password__input::placeholder {
  color: #5c5c5c;
}
.reset-password__password-wrapper {
  position: relative;
}
.reset-password__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #5c5c5c;
  padding: 5px;
}
.reset-password__password-toggle:hover {
  color: #282828;
}
.reset-password__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  background-color: #c10404;
  border: none;
  transition: background-color 0.3s;
}
.reset-password__button:hover {
  background-color: #a00707;
}

.small-header-block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .small-header-block {
    display: none;
  }
}
.small-header-block__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
.small-header-block__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0px 24px;
  max-width: 189px;
  min-height: 48px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-wrap: nowrap;
}

.small-header-block-mobile {
  display: none;
}
@media (max-width: 650px) {
  .small-header-block-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
  }
}
.small-header-block-mobile__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #252833;
}
.small-header-block-mobile__link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.small-header-block-mobile__link:hover {
  color: #c10404;
}

.tabs-container {
  width: 100%;
}

.tabs {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 650px) {
  .tabs {
    gap: 20px;
  }
}

.tab {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #5c5c5c;
  padding: 8px 24px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  border-bottom: 4px solid transparent;
}
@media (max-width: 650px) {
  .tab {
    font-size: 14px;
    line-height: 143%;
    padding: 8px;
    border-bottom: 2px solid transparent;
  }
}
.tab:hover {
  color: #c10404;
}
.tab.active {
  color: #282828;
  border-bottom: 4px solid #c10404;
}
@media (max-width: 650px) {
  .tab.active {
    border-bottom: 2px solid #c10404;
  }
}

.tabs-content {
  width: 100%;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.advantages {
  padding-top: 120px;
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .advantages {
    padding: 80px 40px;
  }
}
@media (max-width: 650px) {
  .advantages {
    padding: 24px 16px 40px 16px;
  }
}
.advantages__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 40px;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .advantages__list {
    margin-bottom: 0px;
  }
}
@media (max-width: 960px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .advantages__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 3px 0 rgba(196, 196, 196, 0.8);
  background: #fff;
  max-width: 291px;
}
@media (max-width: 650px) {
  .advantage-card {
    flex-direction: row;
    max-width: 100%;
    padding: 16px;
  }
}
@media (max-width: 650px) {
  .advantage-card__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 16px;
  }
}
.advantage-card__icon {
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .advantage-card__icon {
    width: 112px;
    height: 112px;
  }
}
@media (max-width: 650px) {
  .advantage-card__icon {
    margin-bottom: 0px;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }
}
.advantage-card__title {
  margin-bottom: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
}
@media (max-width: 650px) {
  .advantage-card__title {
    text-wrap: nowrap;
    margin-bottom: 4px;
    font-size: 16px;
  }
}
.advantage-card__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #282828;
}
@media (max-width: 1300px) {
  .advantage-card__text {
    text-overflow: ellipsis;
  }
}
@media (max-width: 650px) {
  .advantage-card__text {
    text-align: left;
    font-size: 14px;
  }
}

.basket-container {
  display: flex;
  gap: 24px;
  width: 100%;
}

.basket {
  min-width: 790px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 80px;
  width: 100%;
}
@media (max-width: 1440px) {
  .basket {
    min-width: 750px;
  }
}
@media (max-width: 850px) {
  .basket {
    min-width: 100%;
  }
}
@media (max-width: 750px) {
  .basket {
    margin-bottom: 0;
    border: none;
  }
}
.basket__header {
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 750px) {
  .basket__header {
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.basket__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #282828;
  margin: 0;
}
.basket__subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
  margin: 0;
}
.basket__content {
  background-color: #fff;
  display: block;
}
@media (max-width: 750px) {
  .basket__content {
    display: none;
  }
}
.basket__last-order {
  margin-top: 80px;
  display: block;
}
@media (max-width: 750px) {
  .basket__last-order {
    display: none;
  }
}
.basket__table, .basket__last-order-table {
  border-collapse: collapse;
  width: 100%;
}
.basket__table-header {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 120px 120px 120px 24px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 10px 24px;
  background-color: #f3f3f3;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-right: 111px;
}
@media (max-width: 1440px) {
  .basket__table-header {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media (max-width: 1024px) {
  .basket__table-header {
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 10px 40px;
    margin-bottom: 12px;
  }
}
.basket__table-header-past-order {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 24px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding: 10px 24px;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  background: #f3f3f3;
  padding-right: 111px;
}
@media (max-width: 1650px) {
  .basket__table-header-past-order {
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 24px;
  }
}
@media (max-width: 1440px) {
  .basket__table-header-past-order {
    padding: 16px;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 24px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 1024px) {
  .basket__table-header-past-order {
    width: 100%;
    padding: 10px 0px;
  }
}
@media (max-width: 850px) {
  .basket__table-header-past-order {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.basket__table-cell {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  text-align: center;
}
.basket__table-cell--product {
  text-align: left;
}
.basket__items, .basket__last-order-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.basket__last-order-items {
  margin-bottom: 0px;
}
.basket__last-order-items--past-order {
  gap: 0px;
}
.basket__button-container {
  display: flex;
  justify-content: space-between;
  padding: 24px;
}
.basket__button-delete {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(202, 8, 8, 0.1);
  border-radius: 8px;
  padding: 0px 24px;
}
.basket__last-order {
  border-top: 1px solid #d9d9d9;
  background-color: #fff;
}
.basket-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 24px;
  width: 33%;
}
@media (max-width: 1024px) {
  .basket-sidebar {
    display: none;
  }
}
.basket__order-container-mob {
  display: none;
}
@media (max-width: 1024px) {
  .basket__order-container-mob {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0px 40px;
  }
}
@media (max-width: 750px) {
  .basket__order-container-mob {
    padding: 0px 16px;
  }
}
.basket__add-promo-code {
  display: none;
}
@media (max-width: 1024px) {
  .basket__add-promo-code {
    display: flex;
    margin-top: 40px;
  }
}
.basket__add-promo-code-btn {
  width: 100%;
  border-radius: 8px;
  padding: 16px 24px;
  background: #f3f3f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #282828;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.basket__content-mobile {
  display: none;
}
@media (max-width: 750px) {
  .basket__content-mobile {
    display: block;
    padding: 0px 16px;
  }
}
.basket__content-mobile-head {
  display: none;
}
@media (max-width: 750px) {
  .basket__content-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-bottom: 1px solid #d9d9d9;
    padding: 0px 0px 8px 0px;
    width: 100%;
  }
}
.basket__content-mobile-head-wrapper-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.basket__content-mobile-head-wrapper-delete {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  background: none;
  border: none;
  cursor: pointer;
}
.basket__content-mobile-head-wrapper-delete:active {
  color: #c10404;
}
.basket__last-order-mobile {
  display: none;
}
@media (max-width: 750px) {
  .basket__last-order-mobile {
    display: block;
    padding: 0px 16px;
  }
}
.basket__subtitle-past-order {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #282828;
  margin-top: 24px;
}

.catalog-cards-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .catalog-cards-container {
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .catalog-cards-container {
    padding: 0px 15px;
  }
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .catalog-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .catalog-cards {
    display: none;
  }
}
.catalog-cards__item, .catalog-cards__item--big {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 292px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .catalog-cards__item, .catalog-cards__item--big {
    min-height: 186px;
  }
}
.catalog-cards__item:hover, .catalog-cards__item--big:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}
.catalog-cards__item--big {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .catalog-cards__item--big {
    grid-column: span 1;
  }
}
.catalog-cards__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.catalog-cards__title {
  position: relative;
  z-index: 2;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}

.catalog-cards-mobile {
  display: none;
  width: 100%;
  position: relative;
}
@media (max-width: 650px) {
  .catalog-cards-mobile {
    display: block;
    margin-bottom: 24px;
  }
}

.catalog-swiper {
  overflow: hidden;
  width: 100%;
  padding-bottom: 20px;
}
.catalog-swiper .swiper-slide {
  width: 292px;
  margin-right: 16px;
  overflow: visible;
}

.catalog-swiper-prev,
.catalog-swiper-next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-color: #E30613;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
}
.catalog-swiper-prev svg,
.catalog-swiper-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
}

.catalog-swiper-prev {
  left: -12px;
}

.catalog-swiper-next {
  right: -12px;
}

.catalog-cards-mobile .catalog-cards__item,
.catalog-cards-mobile .catalog-cards__item--big {
  min-height: 200px;
}
.catalog-cards-mobile .catalog-cards__title {
  font-size: 24px;
}

.category-group {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 0px 40px 0px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .category-group {
    margin-bottom: 0px;
  }
}
.category-group__breadcrumbs {
  display: flex;
  align-items: center;
  margin-left: 24px;
  height: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .category-group__breadcrumbs {
    margin-bottom: 0px;
    margin-left: 40px;
  }
}
@media (max-width: 650px) {
  .category-group__breadcrumbs {
    margin-left: 16px;
  }
}
.category-group__content {
  max-width: 1400px;
  display: flex;
  gap: 24px;
}
@media (max-width: 1440px) {
  .category-group__content {
    flex-direction: column;
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .category-group__content {
    margin-top: 16px;
    padding: 0px 16px;
  }
}
.category-group__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  width: 33%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #282828;
}
@media (max-width: 1024px) {
  .category-group__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 110%;
    padding: 0;
    margin-bottom: 40px;
    justify-content: flex-start;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .category-group__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin: 0;
  }
}
.category-group__grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1024px) {
  .category-group__grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .category-group__grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
    align-content: start;
  }
}
@media (max-width: 360px) {
  .category-group__grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-group__element-span2 {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .category-group__element-span2 {
    grid-column: span 2;
  }
}
@media (max-width: 360px) {
  .category-group__element-span2 {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .category-group__element {
    height: 100%;
    display: flex;
  }
}

.category-group-small {
  width: 100%;
  background: #f3f3f3;
  padding: 64px 0;
}
@media (max-width: 1600px) {
  .category-group-small {
    padding: 64px 40px;
  }
}
.category-group-small .category-group-small__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1024px) {
  .category-group-small .category-group-small__flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 360px) {
  .category-group-small .category-group-small__flex {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
.category-group-small__item--span {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .category-group-small__item--span {
    grid-column: span 2;
  }
}
@media (max-width: 360px) {
  .category-group-small__item--span {
    grid-column: span 1;
  }
}

.container-footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  background: #282828;
  width: 100%;
  margin-top: auto;
  padding: 64px 40px;
}
@media (max-width: 1366px) {
  .footer {
    padding: 64px 40px;
  }
}
@media (max-width: 1024px) {
  .footer {
    margin-bottom: 50px;
  }
}
@media (max-width: 650px) {
  .footer {
    padding: 24px 16px;
  }
}
.footer__main {
  display: flex;
  align-items: center;
}
@media (max-width: 650px) {
  .footer__main {
    gap: 40px;
  }
}
.footer__row {
  display: flex;
  gap: 24px;
}
@media (max-width: 650px) {
  .footer__row {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer__column--menu {
  align-items: flex-end;
}
@media (max-width: 650px) {
  .footer__column {
    gap: 40px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.footer__logo {
  display: flex;
  width: 249px;
  height: 76px;
}
.footer__logo-img {
  fill: #fff;
}
.footer__logo-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer__logo-text {
  margin-left: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
}
.footer__phone {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
}
.footer__address {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
}
.footer__email {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 650px) {
  .footer__social {
    display: none;
  }
}
.footer__social-icon {
  display: flex;
  transition: transform 0.3s ease;
  border-radius: 50%;
  background: transparent;
}
.footer__social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.footer__social-icon img {
  transition: filter 0.3s ease;
  width: 48px;
  height: 48px;
}
.footer__menu-section-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: auto;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__menu-section-right {
    height: 24px;
  }
}
@media (max-width: 960px) {
  .footer__menu-section-right {
    display: none;
  }
}
.footer__menu-section-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: auto;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__menu-section-left {
    display: none;
  }
}
.footer__menu-section-left-sub-menu {
  display: none;
}
@media (max-width: 1024px) {
  .footer__menu-section-left-sub-menu {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .footer__subscribe-container {
    display: flex;
    gap: 18px;
  }
}
@media (max-width: 920px) {
  .footer__subscribe-container {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 650px) {
  .footer__subscribe-container {
    align-items: flex-start;
    gap: 40px;
  }
}
.footer__menu-section-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #d9d9d9;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  width: 100%;
}
@media (max-width: 1024px) {
  .footer__menu {
    text-wrap: nowrap;
  }
}
.footer__menu > li {
  position: relative;
  transition: color 0.3s ease;
}
.footer__menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: #c10404;
  transition: width 0.3s ease;
}
.footer__menu > li:hover {
  color: #c10404;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__menu-row {
  display: flex;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}
.footer__menu-row > li {
  position: relative;
  transition: color 0.3s ease;
  text-wrap: nowrap;
}
.footer__menu-row > li:hover {
  color: #fff;
}
.footer__menu-row > li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}
.footer__menu-row > li:hover::after {
  width: 100%;
}
.footer__menu-row {
  display: flex;
  gap: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #d9d9d9;
  margin-bottom: 72px;
}
@media (max-width: 1024px) {
  .footer__menu-row {
    flex-wrap: nowrap;
  }
}
@media (max-width: 960px) {
  .footer__menu-row {
    display: none;
  }
}
.footer__subscribe {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 450px;
  gap: 24px;
}
.footer__subscribe-title {
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer__subscribe-title {
    font-size: 24px;
    padding-right: 70px;
  }
}
@media (max-width: 650px) {
  .footer__subscribe-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    padding-right: 0px;
  }
}
.footer__subscribe-form {
  display: flex;
  width: 100%;
}
@media (max-width: 650px) {
  .footer__subscribe-form {
    flex-direction: column;
    gap: 8px;
  }
}
.footer__subscribe-input {
  display: flex;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 12px 16px;
  width: 100%;
  min-width: 200px;
  height: 43px;
  background: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.footer__subscribe-btn {
  margin-left: 8px;
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 154px;
  height: 48px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 650px) {
  .footer__subscribe-btn {
    max-width: 100%;
    margin-left: 0px;
  }
}
.footer__subscribe-btn:hover {
  background: #a00707;
}
.footer__subscribe-agreement {
  display: flex;
  margin-right: 82px;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .footer__subscribe-agreement {
    margin-right: 0px;
    text-wrap: auto;
  }
}
@media (max-width: 650px) {
  .footer__subscribe-agreement {
    margin-right: 0px;
    padding-right: 35px;
  }
}
.footer__bottom {
  display: flex;
  margin-top: 40px;
}
.footer__bottom-column {
  display: flex;
  flex-direction: column;
}
.footer__bottom-row-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 650px) {
  .footer__bottom-row-top {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__copyright {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
@media (max-width: 1024px) {
  .footer__copyright {
    max-width: 120px;
  }
}
@media (max-width: 650px) {
  .footer__copyright {
    display: none;
  }
}
.footer__links {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #5c5c5c;
  display: flex;
  text-decoration: underline;
  text-underline-offset: 4px;
  gap: 24px;
}
@media (max-width: 1024px) {
  .footer__links {
    text-wrap: nowrap;
    margin: 0px 24px;
  }
}
@media (max-width: 920px) {
  .footer__links {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .footer__links {
    margin: 0;
  }
}
.footer__links > a:hover {
  color: #c10404;
  text-decoration: underline;
}
.footer__payment {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer__payment {
    align-self: start;
  }
}
.footer__payment-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #d9d9d9;
  margin-right: 19px;
}
@media (max-width: 1024px) {
  .footer__payment-text {
    margin-right: 8px;
    text-wrap: nowrap;
  }
}
.footer__payment-icons {
  display: flex;
  gap: 8px;
}
.footer__attention {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 24px;
}
.footer__attention-link {
  font-weight: 600;
  text-transform: capitalize;
}

.checkbox__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.6);
}
.checkbox__text-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.footer__menu-section-title--accordion svg {
  display: none;
}
@media (max-width: 960px) {
  .footer__menu-section-title--accordion {
    cursor: pointer;
    position: relative;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }
  .footer__menu-section-title--accordion svg {
    display: flex;
    transform: rotate(180deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
  }
  .footer__menu-section-title--accordion.active {
    color: #fff;
    transition: color 0.3s ease-out;
  }
  .footer__menu-section-title--accordion.active svg {
    transform: rotate(0deg) scale(1.1);
    animation: bounce 0.3s ease;
  }
}

@media (max-width: 960px) {
  .footer__menu--collapsible {
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .footer__menu--collapsible--open {
    max-height: 1000px;
    margin-bottom: 16px;
  }
}

@media (max-width: 960px) {
  .footer__menu-section-mobile-container {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
}
@media (max-width: 960px) and (max-width: 650px) {
  .footer__menu-section-mobile-container {
    display: none;
  }
}

.footer__menu-row-mobile {
  display: none;
}
@media (max-width: 960px) {
  .footer__menu-row-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .footer__menu-row-mobile {
    margin-bottom: 0px;
  }
}

@media (max-width: 960px) {
  .footer__menu-section-right-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
  }
}

.footer__menu-section-mobile-container--info {
  display: none;
}
@media (max-width: 650px) {
  .footer__menu-section-mobile-container--info {
    display: flex;
    width: 100%;
  }
}

.footer__social-mobile {
  display: none;
}
@media (max-width: 650px) {
  .footer__social-mobile {
    display: flex;
    gap: 8px;
  }
}

.footer__copyright-mobile {
  display: none;
}
@media (max-width: 650px) {
  .footer__copyright-mobile {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }
}

.header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 650px) {
  .header {
    display: none;
  }
}
.header__logo .header__logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.header__logo .header__logo-link:hover {
  transform: scale(1.05);
}
.header__logo .header__logo-link:active {
  transform: scale(0.98);
}
.header__logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  color: #c10404;
  margin-left: 8px;
}
.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 1124px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .header__nav-list {
    gap: 20px;
  }
}
@media (max-width: 1376px) {
  .header__nav-list {
    display: none;
  }
}
@media (max-width: 1124px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #282828;
  position: relative;
  transition: color 0.3s ease;
  overflow: hidden;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c10404;
  transition: width 0.3s ease;
}
.header__nav-link:hover {
  color: #c10404;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__location {
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  gap: 4px;
  justify-content: center;
  position: relative;
}
.header__location:hover .header__location-value:after {
  transform: rotate(225deg) translateY(-2px);
}
.header__location-label, .header__callback-label {
  font-size: 14px;
  color: #8b8b8b;
}
.header__location-value {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #282828;
  padding-bottom: 2px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.header__location-value:active {
  color: #c10404;
  border-bottom-color: #c10404;
}
.header__location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
  width: 220px;
}
.header__location-dropdown svg {
  position: relative;
  top: 0;
  cursor: pointer;
}
.header__location-search {
  position: relative;
}
.header__location-search-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.header__location-input {
  width: 100%;
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #282828;
  padding: 16px;
  padding-left: 32px;
}
.header__location-input::-moz-placeholder {
  color: #8b8b8b;
}
.header__location-input::placeholder {
  color: #8b8b8b;
}
.header__location-list {
  padding: 16px;
  max-height: 300px;
  overflow-y: auto;
}
.header__location-item {
  margin-bottom: 12px;
}
.header__location-item:last-child {
  margin-bottom: 0;
}
.header__location-category {
  font-size: 16px;
  color: #282828;
  cursor: pointer;
  padding: 3px 0;
}
.header__location-category:hover {
  color: #c10404;
}
.header__location-subcategories {
  padding-left: 15px;
  margin-top: 5px;
}
.header__location-subcategory {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  padding: 3px 0;
  cursor: pointer;
}
.header__location-subcategory:hover {
  color: #c10404;
}
.header__location:focus-within .header__location-dropdown {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .header__location:focus-within .header__location-dropdown {
    display: none;
  }
}
.header__callback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  padding-top: 5.5px;
  padding-bottom: 5.5px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__callback {
    margin-left: clamp(30px, 2vw, 105px);
  }
}
.header__callback-number {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: #c10404;
}
.header__icons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__icons {
    display: none;
  }
}
.header__icon {
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}
.header__icon:hover {
  background: rgba(193, 4, 4, 0.1);
  transform: translateY(-2px);
}
.header__icon img {
  transition: filter 0.3s ease;
}
.header__icon:hover img {
  filter: brightness(0.8);
}
.header__icon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #c10404;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.header__icon--favorites .header__icon-badge {
  right: -5px;
}
.header__burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 1376px) {
  .header__burger-btn {
    display: flex;
  }
}
.header__burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #282828;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger-btn .header__burger-btn-line {
  width: 50%;
  height: 2px;
  background-color: #282828;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header.menu-open .header__burger-btn span:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}
.header.menu-open .header__burger-btn span:nth-child(2) {
  transform: translateY(0px) rotate(-45deg);
}
.header.menu-open .header__burger-btn span:nth-child(3) {
  opacity: 0;
}
.header.menu-open .header__nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.header__mob_burger {
  display: none;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}
.header__mob_burger.menu-open {
  display: flex;
}
.header__mob_geo {
  display: none;
  width: 100%;
  background: #fff;
}
@media (max-width: 1024px) {
  .header__mob_geo.menu-open {
    display: flex;
  }
}

.header__mobile-ver {
  display: none;
}
@media (max-width: 650px) {
  .header__mobile-ver {
    display: flex;
  }
}

.modal {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 102;
  background: rgba(0, 0, 0, 0.5);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 101;
}
.modal__content-wrapper {
  position: absolute;
  width: 100%;
  max-width: 424px;
  z-index: 102;
}
.modal__body {
  position: relative;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
  border: 1px solid #e4e7e9;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  height: 100vh;
  overflow: auto;
  max-height: -moz-max-content;
  max-height: max-content;
}
.modal__body--fast-view {
  padding: 40px;
}
@media (max-width: 768px) {
  .modal__body--fast-view {
    padding: 10px;
  }
}

.popular-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  padding-bottom: 132px;
  padding-top: 92px;
  background: #f3f3f3;
}
@media (max-width: 1024px) {
  .popular-products {
    padding: 40px;
    margin-top: 80px;
  }
}
@media (max-width: 650px) {
  .popular-products {
    display: none;
  }
}
.popular-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1244px;
  max-height: 48px;
  margin-bottom: 40px;
  margin-top: 92px;
}
.popular-products__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
.popular-products__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0px 24px;
  max-width: 189px;
  min-height: 48px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.popular-products__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-swiper-container {
  position: relative;
  display: flex;
}
@media (max-width: 1024px) {
  .products-swiper-container {
    padding-bottom: 40px;
  }
}

.products-swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.products-swiper__btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.products-swiper__btn:hover {
  transform: translateY(-50%) scale(1.12);
}
.products-swiper__btn--prev {
  left: 0px;
  margin-left: -72px;
}
.products-swiper__btn--next {
  right: 0px;
  margin-right: -72px;
}
@media (max-width: 1725px) {
  .products-swiper__btn {
    margin-left: -48px;
    margin-right: -48px;
  }
}
@media (max-width: 1675px) {
  .products-swiper__btn {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (max-width: 1630px) {
  .products-swiper__btn {
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (max-width: 1600px) {
  .products-swiper__btn {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 1366px) {
  .products-swiper__btn {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (max-width: 1280px) {
  .products-swiper__btn {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 1024px) {
  .products-swiper__btn {
    margin-left: -24px;
    margin-right: -24px;
  }
}

.popular-products-catalog {
  background: #f3f3f3;
}
@media (max-width: 1024px) {
  .popular-products-catalog {
    padding: 40px;
    margin-top: 0px;
  }
}
@media (max-width: 650px) {
  .popular-products-catalog {
    display: none;
  }
}

.popular-products_product-card--top {
  background: #fff;
  margin-top: 0px;
}
@media (max-width: 1600px) {
  .popular-products_product-card--top {
    padding: 0px 40px;
  }
}
@media (max-width: 1600px) {
  .popular-products_product-card--top {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.popular-products_product-card--mid {
  background: #fff;
  padding-top: 147px;
  padding-bottom: 163px;
  margin-top: 0px;
}
@media (max-width: 1600px) {
  .popular-products_product-card--mid {
    padding: 0px 40px;
  }
}
@media (max-width: 1600px) {
  .popular-products_product-card--mid {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.popular-products_product-card--bot {
  background: #f3f3f3;
  margin-top: 0px;
  padding-top: 30px;
  padding-bottom: 160px;
}
@media (max-width: 1600px) {
  .popular-products_product-card--bot {
    padding: 0px 40px;
  }
}
@media (max-width: 1600px) {
  .popular-products_product-card--bot {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.mobile-products-gray {
  background: #f3f3f3;
}

.mobile-products {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .mobile-products {
    padding: 16px 40px;
  }
}
@media (max-width: 650px) {
  .mobile-products {
    display: flex;
    padding: 32px 16px;
    margin-top: 0px;
  }
}
.mobile-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1244px;
  max-height: 48px;
  margin-bottom: 40px;
  margin-top: 92px;
}
.mobile-products__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
.mobile-products__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0px 24px;
  max-width: 189px;
  min-height: 48px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-wrap: nowrap;
}
.mobile-products__tabs-wrapper {
  display: flex;
}
@media (max-width: 650px) {
  .mobile-products__tabs-wrapper {
    display: none;
  }
}
.mobile-products__content {
  margin-bottom: 16px;
  width: 100%;
}
.mobile-products__grid {
  display: none;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(400px, auto);
}
@media (max-width: 1024px) {
  .mobile-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .mobile-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.mobile-products__grid.active {
  display: grid;
}

@media (max-width: 1024px) {
  .container_adaptive {
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .container_adaptive {
    padding: 0px 16px;
  }
}

.product-info {
  margin-top: 80px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  max-width: 1288px;
  width: 100%;
}
@media (max-width: 650px) {
  .product-info {
    border: 0px solid #d9d9d9;
    margin-top: 0;
  }
}
.product-info__tabs {
  margin: 40px 0px;
  justify-content: center;
}
@media (max-width: 650px) {
  .product-info__tabs {
    margin: 0;
  }
}
.product-info__flex {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .product-info__flex {
    padding: 0px 24px;
  }
}
@media (max-width: 650px) {
  .product-info__flex {
    flex-direction: column;
    padding: 0;
    padding-top: 16px;
  }
}
@media (max-width: 1024px) {
  .product-info__flex--tab2 {
    gap: 16px;
  }
}
.product-info__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
  padding-right: 24px;
}
@media (max-width: 1024px) {
  .product-info__left {
    width: 33%;
  }
}
@media (max-width: 650px) {
  .product-info__left {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .product-info__left--tab2 {
    width: 100%;
  }
}
.product-info__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #282828;
}
.product-info__right {
  width: 50%;
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .product-info__right {
    width: 66%;
  }
}
@media (max-width: 650px) {
  .product-info__right {
    width: 100%;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .product-info__right--tab2 {
    flex-direction: row-reverse;
    width: 33%;
  }
}
@media (max-width: 650px) {
  .product-info__right--tab2 {
    width: 100%;
  }
}
.product-info__left-container {
  width: 50%;
}
@media (max-width: 1024px) {
  .product-info__left-container {
    display: flex;
    width: 100%;
  }
}
.product-info__section {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 16px;
}
@media (max-width: 650px) {
  .product-info__section {
    width: 100%;
  }
}
.product-info__section-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 8px;
}
@media (max-width: 1024px) {
  .product-info__section-2--tab2 {
    width: 100%;
  }
}
.product-info__section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-info__section li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-info__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-info__advantage-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.product-info__spec-name {
  display: flex;
  width: -moz-min-content;
  width: min-content;
  white-space: nowrap;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
}
.product-info__spec-value {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #5c5c5c;
}
.product-info__documents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-info__document {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-info__document-icon {
  padding: 16px;
  width: 199px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
}
.product-info__document-icon.document-cert {
  background: #fa8232;
}
.product-info__document-icon.document-info {
  background: #44ce52;
}
.product-info__document-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-info__document-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}
.product-info__document-link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  text-decoration: underline;
}
.product-info__document-link:hover {
  color: #a00707;
}
.product-info__text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.product-info__reviews {
  width: 100%;
  padding: 0 16px;
}
@media (max-width: 650px) {
  .product-info__reviews {
    padding: 0;
  }
}
.product-info__reviews-header {
  margin-bottom: 32px;
}
.product-info__rating-summary {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding-left: 24px;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .product-info__rating-summary {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-left: 0;
  }
}
.product-info__rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 32px;
  background: #f3f3f3;
  width: 25%;
  gap: 12px;
}
@media (max-width: 1024px) {
  .product-info__rating-big {
    width: 33%;
  }
}
@media (max-width: 650px) {
  .product-info__rating-big {
    width: 100%;
    padding: 0;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    padding: 16px;
    margin-top: 16px;
  }
}
.product-info__rating-number {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
  text-align: center;
  color: #282828;
}
@media (max-width: 650px) {
  .product-info__rating-number {
    font-size: 32px;
  }
}
.product-info__rating-stars .rating {
  justify-content: center;
}
.product-info__rating-stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
@media (max-width: 1024px) {
  .product-info__rating-stats {
    width: 66%;
  }
}
@media (max-width: 650px) {
  .product-info__rating-stats {
    width: 100%;
  }
}
.product-info__rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-info__stars-label {
  display: flex;
  width: 80px;
  font-size: 16px;
}
.product-info__star-icon {
  color: #FFC807;
}
.product-info__rating-bar {
  flex: 1;
  height: 8px;
  background-color: #E5E5E5;
  border-radius: 4px;
  overflow: hidden;
}
.product-info__rating-progress {
  height: 100%;
  background-color: #FFC807;
  border-radius: 4px;
}
.product-info__reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin-top: 16px;
  padding-left: 24px;
}
@media (max-width: 650px) {
  .product-info__reviews-list {
    padding-left: 0;
  }
}
@media (max-width: 650px) {
  .product-info__reviews-list .rating__stars svg {
    height: 32px !important;
  }
}
@media (max-width: 360px) {
  .product-info__reviews-list .rating__stars svg {
    height: 14px !important;
    width: 14px !important;
  }
}
@media (max-width: 650px) {
  .product-info .review__content--no-product {
    flex-direction: row;
    gap: 16px;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 650px) {
  .product-info .review__header--no-product {
    margin-bottom: 0;
    max-width: 50%;
  }
}
.product-info .review__avatar--no-product {
  width: 46px;
  height: 46px;
  margin-right: 12px;
}
@media (max-width: 650px) {
  .product-info .review__info--no-product {
    margin-right: 0;
    white-space: nowrap;
  }
}
.product-info .review__wrapper--no-product {
  gap: 8px;
}
@media (max-width: 650px) {
  .product-info .review__wrapper--no-product {
    flex-direction: column;
  }
}
.product-info__reviews-actions {
  display: flex;
}
.product-info__review-btn {
  border: 2px solid #c10404;
  border-radius: 8px;
  padding: 0px 24px;
  width: 272px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #c10404;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 24px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.product-info__review-btn:hover {
  background-color: #c10404;
  color: #fff;
}
.product-info__rating-count {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #5c5c5c;
}
.product-info__count {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #282828;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 56px;
  height: 22px;
}
.product-info__title-2 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #191c1f;
  padding-left: 24px;
}
@media (max-width: 650px) {
  .product-info__title-2 {
    padding-left: 0;
  }
}
.product-info__container {
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .product-info__container {
    padding: 0;
  }
}
.product-info__reviews-header-title {
  display: none;
}
@media (max-width: 650px) {
  .product-info__reviews-header-title {
    display: block;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #191c1f;
    margin-top: 16px;
  }
}
.product-info__reviews-btn {
  display: none;
  background-color: #c10404;
  border: 2px solid #c10404;
  border-radius: 8px;
  padding: 0px 24px;
  width: clamp(160px, 272px, 100%);
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
@media (max-width: 650px) {
  .product-info__reviews-btn {
    display: block;
    width: 100%;
    margin-top: 8px;
  }
}
.product-info__reviews-btn:hover {
  background-color: #a00707;
}

.separator {
  border: 1px solid #d9d9d9;
}
@media (max-width: 650px) {
  .separator {
    display: none;
  }
}

.delimiter-m4 {
  width: 100%;
  border: 1px solid #e4e7e9;
  margin: 4px 0;
}

.products-catalog {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 1024px) {
  .products-catalog {
    padding: 0px 40px;
  }
}
@media (max-width: 650px) {
  .products-catalog {
    padding: 0px 16px;
  }
}
.products-catalog__filter-panel {
  display: flex;
  justify-content: space-between;
}
.products-catalog__sort {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
@media (max-width: 768px) {
  .products-catalog__sort {
    display: none;
  }
}
.products-catalog__sort label {
  font-weight: 600;
  font-size: 18px;
}
.products-catalog__sort-mobile {
  display: none;
}
@media (max-width: 768px) {
  .products-catalog__sort-mobile {
    display: flex;
  }
}
.products-catalog__sort-mobile-btn {
  display: none;
}
@media (max-width: 768px) {
  .products-catalog__sort-mobile-btn {
    display: flex;
    width: 100%;
    max-width: 200px;
    background: #f3f3f3;
    border-radius: 8px;
    padding: 0px 8px;
    border: 1px solid transparent;
  }
  .products-catalog__sort-mobile-btn:hover {
    border: 1px solid #282828;
  }
}
.products-catalog__sort-mobile-btn-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #09090b;
  width: 100%;
}
.products-catalog__sort-mobile-btn-btn svg {
  width: 24px;
  height: 24px;
  margin: 8px;
}
.products-catalog__select-wrapper {
  position: relative;
}
.products-catalog__select-wrapper::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.products-catalog__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 8px 30px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  background-color: #fff;
  min-width: 180px;
}
.products-catalog__select:focus {
  outline: none;
  border-color: var(--color-primary, #C10404);
}
.products-catalog__counter {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #c10404;
}
@media (max-width: 1376px) {
  .products-catalog__counter {
    display: none;
  }
}
.products-catalog__counter-value {
  font-weight: 600;
  font-size: 18px;
}
.products-catalog__filter-btn {
  display: none;
}
@media (max-width: 1376px) {
  .products-catalog__filter-btn {
    display: flex;
    width: 100%;
    max-width: 136px;
    background: #f3f3f3;
    border-radius: 8px;
    padding: 0px 8px;
    border: 1px solid transparent;
  }
  .products-catalog__filter-btn:hover {
    border: 1px solid #282828;
  }
}
@media (max-width: 1376px) and (max-width: 650px) {
  .products-catalog__filter-btn {
    max-width: 36px;
    padding: 0px;
  }
}
.products-catalog__filter-btn-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #09090b;
}
@media (max-width: 650px) {
  .products-catalog__filter-btn-btn {
    display: none;
  }
}
.products-catalog__filter-btn-btn svg {
  width: 24px;
  height: 24px;
  margin: 8px;
}
.products-catalog__filter-btn-btn-mini {
  display: none;
}
@media (max-width: 650px) {
  .products-catalog__filter-btn-btn-mini {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
  }
}
.products-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .products-catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .products-catalog__grid {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.products-catalog__item {
  display: flex;
}
.products-catalog__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.products-catalog__page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 41px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #5c5c5c;
  transition: all 0.2s ease;
  border-bottom: 1.5px solid transparent;
}
@media (max-width: 650px) {
  .products-catalog__page-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.products-catalog__page-number--active {
  border-bottom: 1.5px solid #c10404;
  padding: 10px 0px;
  color: #c10404;
}
.products-catalog__page-number:hover {
  border-bottom: 1.5px solid #a00707;
}
@media (max-width: 650px) {
  .products-catalog__page-number:nth-child(n+7):nth-child(-n+7) {
    display: none;
  }
}
@media (max-width: 320px) {
  .products-catalog__page-number:nth-child(n+5):nth-child(-n+7) {
    display: none;
  }
}
.products-catalog__page-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
}
@media (max-width: 650px) {
  .products-catalog__page-arrow {
    height: 32px;
    width: 32px;
  }
  .products-catalog__page-arrow img {
    width: 32px;
    height: 32px;
  }
}
.products-catalog__page-arrow--prev {
  margin-right: 12px;
}
@media (max-width: 650px) {
  .products-catalog__page-arrow--prev {
    margin-right: 8px;
  }
}
.products-catalog__page-arrow--next {
  margin-left: 12px;
}
@media (max-width: 650px) {
  .products-catalog__page-arrow--next {
    margin-left: 8px;
  }
}
.products-catalog__seo-block-content {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 80px;
}
@media (max-width: 650px) {
  .products-catalog__seo-block-content {
    flex-direction: column;
    margin-top: 40px;
  }
}
.products-catalog__seo-block-content-text-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
.products-catalog__seo-block-content-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
}
@media (max-width: 1024px) {
  .products-catalog__seo-block-content-text {
    margin-right: 100px;
  }
}
@media (max-width: 650px) {
  .products-catalog__seo-block-content-text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.products-catalog__seo-block-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #282828;
}
@media (max-width: 650px) {
  .products-catalog__seo-block-tags {
    width: 100%;
  }
}
.products-catalog__seo-block-tags-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 442px;
  gap: 24px;
}
.products-catalog__seo-block-tags-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #282828;
}
.products-catalog__seo-block-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.products-catalog__seo-block-tags-tag {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 6px 12px;
  max-height: 32px;
}
.products-catalog__seo-block-tags-tag--active {
  border: 1px solid #c10404;
  background: rgba(202, 8, 8, 0.1);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #c10404;
}
.products-catalog__seo-block-tags-tag:hover {
  border: 1px solid #c10404;
}

.products-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 66px;
  padding-bottom: 160px;
  background: #f3f3f3;
}

.products-copy-mid {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 160px;
}

.products-copy-top {
  background: #fff;
  padding-top: 92px;
  padding-bottom: 132px;
}

.register {
  width: 100%;
}
.register__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #282828;
  margin-bottom: 20px;
}
.register__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.register__form label {
  display: block;
  text-align: start;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.register__input {
  width: 100%;
  max-height: 43px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.register__input:focus {
  border-color: #d32f2f;
  outline: none;
}
.register__input::-moz-placeholder {
  color: #aaa;
}
.register__input::placeholder {
  color: #aaa;
}
.register__password-wrapper {
  position: relative;
}
.register__password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 5px;
}
.register__password-toggle:hover {
  color: #333;
}
.register__button {
  border-radius: 8px;
  padding: 0px 24px;
  width: 100%;
  max-width: 360px;
  height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
.register__button--primary {
  background-color: #c10404;
  color: white;
  border: none;
}
.register__button:hover {
  background-color: #990303;
}
.register__alternative {
  text-align: center;
  margin-top: 24px;
}
.register__alternative-text {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #5c5c5c;
}
.register__social-buttons {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.register__social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 12px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #5c5c5c;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  background-color: #fff;
}
.register__social-button:hover {
  border: 1px solid #c10404;
  box-shadow: 0px 0px 2px 0px #a00707;
}
.register__social-icon {
  width: 20px;
  height: 20px;
}

.register__alternative-wrapper {
  display: flex;
  align-items: center;
}
.register__alternative-wrapper:before, .register__alternative-wrapper:after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #d9d9d9;
  margin: 0 10px;
}

.review-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 0 14px 0 rgba(196, 196, 196, 0.55);
  background: #fff;
  height: 100%;
  box-shadow: 0 0 14px 0 rgba(196, 196, 196, 0.55);
}
.review-card--with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
@media (max-width: 1024px) {
  .review-card--with-text {
    grid-template-columns: 1fr;
  }
}
.review-card--no-text {
  display: flex;
  flex-direction: column;
}
.review-card--with-text .review-card__wrapper {
  display: contents;
}
.review-card--no-text .review-card__wrapper {
  display: flex;
  flex-direction: column;
}
.review-card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.review-card__header {
  display: flex;
  align-items: center;
}
.review-card__product {
  margin-top: 16px;
  margin-bottom: 16px;
}
.review-card__avatar {
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-right: 14px;
}
.review-card__avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-card__info {
  display: flex;
  margin-right: 22px;
  flex-direction: column;
}
.review-card__name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 170%;
  text-transform: capitalize;
  color: #282828;
}
@media (max-width: 1024px) {
  .review-card__name {
    text-wrap: nowrap;
  }
}
.review-card__date {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #5c5c5c;
}
.review-card__product-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #5c5c5c;
}
.review-card__product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.review-card__text {
  display: flex;
  align-items: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #282828;
}

.review {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 0 14px 0 rgba(196, 196, 196, 0.55);
  background: #fff;
  height: 100%;
}
.review--with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
.review--no-text {
  display: flex;
  flex-direction: column;
}
.review-card--with-text .review__wrapper {
  display: contents;
}
.review-card--no-text .review__wrapper {
  display: flex;
  flex-direction: column;
}
.review__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.review__header {
  display: flex;
  align-items: center;
}
.review__product {
  margin-top: 16px;
  margin-bottom: 16px;
}
.review__avatar {
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-right: 14px;
}
.review__avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__info {
  display: flex;
  margin-right: 22px;
  flex-direction: column;
}
.review__name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 170%;
  text-transform: capitalize;
  color: #282828;
}
.review__date {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #5c5c5c;
}
.review__product-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  color: #5c5c5c;
}
.review__product-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.review__text {
  display: flex;
  align-items: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #282828;
}
.review--no-product {
  padding: 0;
  margin: 0;
  width: 100%;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.review--with-text {
  display: flex;
}
.review__wrapper--no-product {
  display: flex;
}

.review__content--no-product {
  max-width: 221px;
}
.review__name--no-product {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #191c1f;
}
.review__date--no-product {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #5c5c5c;
}
.review__product-title--no-product {
  display: none;
}
.review__product--no-product {
  display: none;
}
.review__header--no-product {
  margin-bottom: 16px;
}
.review__text--no-product {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  display: flex;
  align-items: flex-start;
}

.rating .rating__stars svg {
  width: 27px;
  height: 26px;
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .reviews {
    padding: 0px 40px;
  }
}
@media (max-width: 900px) {
  .reviews {
    padding: 0px 16px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .reviews__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .reviews__list {
    overflow-x: auto;
    width: 100%;
    margin-top: 16px;
  }
}
.reviews__list .review-card--with-text {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .reviews__list .review-card--with-text {
    grid-column: span 1;
  }
}
.reviews__list .review-card--no-text {
  grid-column: span 1;
}

@media (max-width: 1523px) {
  .reviews__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reviews__button {
  display: none;
}
@media (max-width: 650px) {
  .reviews__button {
    width: 100%;
    margin-top: 56px;
    height: 48px;
    border-radius: 8px;
    background: #c10404;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.reviews__button:hover {
  background: #a00707;
}

.seasonal-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .seasonal-products {
    padding: 16px 40px;
  }
}
@media (max-width: 650px) {
  .seasonal-products {
    display: none;
    padding: 32px 16px;
    margin-top: 0px;
  }
}
.seasonal-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1244px;
  max-height: 48px;
  margin-bottom: 40px;
  margin-top: 92px;
}
.seasonal-products__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
}
.seasonal-products__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0px 24px;
  max-width: 189px;
  min-height: 48px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  text-wrap: nowrap;
}
.seasonal-products__tabs-wrapper {
  display: flex;
}
@media (max-width: 650px) {
  .seasonal-products__tabs-wrapper {
    display: none;
  }
}
.seasonal-products__content {
  margin-bottom: 16px;
  width: 100%;
}
.seasonal-products__grid {
  display: none;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(400px, auto);
}
@media (max-width: 1024px) {
  .seasonal-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .seasonal-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.seasonal-products__grid.active {
  display: grid;
}

.sidebar {
  position: sticky;
  top: 0;
  height: auto;
  min-height: 100vh;
  max-width: 316px;
  background: #fff;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  margin-right: 24px;
  flex-shrink: 0;
  align-self: flex-start;
}
@media (max-width: 1376px) {
  .sidebar {
    display: none;
  }
}
.sidebar__search {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #d9d9d9;
}
.sidebar__icon {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__icon input {
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #d9d9d9;
}
.sidebar__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.sidebar__menu li {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 16px;
  transition: background 0.2s;
}
.sidebar__menu .sidebar__link,
.sidebar__menu .sidebar__link--outline {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar__menu .sidebar__link:hover,
.sidebar__menu .sidebar__link--outline:hover {
  background: #f3f3f3;
}
.sidebar__menu .sidebar__link--outline {
  border-top: 1px solid #d9d9d9;
}
.sidebar__menu .sidebar__icon {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delimiter {
  margin: 24px 0;
  border: 1px solid #d9d9d9;
}

.filter {
  max-width: 340px;
  width: 100%;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 0 14px 0 rgba(196, 196, 196, 0.55);
  background: #fff;
}
@media (max-width: 1376px) {
  .filter {
    display: none;
  }
}
.filter__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #191c1f;
  margin-bottom: 24px;
}
.filter__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
}
.filter__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter__section-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #191c1f;
}
.filter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 24px;
  gap: 16px;
}
.filter__toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.filter__toggle-button svg {
  transition: transform 0.2s ease;
}
.filter__toggle-button svg path {
  transition: stroke 0.2s ease;
}
.filter__toggle-button[aria-expanded=true] svg path {
  stroke: #282828;
}
.filter__toggle-button[aria-expanded=false] svg path {
  stroke: #C10404;
}
.filter__toggle-button:hover svg path {
  stroke: #C10404;
}
.filter__price-slider-visual {
  display: flex;
  align-items: center;
  position: relative;
  height: 37px;
  margin-left: 10px;
}
.filter__slider-value {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  color: #ce1853;
  white-space: nowrap;
  top: -24px;
  transform: translateX(-50%);
  min-width: 70px;
  text-align: center;
}
.filter__slider-track {
  flex-grow: 1;
  height: 3px;
  background-color: #e0e0e0;
  border-radius: 2px;
  position: relative;
  width: 100%;
}
.filter__slider-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: #ce1853;
  border-radius: 2px;
}
.filter__slider-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 2px solid #ce1853;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  margin-left: -7px;
  transition: transform 0.1s ease, background-color 0.1s ease;
}
.filter__slider-thumb:hover {
  background-color: #fce9ef;
}
.filter__slider-thumb.active, .filter__slider-thumb:active {
  transform: translateY(-50%) scale(1.2);
  background-color: #fce9ef;
  z-index: 3;
}
.filter__slider-thumb-hit-area {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 3;
  background-color: transparent;
  border-radius: 50%;
}
.filter__price-inputs {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.filter__price-input-label {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 14px;
  flex-grow: 1;
  background-color: #fff;
}
.filter__price-input-label:focus-within {
  border-color: #c10404;
}
.filter__price-input-prefix, .filter__price-input-suffix {
  font-size: 14px;
  color: #6c757d;
  line-height: 1;
}
.filter__price-input {
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  width: 100%;
  text-align: left;
  background: transparent;
  color: #5c5c5c;
}
.filter__price-input::-moz-placeholder {
  color: #5c5c5c;
  opacity: 0.8;
}
.filter__price-input::placeholder {
  color: #5c5c5c;
  opacity: 0.8;
}
.filter__price-input::-webkit-outer-spin-button, .filter__price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter__price-input[type=number] {
  -moz-appearance: textfield;
}
.filter__price-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.filter__price-input:focus::placeholder {
  opacity: 0.5;
}
.filter__price-input-prefix {
  margin-right: 4px;
}
.filter__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter__button {
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-align: center;
}
.filter__button--apply {
  background-color: #c10404;
  color: #fff;
  border-color: #a00707;
}
.filter__button--apply:hover {
  background-color: #8f0303;
  border-color: #8f0303;
}
.filter__button--reset {
  background-color: #fff;
  color: #c10404;
}
.filter__button--reset:hover {
  text-decoration: underline;
}

.about-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  background: #282828;
}
@media (max-width: 1024px) {
  .about-company {
    padding: 64px 40px;
  }
}
@media (max-width: 768px) {
  .about-company {
    padding: 32px 16px;
    margin-top: 24px;
  }
}
.about-company__container {
  margin-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .about-company__container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .about-company__container {
    flex-direction: column;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .about-company__container {
    display: none;
    margin-top: 0px;
  }
}
.about-company__btn {
  width: 100%;
  height: 100%;
  max-width: 190px;
  height: 48px;
  border-radius: 8px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .about-company__btn {
    max-width: 100%;
  }
}
.about-company__info {
  display: flex;
  flex-direction: column;
  margin-right: clamp(12px, 15vh, 180px);
  max-width: 404px;
}
@media (max-width: 768px) {
  .about-company__info {
    align-items: center;
    gap: 40px;
    margin: 0;
  }
}
.about-company__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  color: #fff;
}
@media (max-width: 768px) {
  .about-company__title {
    font-size: 32px;
  }
}
.about-company__subtitle {
  margin-top: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  .about-company__subtitle {
    font-size: 24px;
    text-wrap: wrap;
  }
}
.about-company__desc {
  margin-top: 22px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about-company__desc {
    margin: 0px;
    margin-top: 24px;
    font-size: 14px;
  }
}
.about-company__image {
  display: flex;
  border-radius: 12px;
}
.about-company__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.about-company__container-mobile {
  display: none;
}
@media (max-width: 768px) {
  .about-company__container-mobile {
    display: flex;
    width: 100%;
    height: 100%;
  }
}

.container-swiper {
  display: flex;
  justify-content: center;
}
@media (max-width: 950px) {
  .container-swiper {
    flex-direction: column;
    padding: 24px 16px;
  }
}

.main-swiper {
  overflow: hidden;
  position: relative;
  max-width: 1580px;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  .banner {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 440px) {
  .banner {
    margin-bottom: 26px;
    display: none;
  }
}
.banner-mobile {
  display: none;
}
@media (max-width: 440px) {
  .banner-mobile {
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 100%;
  }
}
.banner__fone {
  width: 100%;
}
.banner__fone-img {
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 950px) {
  .banner__fone-img {
    height: 540px;
  }
}
.banner__fone-img-content {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 82px;
  height: calc(100% - 50px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1440px) {
  .banner__fone-img-content {
    margin-right: 32px;
  }
}
@media (max-width: 1240px) {
  .banner__fone-img-content {
    height: calc(100% - 62px);
  }
}
@media (max-width: 950px) {
  .banner__fone-img-content {
    height: calc(100% - 100px);
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 10px;
  }
}
@media (max-width: 750px) {
  .banner__fone-img-content {
    height: calc(100% - 200px);
  }
}
@media (max-width: 440px) {
  .banner__fone-img-content {
    margin-top: 0;
    margin-right: 0px;
    position: absolute;
    width: 320px;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 10px;
  }
}
@media (max-width: 380px) {
  .banner__fone-img-content {
    margin-right: 0px;
  }
}
.banner__fone-img-content-padding {
  padding-right: 3px;
}
.banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .banner__content {
    padding: 0 40px;
  }
}
@media (max-width: 950px) {
  .banner__content {
    margin-top: 60px;
    padding: 0 16px;
  }
}
.banner__title, .banner__title--red {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 100%;
  color: #282828;
  margin-top: 64px;
}
@media (max-width: 1440px) {
  .banner__title, .banner__title--red {
    font-size: 68px;
    margin-top: 40px;
  }
}
@media (max-width: 1000px) {
  .banner__title, .banner__title--red {
    font-size: 55px;
  }
}
@media (max-width: 950px) {
  .banner__title, .banner__title--red {
    font-size: 34px;
    margin-top: 20px;
    white-space: nowrap;
  }
}
@media (max-width: 330px) {
  .banner__title, .banner__title--red {
    font-size: 28px;
  }
}
.banner__title--red {
  color: #c10404;
}
.banner__subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  color: #282828;
  margin-top: 24px;
}
@media (max-width: 1440px) {
  .banner__subtitle {
    font-size: 28px;
  }
}
@media (max-width: 1000px) {
  .banner__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 950px) {
  .banner__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 330px) {
  .banner__subtitle {
    font-size: 14px;
  }
}
.banner__btn {
  width: 100%;
  height: 100%;
  max-width: 190px;
  height: 48px;
  border-radius: 8px;
  background: #c10404;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.banner__btn:hover {
  background-color: #a00707;
}
.banner__btn:active {
  background-color: #c10404;
}
@media (max-width: 1440px) {
  .banner__btn {
    margin-top: 40px;
  }
}
@media (max-width: 950px) {
  .banner__btn {
    display: none;
  }
}
.banner__btn-mobile {
  display: none;
}
@media (max-width: 950px) {
  .banner__btn-mobile {
    display: flex;
    max-width: 100%;
    margin-bottom: 24px;
  }
}
.banner__btn-arrow {
  margin-left: 8px;
  width: 20px;
  height: 20px;
}
@media (max-width: 950px) {
  .banner__logo {
    display: flex;
    width: 137px;
  }
}
@media (max-width: 950px) {
  .banner__logo-img-med {
    width: 98px;
  }
}
@media (max-width: 950px) {
  .banner__logo-img-iform {
    width: 67px;
  }
}

.main-swiper .swiper-pagination {
  max-width: 16px;
  right: 24px;
  left: unset;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  z-index: 10;
}
@media (max-width: 1240px) {
  .main-swiper .swiper-pagination {
    right: 40px;
  }
}
@media (max-width: 440px) {
  .main-swiper .swiper-pagination {
    gap: 8px;
    height: 10px;
    flex-direction: row;
    bottom: 0;
    right: 0;
    max-width: 100%;
  }
}

.main-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  fill: rgba(255, 255, 255, 0.35);
  margin: 0;
}
@media (max-width: 440px) {
  .main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.main-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  border: 0;
  outline: 0;
}
@media (max-width: 440px) {
  .main-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5c5c5c;
  }
}

.LK_mobile_pass {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_mobile_pass__title {
  padding: 9px 16px;
  background: #f3f3f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #282828;
  margin-bottom: 8px;
}
.LK_mobile_pass__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.LK_mobile_pass__fields-wrapper {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_mobile_pass__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.LK_mobile_pass__label {
  display: flex;
  text-align: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.LK_mobile_pass__password-wrapper {
  position: relative;
  width: 100%;
}
.LK_mobile_pass__input {
  width: 100%;
  padding: 12px 16px;
  padding-right: 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
  min-height: 43px;
}
.LK_mobile_pass__input:focus {
  border-color: #c10404;
  outline: none;
}
.LK_mobile_pass__input::-moz-placeholder {
  color: #5c5c5c;
}
.LK_mobile_pass__input::placeholder {
  color: #5c5c5c;
}
.LK_mobile_pass__password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.LK_mobile_pass__password-toggle:hover {
  opacity: 0.7;
}
.LK_mobile_pass__forgot-link {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #c10404;
  text-decoration: none;
  align-self: flex-end;
  margin-top: 4px;
}
.LK_mobile_pass__forgot-link:hover {
  text-decoration: underline;
}
.LK_mobile_pass__submit-wrapper {
  padding: 16px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.LK_mobile_pass__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #c10404;
  padding: 14px 24px;
  width: 100%;
  min-height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}
.LK_mobile_pass__submit:hover {
  background-color: #a00707;
}

.LK_mobile_adress {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_mobile_adress__title {
  padding: 9px 16px;
  background: #f3f3f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #282828;
  margin-bottom: 8px;
}
.LK_mobile_adress__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.LK_mobile_adress__fields-wrapper {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_mobile_adress__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.LK_mobile_adress__label {
  display: flex;
  text-align: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.LK_mobile_adress__label span {
  color: #5c5c5c;
  font-size: 14px;
}
.LK_mobile_adress__label .required {
  color: #c10404;
}
.LK_mobile_adress__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
  min-height: 43px;
}
.LK_mobile_adress__input:focus {
  border-color: #c10404;
  outline: none;
}
.LK_mobile_adress__input::-moz-placeholder {
  color: #5c5c5c;
}
.LK_mobile_adress__input::placeholder {
  color: #5c5c5c;
}
.LK_mobile_adress__submit-wrapper {
  padding: 16px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.LK_mobile_adress__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #c10404;
  padding: 14px 24px;
  width: 100%;
  min-height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}
.LK_mobile_adress__submit:hover {
  background-color: #a00707;
}

.LK_mobile_settings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_mobile_settings__title {
  padding: 9px 16px;
  background: #f3f3f3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #282828;
  margin-bottom: 8px;
}
.LK_mobile_settings__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.LK_mobile_settings__fields-wrapper {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.LK_mobile_settings__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.LK_mobile_settings__label {
  display: flex;
  text-align: start;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  margin-bottom: 8px;
}
.LK_mobile_settings__label span {
  color: #5c5c5c;
  font-size: 14px;
}
.LK_mobile_settings__label .required {
  color: #c10404;
}
.LK_mobile_settings__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #282828;
  transition: border-color 0.3s;
  min-height: 43px;
}
.LK_mobile_settings__input:focus {
  border-color: #c10404;
  outline: none;
}
.LK_mobile_settings__input::-moz-placeholder {
  color: #5c5c5c;
}
.LK_mobile_settings__input::placeholder {
  color: #5c5c5c;
}
.LK_mobile_settings__submit-wrapper {
  padding: 16px;
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.LK_mobile_settings__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #c10404;
  padding: 14px 24px;
  width: 100%;
  min-height: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}
.LK_mobile_settings__submit:hover {
  background-color: #a00707;
}/*# sourceMappingURL=style.css.map */