
/* Hide nested lists */
.group-list,
.sub-group-list,
.sub-sub-group-list {
 height: 100%;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.5s ease-in-out;
}
.nav__list input[type="checkbox"]:checked + label + ul, .nav__list input[type="checkbox"]:checked + label + ul .group-list, input[class="first-group-input"]:checked + label + ul  {
    max-height: 100%;
}
/**
* Rotating chevron icon
*/
label  span, label  span {
 transition: transform 0.65s ease;
}
.nav__list input[type="checkbox"]:checked + label  span , .nav__list input[type="checkbox"]:checked + label span {
 transform: rotate(90deg);
}
.sitemap-section ul li:before{
    content:none;
}
.sitemap-toggle{
    max-height: 0 !important;
}
ul.nav__list {
    border-radius: 6px;
}
ul.group-list>li, .footer-bottom>li {
    border-bottom: 1px solid #a6a6a6;
    padding: 5px 0;
    margin: 0;
}
ul.group-list>li:last-child , .footer-bottom>li:last-child {
    border-bottom: none;
}
li.bg-grey{
    border-radius: 6px;
}
.product-feature ul li:before {
    left: 0;
}
.sitemap-bg{
    padding-top: 70%;
}