﻿
/* General styles for all menus */
.cbp-spmenu {
    background: #fff;
    position: fixed;
    font-family: 'Barlow', sans-serif;
}

    .cbp-spmenu a {
        display: block;
        color: #000;
        font-size: 0.8rem;
        font-weight: bold;
        text-decoration: none;
    }

        .cbp-spmenu a:hover {
            background-color: rgba(0,0,0,0.1);
        }

        .cbp-spmenu a:active {
            background: #a1c748;
            color: #332b28;
        }

.sn_dropdown {
    background: #3a785d;
}

    .sn_dropdown a { /* My style colour dropdown text sep from main */
        display: block;
        color: #fff;
    }


/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000;
    overflow-y: scroll;
}

    .cbp-spmenu-vertical a {
        border-bottom: 1px solid #fff;
        padding: 0.8em 1em;
        text-decoration: none;
    }

.cbp-spmenu-horizontal {
    width: 100%;
    height: 250px;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}


    .cbp-spmenu-horizontal a {
        float: left;
        width: 100%;
        padding: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }


/* Vertical menu that slides from the left or right */
.cbp-spmenu-right {
    right: -240px;
}


    .cbp-spmenu-right.menu-open {
        right: 0;
    }

    .cbp-spmenu-right.cbp-spmenu-open {
        right: 0;
        margin-top: 112px;
        overflow-y: auto;
        z-index: 100000;
    }

.sn_dropdown {
    display: none
}

.glyphicon {
    float: right;
}

.glyphicon-plus:before {
    content: "\2b";
}

.glyphicon-minus:before {
    content: "\2212";
}
/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
    top: -250px;
}

.cbp-spmenu-bottom {
    bottom: -250px;
}

.cbp-spmenu-top.menu-open {
    top: 150px;
}

.cbp-spmenu-bottom.menu-open {
    bottom: 0px;
}


/* Push classes applied to the body */
.push-body {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.push-body-toright {
    left: 240px;
}

.push-body-toleft {
    left: -240px;
}

/* Transitions */
.cbp-spmenu,
.push-body {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 1;
}

    .glyphicon-plus:before

{
    content: "\2b";
}

.glyphicon-minus:before {
    content: "\2212";
}



