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

	#theme-options {
		padding: 0 20px;
		z-index: 999;
		background-color: #fff;
		position: fixed;
		top: 115px;
		left: -250px;
		width: 250px;
		color: #323232;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		-webkit-transition: all 0.5s;
				transition: all 0.5s;
	}
	
	#theme-options.open {
		left: 0;
		box-shadow: 1px 1px 2px 0 #ccc;
	}
	
	#theme-options a {
		text-decoration: none;
		color: #323232;
	}
	
	#theme-options > a {
		position: absolute;
		top: 0;
		right: -60px;
		display: block;
		background-color: #323232;
		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-transform: uppercase;
		text-align: center;
		color: #fff;
		background-color: #323232;
		padding: 8px 0;
		margin: 0 -20px;
		font-weight: 700;
	}
	
	#theme-options h5 {
		margin-bottom: 10px;
		color: #3a3a3a;
		font-weight: 600;
	}
	
	.colors,
	.patterns,
	.countdown-section {
		border-bottom: 1px solid #ccc;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.parallax-section {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.colors a {
		display: block;
		width: 30px;
		height: 30px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.colors a:last-child {
		margin-right: 0;
	}
	
	.patterns a {
		display: block;
		width: 30px;
		height: 30px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
		background-repeat: no-repeat;
		background-position: center center;
		background-color: #282e3a;
	}
	
	.countdown-section {
		position: relative;
	}
	
	.countdown-section > a {
		position: relative;
		display: block;
		padding: 5px 10px;
		border: 1px solid #ccc;
	}
	
	.countdown-section > a:after {
		position: absolute;
		top: 50%;
		right: 10px;
		width: 0; 
		height: 0; 
		border-top: 8px solid #ccc;
		border-right: 5px solid transparent; 
		border-left: 5px solid transparent; 
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.countdown-section ul {
		position: absolute;
		z-index: 1;
		top: 37px;
		left: 0;
		right: 0;
		display: none;
		padding: 5px 0;
		border: 1px solid #ccc;
		background-color: #fff;
		list-style: none;
	}
	
	.countdown-section ul li a {
		display: block;
		padding: 0 15px;
		-webkit-transition: all 0.25s;
				transition: all 0.25s;
	}
	
	.countdown-section ul li a:hover {
		background-color: #f1f1f1;
	}
	
	.button {
		position: relative;
		display: inline-block;
		width: 65px;
		height: 35px;
		border: 2px solid #4cd764;
		border-radius: 30px;
		margin: 0 10px;
		background-color: #4cd764;
		vertical-align: middle;
	}
	
	.button a {
		position: absolute;
		top: -2px;
		display: block;
		width: 35px;
		height: 35px;
		border-radius: 50%;
	}
	
	.button a.active {
		border: 2px solid #4cd764;
		background-color: #fff;
	}
	
	.button .parallax-on {
		left: -2px;
	}
	
	.button .parallax-off {
		right: -2px;
	}
	
	.parallax-off .parallax {
		background-attachment: scroll;
		background-position: center center !important;
	}
	
	.parallax-on .parallax {
		background-attachment: inherit;
	}

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

	#default {
		background-color: #f2d44f;
	}
	
	#beige {
		background-color: #987f5f;
	}
	
	#red {
		background-color: #f40b2b;
	}
	
	#blue {
		background-color: #0790df;
	}
	
	#yellow {
		background-color: #e4a025;
	}

/***********************************************************************************
 *	+ PATTERNS
 ***********************************************************************************/ 
	
	.bg-1 { 
		background: url(images/bg-1-thumb.jpg) repeat top left;
	}
	
	.bg-2 { 
		background: url(images/bg-2-thumb.jpg) repeat top left;
	}
	
	.bg-3 { 
		background: url(images/bg-3-thumb.jpg) repeat top left;
	}
	
	.bg-4 { 
		background: url(images/bg-4-thumb.jpg) repeat top left;
	}
	
	.bg-5 { 
		background: url(images/bg-5-thumb.jpg) repeat top left;
	}
	
	#countdown.bg-1 {
		background: url(images/bg-1.jpg) no-repeat center center;
	}
	
	#countdown.bg-2 {
		background: url(images/bg-2.jpg) no-repeat center center;
	}
	
	#countdown.bg-3 {
		background: url(images/bg-3.jpg) no-repeat center center;
	}
	
	#countdown.bg-4 {
		background: url(images/bg-4.jpg) no-repeat center center;
	}
	
	#countdown.bg-5 {
		background: url(images/bg-5.jpg) no-repeat center center;
	}
	
	@media (max-width: 992px) {
		
		#theme-options { display: none; }
		
	}