<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 *
 *		THEME-OPTIONS.CSS
 *
 *	+ PANEL STYLE
 *	+ COLORS
 *	+ PATTERNS
 *
 */
 
/***********************************************************************************
 *	+ PANEL STYLE
 ***********************************************************************************/

	#theme-options {
		padding: 0 20px;
		z-index: 999;
		background-color: #fff;
		position: fixed;
		top: 110px;
		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 &gt; a {
		position: absolute;
		top: 0;
		right: -60px;
		display: block;
		background-color: #323232;
		color: #fff;
		font-size: 36px;
		text-align: center;
		text-decoration: none;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
	
	#theme-options &gt; a:before {
		font-family: "zaria-icons";
		content: "\e941";
	}
	
	#theme-options h4 {
		text-transform: uppercase;
		text-align: center;
		color: #fff;
		background-color: #323232;
		padding: 8px 0;
		margin: 0 -20px;
		font-weight: 500;
	}
	
	#theme-options h5 {
		text-transform: uppercase;
		margin-bottom: 10px;
		color: #000;
		font-weight: 500;
	}
	
	.colors,
	.layout {
		margin-bottom: 15px;
	}
	
	.colors {
		padding-bottom: 15px;
		border-bottom: 1px solid #ccc;
	}
	
	.boxed-bg {
		padding-top: 15px;
		border-top: 1px solid #ccc;
	}
	
	.colors a {
		display: block;
		width: 30px;
		height: 30px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.colors a:last-child {
		margin-right: 0;
	}
	
	.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: #69b0e7;
	}
	
	#green {
		background-color: #72b66b;
	}
	
	#beige {
		background-color: #968d77;
	}
	
	#purple {
		background-color: #8779a2;
	}
	
	#blue {
		background-color: #000dbe;
	}

/***********************************************************************************
 *	+ 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: #d7eaf9 repeat top left;
	}
	
	
	@media (min-width: 1400px) {
			
		.boxed #page-wrapper,
		.boxed .is-sticky header {
			max-width: 1350px;
		}
		
	}
			
	@media (max-width: 992px) {
		
		#theme-options { display: none; }
		
	}</pre></body></html>