ul.offcanvas-nav li a {
    font-size: 20px;
    line-height: 1.75rem;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
}

ul.offcanvas-nav li a:hover {
    color: #00cccc;
}

ul.offcanvas-nav li.menu-item-has-children {
    position: relative;
    font-size: 1.875rem;
    line-height: 0;
}

ul.offcanvas-nav li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
}

li.menu-item-has-children {
    position: relative;
}

li.menu-item-has-children>a,
li.menu-item-has-children>span {
    flex: 1 1 auto;
}

li.menu-item-has-children>a {
    display: block;
}

.submenu-tools {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    top: 0;
    right: 0;
}

.submenu-tools .divider {
    display: none;
    width: 1px;
    height: 24px;
    background: #00cccc;
}

.submenu-tools .menu-opener {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease;
    position: relative;
    z-index: 99;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%2300cccc' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

li.menu-item-has-children.is-open>.submenu-tools .menu-opener {
    transform: rotate(90deg);
}

li.menu-item-has-children>.sub-menu {
    padding-left: 1.25rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

li.menu-item-has-children.is-open>.sub-menu {
    opacity: 1;
    height: auto;
    overflow-y: auto;
}