/*
 *
 *		THEME-OPTIONS.CSS
 *
 *	+ PANEL STYLE
 *	+ COLORS
 *	+ PATTERNS
 *
 */
 
/***********************************************************************************
 *	+ PANEL STYLE
 ***********************************************************************************/

	#theme-options {
		padding: 0 20px;
		z-index: 999;
		background-color: #fff;
		position: fixed;
		top: 162px;
		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: 32px;
		text-align: center;
		text-decoration: none;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
	
	#theme-options > a:before {
		font-family: "berlin-icons";
		content: "\e92a";
	}
	
	#theme-options h4 {
		text-transform: uppercase;
		text-align: center;
		color: #fff;
		background-color: #323232;
		padding: 8px 0;
		margin: 0 -20px;
		font-size: 18px;
		font-weight: 700;
	}
	
	#theme-options h5 {
		text-transform: uppercase;
		margin-bottom: 10px;
		color: #323232;
		font-size: 16px;
		font-weight: 700;
	}
	
	.colors,
	.layout {
		margin-bottom: 15px;
	}
	
	.colors {
		border-bottom: 1px solid #ccc;
		padding-bottom: 15px;
	}
	
	.colors a {
		position: relative;
		display: block;
		width: 30px;
		height: 30px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.colors a:last-child {
		margin-right: 0;
	}
	
	.boxed-bg {
		padding-top: 15px;
		border-top: 1px solid #ccc;
	}
	
	.layout a {
		display: block;
		float: left;
		width: 50%;
		text-align: center;
		background: none;
	}
	
	.layout a img {
		display: block;
		margin: 0 auto;
	}
	
	.patterns {
		padding-bottom: 15px;
	}
	
	.patterns a {
		display: block;
		width: 30px;
		height: 30px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
	}

/***********************************************************************************
 *	+ COLORS
 ***********************************************************************************/

	#default {
		background-color: #083c92
	}
	
	#green {
		background-color: #00c760;
	}
	
	#purple {
		background-color: #5b18f6;
	}

/***********************************************************************************
 *	+ PATTERNS
 ***********************************************************************************/ 
	
	.bg-pattern-1 { 
		background: url(images/bg-pattern-1.png) repeat top left;
	}
	
	.bg-pattern-2 { 
		background: url(images/bg-pattern-2.png) repeat top left;
	}
	
	.bg-pattern-3 { 
		background: url(images/bg-pattern-3.png) repeat top left;
	}
	
	.bg-pattern-4 { 
		background: url(images/bg-pattern-4.png) repeat top left;
	}
	
	.bg-pattern-5 { 
		background: url(images/bg-pattern-5.png) repeat top left;
	}
	
	.bg-pattern-6 { 
		background: #fff repeat top left;
	}
	
	a.bg-pattern-6 {
		border: 1px solid #ccc;
	}
	
	.bg-pattern-7 { 
		background: #efefef repeat top left;
	}
	
	.bg-pattern-8 { 
		background: #e3e3e3 repeat top left;
	}
	
	.bg-pattern-9 { 
		background: #ecf2f8 repeat top left;
	}
	
	.bg-pattern-10 { 
		background: #f4ede1 repeat top left;
	}
	
	@media (max-width: 992px) {
		
		#theme-options { display: none; }
		
	}