/* Main menu wrapper */
.cbp-hsmenu-wrapper {
    /*position: relative;*/
}


/* 100% width bar for menu */
.cbp-hsinner {
    position: relative;
    z-index: 100;
}

/* Submenu style */
.cbp-hssubmenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 0;
    visibility: hidden;
}

    .cbp-hssubmenu:before,
    .cbp-hssubmenu:after {
        content: " ";
        display: table;
    }

    .cbp-hssubmenu:after {
        clear: both;
    }

    /* Let's allow 6 item in a row */
    .cbp-hssubmenu > li {
        opacity: 0;
        -webkit-transition: opacity 0.1s 0s;
        -moz-transition: opacity 0.1s 0s;
        transition: opacity 0.1s 0s;
    }



.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
    z-index: 1000;
    visibility: visible;
}

    .cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
        opacity: 1;
        -webkit-transition: opacity 0.5s 0.1s;
        -moz-transition: opacity 0.5s 0.1s;
        transition: opacity 0.5s 0.1s;
    }

/* Helper div for animating the background */
.cbp-hsmenubg {
    z-index: 0;
    height: 0px;
}

.no-touch .cbp-hsmenubg {
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}

/*@media screen and (max-width: 65em) {
    .cbp-hsmenu-wrapper {
        font-size: 80%;
    }
}

@media screen and (max-width: 51.4375em) {
    .cbp-hsmenu-wrapper {
        font-size: 100%;
    }

        .cbp-hsmenu-wrapper .cbp-hsmenu {
            padding: 0;
            max-width: none;
            width: 100%;
        }

    .cbp-hsmenu > li {
        border-top: 1px solid rgba(255,255,255,0.5);
        text-align: center;
        margin: 0 auto;
        display: block;
    }

        .cbp-hsmenu > li:first-child {
            border-top: none;
        }

        .cbp-hsmenu > li > a {
            display: block;
        }

            .cbp-hsmenu > li > a:not(:only-child):before {
                line-height: 1.8;
                right: 0;
                position: absolute;
                font-size: 200%;
            }

    .cbp-hsmenubg {
        display: none;
    }

    .cbp-hssubmenu {
        background: #f7f7f7;
        position: relative;
        overflow: hidden;
        height: 0;
    }

    .cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
        height: auto;
    }

    .cbp-hssubmenu > li {
        width: 30%;
    }

        .cbp-hssubmenu > li:nth-child(-n+6),
        .cbp-hssubmenu > li:nth-child(6n+1) {
            box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;
        }

        .cbp-hssubmenu > li:nth-child(-n+3) {
            box-shadow: -28px 0 0 -27px #ddd;
        }

        .cbp-hssubmenu > li:nth-child(3n+1) {
            box-shadow: 0 -28px 0 -27px #ddd;
        }
}

@media screen and (max-width: 25em) {
    .cbp-hssubmenu > li {
        width: 100%;
        display: block;
    }

    .cbp-hsmenu-wrapper .cbp-hssubmenu > li {
        box-shadow: 0 1px #cecece;
        text-align: left;
    }

    .cbp-hssubmenu > li a {
        text-align: left;
        line-height: 50px;
        padding: 0.4em 1em;
    }

        .cbp-hssubmenu > li a img {
            float: left;
            max-height: 50px;
        }

        .cbp-hssubmenu > li a span {
            min-height: 0;
            margin: 0;
        }
}*/
