.metismenu a {
    color: #fff !important;
    text-decoration: none !important;
}

/* Arrow icon */
.metismenu .arrow {
    float: right;
    margin-top: -32px;
    margin-right: 10px;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    width: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 13px;
    transition: transform .25s ease;
}
.metismenu .fa.arrow:before {
    content: '\f107';
}
.metismenu .active > .fa.arrow {
    transform: rotate(180deg);
    color: #fff;
}

/* Plus/times */
.metismenu .plus-times { float: right; }
.metismenu .fa.plus-times:before { content: '\f067'; }
.metismenu .active > a > .fa.plus-times {
    transform: rotate(45deg);
}
.metismenu .plus-minus { float: right; }
.metismenu .fa.plus-minus:before { content: '\f067'; }
.metismenu .metismenu .active > a > .fa.plus-minus:before { content: '\f068'; }

/* Container */
.metismenu .sidebar {
    display: block;
    float: left;
    width: 100%;
}
.metismenu .content {
    display: block;
    overflow: hidden;
    width: auto;
}

/* Sidebar nav wrapper */
.metismenu .sidebar-nav {
    margin: 0;
    padding: 0;
    background: linear-gradient(160deg, #1565c0 0%, #0d47a1 100%);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.metismenu .sidebar-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.metismenu .sidebar-nav ul li,
.sidebar-nav ul a {
    display: block;
}

/* Level 1 links */
.metismenu .sidebar-nav > ul > li > a {
    padding: 3px 20px 3px 23px;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    background-image: linear-gradient(to right, rgba(255,255,255,0.18), rgba(255,255,255,0));
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .35s ease, transform .2s ease;
}
.metismenu .sidebar-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: #ff6d00;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform .25s ease;
}
.metismenu .sidebar-nav > ul > li > a:hover,
.metismenu .sidebar-nav > ul > li > a:focus {
    background-size: 100% 100%;
    color: #ffd54f !important;
    text-decoration: none;
    transform: translateX(4px);
}
.metismenu .sidebar-nav > ul > li > a:hover::before,
.metismenu .sidebar-nav > ul > li > a:focus::before {
    transform: scaleY(1);
}
.metismenu .sidebar-nav > ul > li.active > a {
    background-size: 100% 100%;
}
.metismenu .sidebar-nav > ul > li.active > a::before {
    transform: scaleY(1);
}

/* Level 2 sub-menu */
.metismenu .sidebar-nav ul ul {
    background: rgba(0,0,0,0.22);
}
.metismenu .sidebar-nav ul ul a {
    padding: 10px 30px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.88) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    background-image: linear-gradient(to right, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .3s ease, transform .2s ease;
    box-shadow: none;
}
.metismenu .sidebar-nav ul ul a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: #ff9100;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform .25s ease;
}
.metismenu .sidebar-nav ul ul a:hover,
.metismenu .sidebar-nav ul ul a:focus {
    background-size: 100% 100%;
    color: #ffd54f !important;
    text-decoration: none;
    transform: translateX(4px);
}
.metismenu .sidebar-nav ul ul a:hover::before,
.metismenu .sidebar-nav ul ul a:focus::before {
    transform: scaleY(1);
}

/* Level 3 */
.metismenu .sidebar-nav ul ul ul a {
    padding-left: 38px;
}

.metismenu .sidebar-nav-item { padding-left: 5px; }
.metismenu .sidebar-nav-item-icon { padding-right: 5px; }
