<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Super Panel: www.menucool.com/ui/super-panel */


/*---- panel ----*/

#panel1 {
    position:fixed;
    z-index:9000;
    top:0;
    left:auto;
	right:0;
	background-color:#fff;
    width:300px;height:100%;
    padding:20px 0;
    box-sizing:border-box;
    box-shadow:4px 0 18px rgba(0,0,0,0.2);
    visibility:hidden;
}
/*---- transparent layer ---- Available when the option transparentLayer is true in pane-panel.js */
.transparent-layer {
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    width:100%;height:100%;
    background-color:rgba(0,0,0,0.4);
    display:none;
    -webkit-transition:opacity 0.3s;
    transition:opacity 0.3s;
}



/*---- panel button ----*/
.panel-button{
    -ms-user-select:none;
    -mos-user-select:none;
    -webkit-user-select:none;
    -o-user-select:none;
    user-select:none;
}


.panel-button   
{
    position:absolute; margin:14px 0 0 12px; top:0; left:auto; right:7%;
    /*display:inline-block;vertical-align:middle;position:relative;*/
    background-color:#515c64;
    height:3px;
    width:24px;
    border-style:solid;
    border-color:#fcfcfc;
    border-top-width:18px;
    border-bottom-width:18px;
    border-left-width:8px;
    border-right-width:8px;
	cursor: pointer;
    box-sizing:content-box;
	}

.panel-button:before, .panel-button:after {
    background-color:#515c64;
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 24px;
    height: 3px;
    display:block;
    transition:all .2s linear;
}
.panel-button:after {
    top: 8px;
}

    
.panel-button.active {
    background-color:transparent;
	
}
.panel-button.active:before {

     position:absolute; margin-top:-20px; margin-rigth:-20px; left:auto;
	content: "X"; font-size:30px; font-weight:bold;
    /*display:inline-block;vertical-align:middle;position:relative;*/
    background-color:transparent;
    height:24px;
    width:24px;
    border-style:solid;
    border-color:transparent;
  border-top-width:18px;
    border-bottom-width:18px;
    border-left-width:8px;
    border-right-width:8px;
	cursor: pointer;
    box-sizing:content-box;
	z-index:9500;
}


</pre></body></html>