.main-navigation ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation ul li{
    position: relative;
}
.main-navigation ul li:last-child{
    margin-bottom: 0;
}
.main-navigation ul li a{
    text-decoration: none;
    font-size: 1.125em; /* 18px */
    font-weight: bold;
    line-height: 1.33; /* 24px */
    color: #e6e2e4;
    width: calc(100% - 40px);
    padding: 10px 0;
    display: block;
}
.main-navigation ul ul li a{
    display: inline-block;
    font-size: 0.875em; /* 14px */
    font-weight: normal;
    line-height: 1.14; /* 16px */
}
.main-navigation ul li ul{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
    padding-left: 24px;
}
.main-navigation ul li.open > ul{
    padding-top: 4px; /* For :focus */
    padding-bottom: 4px; /* For :focus */
}
.main-navigation ul li.current-menu-item:not(.close) > ul,
.main-navigation ul li.current-menu-ancestor:not(.close) > ul,
.main-navigation ul li.open > ul{
    max-height: unset;
}
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-menu-ancestor a{
    color: #fff;
}
.main-navigation > ul > li.current-menu-item > a,
.main-navigation li:not(.anchor-parent) > ul > li.current-menu-item > a,
.main-navigation li:not(.anchor-parent) ul li.current-menu-ancestor > a{
    font-weight: bold;
}
.main-navigation ul li .arrow{
    position: absolute;
    top: 8px;
    right: 0;
    width: 20px;
    height: 24px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 0.600098L6 5.2001L10.6 0.600098L12 2.0001L6 8.0001L0 2.0001L1.4 0.600098Z' fill='%236F7170'/%3E%3C/svg%3E%0A");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.main-navigation ul li.current-menu-item.has-children:not(.close) > .arrow,
.main-navigation ul li.current-menu-ancestor.menu-item-has-children:not(.close) > .arrow,
.main-navigation ul li.open > .arrow{
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.4 0.600098L6 5.2001L10.6 0.600098L12 2.0001L6 8.0001L0 2.0001L1.4 0.600098Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}

/* Anchor Position Indicator */
.anchor-parent > ul{
    position: relative;
}
.anchor-parent > ul:before{
    content: '';
    position: absolute;
    top: 4px;
    left: 8px;
    bottom: 4px;
    width: 4px;
    background: #4A4B4A;
}
.main-navigation ul li.active-sub > a{
    font-weight: bold;
}
.main-navigation ul li.active-sub > a:before{
    content: '';
    position: absolute;
    top: 6px;
    left: -16px;
    bottom: 6px;
    width: 4px;
    background: #547aee;
}

.main-navigation .category-label,
.main-navigation .category-label a{
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 0.25rem;
    margin-top: 1.25rem;
}