/*! Bootstrap-off-canvas-push - v1.0.2
 * Copyright (c) 2015 Steffen Ermel; Licensed MIT *
 */
html, body {
    height: 100%;
    min-height: 100%;
}

    body.active {
        overflow-x: hidden;
        overflow-y: hidden;
    }

.overlay-offcanvas {
    background-color: transparent;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 0px;
    z-index: 100;
}

    .overlay-offcanvas.active {
        background-color: rgba(0,0,0,0.5);
        -webkit-transition: background-color 0.35s;
        transition: background-color 0.35s;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
    }
    .transition {
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}


@media screen and (max-width: 991px) {
    
    
        .navbar > .navbar-collapse {
            position: fixed;
            z-index: 9999;
            bottom: 0px;
            top: 0px;
            right: -50%;
            margin: 0;
            padding: 0px;
            width: 48%;
            white-space: nowrap;
            box-shadow: none;
            border-top: 0px solid white;
            display: block;
            overflow-y: auto;
            background-color: #222;
            overflow-x: hidden;
        }


            .navbar > .navbar-collapse.active {
                right: 0px;
            }

            .navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

     .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%; /* 6 columns */
  }

    .sidebar-nav .navbar .navbar-collapse {
        padding: 0;
        max-height: none;
    }

    .sidebar-nav .navbar ul {
        float: none;
    }

        .sidebar-nav .navbar ul:not {
            display: block;
        }

    .sidebar-nav .navbar li {
        float: none;
        display: block;
    }

        .sidebar-nav .navbar li a {
            padding-top: 12px;
            padding-bottom: 12px;
        }
}



@media (min-width: 992px) {

    .overlay-offcanvas {
        display: none;
    }
}