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

	#theme-options {
		padding: 0 20px;
		z-index: 999;
		background-color: #fff;
		position: fixed;
		top: 170px;
		left: -290px;
		width: 290px;
		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: "bronx-icons";
		content: "\e922";
		-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-size: 18px;
		font-weight: 700;
	}
	
	#theme-options h5 {
		text-transform: uppercase;
		margin-bottom: 10px;
		color: #323232;
		font-size: 16px;
	}
	
	.colors {
		margin-bottom: 20px;
	}
	
	.colors a {
		display: block;
		width: 30px;
		height: 30px;
		float: left;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.colors a:last-child {
		margin-right: 0;
	}
	
	.layout {
		margin-bottom: 15px;
	}
	
	.layout a {
		display: block;
		float: left;
		width: 50%;
		text-align: center;
		background: none;
	}
	
	.layout a img {
		display: block;
		margin: 0 auto;
	}
	
	.themes-slider {
		margin-bottom: 20px;
	}
	
	.themes-slider a:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding-top: 23px;
		background-color: rgba(0, 221, 247, 0.95);
		color: #fff;
		font-family: 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-nav .owl-next {
		right: -25px;
	}
	
	.themes-slider .owl-nav .owl-prev {
		left: -25px;
	}

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

	#default {
		background-color: #ba007c;
	}
	
	#red {
		background-color: #e75732;
	}
	
	#blue {
		background-color: #298ff1;
	}
	
	#yellow {
		background-color: #d7ba3c;
	}
	
	#orange {
		background-color: #d7894b;
	}
	
	#green {
		background-color: #7cca36;
	}
	
			
	@media (max-width: 991px) {
		
		#theme-options { display: none; }
		
	}

