div.sidebar {
    font-size: 14px;
    margin-bottom: 30px;
    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

div.sidebar a.navTitle {
    padding: 17px 18px;
    display: flex;
    align-items: center;
    min-height: 58px;

    background: #bf419d;
    color: #fff;
    border-top-left-radius:18px !important;
    border-top-right-radius:18px !important;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none !important;
}

div.sidebar ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

div.sidebar ul li {
    position: relative;
    display: block;
}

/* TÜM MENÜ SATIRLARI */
div.sidebar ul li > a {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 54px;
    padding: 12px 55px 12px 17px;

    background: #fafafa;
    color: #333;

    border-bottom: 1px solid #e6e6e6;
    border-top: 0;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none !important;

    transition: all .25s ease;
}

/* SATIR HOVER */
div.sidebar ul li > a:hover {
    background: #f7eef5;
    color: #bf419d;
}

/* ALT MENÜ */
div.sidebar ul.subNav {
    display: none;
    position: relative;

    margin: 0;
    padding: 0;

    background: #fff;

    border-top: 1px solid #e5e5e5;
}

div.sidebar ul.subNav li a {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 45px;
    padding: 10px 55px 10px 25px;

    background: #fff;
    color: #555;

    border-bottom: 1px solid #e9e9e9;

    font-size: 13.5px;
}

div.sidebar ul.subNav li a:hover {
    background: #faf4f8;
    color: #bf419d;
}

/* 3. SEVİYE */
div.sidebar ul.subNav li ul.subNav li a {
    padding-left: 40px;
    background: #fcfcfc;

    border-bottom: 1px solid #eeeeee;
}

/* =========================================
   SAĞ OK ALANI
========================================= */

.menuplus {
    position: absolute;

    right: 0;
    top: 0;

    width: 53px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fafafa;
    color: #777;

    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e6e6e6;

    cursor: pointer;

    transition: all .25s ease;
}

.menuplus:hover {
    background: #f7eef5;
    color: #bf419d;
}

/* ALT MENÜ OK */
div.sidebar ul.subNav .menuplus {
    height: 45px;
}

/* =========================================
   AKTİF
========================================= */

a.navActive {
    background: #f7eef5 !important;
    color: #bf419d !important;

    font-weight: 600 !important;

    border-left: 3px solid #bf419d !important;
}

/* =========================================
   SON SATIRDA BORDER
========================================= */

div.sidebar > ul > li:last-child > a {
    border-bottom: 0;
}

div.sidebar > ul > li:last-child > .menuplus {
    border-bottom: 0;
}