@font-face {
  font-family: "Circe";
  src: url("/assets/lesprom/fonts/circe-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

.stats-container {
	margin: 60px 0 255px;
}

/* Заголовок */
.stats-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Сетка статистики */
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Элемент статистики */
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

/* Иконка */
.stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* Число */
.stat-number {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

/* Подпись */
.stat-label {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
}

@media(max-width: 1030px) {
  .stats-container {
    margin-bottom: 60px;
  }
}

/* Адаптивность (Tablet) */
@media (max-width: 992px) {
  .stats-grid {
    gap: 20px;
  }
  .stat-number {
    font-size: 40px;
  }
}

/* Адаптивность (Mobile) */
@media (max-width: 768px) {
  .stats-container {
    padding: 30px 20px;
  }

  .stats-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 40px;
  }

  .stat-item {
    flex-direction: row; /* На мобильном иконка слева, текст справа */
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
	width: 100%;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat-icon {
    margin-bottom: 0;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .stat-content {
    display: flex;
    flex-direction: column;
  }

  .stat-number {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .stat-label {
    max-width: 100%;
    font-size: 13px;
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .stat-number {
    font-size: 28px;
  }
  .stat-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .stat-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .stat-content {
    align-items: center;
  }
}

.reviews-section {
  margin: 60px 0;
}

.reviews-header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.reviews-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

/* Sidebar styles */
.reviews-sidebar {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: fit-content;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.rating-big {
  font-size: 64px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.stars-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star {
  color: #ffc107;
  font-size: 20px;
}

.star.empty {
  color: #e0e0e0;
}

.sidebar-info {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 46px;
}

.reviws-rating {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 25px;
}

.btn-review {
  display: inline-block;
  background: #bf3101;
  color: #fff;
  padding: 15px 31px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  width: fit-content;
  text-align: center;
}

.btn-review:hover {
  background: #bf360c;
  text-decoration: none;
}

/* Reviews list styles */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* .review-item {
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
} */

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.review-date {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars .star {
  font-size: 16px;
}

.reviews-list .review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  overflow-wrap: break-word;
}

/* .read-all {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
} */

.read-all-link {
  color: #bf3101;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.read-all-link:hover {
  color: #a12c05;
  text-decoration: underline;
}

.read-all-link::before {
  content: "»";
  font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
  .reviews-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .reviews-sidebar {
    order: 2;
    max-width: 400px;
  }

  .reviews-list {
    order: 1;
  }
}

@media (max-width: 600px) {
  .reviews-header {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .reviews-sidebar {
    padding: 20px;
  }

  .rating-big {
    font-size: 36px;
  }

  .review-header {
    flex-direction: column;
  }

  /* .review-item {
    padding-bottom: 20px;
  } */
}

.popular_product {
  margin: 60px 0;
}

.popular_product .new-products__el {
  box-shadow: none !important;
}

.features-container {
  margin: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-icon {
  width: 60px;
  height: 60px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .feature-title {
    font-size: 15px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-icon {
    margin-bottom: 10px;
  }
}

/* Стили футера */
footer {
  background-color: #292d32;
  color: #d1d5db;
  font-size: 14px;
  padding-top: 40px;
  padding-bottom: 20px;
}

/* Верхняя часть футера (сетка) */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

/* Ссылки меню */
.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  font-size: 20px;
  color: #fff;
  transition: all 0.3s;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Контакты (телефон и почта) */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a {
  font-size: 16px;
  font-weight: 500;
}

.footer-contacts a.email {
  text-decoration: underline;
  font-size: 14px;
  opacity: 0.9;
  transition: all 0.3s;
}

.footer-contacts a.email:hover {
  text-decoration: none;
}

/* Адреса */
.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.address-item p {
  color: #fff;
}

.pin-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Нижняя часть футера (полоса) */
.footer-bottom {
  background-color: #272727;
  padding: 20px 0;
  margin-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-text {
  font-size: 18px;
  color: #fff;
}

.review-text a {
  text-decoration: underline;
  font-size: 18px;
  color: #fff;
}

.review-text a:hover {
  text-decoration: none;
}

.policy-link a {
  color: #fff;
  text-decoration: underline;
}

.policy-link a:hover {
  text-decoration: none;
}

/* Адаптивность (Mobile) */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

#pdopage div.pagination,
#mse2_mfilter div.pagination {
  margin-top: 30px;
}

.share {
  margin-left: auto;
}

@media (max-width: 768px) {
  .share {
    margin-left: 0;
  }
}

.reviews__slider-wrap {
  align-self: start;
}

.reviews__img-wrap {
  max-width: 170px;
}

.reviews__content--full {
  flex-shrink: 1;
}

.reviews__content--full .reviews__text {
  max-width: 100%;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: 20px 0;
}

.product-table tbody {
  background-color: rgba(192, 49, 2, 0.88);
  color: white;
}

.product-table td {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-table td:first-child {
  font-weight: bold;
  width: 40%;
}

.product-table tr:hover {
  background-color: rgba(210, 70, 20, 0.95);
  transition: background-color 0.3s ease;
}

.product-table tr:nth-child(even):hover {
  background-color: rgba(220, 80, 30, 0.95);
}

.product-table tr:nth-child(even) {
  background-color: rgba(180, 45, 0, 0.9);
}

/* Адаптивные стили */
@media screen and (max-width: 600px) {
  .product-table {
    border: 0;
  }

  .product-table thead {
    display: none;
  }

  .product-table tr {
    display: block;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  }

  .product-table td {
    display: block;
    text-align: right;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .product-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 10px;
    font-weight: bold;
    text-align: left;
  }

  .product-table td:first-child {
    width: 100%;
    text-align: left;
    font-weight: bold;
    background-color: rgba(160, 40, 0, 0.9);
    border-bottom: none;
  }

  .product-table td:first-child:before {
    display: none;
  }
}

.ajax_form .error,
.order-error-field,
#msOrder .error,
.checkout-wrapper .error {
  border: 1px solid #d00;
  -webkit-animation: fieldShake 0.3s cubic-bezier(0.19, 0.49, 0.38, 0.79) 3;
  animation: fieldShake 0.3s cubic-bezier(0.19, 0.49, 0.38, 0.79) 3;
}
@-webkit-keyframes fieldShake {
  0 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  75% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fieldShake {
  0 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  75% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*#jGrowl {
	display: none!important;
}*/

.head-btns__item .not_empty,
.mob-auth__item .not_empty {
  font-size: 11px;
  font-weight: 300;
}

.head-btns__item.icon--order {
  flex-grow: 0;
  max-width: 125px;
}

.js #msCart [type="submit"][value="cart/change"] {
  display: block !important;
  border: none;
  box-shadow: none;
}

.ms-remove button {
  padding: 0;
  border: none;
  box-shadow: none;
  height: 18px;
}

/*.cart__td--product {
  flex-grow: 1;
}

.cart__tr {
  display: flex;
  align-items: center;
}*/

.news-wrapper .pagination,
.msearch2 .pagination {
  display: flex !important;
}

.card--vertical {
  width: 100%;
}

.form_field_error,
.form_field_error .error {
  display: block;
}

.form_field_error .error {
  border: 0;
  color: #fff !important;
  text-align: center;
  /*  margin-top: 5px;*/
  font-size: 12px;
}

.img-captcha {
  border-radius: 4px;
  margin-right: 5px;
  max-height: 40px;
  width: auto;
  min-width: 120px;
}

.popup__captcha {
  align-items: center;
}

.card__bottom,
.card,
.card__wrap {
  height: 100%;
}

.card--vertical .card,
.card--vertical .card__bottom,
.card--vertical .card__wrap {
  height: auto;
}

.result-empty {
  text-align: center;
  font-weight: 700;
  width: 100%;
}

.white-block ul {
  margin-bottom: 15px;
  padding-left: 15px;
}

.white-block li {
  list-style-type: disc;
}

.card__btn:disabled {
  opacity: 0.5;
}

.old-price {
  color: #c93403;
  position: relative;
}

.old-price:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c93403;
}

#pdopage .btn-more {
  display: none !important;
}

.two-col__col .text-block {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.two-col__col .text-block .btn {
  margin-top: auto;
}

div.blue-block__caption {
  pointer-events: none;
}

.product__col--100 {
  max-width: 100% !important;
  width: 100% !important;
}

.card__count-type {
  display: none;
}

.card__count-type.active {
  display: flex;
}

.card__block-caption a {
  color: #292d32;
}

.lk-form__inp-wrap .error {
  color: #292d32 !important;
}

.js-addresses-form {
  display: none;
}

.js-addresses-form.active {
  display: block;
}

#msOrder {
  margin-top: 0;
}

.single-news__text img {
  max-width: 800px;
  width: 100%;
}

.news-gallery {
  height: 450px;
}

.news-gallery .thumbs-gallery__img {
  position: absolute;
  top: 0;
  left: 0;
}

.news-gallery .slider-wrapper,
.news-gallery .thumbs-gallery__top {
  height: 100%;
}

@media (max-width: 768px) {
  .news-gallery {
    height: 260px;
  }
}

.product__col:nth-child(2) {
  flex: auto;
}

.header__bottom--lk-menu,
.mob-lk-menu {
  z-index: 50;
}

.msoptionsprice-spinner {
  display: none !important;
}

body {
  font-size: 16px;
  line-height: 27px;
  font-family: "Inter", TTSquares, sans-serif;
  color: #000;
  font-weight: 400;
  background-color: #fff;
  text-align: left;
}

p {
  font-size: 16px;
  line-height: 27px;
  color: #000;
  font-weight: 400;
  text-align: left;
}
.breadcrumbs__a,
.breadcrumbs__a:hover {
  color: #2b2b2b;
  font-size: 14px;
}
.breadcrumbs__li--current {
  font-weight: 400;
}
.header {
  position: static;
}
.main.first-block {
  margin-top: 0;
}
.header__top {
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 0;
}
.top-header-wrap {
  display: flex;
  gap: 30px;
  align-items: center;
}
.top-mail {
  margin-left: auto;
}
.top-menu {
  display: flex;
  gap: 15px;
}
.top-menu a {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  color: #000;
}
.top-mail p {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  color: #000;
}
.top-mail p a {
  text-decoration: underline;
  color: #c03102;
}
.top-mail p a:hover {
  text-decoration: none;
}

.header__middle {
  background-image: none;
  padding: 23px 0 10px;
}
.top-middle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-wrap img {
  min-width: 267px;
}
.logo-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  max-width: 235px;
}
.top-contacts {
  display: block;
}
.top-contacts .work-time {
  font-weight: 400;
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
}
.top-contacts a {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  display: block;
}
.top-btn-wrap {
  display: flex;
  gap: 20px;
}
.header__btn {
  border: 1px solid #c03102;
  border-radius: 3px;
  width: 190px;
  min-width: auto;
  height: 50px;
  box-shadow: none;
  background-image: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #c03102;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btn:hover {
  opacity: 0.7;
  box-shadow: none;
  color: #c03102;
}
.callback-btn {
  border-radius: 3px;
  width: 190px;
  height: 50px;
  background: #c03102;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.callback-btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

.header__bottom {
  padding: 10px 0;
  background-image: none;
}
.bottom-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.mob-catalog--lk {
  width: 25%;
  z-index: 12;
}
.head-catalog__caption:before {
  width: 24px;
  height: 24px;
  background-image: url(../img/png-cat.png);
  left: 25px;
}
.head-catalog__caption::after {
  display: none;
}
.head-catalog__caption {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: #c03102;
  border-radius: 3px;
  width: 216px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
}

.search {
  border-radius: 3px;
  width: 686px;
  height: 50px;
}
.search__input {
  background: #f4f4f4;
  font-size: 14px;
  color: #474747;
}
::placeholder {
  color: #474747;
  opacity: 1;
}
.search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  border-radius: 0 3px 3px 0;
  width: 93px;
  height: 50px;
  background: rgba(192, 49, 2, 0.88);
  text-transform: uppercase;
}
.head-btns {
  margin: 0;
  border-radius: 3px;
  width: 258px;
  height: 50px;
  background: #3b3b3b;
  justify-content: space-between;
}
.icon--signup:before,
.icon--order:before {
  display: none;
}
.user-img {
  margin-left: 0 !important;
}
.head-btns__item {
  font-weight: 500;
  font-size: 12px;
  line-height: 158%;
  color: #fff;
}
.head-btns__item:hover .head-btns__text:before,
.head-btns__item .head-btns__text:before {
  display: none;
}
.icon--signup .head-btns__text {
  max-width: 50px;
}
.icon--order .head-btns__text,
.icon--order .not_empty {
  width: 75px;
  font-size: 12px;
  font-weight: 500;
}
.icon--order .not_empty span {
  width: 75px;
  display: inline-block;
}
.head-btns__item.icon--order {
  max-width: 145px;
}
.cart-img {
  margin: 0px 20px 0 0 !important;
  position: relative;
}
.cart-img span {
  position: absolute;
  top: -9px;
  right: -15px;
  border-radius: 22px;
  padding: 0;
  width: 19px;
  height: 18px;
  background: #c03102;
  font-weight: 400;
  font-size: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-catalog__caption {
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}
.popup__caption,
.popup__text,
.popup__warning {
  color: #fff;
}
@media (max-width: 1199px) {
  .logo-desc {
    display: none;
  }
  .search {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .top-middle-wrap {
    flex-direction: column;
    gap: 15px;
  }
  .search {
    width: 40%;
  }
  .top-header-wrap {
    flex-direction: column;
  }
  .top-mail {
    margin-left: 0;
  }
}
@media (max-width: 830px) {
  .bottom-header-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
  .search {
    width: 100%;
    order: 1;
  }
  .mob-catalog--lk {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__top {
    display: block !important;
  }
  .top-menu {
    flex-wrap: wrap;
    gap: 0 15px;
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .top-btn-wrap,
  .bottom-header-wrap {
    flex-direction: column;
  }
  .header__btn {
    margin-left: 0;
  }
  .header__btn,
  .callback-btn,
  .head-catalog__caption {
    width: 260px;
    max-width: 260px;
  }
}

/* footer {
  background: #2e2e2e;
  color: #fff;
}
.footer-wrap {
  padding: 26.5px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.f-contacts .phone {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.f-contacts .mail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.f-contacts .mail a {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}
.f-contacts .phone:hover,
.f-contacts .mail a:hover {
  text-decoration: underline;
}
.f-address-one {
  display: flex;
  align-items: flex-start;
  max-width: 300px;
  gap: 10px;
}
.f-address-two {
  display: flex;
  align-items: flex-start;
  max-width: 330px;
  gap: 10px;
}
@media (max-width: 1030px) {
  .footer-wrap {
    flex-direction: column;
    align-items: center;
  }
  .f-address-one,
  .f-address-two {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .f-address-one span,
  .f-address-two span {
    text-align: center;
  }
  .scroll-to-top {
    bottom: 20px;
  }
} */

.thumbs-gallery--main .thumbs-gallery__img {
  object-fit: contain;
}

.advantages-wrap {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 90px;
}
.advantages-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.advantages-item img {
  max-width: 50px;
}
.advantages-item span {
  font-weight: 500;
  font-size: 15px;
  line-height: 167%;
}
@media (max-width: 930px) {
  .advantages-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .advantages-wrap br {
    display: none;
  }
}
@media (max-width: 700px) {
  .advantages-wrap {
    grid-template-columns: 1fr;
  }
}

.section {
  margin-top: 90px;
}
h1,
.caption--h1 {
  line-height: 1.2;
  font-size: 28px;
  font-weight: bold;
  margin-left: 0;
  padding: 0;
  background: 0;
  color: #000;
  box-shadow: none;
}
h2,
.h2,
h3,
h2.caption,
div.caption {
  line-height: 1.2;
  font-size: 26px;
  font-weight: bold;
  margin-left: 0;
  padding: 0;
  background: 0;
  color: #000;
  box-shadow: none;
  margin-bottom: 40px;
}
.h2 {
  margin: 40px 0 !important;
}

.new-products {
  max-width: 1200px;
}
.new-products__a {
  border-radius: 5px;
  width: 348px;
  height: 60px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
}
.new-products__item.active .new-products__a {
  background: #9b9b9b;
}
.new-products__slider {
  padding: 0 0 54px 0;
  margin: 0;
}
.new-products .swiper-button-next,
.new-products .swiper-button-prev {
  top: 25%;
}
.new-products .swiper-button-next {
  right: 0%;
}
.new-products__el {
  margin-right: 7px;
  margin-bottom: 7px;
  padding: 0;
  width: 32.7%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 3px;
}
.new-products__products {
  margin: 0;
  margin-top: 0;
}
.card__wrap {
  border-radius: 3px;
  box-shadow: none;
}
.card__img {
  width: 321px;
  height: 230px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card__name {
  text-decoration: none !important;
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #000;
  padding: 30px 0 15px;
  border-bottom: 2px solid #e7e7e7;
  min-height: 128px;
}
.card__bottom {
  padding: 0px 35px;
}
.card__img-wrap:hover .card__img {
  transform: scale(1.05) translate(-50%, -50%);
}
.card__code {
  margin: 10px 0 5px;
  width: 100%;
}
.card__code span {
  font-weight: 400;
  font-size: 14px;
  line-height: 193%;
  color: #747474;
}
.card__price span {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #000;
}
.card__price-for span,
.card__input-wrap input {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.card__price-for-inputs .card__input:checked + .card__label {
  box-shadow: none;
  font-weight: 500;
  color: #c03102;
  font-size: 14px;
}
.card__price-for-inputs label {
  font-size: 14px;
}

.card__block.other {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card__block.other .card__price {
  max-width: 50%;
  font-weight: 700;
  font-size: 20px;
}
.card__block.other .card__stock {
  max-width: 50%;
  font-weight: 400;
  font-size: 15px;
  color: #000;
}
.card__block.other .in-stock:before {
  display: none;
}
.product__count span {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.js-cart-add.card__btn.btn {
  border-radius: 3px;
  width: 247px;
  height: 45px;
  background: #c03102;
  box-shadow: none;
  max-width: 100%;
}
.js-cart-add.card__btn.btn span {
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__favorites,
.card__favorites.added {
  position: static;
  background-image: url(/assets/lesprom/img/free-icon-heart.png);
}
.card__favorites.added {
  opacity: 0.5;
}
.card__block--price {
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .new-products__el {
    width: 50%;
  }
  .new-products__a {
    border-radius: 5px;
  }
  .new-products__a {
    width: auto;
  }
  .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 768px) {
  .caption {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .new-products__el {
    width: 100%;
  }
}
.partners-slider .partners-item img {
  margin: 0 auto;
}

.section.contacts {
  position: relative;
  height: 525px;
}
.section.contacts .blocks__content {
  position: absolute;
  height: 525px;
  top: -175px;
  right: 50%;
}
#question-form {
  position: absolute;
  box-shadow: 0 -2px 30px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 4px;
  width: 552px;
  top: 10%;
  left: 4%;
  padding: 62px 48px;
}
#question-form .form__row {
  flex-direction: column;
}
#question-form .title {
  font-weight: 600;
  font-size: 32px;
  color: #bf3101;
  width: 100%;
  margin-bottom: 19px;
}
#question-form .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 40px;
}
#question-form .form__input-wrap--66 {
  width: 100% !important;
  position: relative;
}
#question-form .form__input-wrap--66::before {
  position: absolute;
  content: "";
  background-image: url(/assets/lesprom/img/envelope.png);
  width: 20px;
  height: 20px;
  padding: 0;
  top: 15px;
  left: 20px;
}
#question-form .form__textarea {
  resize: none;
  height: 100%;
  max-height: 124px;
  font-weight: 400;
  font-size: 16px;
  padding: 20px 32px;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  color: #000;
  border-radius: 4px;
  font-family: "Circe", "Inter", TTSquares, sans-serif;
}

#question-form .form__checkbox-wrap {
  margin: 25px 0;
}

#question-form .checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

#question-form .form__checkbox {
  margin-right: 10px;
  width: auto;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-color: #f2f2f2;
}

#question-form .checkbox-text {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
}

#question-form .form__textarea::placeholder,
#question-form input::placeholder {
  font-size: 16px;
  color: #000;
  opacity: 1;
  font-family: "Circe", "Inter", TTSquares, sans-serif;
}
#question-form .form__input-wrap {
  width: 100%;
  padding: 0;
  margin-bottom: 25px;
}
#question-form .form__input-wrap:nth-child(4) {
  margin-bottom: 0;
}
#question-form .form__input-wrap input {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  padding: 20px 32px;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  color: #000;
  border-radius: 4px;
  font-family: "Circe", "Inter", TTSquares, sans-serif;
}
#question-form .form__input-wrap--67 {
  position: relative;
}
#question-form .form__input-wrap--67::before {
  position: absolute;
  content: "";
  background-image: url(/assets/lesprom/img/call.png);
  width: 20px;
  height: 20px;
  padding: 0;
  top: 16px;
  left: 20px;
}
#question-form .btn {
  border-radius: 4px;
  height: 63px;
  background: #e75d14;
  box-shadow: none;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: fit-content;
  padding: 22px 36px;
}
.section.contacts .blocks__content {
  margin: 0;
  padding: 0;
}
@media (max-width: 1030px) {
  .section.contacts {
    height: auto;
  }

  .section.contacts .blocks__content {
    position: relative;
    top: auto;
    right: auto;
    height: auto;
  }

  #question-form {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  #question-form {
    width: 100%;
    padding: 30px;
  }
  #question-form .desc,
  #question-form .form__input-wrap {
    margin-bottom: 20px;
  }
  #question-form .btn {
    margin-top: 10px;
  }
}
@media (max-width: 660px) {
  #question-form {
    width: 100%;
    padding: 35px;
    position: static;
  }
  .section.contacts .container {
    display: flex;
    flex-direction: column;
  }
  .section.contacts iframe {
    order: 1;
  }
}

.forms-block #question-form {
  margin: 0 auto 50px;
  position: static;
}
.white-block {
  background-image: none;
  padding: 0;
}

.card--vertical {
  margin-right: 7px;
  margin-bottom: 7px;
  padding: 0;
  width: 32.7%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 3px;
}
.card--vertical .card__wrap {
  flex-direction: column;
  align-items: center;
}
.card--vertical .card__top {
  position: relative;
  height: 0;
  padding-top: 70%;
  border-radius: 4px;
  overflow: hidden;
}
.card--vertical .card__block {
  width: 100%;
}
.card--vertical .card__block--count,
.card--vertical .card__price-for,
.card--vertical .card__price-for-inputs {
  flex-direction: row;
  align-items: center;
}
.card--vertical .card__price-for-inputs {
  margin-top: 0;
}
.card--vertical .card__block-caption {
  font-size: 14px;
  font-weight: 400;
  margin-right: 5px;
}
.card__count-type .card__input-wrap {
  margin-left: 15px;
}
.card__block--code-78 {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card--vertical .card__price {
  width: 50%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.card__block--code-78 .card__stock {
  width: 50%;
  justify-content: end;
}
.card--vertical .card__btn {
  margin: 20px 0 10px;
}
.card--vertical .card__block--price {
  align-items: flex-start;
}
.card--vertical .in-stock:before {
  display: none;
}
.card--vertical .card__stock-status span {
  font-size: 14px;
  display: block;
}
@media (max-width: 1199px) {
  .card--vertical {
    width: 49%;
  }
}
@media (max-width: 700px) {
  .card--vertical {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .card--vertical {
    width: 100%;
  }
}

.product__col:nth-child(1) {
  width: 37.5%;
  padding: 0;
}
.product__col:nth-child(2) {
  padding: 0;
}
.ms2_form {
  margin: 25px 0 95px;
  gap: 70px;
}
.ms2_form .card__block-caption {
  margin-right: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 200%;
  color: #000;
  margin-top: 12px;
}
.ms2_form h1 {
  margin-bottom: 0;
}
.ms2_form .in-stock:before {
  background-image: url(/assets/lesprom/img/tick-mark.png);
  top: 17px;
  left: -30px;
  position: absolute;
}
.ms2_form .product__stock {
  margin-left: 30px;
  margin-bottom: 4px;
  width: 100%;
}
.ms2_form .card__stock {
  position: relative;
}
.ms2_form .product__vat {
  font-weight: 400;
  font-size: 15px;
  line-height: 200%;
  color: #555;
  margin-bottom: 4px;
  width: 100%;
}
.ms2_form .msoptionsprice-cost.msoptionsprice-342 {
  font-weight: 600;
  font-size: 24px;
}
.ms2_form .product__price {
  margin-bottom: 20px;
}
.ms2_form .card__price-for span {
  margin-top: 0px;
}
.ms2_form .product__count,
.ms2_form .product__btn-wrap {
  order: 1;
}
.ms2_form .card__price-for-inputs {
  margin-top: -2px;
}
.ms2_form .product__price span:nth-child(1) {
  margin-right: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  color: #000;
  display: block;
}
.ms2_form .product__price-for,
.ms2_form .product__quantity-meter,
.ms2_form .product__table {
  width: 100%;
}
.ms2_form .product__btn-wrap {
  width: 33%;
  margin-top: 0;
}
.ms2_form .product__count {
  width: 24%;
}
.ms2_form .product__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.ms2_form .js-cart-add.card__btn.btn {
  width: 200px;
  height: 50px;
}

.new-products__el .card__bottom {
  height: auto;
}
.new-products__el .ms2_form,
.card--vertical .ms2_form {
  margin: 0;
}

.card__minus,
.card__plus {
  background-color: #292d3200;
}
.card__minus:before {
  content: "";
  background: url(https://lesprom.org/assets/lesprom/img/icon-right-arrow2.png);
  width: 16px;
  height: 16px;
  top: 3px;
}
.card__plus:before {
  content: "";
  background: url(https://lesprom.org/assets/lesprom/img/icon-right-arrow.png);
  width: 16px;
  height: 16px;
  top: 3px;
}
.card__count {
  font-weight: 600;
  font-size: 16px;
  line-height: 219%;
  color: #000;
  border: none;
  background-color: #f9f9f900;
  margin: 0;
  width: 70px;
}
.card__counter {
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  width: 136px;
  height: 50px;
  padding: 0px 20px;
}
.product__one-click-btn.one-other {
  order: 1;
}
.product__one-click-btn.one-other a {
  border: 1px solid #c03102;
  border-radius: 3px;
  width: 200px;
  height: 50px;
  background: none;
  position: static;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #c03102;
  box-shadow: none;
}

.thumbs-gallery .one-click-card:hover .product__one-click-btn {
  display: none;
}
.catalog-cards__name {
  background: #f4f4f4;
  background-image: none;
  box-shadow: none;
}
.news__img {
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .news {
    margin: 0;
  }
}

.akcii {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.akcii-item {
  box-shadow: 0 6px 20px #00000026;
}

.akcii-item .akcii-item__img {
  display: inline-block;
  height: 300px;
  object-fit: fill;
  margin: 0;
  margin-bottom: 13px;
}

.akcii-item__date {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #333;
  padding: 0 19px;
}

.akcii-item__text {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #c03102;
  padding: 13px 19px 15px;
}
.tabbb {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.tabbb td,
.tabbb th {
  border: 1px solid #3b3b3b;
  padding: 5px;
}
.slider-crosssale__one-click-btn .btn {
  padding: 20px 3px;
}

a.slider-crosssale__img-wrap span {
  text-align: center;
  color: #000;

  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 60px;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .akcii {
    gap: 40px;
  }
}
.product__row.product__row-flex {
  justify-content: space-between;
  margin: 0;
}
.product__row.product__row-flex .product__col {
  width: 48%;
  flex: initial;
}
@media (max-width: 702px) {
  .akcii {
    grid-template-columns: repeat(1, 1fr);
  }
  .product__row.product__row-flex {
    flex-wrap: wrap;
  }
  .akcii-item .akcii-item__img {
    width: 100%;
  }
  .product__row.product__row-flex .product__col {
    width: 100%;
  }
}

.thumbs-gallery__img {
  max-height: 430px;
}

.for_img img {
  width: 100% !important;
  height: 380px;
  object-fit: cover;
}
.for_img-sliader .slick-list {
  margin: 0 15px;
}
.for_img-sliader .slick-slide {
  margin: 0 15px;
}

html {
  overflow-x: hidden;
}

.sale{
    margin-top: 100px;
    margin-bottom: 100px;
}
.sale_slider_title{
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 700;
    line-height: 32px);
}
.sale_slide_desc{
    position: relative;
    z-index: 1;
}
.sale_slide{
    height: 307px;
    padding-top: 63px;
    padding-left: 97px;
}
.sale_slide img{
    position: absolute;
    left: 0;
    top: 0;
}
.sale_slide_title{
    margin-bottom: 40px;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}
.sale_slide p{
    margin-bottom: 40px;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    line-height: 24px;
}
.sale_slide a{
    padding: 10px 28px;
    border-radius: 3px;
    background: rgba(192, 49, 2, 1);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}
.sale .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
}

.questions_title{
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 700;
}
.questions_item{
    padding-top: 32px;
    border-top: 1px solid rgba(196, 196, 196, 1);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: flex-start;
}
.questions_item_number{
    margin-right: 32px;
    color: rgba(191, 49, 1, 1);
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
}
.questions_item_title{
    font-size: 25px;
    font-weight: 500;
    line-height: 130%;
    max-width: 404px;
}
.questions_item p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}
.questions_item a{
    text-decoration: none;
    text-align: center;
    padding: 19px 25px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid rgba(59, 59, 59, 1);
    border-radius: 3px;
    color: rgba(0, 0, 0, 1);
    display: inline-block;
}
.questions_item_desc{
    width: 608px;
}
.questions_wrapper{
    margin-bottom: 228px;
}
.questions_item img{
    margin-left: auto;
    margin-right: 40px;
}

@media (max-width: 767px) {
    .sale_slide{
        padding-left: 25px;
        padding-top: 40px;
    } 
    .sale_slide_title{
        font-size: 24px;
        line-height: 30px;
    }
    .sale_slide p{
        font-size: 18px;
    }    
    .sale_slider .swiper-pagination{
        bottom: 5px;
    }
    .questions_item{
        flex-direction: column;
    }
    .questions_item img{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .questions_item_desc{
        width: 100%;
    }
    .questions_item img{
        margin-right: auto;
        margin-left: 0;
    }
}

.main.first-block {
    padding-top: 0;
}
.hero-main__wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 145px 87px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    overflow: hidden;
}
.hero-main__wrap:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #00000066;
}
.hero-main__title {
    max-width: 756px;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.hero-main__btns {
    display: flex;
    align-items: stretch;
    gap: 20px 40px;
}
.btn-red {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 56px;
    background: #C03102;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none !important;
}
.btn-red:hover {
    opacity: 0.7;
}
.btn-border {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 10px;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none !important;
}
.btn-border:hover {
    background: #fff;
    color: #000;
}

.template-blocks {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 100px;
    margin: 100px 0;
}
.template-blocks > section {
    margin: 0;
    padding: 0;
}
.template-blocks .questions_wrapper {
    margin: 0;
}
.our-works {
    padding: 50px 0;
}
.our-works .h2{
    margin: 0 0 40px 0 !important;
}
.blocks__item[style*="padding"] {
    padding: 0 !important;
}
.blocks__item .container {
    padding: 0;
}
.product-tabs__btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.product-tabs__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border: 1px solid #c03102;
    border-radius: 3px;
    color: #c03102;
    cursor: pointer;
}
.product-tabs__btn:hover,
.product-tabs__btn.active {
    background: #c03102;
    color: #fff;
}
.product-tabs__content {
    margin-top: 25px;
    display: none;
}
.product-tabs__content.active {
    display: block;
}
.benefit {
    padding: 60px 0;
}
.benefit__title {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 1px;
}
.benefit-items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
.benefit-item__title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #C03102;
}
.benefit-item__text {
    max-width: 150px;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
}

#category-id-17 .advantages-wrap {
    margin-bottom: 0;
}

ul.list {
    padding-left: 24px;
}
ul.list li {
    list-style: disc;
}

.banner-menu a {
    display: block;
    padding: 25px 100px;
    background-image: url('/assets/images/banner-bg.png');
    background-position: center;
    background-size: cover;
    font-weight: 700;
    font-size: 42px;
    line-height: 51px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
}

@media (max-width: 767px) {
    .hero-main__wrap {
        padding: 75px 15px;
    }
    .product-tabs__btn {
        padding: 10px 20px;
    }
    .ms2_form .product__count {
        width: auto;
        margin-right: 10px;
    }
    .banner-menu a  {
        padding: 25px;
        font-size: 32px;
        line-height: 41px;
    }
}
@media (max-width: 525px) {
    .hero-main__btns {
        flex-direction: column;
    }
    .banner-menu a  {
        font-size: 26px;
        line-height: 1.25;
        text-align: center;
    }
}


