.bbhd-menu-canvas-wrap {
    display: inline-block;
    &.open .bbhd-header-menuside {
        right: 0;
        visibility: visible;
    }
    .bbhd-open-menucanvas {
        @extend .transition;
    }
    .bbhd-header-menuside {
        background-color: #1b1b1b;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        padding: 30px;
        position: fixed;
        top: 0;
        width: 270px;
        z-index: 90;
        @extend .transition;
        text-align: left;
        right: -270px;
        visibility: hidden;
        
        .bbhd-menuside-inside {
            position: relative;
            .bbhd-close-menucanvas {
                position: absolute;
                top: 20px;
                right: -10px;
                display: block;
                height: 20px;
                width: 20px;
                font-size: 20px;
                color: #fff;
                cursor: pointer;
                text-align: center;
                @extend .transition;
            }
        }
        
    }
    
    // style dropdown.
    &.open.style-dropdown .dropdown-content {
        display: block;
    }
    &.style-dropdown {
        position: relative;
        
        .dropdown-content {
            display: none;
            position: absolute;
            min-width: 160px;
            right: -30px;
            z-index: 999;
            
            .dropdown-inner-container {
                padding: 10px;
                margin-top: 8px;
                width: 490px;
                background: white;
                float: left;
                position: relative;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                border-radius: 4px;
                -webkit-box-shadow: 0 1px 6px rgba(0,0,0,.15);
                -moz-box-shadow: 0 1px 6px rgba(0,0,0,.15);
                box-shadow: 0 1px 6px rgba(0,0,0,.15);
                -webkit-transition: all .1s ease-out;
                -moz-transition: all .1s ease-out;
                -ms-transition: all .1s ease-out;
                -o-transition: all .1s ease-out;
                transition: all .1s ease-out;
                // .triangle {
                //     width: 0;
                //     height: 0;
                //     position: absolute;
                //     border-left: 8px solid transparent;
                //     border-right: 8px solid transparent;
                //     border-bottom: 8px solid white;
                //     top: -8px;
                //     right: 29px;
                //     margin-left: 26px;
                // }
            }
        }
    }
    
}