.sitemap__check {
  display: none;
}
.sitemap__label {
  transition: 0.3s ease-in-out;
  background-color: #fff;
  border-bottom: solid 1px #ddd;
  cursor: pointer;
  display: block;
}
.sitemap__check:checked + .sitemap__label {
  background-color: #0AA4AA;
  color: #fff;
}
.sitemap__shop-name {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  justify-content: space-between;
  padding: 15px;
}
.sitemap__shop-name::after {
  transition: 0.3s ease-in-out;
  content: "\e145";
  font-family: "Material Icons Round";
  font-size: 18px;
  display: inline-block;
  height: 18px;
  width: 18px;
}
.sitemap__check:checked + .sitemap__label .sitemap__shop-name::after {
  transform: rotate(225deg);
  transform-origin: center;
}
.sitemap__box {
  background-color: #ddd;
  transition: 0.3s ease-in-out;
  opacity: 0;
  line-height: 0;
  visibility: hidden;
  padding: 0 15px;
}
.sitemap__check:checked + .sitemap__label + .sitemap__box {
  opacity: 1;
  line-height: 1.6;
  visibility: visible;
  padding: 15px 15px;
}
.sitemap__category {
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  margin: 0;
}
.sitemap__check:checked + .sitemap__label + .sitemap__box .sitemap__category {
  margin-bottom: 15px;
}
.sitemap__check:checked + .sitemap__label + .sitemap__box .sitemap__category:nth-of-type(n+2) {
  margin-top: 15px;
}
.sitemap__list {
  display: grid;
  transition: 0.3s ease-in-out;
  line-height: 0;
  visibility: hidden;
  gap: 0;
}
.sitemap__check:checked + .sitemap__label + .sitemap__box .sitemap__list {
  line-height: 1.6;
  visibility: visible;
  gap: 1px;
}
.sitemap__item {
  font-size: 14px;
}
.sitemap__anchor {
  background-color: #fff;
  display: block;
  transition: 0.3s ease-in-out;
  line-height: 0;
  visibility: hidden;
  padding: 0 15px;
}
.sitemap__check:checked + .sitemap__label + .sitemap__box .sitemap__anchor {
  line-height: 1.6;
  visibility: visible;
  padding: 15px;
}/*# sourceMappingURL=sitemap.css.map */