/*
    DEMO STYLE
*/


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#qp_sidebar {
  display: grid;
  grid-template-areas: "close""ctrls";
  grid-template-rows: .5fr 8fr;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    /* background: #7386D5; */
    color: #fff;
    transition: all 0.3s;
    overflow-y: none;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#qp_sidebar.active {
    left: 0;
    z-index: 1001;
}

#qp_dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #7386D5;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#qp_dismiss:hover {
    background: #fff;
    color: #7386D5;
}

.qp_overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.qp_overlay.active {
    display: block;
    opacity: 1;
}

.navbar-container{
  display:grid !important;
  grid-template-areas: "left right";
}
.container-fluid.navbar-container{padding:0 !important;}
.quick_panel_icon_box{
  grid-area:left;
}

#qp_sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#qp_sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#qp_sidebar ul p {
    color: #fff;
    padding: 10px;
}

#qp_sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#qp_sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#qp_sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}


.fade{background-image: linear-gradient(rgb(74, 74, 74) 400px, rgb(255, 255, 255) 100%);}

.ui-header-fixed {
    top: -1px;
    /* padding-top: 1px; */
}
.ui-header-fixed, .ui-footer-fixed {
    left: 0;
    right: 0;
    width: 100%;
    position: fixed;
    z-index: 1000;
}
.ui-header, .ui-footer {
    border-width: 1px 0;
    border-style: solid;
    position: relative;
}
.ui-bar-a {
    background-color: #e9e9e9;
    border-color: #ddd;
    color: #333;
    text-shadow: 0 1px 0 #eee;
    font-weight: 700;
}


/*issue bugfix*/
/*.ui-panel-dismiss{display:none !important;}*/

/*.ui-panel-page-content-position-left{left:12em;right:-12em;}*/
