.navbar-toggler {
    background: var(--fs-color-primary);
    width: 50px;
    height: 45px;
    padding: 0;
    border-radius: 0;
    top: 13px;
    cursor: pointer;
    z-index: 12399994;
    border: none;
}

.navbar-toggler:before {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 16px;
    right: 15px;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    content: '';
}

.navbar-toggler:after {
    position: absolute;
    top: 22px;
    right: 15px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
}

.navbar-toggler.active:before {
    top: 23px;
    background: #fff;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar-toggler.active:after {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#custom-mobile-menu {
    position: fixed;
    left: 15px;
    right: 15px;
    background-color: #fff;
    top: var(--header-height-mobile);
    display: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: auto;
    padding: 20px 0px;
    max-height: calc(100vh - var(--header-height-mobile) - 30px);
    scrollbar-width: none;
}

.stuck #custom-mobile-menu {
    top: var(--header-height-mobile-sticky);
    max-height: calc(100vh - var(--header-height-mobile-sticky) - 30px);
}

#custom-mobile-menu ul {
    list-style: none;
    margin: 0;
}

#custom-mobile-menu ul ul {
    display: none;
    left: auto;
    opacity: 1;
    position: relative;
    transform: translateX(0);
    padding: 10px 0 16px;
}

#custom-mobile-menu ul li {
    position: relative;
    margin: 0;
    min-height: 50px;
    padding: 12px 16px;
}

#custom-mobile-menu ul li + li {
    border-top: 1px solid #eee;
}

#custom-mobile-menu ul li > a {
    color: currentColor;
    font-size: 15px;
    display: block;
    text-transform: capitalize;
}

#custom-mobile-menu ul li .custom-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 5px;
    right: 15px;
}

#custom-mobile-menu ul ul .custom-toggle {
    right: 0px;
}

#custom-mobile-menu ul li[aria-expanded='true'] > .custom-toggle {
    transform: rotate(-180deg);
}
#custom-mobile-menu ul li.has-children > a,
#custom-mobile-menu ul li.menu-item-has-children > a {
    margin-right: 55px;
}
