@charset "utf-8";
.side-panel {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: -360px;
	background: #424344;
	transition: all 0.5s;
	width: 320px;
	height: 100vh;
	box-shadow: 10px 0 20px rgba(0,0,0,0.4);
	color: #FFF;
	padding: 40px 20px;
 }
.side-title {
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #BFE2FF;
 }
.css-panel-link-wrapper {
	text-align: center;
 }
.css-panel-link-label {
	display: inline-block;
 }
.css-panel-link-label .side-b {
	margin: 10px;
	text-decoration: none;
	position: relative;
	font-size: 20px;
	line-height: 20px;
	padding: 12px 30px;
	color: #424344;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Roboto', Тahoma, sans-serif;
	background: #f8e71c;
	cursor: pointer;
	border: 2px solid #BFE2FF;

 }
.css-panel-link-label .side-b:hover,
.css-panel-link-label .side-b:active,
.css-panel-link-label .side-b:focus {
	color: #424344;
 }
.css-panel-link-label .side-b:after,
.css-panel-link-label .side-b:before {
	position: absolute;
	height: 4px;
	left: 50%;
	bottom: -6px;
	content: "";
	transition: all 280ms ease-in-out;
	width: 0;
 }
.css-panel-link-label .side-open:after,
.css-panel-link-label .side-open:before {
	background: green;
 }
.css-panel-link-label .side-b:before {
	top: -6px;
 }
.css-panel-link-label .side-b:hover:after,
.css-panel-link-label .side-b:hover:before {
	width: 100%;
	left: 0;
 }
.css-panel-side-button {
	font-size: 30px;
	border-radius: 20px;
	position: absolute;
	z-index: 1;
	top: 8px;
	right: 8px;
	cursor: pointer;
	transform: rotate(45deg);
	color: #BFE2FF;
	transition: all 280ms ease-in-out;
 }
.css-panel-side-button:hover {
	transform: rotate(45deg) scale(1.1);
	color: #FFF;
 }
img.css-panel-link-image {width:100%}