﻿/* 1. Заставляем html/body занимать всю высоту */
html {
  background-color: #232323;
}

html,
body {
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar-track {
  box-shadow: 0px 0px 3px #000 inset;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #ff9e00;
  box-shadow: 0px 1px 1px rgb(75, 62, 23) inset;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* 2. Делаем body flex-контейнером в колонку */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom);
}

/* 3. Ваш контейнер-обёртка (container-fluid) — пусть растягивается */
body>.container-fluid,
body>.container {
  flex: 1 1 auto;
  /* позволит контейнеру занять всё доступное пространство между header и footer */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 0 auto;
}

h3,
.h3 {
  text-align: center;
}

/* 4. А main (с классом mm-main) — растягивается внутри row */
.mm-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.mm-contact-card,
.mm-contact-form-wrapper,
.mm-extra-info {
  border-color: var(--mm-accent) !important;
}

.form-control {
  border: var(--bs-border-width) solid var(--mm-accent);
}

.form-control[type="search"] {
  border-right: none;
}

li.nav-item,
h5#mainOffcanvasLabel {
  font-size: x-large;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .mm-mobile-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
  }
}

div#desktopSearchSuggestions a {
  color: var(--mm-text) !important;
}

.mm-mobile-header-icon {
  color: var(--mm-accent) !important;
}

.mm-mobile-header-icon:hover {
  color: var(--mm-accent-dark) !important;
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--mm-accent);
  border-color: var(--mm-accent-dark);
  color: black !important;
  box-shadow: none !important;
}

.page-link:focus {
  box-shadow: none !important;
}

/* 5. Предотвратим сжатие footer */
footer {
  flex-shrink: 0;
  padding-bottom: calc(env(safe-area-inset-bottom) + 1rem);
}

/* .mm-section {
  padding: 3rem 0;
} */

.navbar-toggler-icon {
  -webkit-mask-image: var(--bs-navbar-toggler-icon-bg) !important;
  mask-image: var(--bs-navbar-toggler-icon-bg) !important;
  background-color: var(--mm-accent-dark) !important;
}

.navbar-toggler {
  color: var(--mm-accent);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--mm-accent);
}


.mm-section--dark {
  background: #232323;
  color: #fff;
}

.mm-cta-btn {
  background: #F9A825;
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
  transition: background .2s, box-shadow .2s;
}

.mm-cta-btn:hover,
.mm-cta-btn:focus {
  background: #db8e11;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.10);
}

.mm-offcanvas {
  width: 270px;
}

.mm-offcanvas__item {
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  color: #232323;
  transition: background .15s;
}

.mm-offcanvas__item:hover,
.mm-offcanvas__item:focus {
  background: #f5f5f5;
  color: #F9A825;
}

.mm-card-product {
  border: 1px solid #eee;
  border-radius: .7rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .07);
  transition: box-shadow .2s, transform .2s;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mm-card-product .card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: end;
}

.alert {
  width: fit-content;
  margin: auto;
}

.mm-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F9A825;
  color: #fff;
  font-weight: bold;
  font-size: .95rem;
  padding: .3em .7em;
  border-radius: .5em;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .10);
  z-index: 2;
  pointer-events: none;
}

.mm-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #232323;
}

.mm-horizontal-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  /* scrollbar-width: thin; Removed for better browser compatibility */
  scroll-snap-type: x mandatory;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mm-horizontal-scroll>* {
  flex: 0 0 270px;
  scroll-snap-align: start;
}

.mm-horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.mm-horizontal-scroll::-webkit-scrollbar-thumb {
  background: #F9A825;
  border-radius: 4px;
}

/* ===== Аккордеон в едином стиле ===== */
.mm-accordion {
  /* обёртка */
  border: 0;
}

.mm-accordion .accordion-item {
  border: 1px solid var(--mm-border);
  border-radius: .5rem;
  /* 8 px, как у карточек */
  overflow: hidden;
  background: var(--mm-bg-light);
  margin-bottom: .5rem;
  /* небольшой зазор */
}

.mm-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--mm-text);
  background: var(--mm-bg-light);
  padding: .75rem 1rem;
  /* py-3 px-4 */
  transition: color .2s ease, transform .2s ease;
}

/* активное состояние */
.mm-accordion .accordion-button:not(.collapsed) {
  color: var(--mm-accent);
}

/* кастомная стрелка: меняется цвет и вращается */
.mm-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23232323' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  transition: transform .2s ease, stroke .2s ease;
}

.mm-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23F9A825' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
}

/* Scroll-to-top button */
.mm-scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 8rem;
  background: var(--mm-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background .2s;
  z-index: 1000;
}

.mm-scroll-top:hover {
  background: var(--mm-accent-dark);
}

.mm-accordion .accordion-body {
  padding: .75rem 1rem;
  /* выравнять с заголовком */
  font-size: .9375rem;
  /* 15 px — комфортно для моб. */
}

/* ===== Карточка товара Master-Moto ===== */
.mm-products-grid .mm-product-card {
  background: var(--mm-bg-light);
  border: 1px solid var(--mm-border);
  border-radius: .5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .2s ease;
}

.mm-products-grid .mm-product-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.card.mm-card-product>a {
  height: 100%;
}

.card.mm-card-product>a>img {
  display: block;
  margin: auto;
}

.mm-product-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mm-product-img-wrapper {
  width: 100%;
  padding-top: 133%;
  position: relative;
  background: #050505;
}

.mm-category-img-wrapper {
  width: 100%;
  position: relative;
  background: transparent;
}

.mm-category-img-wrapper img.mm-category-img {
  max-height: 70px;
  margin: auto;
  display: block;
}

.mm-category-card:hover img.mm-category-img {
  /* фильтр под ~#ff9b00 */
  filter: invert(48%) sepia(86%) saturate(1775%) hue-rotate(358deg) brightness(96%) contrast(103%);
  transform: translateY(-1px);
}

.mm-category-card .mm-category-title {
  color: black;
}

.mm-category-card:hover .mm-category-title {
  color: #ff782b;
  transform: translateY(-1px);
}

/* .mm-category-card {
    padding-top: 2rem;
    padding-bottom: 2rem;
} */

.mm-category-body {
  margin-top: 1rem;
}

.dx-filemanager-thumbnails-container img {
  object-fit: contain;
}

.dx-overlay-content.dx-popup-normal.dx-popup-draggable.dx-resizable {
  overflow-y: scroll;
}

.dx-toolbar.dx-toolbar-multiline .dx-toolbar-items-container {
  gap: 4px;
}

.dx-toolbar.dx-toolbar-multiline .dx-toolbar-items-container {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap !important;
  overflow-x: auto;

  /* Мультибраузерная поддержка тонкого скроллбара */
  /* Для Chrome, Edge, Safari */
  &::-webkit-scrollbar {
    height: 5px;
  }

  &::-webkit-scrollbar-thumb {
    background: #F9A825;
    border-radius: 4px;
  }
}

@media (max-width: 575.98px) {
  .dx-toolbar.dx-toolbar-multiline .dx-toolbar-items-container {
    gap: 2px;
    justify-content: space-around;
  }
}

form[role=search]>.list-group {
  border: 2px solid var(--mm-border)
}

form[role="search"]>.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: fit-content;
  margin: auto;
  min-width: 300px;
}

.mm-product-img,
.mm-product-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

#mm-sidenav:not(.dx-drawer-opened) {
  width: 0 !important;
}

/*
#mm-sidenav {
  width: fit-content !important;
} */

.dx-drawer-panel-content {
  width: fit-content !important;
}

/* .dx-drawer-wrapper {
  width: 200px !important;
} */

#mm-sidenav {
  transition: width 400ms;
}

.mm-product-img-placeholder {
  background: var(--mm-border);
}

.mm-product-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mm-product-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mm-text);
  margin: 0 0 .5rem;
}

.mm-product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mm-text);
}

.mm-btn-primary {
  background: var(--mm-accent);
  border-color: var(--mm-accent);
  color: #fff;
  font-weight: 600;
  font-size: larger;
  border-radius: 0.5rem;
  box-shadow: none;
  /* без "выступа" по умолчанию */
  transition: transform 0.05s ease, box-shadow 0.05s ease;
  transform: translateY(0);
  /* начальная позиция */
}

/* Наведение — просто смена цвета */
.mm-btn-primary:hover,
.mm-btn-primary:focus {
  background: #e89e1d !important;
  border-color: #e89e1d !important;
  color: #fff !important;
}

/* 👉 При нажатии кнопка "утапливается" */
.mm-btn-primary:active {
  transform: translateY(2px);
  /* вниз на 2px */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  /* внутренняя тень — как "впадина" */
}

.accordion-button:focus {
  box-shadow: 0 0 0 4px var(--mm-accent);
}

/* == Секции формы == */
.mm-form-section {
  max-width: 410px;
  background: var(--mm-bg-gray);
  border-radius: .75rem;
  box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.07);
}

.mm-form {
  padding: 2.5rem 2rem 2rem;
  background: var(--mm-bg-light);
  border-radius: .75rem;
  border: 1px solid var(--mm-border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.mm-form-title {
  font-weight: 700;
  color: var(--mm-accent);
  text-align: center;
  font-size: 2rem;
  letter-spacing: .01em;
}

.mm-form-subtitle {
  font-size: 1.125rem;
  color: var(--mm-text);
  text-align: center;
  font-weight: 500;
}

.mm-form-message {
  color: #e53935;
  text-align: center;
  min-height: 1.4em;
}

/* == Форм-элементы == */
.mm-label {
  font-weight: 500;
  color: var(--mm-text);
}

.mm-input {
  border-radius: .5rem;
  border: 1px solid var(--mm-border);
  background: #fff;
  font-size: 1rem;
  transition: border-color .2s;
}

.mm-input:focus {
  border-color: var(--mm-accent);
  outline: 0;
  box-shadow: 0 0 0 .12rem rgba(249, 168, 37, 0.13);
}

.mm-btn-primary {
  background: var(--mm-accent);
  border-color: var(--mm-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  box-shadow: none;
  transition: transform 0.05s, box-shadow 0.1s, background 0.1s;
}

.mm-btn-primary:hover,
.mm-btn-primary:focus {
  background: var(--mm-accent-dark) !important;
  border-color: var(--mm-accent-dark) !important;
  color: #fff !important;
}

.mm-btn-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mm-horizontal-slider__next:active,
.mm-horizontal-slider__prev:active {
  transform: translateY(-25px) scale(0.99);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mm-scroll-top:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== Product page ===== */
.mm-product-gallery img {
  max-width: 100%;
  border-radius: .5rem;
}

.mm-offers-list {
  max-width: 420px;
}

.mm-offers-list li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--mm-border);
}

.mm-offers-list li:last-child {
  border-bottom: 0;
}

.mm-news-list article {
  border-bottom: 1px solid var(--mm-border);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.mm-news-content,
.mm-page-content {
  white-space: pre-line;
}


/* Horizontal slider */
.mm-horizontal-scroll {
  cursor: grab;
  -webkit-user-select: none;
  /* Для Safari */
  user-select: none;
  overflow-x: hidden !important;
}

.mm-horizontal-scroll.dragging {
  cursor: grabbing
}

.mm-horizontal-scroll:focus {
  /* outline: 2px solid var(--mm-accent); */
  outline-offset: 2px;
}

.mm-horizontal-slider {
  position: relative;
}

.mm-horizontal-slider__prev,
.mm-horizontal-slider__next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: var(--mm-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}

.mm-horizontal-slider__prev:hover,
.mm-horizontal-slider__next:hover {
  border: 2px solid #c77c00;
  box-shadow: 0 0 6px rgba(199, 124, 0, 0.5);
  color: var(--bs-btn-hover-color);
  background: var(--mm-accent-dark);
}

/* штатный :hover внутри слайдера отключаем: управляем классом */
.mm-horizontal-scroll .mm-card-product:hover {
  box-shadow: none !important;
}

/* эффект ховера по классу, который ставит JS */
.mm-card-product.is-hover {
  box-shadow: 0 1px 13px 0 rgb(0 0 0) !important;
}

/* во время перетаскивания подстраховка: тени нет */
.mm-horizontal-scroll.dragging .mm-card-product.is-hover {
  box-shadow: none !important;
}

.mm-horizontal-slider__prev {
  left: 5px;
}

.mm-horizontal-slider__next {
  right: 5px;
}

.mm-horizontal-slider__next .bi-chevron-right {
  font-size: xx-large;
  padding-left: 5px;
}

.mm-horizontal-slider__prev .bi-chevron-left {
  font-size: xx-large;
  padding-right: 5px;
}



#scrollTopBtn .bi-chevron-up {
  font-size: xx-large;
  padding-bottom: 5px;
}

.mm-btn-primary:hover,
.mm-btn-primary:active {
  outline: 2px solid #c77c00;
  box-shadow: 0 0 6px rgba(199, 124, 0, 0.5);
  color: black !important;
  background: var(--mm-accent-dark) !important;
}


/* ===== Навигация для слайдера Owl Carousel ===== */
.mm-owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.mm-owl-carousel .owl-nav button {
  background: var(--mm-accent);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  pointer-events: all;
}

/* #mm-dashboard>.d-flex {
  background-color: #2a2a2a;
} */

.mm-workspace {
  min-width: 0;
  max-width: 100% !important;
}

a {
  text-decoration: none;
}

a:not(.text-dark, .btn, .mm-mobile-header-icon) {
  color: #afafaf;
}

/* a:not(.text-dark, .nav-link):hover {
  color: #ffffff;
} */

/* a:not(.btn):hover {
  text-decoration: underline;
} */

.mm-nav-link {
  color: var(--mm-text) !important;
}

.mm-nav-link:hover {
  color: var(--mm-accent-dark) !important;
}

.mm-breadcrumb {
  font-size: x-large;
  margin-top: .5rem;
  color: var(--mm-text);
}

.breadcrumb-item.active {
  color: var(--mm-accent-dark);
}

.breadcrumb-item:hover>a {
  color: var(--mm-accent) !important;
}

.text-dark.active {
  color: #000000;
  text-decoration: underline;
  font-weight: 700;
}

.mm-section h1 {
  text-align: center;
}

.offcanvas-body ul.navbar-nav {
  font-size: x-large;
  font-weight: 400;
  margin-top: 15px;
}

.offcanvas-body ul.navbar-nav li a {
  width: fit-content;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas-body ul.navbar-nav li a:hover:not(:has(i)) {
  transform: translateX(6px);
}

i.bi {
  font-size: x-large;
}

/* ===== Герой-карусель на главной странице ===== */
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 600px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mm-sidenav.dx-drawer-opened .dx-drawer-panel-content {
  margin: auto !important;
}

.carousel-caption {
  font-size: xxx-large;
  font-weight: bolder;
  text-shadow: 0px 0 10px #00000014;
  color: #e89e1d;
}

/* section.mm-section {
  margin: 1rem 0 0 0;
} */

section.mm-section h2 {
  text-align: center;
  margin-bottom: .25rem;
}

.mm-horizontal-scroll .stretched-link:focus:after,
.mm-horizontal-scroll .stretched-link:target:after {
  cursor: grab !important;
}

.mm-horizontal-scroll .stretched-link:hover::after {
  cursor: pointer !important;
}

.dx-loadpanel-content {
  height: auto !important;
}

/* a:not(.text-dark, .nav-link):hover {
  color: orange !important;
} */

.dx-icon.dx-icon-trash {
  color: #ff0000 !important;
}

div[aria-label="trash"] {
  border-color: #ff0000 !important;
}

.mm-section--dark {
  background: #232323;
  color: #fff;
  margin-top: 5rem;
}

.mm-product-gallery {
  justify-content: center;
  display: flex;
}

.mm-product-gallery img {
  max-width: 100%;
  border-radius: .5rem;
  max-height: 70vh;
}

.card.shadow {
  box-shadow: 0px 1px 13px 0px rgb(0 0 0) !important;
}

/* === Product page: Carousel & Thumbnails === */
.mm-product-carousel {
  background: #fff;
  /* border: 1px solid rgba(0, 0, 0, .06); */
  border-radius: .5rem
}

.mm-thumb.active {
  outline: 3px solid var(--mm-accent) !important;
}

.mm-product-main-img {
  max-height: 520px;
  object-fit: contain;
  background: #fff
}

.mm-product-thumbs {
  -webkit-user-select: none;
  user-select: none;
  justify-content: center;
}

.mm-thumb {
  border: 2px solid transparent;
  border-radius: .375rem;
  overflow: hidden;
  line-height: 0
}

.mm-thumb:focus {
  outline: none
}

.mm-thumb.active {
  border-color: #0d6efd
}

.mm-thumb-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  display: block;
  border-radius: .25rem
}

section.mm-section {
  padding-bottom: 2rem;
  color: var(--mm-text);
}

/* section.mm-section {
    margin-top: 2rem;
} */

@media (max-width: 991.98px) {
  .mm-product-main-img {
    max-height: 360px
  }

  .mm-thumb-img {
    width: 68px;
    height: 68px
  }
}

@media (max-width: 575.98px) {

  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: 350px;
  }

  .mm-section {
    padding: 1rem 0.5rem;
  }

  .mm-form-section {
    max-width: 100%;
    border-radius: .5rem;
    box-shadow: none;
  }

  .mm-form {
    padding: 1.2rem 0.5rem 1rem;
    border-radius: .5rem;
  }

  .mm-form-title {
    font-size: 1.3rem;
  }

  .mm-form-subtitle {
    font-size: 1rem;
  }

  /* .mm-horizontal-scroll>* {
    flex: 0 0 90vw;
    min-width: 220px;
    max-width: 98vw;
  }

  .mm-horizontal-slider__prev,
  .mm-horizontal-slider__next {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  } */

  .mm-card-product,
  .mm-products-grid .mm-product-card {
    border-radius: .4rem;
    box-shadow: none;
  }

  .mm-product-title {
    font-size: .95rem;
  }

  .mm-product-price {
    font-size: 1rem;
  }

  .mm-breadcrumb {
    font-size: 0.9rem;
    margin-top: .25rem;
    margin-bottom: 0;
  }

  /* .mm-main {
    padding: 0 .5rem;
  } */
  .news-item-footer {
    text-align: end;
  }

  .news-item-image {
    max-height: 400px;
    display: block;
    margin: auto;
    padding: 1rem;
  }

  .mm-product-gallery img {
    max-height: 40vh;
  }

  /* .mm-product-main-img {
    max-height: 180px;
  } */

  /* .mm-thumb-img {
    width: 48px;
    height: 48px;
  } */

  .mm-scroll-top {
    width: 4rem;
    height: 4rem;
    right: 1rem;
    bottom: 8rem;
    font-size: 1.1rem;
  }
}