/* Базовые стили для меню */
.category-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background-color: #2c2c2c;
  color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
}

/* Меню в активном состоянии */
.category-menu.active {
  left: 0;
}

/* Оверлей для затемнения */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Затемнение */
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

/* Активное состояние оверлея */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Кнопка закрытия */
.close-menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Стили для списка категорий */
.menu-list {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.menu-item {
  margin: 10px 0;
}

.menu-item a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.menu-item a:hover {
  background-color: #444;
}

/* Стили для подменю */
.submenu {
  list-style: none;
  padding-left: 20px;
  margin: 5px 0;
  display: none; /* Скрыто по умолчанию */
}
/* Показываем подменю при активации */
.submenu.active {
  display: block;
}
.menu-item.open > .submenu {
  display: block;
}

.submenu li a {
  font-size: 14px;
  padding: 5px 10px;
}
/* Иконки для подменю */
.submenu-icon {
  font-size: 14px;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.menu-item.open .submenu-icon {
  transform: rotate(180deg);
}

.menu-item.open > a > .submenu-icon {
  transform: rotate(180deg);
}
.menu-item.open > a {
  font-weight: bold;
  color: #349a98;
}
.accordian {
      width: 100%;
      margin: 0 auto;
      color: white;

}

.accordian h3 a {
      padding: 0 10px;
      font-size: 14px;
      line-height: 34px;
      display: block;
      color: white;
      text-decoration: none;
}

.accordian h3:hover {
      text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

.accordian i {
      margin-right: 10px;
}

.accordian li {
      list-style-type: none;
}

.accordian ul ul li a,
.accordian h4 {
      color: white;
      text-decoration: none;
      font-size: 13px;
      line-height: 27px;
      display: block;
      padding: 0 15px;
      transition: all 0.15s;
      position: relative;
}

.accordian ul ul li a:hover {
      background: #003545;
      border-left: 5px solid lightgreen;
}

.accordian ul ul {
      display: none;
}

.accordian li.active>ul {
      display: block;
}

.accordian ul ul ul {
      margin-left: 15px;
      border-left: 1px dotted #fff;
}

.accordian a:not(:only-child):after{
      content: "\f104";
      font-family: fontawesome;
      position: absolute;
      right: 10px;
      top: 0;
      font-size: 14px;
}

.accordian .active>a:not(:only-child):after {
      content: "\f107";
}

.table-image thead td, .table-image thead th {
  border: 0;
  color: #666;
  font-size: 0.8rem;
}
.table-image td, .table-image th {
  vertical-align: middle;
  text-align: center;
}

.price {
  margin-left: 1rem;
}

.modal-footer {
  padding-top: 0rem;
}


@media (max-width: 991px) {
  .accordian{
    margin-top: 50px;
  }
}
