﻿@charset "UTF-8";

/* --------------------------------- Menu CSS START--------------------------------- */
.menuicon {
    cursor: pointer;
}
/*.menublk-wrap {width:260px;height:100%;background:#fff;position:fixed;right:0;top:0;color:#000;transform:translateX(100%);-moz-transform:translateX(100%);-webkit-transform:translateX(100%);z-index:9999;}*/
.menublk-wrap {
    background: rgb(184 230 246)  url("../images/nav-bg.jpg") repeat-x scroll 0 0;
    color: #000;
    /*height: 100%;*/
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    width: 345px;
    z-index: 9999;
}

    .menublk-wrap.open-wrap {
        transform: translateX(0%);
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -webkit-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        position: fixed;
        right: 0;
        box-shadow: 0px 5px 15px #1c1b1b;
        height: 100%;
    }

    .menublk-wrap.close-wrap {
        transform: translateX(100%);
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transition: all 0.6s ease;
        -moz-transition: all 0.6s ease;
        -webkit-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
        height: 100%;
    }

.menuloader {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
}


.close {
    background: rgba(0, 0, 0, 0) url("../images/close1.png") no-repeat scroll 0 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0 5px;
}

    .close:hover {
        background: rgba(0, 0, 0, 0) url("../images/close1.png") no-repeat scroll 0 -20px;
    }

.cattitle {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0 8px;
}

.catitem {
    display: inline-block;
}

.category {
    background: #61c6e9;
    display: inline-block;
    height: 100%;
    padding: 11px 7px;
}

.menusearch {
    padding: 13px 0;
    background: #e7e4e4;
    width: 100%;
}

.searchentry {
    width: 276px;
    border: 1px solid #cac8c8;
    padding: 7px 8px;
    background: #fff url('../images/menu-search.png') no-repeat 97% 50%;
}


.menunav {
    display: inline-block;
    height: 100%;
    padding: 0;
    vertical-align: top;
    width: 290px;
}

    .menunav li {
        color: #515151;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        font-weight: 600;
        list-style: outside none none;
        margin: 0 0 5px 0;
        padding: 9px 10px;
        position: relative;
        text-transform: uppercase;
        cursor: pointer;
        border-bottom: 1px solid #61c6e9
    }
        /*.menunav li a {color:#515151;display:block;background: rgba(0, 0, 0, 0) url("../images/menu-arrow.png") no-repeat 97% 50%;}*/
        .menunav li a.submenu {
            color: #515151;
            display: block;
            background: rgba(0, 0, 0, 0) url("../images/menu-arrow.png") no-repeat 97% 50%;
        }

        .menunav li a {
            color: #000;
            display: block;
            font-size: 14px;
            font-weight: 500;
        }

        .menunav li::before {
            background: rgba(0, 0, 0, 0) url("../images/menu-bullet.png") no-repeat scroll 0 0;
            content: "";
            height: 5px;
            left: 9px;
            padding: 0;
            position: absolute;
            top: 15px;
            width: 5px;
        }

        .menunav li::after {
            content: "";
            height: 10px;
            position: absolute;
            right: 10px;
            top: 9px;
            width: 6px;
        }

        .menunav li ul li {
            font-size: 13px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            margin: 0;
        }

            .menunav li ul li a {
                color: #393939;
                background: none;
            }

            .menunav li ul li:hover a {
                color: #005aab;
            }

            .menunav li ul li::after {
                background: none;
            }

            .menunav li ul li::before {
                background: url("../images/menu-inner-bullet.png") no-repeat scroll 0 0;
                position: absolute;
                content: "";
                width: 4px;
                height: 4px;
            }

        .menunav li ul {
            margin: 0 0 0 15px;
        }
        /*.menunav li:hover {background:#f2efef}*/
        .menunav li:hover a {
            color: #000;
        }
        /*.menunav li a.opensub {background:url("../images/menu-active-arrow.png") no-repeat 97% 50%;}*/
        .menunav li a.submenu.opensub {
            background: url("../images/menu-active-arrow.png") no-repeat 97% 50%;
        }

        .menunav li:last-child {
            border: medium none;
        }
        

@media screen and (max-width:600px) {
    .menunav {
        width: 84%;
    }

    .menublk-wrap {
        width: 62%;
    }
}

@media screen and (max-width:530px) {
    .menublk-wrap {
        width: 64%;
    }
}

@media screen and (max-width:510px) {
    .menublk-wrap {
        width: auto;
    }


    .menunav li a {
         font-size: 14px;
    }
}

@media screen and (max-width:480px) {

    .category {
        width: 10%;
        padding: 11px 4px;
    }

    .menunav li {
        padding: 10px;
    }

    .close.rightcontent > img {
        width: 100%;
    }
}


/* --------------------------------- Menu CSS END--------------------------------- */








