﻿
@charset "UTF-8";


/* Side Menu */


.menuModal {
    width: 100% !important;
    height: 110% !important;
    background-color: rgba(0, 0, 0, 0.82);
    position: fixed;
    z-index: 600;
    text-align: center;
}

#sidebar-wrapper {
    z-index: 900;
    position: fixed;
    right: 0;
    top: 0px;
    width: 250px;
    height: 100%;
    color: white;
    margin-right: -350px;
    overflow-y: auto;
    background: #222;
    -webkit-transition: right 0.4s ease 0s;
    -moz-transition: right 0.4s ease 0s;
    -ms-transition: right 0.4s ease 0s;
    -o-transition: right 0.4s ease 0s;
    transition: right 0.4s ease 0s;
}

#shop-wrapper {
    z-index: 1000000;
    position: fixed;
    background-image: url("../images/background/pattern5.png");
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin-right: -100%;
    overflow-y: auto;
    -webkit-transition: right 0.4s ease 0s;
    -moz-transition: right 0.4s ease 0s;
    -ms-transition: right 0.4s ease 0s;
    -o-transition: right 0.4s ease 0s;
    transition: right 0.4s ease 0s;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        text-indent: 20px;
        line-height: 40px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: #999;
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: #fff;
                background: rgba(255,255,255,0.2);
            }

            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                text-decoration: none;
            }

    .sidebar-nav > .sidebar-brand {
        height: 55px;
        font-size: 18px;
        line-height: 55px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: #999;
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: #fff;
                background: none;
            }


#sidebar-wrapper.active {
    right: 350px;
    max-width: 100%;
    -webkit-transition: right 0.4s ease 0s;
    -moz-transition: right 0.4s ease 0s;
    -ms-transition: right 0.4s ease 0s;
    -o-transition: right 0.4s ease 0s;
    transition: right 0.4s ease 0s;
}

#shop-wrapper.active {
    right: 100%;
    width: 100%;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}


/* Base Styles */
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: normal;
    text-decoration: none;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px !important;
    position: relative;
}

#cssmenu {
    /*width: 350px;*/
    border-bottom: 4px solid #656659;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}


    #cssmenu > ul > li:first-child > a {
        padding: 13px 10px;
        padding-right: 0px;
    }

        #cssmenu > ul > li:first-child > a > span {
            padding: 0;
        }

    #cssmenu > ul > li:first-child:hover {
        background: #36484c;
        background: -moz-linear-gradient(#36484c 0%, #45463d 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #36484c), color-stop(100%, #45463d));
        background: -webkit-linear-gradient(#36484c 0%, #45463d 100%);
        background: #1d869c;
    }

    #cssmenu > ul > li {
        background: #ffffff;
    }

        #cssmenu > ul > li:hover {
            background: #c1c1c1;
        }

        #cssmenu > ul > li > a {
            font-size: 14px;
            display: block;
            color: #000000;
        }

            #cssmenu > ul > li > a > span {
                display: block;
                padding: 12px 10px;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                border-radius: 4px;
            }

            #cssmenu > ul > li > a:hover {
                text-decoration: none;
            }

        #cssmenu > ul > li.active {
            border-bottom: none;
        }

        #cssmenu > ul > li.has-sub > a span {
            background: url("../images/icon_plus.png") 96% center no-repeat;
        }

        #cssmenu > ul > li.has-sub.active > a span {
            background: url("../images/icon_minus.png") 96% center no-repeat;
        }
    /* Sub menu */
    #cssmenu ul ul {
        display: none;
    }

        #cssmenu ul ul li {
            background: #959494;
        }

            #cssmenu ul ul li:last-child {
                border-bottom: none;
            }

        #cssmenu ul ul a {
            padding: 10px 10px 10px 25px;
            display: block;
            color: #ffffff;
            font-weight: normal;
        }

            #cssmenu ul ul a:before {
                content: "»";
                position: absolute;
                left: 10px;
                color: #C9302C;
            }

            #cssmenu ul ul a:hover {
                color: #C9302C;
            }
