



.sidebar-demos-wrapper {
    width: 350px;
    height: 100vh;
    background-color: #6e63e7;
    position: fixed;
    top: 0;
    right: -350px;
    z-index: 9999;
    transition: all 0.5s ease;
    display: none;
}
@media (min-width: 991px) {
  .sidebar-demos-wrapper{
    display: block;
  }
}
.open-side-demos .sidebar-demos-wrapper {
    right: -20px;
}

.sidebar-demos-wrapper .demo-bar {
    width: 60px;
    height: 60px;
    background-color: #6e63e7;
    color: white;
    position: absolute;
    left: -60px;
    top: 120px;
    z-index: 999;
    text-align: center;
    line-height: 21px;
    padding: 12px 0;
    cursor: pointer;
    border-radius: 3px 0 0 0px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255, 0.2);
    border-right: none;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
}
.sidebar-demos-wrapper .demo-bar i {
    display: block;
    color: white;
    font-size: 18px;
}

.sidebar-demos-wrapper .demo-area {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 15px;
}

.sidebar-demos-wrapper .demo-area h2 {
    font-size: 18px;
    text-align: center;
    color: white;
    padding: 10px 0;
}

.sidebar-demos-wrapper .demo-area .demo-item {
    width: 100%;
    margin-bottom: 15px;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}