/* ====== Wrapper for entire sliding panel ====== */

#sidebar-sliding-panel {
	/*position: absolute;*/
	position: relative;
	top: 0;
	display: none;
	width: 100%;
	z-index: 9999;
}
.admin-bar #sidebar-sliding-panel {
	/*top: 28px;*/
	top: 0px;
}
.admin-bar.mp6 #sidebar-sliding-panel {
	top: 32px;
}
@media screen and (max-width: 782px) {

	.admin-bar.mp6 #sidebar-sliding-panel {
		top: 46px;
	}
}

.visible-title {
	position: absolute;
	top: 10px;
	right: 0;
	left: 0;
}
.visible-title h2 {
	margin: 0px !important;
}
/* === Inner wrapper for sliding panel === */

.sp-wrap {
	/*position: absolute;*/
	position: relative;
	width: 100%;
}
/* === Sliding Panel sidebar === */

.sp-content {
	display: none;
	overflow: hidden;
	width: 100%;
	background: #0d0d0d;
}
.sp-content-wrap {
	overflow: hidden;
	/*max-width: 1200px;*/
	max-width: 980px;
	margin: 0 auto;
	padding: 50px 20px 25px;
}
.sp-content-wrap .social-links {
	margin-top: 20px !important;
}
/* Widgets */

.sp-content .widget {
	overflow: hidden;
	float: left;
	width: 100%;
	margin: 0 auto 20px;
	padding: 0;
	/*color: #888;*/
	background: transparent;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
.sp-content .widget:nth-child( 4n + 4 ) {
	clear: both;
}
@media only screen and (max-width: 768px) {

	.sp-content .widget {
		width: 100%;
	}
	.sp-content .widget:nth-child( 4n + 4 ) {
		clear: none;
	}
	.sp-content .widget:nth-child( odd ) {
		clear: both;
	}
}
@media only screen and (max-width: 480px) {

	.sp-content .widget {
		clear: both;
		width: 100%;
	}
}
.sp-content .widget-title {
	padding: 0;
	/*color: #888;*/
	text-transform: none;
	background: transparent;
	border: none;
}
.sp-content a {
	color: #fff;
	text-decoration: none;
}
.sp-content a:hover {
	text-decoration: underline;
}
/* === Toggle button ==== */

.sp-toggle {
	clear: both;
	/*max-width: 1200px;*/
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}
.sp-toggle a {
	display: inline-block;
	/*float: right;*/
	padding: 10px 35px;
	color: #d3d3d3;
	text-indent: -9999px;
	/*background: #000;*/
}
.sp-toggle a:after {
	font-family: 'fontello';
	font-size: 30px;
	color: #ffffff;
	opacity: 0.6;
	width: 25px;
	display: block;
	text-indent: 1px;
	padding-top: 10px;
}
.sp-toggle a:hover:after {
	opacity: 1;
}
.sp-toggle a[aria-selected="false"]:after {
	content: '\a05';
}
.sp-toggle a[aria-selected="true"]:after {
	content: '\a06';
}
.sp-toggle a:hover {
	color: #d3d3d3;
}
@media only screen and (max-width: 480px) {

	.sp-toggle {
		text-align: center;
	}
	.sp-toggle a {
		float: none;
		margin: 0 auto;
	}
}