/*********************************************************************************************************
    StyleSheet Name : menu.css
    Description: This style sheet is use display the menu option.
    Created Date: 
    Developer Name: Vijay salvi

* Style sheet for devices with screen width largar than 769px
   
*********************************************************************************************************/
.stDivShowMenu {
    display: none;
}
   .stDivmenu {
           margin-top: 6.5%;
    position: fixed;
    float: left;
    width: 15%;
    height: 92%;
    overflow: auto;
    }

nav,
nav ul,
nav ul li,
nav ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.HideMenu {
    display: block;
}

nav {
    width: 15%;
    font-family: Helvetica, Arial, sans-serif;
    color: #2F4F4F;
    position: inherit;
    height: 86%;
    overflow: auto;
}

    nav::-webkit-scrollbar {
        width: 5px;
        border: 1px solid #ffffff;
    }


    nav::-webkit-scrollbar-thumb {
        background-color: slategrey;
        outline: 1px solid slategrey;
    }


    nav ul ul {
        display: none;
    }

.align-right {
    float: right;
}

nav > ul > li > a {
    padding: 15px 20px;
    border-left: 1px solid #1682ba;
    border-right: 1px solid #1682ba;
    border-top: 1px solid #1682ba;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #2F4F4F;
    background: #66CCFF;
}

    nav > ul > li > a:hover {
        background: #D2E9FF;
    }

nav > ul > li.active > a:hover {
    background: #D2E9FF;
}

nav > ul > li.open > a {
    color: #2F4F4F;
    background: #66CCFF;
}

nav > ul > li.open > a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #1682ba;
}

nav > ul > li:last-child > a,
nav > ul > li.last > a {
    border-bottom: 1px solid #1682ba;
}

.holder {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
}

    .holder::after,
    .holder::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .holder::after {
        top: 17px;
        border-top: 2px solid #2F4F4F;
        border-left: 2px solid #2F4F4F;
    }


    .holder::before {
        top: 18px;
        border-top: 2px solid;
        border-left: 2px solid;
        border-top-color: inherit;
        border-left-color: inherit;
    }

.holderClose {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
}

    .holderClose::after,
    .holderClose::before {
        display: block;
        position: absolute;
        content: "";
        width: 6px;
        height: 6px;
        right: 20px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .holderClose::after {
        top: 17px;
        border-top: 2px solid #2F4F4F;
        border-left: 2px solid #2F4F4F;
    }


    .holderClose::before {
        top: 18px;
        border-top: 2px solid;
        border-left: 2px solid;
        border-top-color: inherit;
        border-left-color: inherit;
    }



nav ul ul li a {
    cursor: pointer;
    border-bottom: 1px solid #32373e;
    border-left: 1px solid #32373e;
    border-right: 1px solid #32373e;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    color: #2F4F4F;
    background: #66CCFF;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

nav ul ul li:hover > a,
nav ul ul li.open > a,
nav ul ul li.active > a {
    background: #D2E9FF;
    color: #2F4F4F;
}

nav ul ul li:first-child > a {
    box-shadow: none;
}

nav ul ul ul li:first-child > a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

nav ul ul ul li a {
    padding-left: 30px;
}

nav > ul > li > ul > li:last-child > a,
nav > ul > li > ul > li.last > a {
    border-bottom: 0;
}

nav > ul > li > ul > li.open:last-child > a,
nav > ul > li > ul > li.last.open > a {
    border-bottom: 1px solid #32373e;
}

nav > ul > li > ul > li.open:last-child > ul > li:last-child > a {
    border-bottom: 0;
}



nav ul ul li.active > a::after,
nav ul ul li.open > a::after,
nav ul ul li > a:hover::after {
    border-color: #ffffff;
}



/*********************************************************************************************************

* Style sheet for devices with screen width smaller than 769px
   
*********************************************************************************************************/




@media all and (max-width : 768px) {

    .stMenu {
        display: block;
    }

    .stDivmenu {
        margin-top: 0px;
    position: unset;
    float: left;
    width: 15%;
    height: 92%;
    overflow: auto;
    }

    .stDivShowMenu {
        display: block;
        background-color: #66CCFF;
        font-size: 13px;
        text-decoration: none;
        border: none;
        font-weight: bold;
        height: 30px;
    }

    .stbtnMenu {
        background-color: #66ccff;
        color: #2F4F4F;
        font-size: 13px;
        text-decoration: none;
        border: none;
        font-weight: bold;
        height: 30px;
        position: fixed;
        z-index: 3;
    }

    nav,
    nav ul,
    nav ul li,
    nav ul li a {
        margin: 0;
        padding: 0;
        border: 0;
        list-style: none;
        line-height: 1;
        display: block;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-overflow-scrolling: auto;
    }

    @media all and (orientation : landscape) {
        .ShowMenu {
            width: 80%;
            height: 50%;
            overflow: auto;
            z-index: 1;
            color: #2F4F4F;
        }

        nav {
            width: 80%;
            position: fixed;
            height: 50%;
            color: #2F4F4F;
            z-index: 1;
        }
    }

    @media all and (orientation : portrait) {
        nav {
            width: 80%;
            position: fixed;
            height: 70%;
            color: #2F4F4F;
            z-index: 1;
        }

        .ShowMenu {
            width: 80%;
            height: 70%;
            overflow: auto;
            color: #2F4F4F;
        }
    }

    .HideMenu {
        display: none;
    }



    nav ul ul {
        display: none;
    }

    .align-right {
        float: right;
    }

    nav > ul > li > a {
        padding: 10px 20px;
        border-left: 1px solid #1682ba;
        border-right: 1px solid #1682ba;
        border-top: 1px solid #1682ba;
        cursor: pointer;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none;
        color: #2F4F4F;
        background: #66CCFF;
    }

        nav > ul > li > a:hover {
            background: #D2E9FF;
        }

    nav > ul > li.active > a:hover {
        background: #D2E9FF;
    }

    nav > ul > li.open > a {
        color: #2F4F4F;
        background: #66CCFF;
    }

    nav > ul > li.open > a {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid #1682ba;
    }

    nav > ul > li:last-child > a,
    nav > ul > li.last > a {
        border-bottom: 1px solid #1682ba;
    }


    nav ul ul li a {
        cursor: pointer;
        border-bottom: 1px solid #32373e;
        border-left: 1px solid #32373e;
        border-right: 1px solid #32373e;
        padding: 10px 18px;
        text-decoration: none;
        font-size: 12px;
        color: #2F4F4F;
        background: #66CCFF;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    nav ul ul li:hover > a,
    nav ul ul li.open > a,
    nav ul ul li.active > a {
        background: #D2E9FF;
        color: #2F4F4F;
    }

    nav ul ul li:first-child > a {
        box-shadow: none;
    }

    nav ul ul ul li:first-child > a {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    nav ul ul ul li a {
        padding-left: 30px;
    }

    nav > ul > li > ul > li:last-child > a,
    nav > ul > li > ul > li.last > a {
        border-bottom: 0;
    }

    nav > ul > li > ul > li.open:last-child > a,
    nav > ul > li > ul > li.last.open > a {
        border-bottom: 1px solid #32373e;
    }

    nav > ul > li > ul > li.open:last-child > ul > li:last-child > a {
        border-bottom: 0;
    }


    nav ul ul li.active > a::after,
    nav ul ul li.open > a::after,
    nav ul ul li > a:hover::after {
        border-color: #ffffff;
    }
}



/****************************************************************************
  
*****************************************************************************/
