/*
 *
 *		theme-options.CSS
 *
 *	+ PANEL STYLE
 *	+ COLORS
 *	+ PATTERNS
 *
 */
 
/***********************************************************************************
 *	+ PANEL STYLE
 ***********************************************************************************/

	#theme-options {
		padding: 0 20px;
		z-index: 999;
		background-color: #fff;
		position: fixed;
		top: 150px;
		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 {
		display: block;
		font-family: "oslo-icons";
		content: "\ea47";
		-webkit-animation: icon-rotate 1.5s linear infinite;
				animation: icon-rotate 1.5s linear infinite;
	}
	
	@-webkit-keyframes icon-rotate {
		0% {
			-webkit-transform: rotate(0);
				-ms-transform: rotate(0);
					transform: rotate(0);
		}
		100% {
			-webkit-transform: rotate(360deg);
				-ms-transform: rotate(360deg);
					transform: rotate(360deg);
		}
	}

	@keyframes icon-rotate {
		0% {
			-webkit-transform: rotate(0);
				-ms-transform: rotate(0);
					transform: rotate(0);
		}
		100% {
			-webkit-transform: rotate(360deg);
				-ms-transform: rotate(360deg);
					transform: rotate(360deg);
		}
	}
	
	#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;
		font-size: 15px;
	}
	
	.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;
	}
	
	.themes-slider {
		margin: 0 -5px 20px;
	}
	
	.themes-slider .item {
		padding: 0 5px;
	}
	
	.themes-slider a:after {
		position: absolute;
		top: 0;
		right: 5px;
		bottom: 0;
		left: 5px;
		padding-top: 11px;
		background-color: rgba(36, 14, 53, 0.95);
		color: #fff;
		font-size: 12px;
		font-weight: 600;
		text-align: center;
		text-transform: uppercase;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.themes-slider a:hover:after {
		opacity: 0.75;
	}
	
	.themes-slider .owl-prev,
	.themes-slider .owl-next {
		position: absolute;
		top: 50%;
		width: 32px;
		height: 32px;
		background: transparent;
		text-align: center;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.themes-slider .owl-prev:before,
	.themes-slider .owl-next:before {
		font-family: "FontAwesome";
		font-size: 24px;
	}
	
	.themes-slider .owl-prev:before {
		content: "\f104";
	}
	
	.themes-slider .owl-next:before {
		content: "\f105";
	}
	
	.themes-slider .owl-prev:hover,
	.themes-slider .owl-next:hover {
		background: transparent;
		opacity: 0.5;
	}
	
	.themes-slider .owl-next {
		right: -25px;
	}
	
	.themes-slider .owl-prev {
		left: -25px;
	}

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

	#default {
		background-color: #fddb00;
	}
	
	#blue {
		background-color: #71d0ee;
	}
	
	#green {
		background-color: #a8ee7e;
	}
	
	#red {
		background-color: #ff55a4;
	}
	
	#purple {
		background-color: #ceb1ef;
	}

/***********************************************************************************
 *	+ PATTERNS
 ***********************************************************************************/ 
	
	.bg-pattern-1 { 
		background: url(images/bg-pattern-1.jpg) no-repeat top left fixed;
	}
	
	.bg-pattern-1.thumb { 
		background: url(images/bg-pattern-1-thumb.jpg) no-repeat center center;
	}
	
	.bg-pattern-2 { 
		background: url(images/bg-pattern-2.jpg) no-repeat top left fixed;
	}
	
	.bg-pattern-2.thumb { 
		background: url(images/bg-pattern-2-thumb.jpg) no-repeat center center;
	}
	
	.bg-pattern-3 { 
		background: url(images/bg-pattern-3.jpg) no-repeat top left fixed;
	}
	
	.bg-pattern-3.thumb { 
		background: url(images/bg-pattern-3-thumb.jpg) no-repeat center center;
	}
	
	.bg-pattern-4 { 
		background: url(images/bg-pattern-4.jpg) no-repeat top left fixed;
	}
	
	.bg-pattern-4.thumb { 
		background: url(images/bg-pattern-4-thumb.jpg) no-repeat center center;
	}
	
	.bg-pattern-5 { 
		background: url(images/bg-pattern-5.png) repeat top left;
	}
	
	.bg-pattern-6 { 
		background: url(images/bg-pattern-6.png) repeat top left;
	}
	
	.bg-pattern-7 { 
		background: url(images/bg-pattern-7.png) repeat top left;
	}
	
	.bg-pattern-8 { 
		background: url(images/bg-pattern-8.png) repeat top left;
	}
	
	.bg-pattern-9 { 
		background: url(images/bg-pattern-9.png) repeat top left;
	}
	
	.bg-pattern-10 { 
		background: url(images/bg-pattern-10.png) repeat top left;
	}
	
	.bg-pattern-11 { 
		background: #fff repeat top left;
	}
	
	a.bg-pattern-11 {
		border: 1px solid #ccc;
	}
	
	.bg-pattern-12 { 
		background: #efefef repeat top left;
	}
	
	.bg-pattern-13 { 
		background: #fff8c8 repeat top left;
	}
	
	.bg-pattern-14 { 
		background: #cfeef8 repeat top left;
	}
	
	.bg-pattern-15 { 
		background: #e3d6ee repeat top left;
	}
	
	
	@media (min-width: 1400px) {
			
		.boxed #page-wrapper,
		.boxed .is-sticky header {
			max-width: 1350px;
		}
		
	}
			
	@media (max-width: 1025px) {
		
		#theme-options { display: none; }
		
	}