/*
 *
 *		THEME-OPTIONS.CSS
 *
 *	+ PANEL STYLE
 *	+ COLORS
 *	+ PATTERNS
 *
 */
 
/***********************************************************************************
 *	+ PANEL STYLE
 ***********************************************************************************/
	
	.menu li.theme-options {
		position: fixed;
		top: 30px;
		right: 5px;
	}
	
	.menu li.theme-options a {
		padding: 11px;
		color: #fff;
		font-size: 18px;
		-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);
		}
	}
	
	#header-sticky .menu li.theme-options a {
		display: none;
	}
	
	#theme-options {
		padding: 0 20px;
		z-index: 9999;
		background-color: #fff;
		position: fixed;
		top: 127px;
		right: -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 {
		right: 0;
		box-shadow: 1px 1px 2px 0 #ccc;
	}
	
	#theme-options a {
		text-decoration: none;
		color: #323232;
	}
	
	#theme-options h4 {
		text-transform: uppercase;
		text-align: center;
		color: #fff;
		background-color: #323232;
		padding: 8px 0;
		margin: 0 -20px;
		font-size: 16px;
		font-weight: 700;
	}
	
	#theme-options h5 {
		text-transform: uppercase;
		margin-bottom: 10px;
		color: #323232;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 2px;
	}
	
	.colors {
		margin-bottom: 20px;
	}
	
	.colors a {
		display: block;
		width: 34px;
		height: 34px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.colors a:last-child {
		margin-right: 0;
	}
	
	#theme-options h6 {
		text-transform: none;
		margin-bottom: 10px;
		color: #212121;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0;
	}
	
	.demos {
		margin: 0 -5px 15px;
	}
	
	.demos a {
		position: relative;
		float: left;
		width: 50%;
		padding: 5px;
	}
	
	.demos a img {
		border: 1px solid #f2f2f2;
	}
	
	.demos a span {
		position: absolute;
		top: 6px;
		right: 6px;
		bottom: 6px;
		left: 6px;
		padding-top: 35px;
		background-color: rgba(248, 91, 56, 0.9);
		color: #fff;
		text-align: center;
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 2px;
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.demos a:hover span {
		opacity: 1;
	}
	
	.themes-slider {
		margin-bottom: 20px;
	}
	
	.themes-slider a:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding-top: 17px;
		background-color: rgba(248, 91, 56, 0.95);
		color: #fff;
		font-size: 14px;
		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-nav .owl-next {
		right: -27px;
	}
	
	.themes-slider .owl-nav .owl-prev {
		left: -27px;
	}


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

	#default {
		background-color: #f85b38;
	}
	
	#aqua {
		background-color: #38cdf8;
	}
	
	#yellow {
		background-color: #efb400;
	}
	
	#green {
		background-color: #8cc55d;
	}
	
	#blue {
		background-color: #0062d0;
	}
	
	@media (min-width: 1200px) {
		
		.menu li.theme-options {
			right: 30px;
		}
	}
	
	@media (max-width: 991px) {
		
		#theme-options { 
			display: none; 
		}
		
		.menu li.theme-options,
		#mobile-menu li.theme-options {
			display: none;
		}
		
	}