

/* Start:/local/components/wooka/manuals.list/templates/.default/style.css?17732586234408*/
.m-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
}

.m-tree {
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.m-tree__title {
  font-weight: 600;
  margin-bottom: 8px;
}
.m-tree__list {
  list-style: none;
  padding-left: 12px;
  margin: 0;
}
.m-tree__item {
  margin: 2px 0;
}
.m-tree__item a {
  text-decoration: none;
  color: #16315a;
}
.m-tree__item.is-active > a {
  font-weight: 600;
  text-decoration: underline;
}

.m-content .m-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.m-title {
  font-size: 22px;
  font-weight: 600;
}

.m-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.m-search input[type=text] {
  padding: 8px 10px;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  min-width: 260px;
}

.btn {
  padding: 6px 10px;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.btn--dis {
  opacity: 0.55;
  cursor: not-allowed;
}

.badge {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid #e6e9ef;
}
.badge--ok {
  color: #14a44d;
  border-color: #bfe7cf;
  background: #f5fff8;
}
.badge--miss {
  color: #d33;
  border-color: #ffd1c8;
  background: #fff5f2;
}

.m-group {
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  margin: 0 0 14px;
  overflow: hidden;
}
.m-group__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f9fbff;
  cursor: pointer;
}
.m-group__body {
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px 12px;
}

.m-row {
  display: contents;
}

.m-name,
.m-article,
.m-act {
  padding: 8px 0;
  border-bottom: 1px dashed #e6e9ef;
}

.m-article {
  color: #5d6b85;
  font-size: 13px;
}

.m-act {
  text-align: right;
}

.m-empty {
  padding: 14px;
  border: 1px dashed #d0d7e2;
  border-radius: 12px;
  color: #6b768a;
}

.m-nav {
  margin-top: 12px;
}

.m-ajax {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .m-layout {
    grid-template-columns: 1fr;
  }
  .m-group__body {
    grid-template-columns: 1fr;
  }
  .m-act {
    text-align: left;
  }
}
.manuals {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
.manuals__sidebar {
  border-right: 1px solid #eee;
  padding-right: 16px;
}
.manuals__content {
  min-width: 0;
}

/* Tree */
.ml-tree__root,
.ml-tree__children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ml-tree__item {
  margin: 0;
}
.ml-tree__item.is-active > .ml-tree__row {
  background: #f0f6ff;
}
.ml-tree__item .ml-tree__toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
}
.ml-tree__item .ml-tree__toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}
.ml-tree__item.is-open > .ml-tree__row > .ml-tree__toggle::after {
  transform: rotate(45deg);
}
.ml-tree__item.is-open > .ml-tree__children {
  display: block;
}

.ml-tree__row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px 6px 8px;
  border-radius: 6px;
}

.ml-tree__link {
  color: #222;
  text-decoration: none;
  flex: 1 1 auto;
  border: 0;
}

.ml-tree__children {
  display: none;
  padding-left: 14px;
  border-left: 1px dashed #e3e3e3;
  margin-left: 6px;
}

/* Items */
.ml-group {
  margin-bottom: 24px;
}
.ml-group__title {
  font-size: 18px;
  margin: 0 0 8px;
}

.ml-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ml-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f2f2f2;
}
.ml-item__name {
  font-weight: 600;
}
.ml-item__sku {
  color: #5d6b85;
  font-size: 12px;
}
.ml-item__manual {
  color: #0b66ff;
  text-decoration: none;
}
.ml-item__manual--absent {
  color: #999;
}

.manual-search {
  border-bottom: 1px solid #e6e9ef;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.manual-search__wrap {
  position: relative;
}
.manual-search__input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #e6e9ef;
  border-radius: 2px;
}
/* End */
/* /local/components/wooka/manuals.list/templates/.default/style.css?17732586234408 */
