.more-nav-mob {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    font-size: inherit;
    margin: 0;
    padding: 0;
    background: transparent;
    list-style: none;
}

.more-nav-mob ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: auto;
    margin: 0;
    padding: 0;
    background: #fff;
    list-style: none;
}

.more-nav-mob li {
    position: relative;
    padding: 5px 15px;
}

.more-nav-mob li.nav-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 5px 30px 5px 5px;
    margin-top: 1rem;
    margin-right: 1rem;
    background: var(--theme-color-grey-light);
    border-radius: 50px;
}

.more-nav-mob .nav-item-img {
    width: 38px;
    min-width: 38px;
    margin-right: 15px;
}

.more-nav-mob .nav-item-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 50%;
}

.more-nav-mob svg {
    width: 1em;
    height: auto;
    margin-left: 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.more-nav-mob > li > a:hover svg,
.more-nav-mob > li:hover > a svg {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

/*Links*/
.more-nav-mob a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    color: inherit;
    padding: 0;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

/*Root items*/
.more-nav-mob li a.root-item {
    position: relative;
    color: inherit;
}

/*Item-parents*/
.more-nav-mob a.parent svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/*Denied items*/
.more-nav-mob a.denied {
    background: url(images/lock.gif) center right no-repeat;
}

/*Child-items: hover*/
.more-nav-mob li:hover {
    background: var(--theme-skit-color) !important;
    color: inherit;
}

.more-nav-mob li:hover > a {
    color: #fff;
}

/*Sub-menu box*/
.more-nav-mob li ul {
    position: absolute;
    top: 100%;
    display: none;
    height: auto;
    width: auto;
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.10);
    box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.10);
    z-index: 500;
}

/*Sub-menu item box*/
.more-nav-mob li li {
    position: relative;
    width: 100%;
    margin: 0.5rem 0;
}

/*Item link*/
.more-nav-mob li ul a {
    text-align: left;
}

.more-nav-mob li ul ul {
    top: 0;
    left: 100%;
}

.more-nav-mob > li:last-child ul {
    right: 0;
}

.more-nav-mob > li:last-child ul ul {
    left: auto;
    right: 100%;
}

.more-nav-mob li:hover ul ul,
.more-nav-mob li:hover ul ul ul,
.more-nav-mob li:hover ul ul ul ul,
.more-nav-mob li:hover ul ul ul ul ul {
    display: none;
}

.more-nav-mob li:hover ul,
.more-nav-mob li li:hover ul,
.more-nav-mob li li li:hover ul,
.more-nav-mob li li li li:hover ul,
.more-nav-mob li li li li li:hover ul {
    display: block;
}

.more-nav-mob .more-2 {
    padding: 0;
}

.more-nav-mob .more-2:hover {
    background: transparent !important;
}

.more-nav-mob .more-2 > a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: inherit;
    background: var(--theme-color-grey-light);
    border-radius: 50%;
}

.more-nav-mob .more-2:hover > a,
.more-nav-mob .more-2 > a:hover {
    color: #fff;
    background: var(--theme-skit-color) !important;
}

.more-nav-mob .more-2 .more-2-arrow {
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.more-nav-mob .more-2 .more-2-arrow:before,
.more-nav-mob .more-2 .more-2-arrow:after {
    position: absolute;
    content: '';
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.more-nav-mob .more-2 .more-2-arrow:before {
    top: -8px;
}

.more-nav-mob .more-2 .more-2-arrow:after {
    bottom: -8px;
}

.more-nav-mob .more-2 a.root-item svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media all and (max-width: 575px) {
    .more-nav-mob li.nav-item {
        min-width: 80%;
        margin-right: 0;
    }

    .more-nav-mob li.nav-item a {
        width: 100%;
        -webkit-justify-content: center;
        justify-content: center;
    }
}