/*
 *
 *		THEME-OPTIONS.CSS
 *
 *	+ PANEL STYLE
 *	+ COLORS
 *	+ PATTERNS
 *
 */

/***********************************************************************************
 *	+ PANEL STYLE
 ***********************************************************************************/

#theme-options {
	padding: 0 20px;
	z-index: 999;
	background-color: #fff;
	position: fixed;
	top: 128px;
	left: -250px;
	width: 250px;
	color: #252525;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#theme-options.open {
	left: 0;
	box-shadow: 1px 1px 2px 0 #ccc;
}

#theme-options a {
	text-decoration: none;
	color: #252525;
}

#theme-options > a {
	position: absolute;
	top: 0;
	right: -60px;
	display: block;
	background-color: #252525;
	color: #fff;
	font-size: 25px;
	text-align: center;
	text-decoration: none;
	width: 60px;
	height: 60px;
	line-height: 60px;
}

#theme-options > a:before {
	font-family: "FontAwesome";
	content: "\f085";
}

#theme-options h4 {
	text-align: center;
	color: #fff;
	background-color: #252525;
	padding: 8px 0;
	margin: 0 -20px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.25px;
}

#theme-options h5 {
	margin-bottom: 10px;
	color: #252525;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}

.sticky,
.colors {
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.footer {
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.colors a {
	display: block;
	width: 30px;
	height: 30px;
	float: left;
	border-radius: 50%;
	margin-right: 10px;
	margin-bottom: 10px;
}

.colors a:last-child {
	margin-right: 0;
}

/***********************************************************************************
 *	+ COLORS
 ***********************************************************************************/

#default {
	background-color: #907f65;
}

#gold {
	background-color: #dca44d;
}

#dark-gold {
	background-color: #c29765;
}

#bordo {
	background-color: #660000;
}

#orange {
	background-color: #f0501f;
}

#red {
	background-color: #b24a3b;
}

#yellow {
	background-color: #e7c347;
}

#green {
	background-color: #7a863e;
}

#blue {
	background-color: #578dcd;
}

#silver {
	background-color: #ababab;
}

/***********************************************************************************
 *	+ TOGGLE BUTTON
 ***********************************************************************************/

.button {
	position: relative;
	display: inline-block;
	width: 55px;
	height: 29px;
	border: 2px solid #c1c1c1;
	border-radius: 15px;
	margin: 0 10px;
	vertical-align: middle;
}

.button.active span {
	left: 50%;
}

.button a {
	position: absolute;
	top: 2px;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.button a.active {
	border: 2px solid #4cd764;
	background-color: #4cd764;
}

.button .sticky-on,
.button .footer-parallax-on {
	left: 2px;
}

.button .sticky-off,
.button .footer-parallax-off {
	left: 29px;
}

.sticky-header-off #header-sticky {
	opacity: 0 !important;
}

.footer-parallax-off #footer-container {
	position: relative;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
}

.footer-parallax-off #main-container {
	margin-bottom: 0 !important;
}

@media (max-width: 992px) {

	#theme-options { display: none; }

}