
/*--------------------------------------------------
				     PANEL
---------------------------------------------------*/
#panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#panel-admin {
	float: right;
	height: 100%;
	width: 350px;
	color: #000;
	font-size: 11px;
	text-transform:uppercase;
	font-weight: 700;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.panel-container {
	height: 100%;
	width: 100%;
	padding: 40px;
    overflow-x: hidden;
    overflow-y: scroll;
	right: -15px;
	position: relative;
}
#panel-admin strong {
	text-align: center;
	display: block;
	line-height: 16px;
}
/*#panel .links {
	float: right;
	margin: 150px 0 0 0;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}*/
#panel .links {
 float: right;
 box-shadow: 0 0 5px rgba(0,0,0,0.1);
 position: absolute;
 top: 150px;
 left: -40px;
 margin: 0;
 padding: 0;
}
#panel .links li {
	display: flex;
	width: 40px;
	height: 44px;
	justify-content: center;
	margin-bottom: 1px;
}
#panel .links a {
	display: block;
	height: 44px;
	width: 40px;
}
#panel .links li a {
	position: relative;
	-webkit-transition: color .4s,background-color .4s;
	transition: color .4s,background-color .4s;
}
#panel .open {
	background: url(../images/style-panel-button.png) no-repeat 0 0 #fff;
	float: right;
}
#panel li .open:hover {
	background: url(../images/style-panel-button-hover.png) no-repeat 0 0 #0e4ef1;
}
#panel .purchase {
	background: url(../images/style-panel-purchase.png) no-repeat 0 0 #fff;
}
#panel li .purchase:hover {
	background: url(../images/style-panel-purchase-hover.png) no-repeat 0 0 #0e4ef1;
}
#panel li > a > div {
    position: absolute;
    top: 0;
    right: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 0 12px;
    color: #fff;
    font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;  
	-webkit-transition: color .4s,background-color .4s;
	transition: color .4s,background-color .4s;

}
#panel li:hover > a > div {
    opacity: 1;
    visibility: visible;
    background: #0e4ef1;
    padding: 9px 15px;
}

.menu-options {
    float: left;
	width: 100%;
    margin: 0 0 70 0;
	padding: 0
}
.menu-options li {
    padding: 5px;
    display: block;
    width: 50%;
    float: left;
}
.menu-options li a {
    padding: 5px 0px;
	display: block;
	font-size: 10px;
	text-align: center;
	text-transform:uppercase;
	font-weight: bold;
	border-radius: 2px;
	max-width: 100%;
	letter-spacing: 1px;
	-webkit-transition: color .4s,background-color .4s;
	transition: color .4s,background-color .4s;
	border: 1px solid currentcolor;
	background-color: transparent;
	color: #000;
}
.menu-options li a:hover {
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
}
.menu-options li a.current {
	border: 1px solid #0e4ef1;
	background-color: #0e4ef1;
	color: #fff;
}

.demo-options li {
    margin: 0 0 19px 0;
    display: block;
    width: 100%;
    float: left;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(0,0,0,0.14);
	border: 1px solid #eee;
    border-radius: 2px;
}
.demo-options li img {
    border-radius: 2px;
}
.demo-options li:hover {
	border: 1px solid #0e4ef1;
}
