/* ::
:::::
::::: Theme 		: JETS
::::: Theme URI		: http://labs.funcoders.com/Jets
:::::
::::: File 			: theme-options.css
::::: Description	: Styles for theme options widget.
:::::
:: */

#theme-options {
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	background-color: #fff;
	position: fixed;
	width: 192px;
	z-index: 999999;

	top: 150px;
	left: -203px;
	-webkit-transition: left ease-in-out 0.3s;
	-moz-transition: left ease-in-out 0.3s;
	-o-transition: left ease-in-out 0.3s;
	-ms-transition: left ease-in-out 0.3s;
	transition: left ease-in-out 0.3s;
}
	#theme-options.open {
		left: 0;
	}
#theme-options.open #options-toggle,
#options-toggle:hover,
#options-toggle {
	float: right;
	background-color: #2d343e;
	color:#fff;
}
	#options-toggle i {
		text-indent: 0;
		width: 50px;
		height: 50px;
		line-height: 50px;
		display: block;
		text-align: center;
		font-size: 20px;
		border-radius: 25px;
	}
#theme-options .options-title {
	color:#fff;
	position: relative;
	background-color: #2d343e;
	line-height: 50px;
	text-indent: 15px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	width: 250px;
	-webkit-transition: width ease-in-out 0.3s;
	-moz-transition: width ease-in-out 0.3s;
	-o-transition: width ease-in-out 0.3s;
	-ms-transition: width ease-in-out 0.3s;
	transition: width ease-in-out 0.3s;
	z-index: 1;
}
	#theme-options.open .options-title {
		width: 192px;
	}
#theme-options .options-wrapper {
	padding: 15px;
	position: relative;
}
	#theme-options .option-title {
		font-size: 13px;
		margin-bottom: 5px;
		margin-top: 20px;
		color: #2d343e;
		line-height: 1;
	}
		#theme-options .options-wrapper > .option-title:first-child {
			margin-top: 0;
		}
	#theme-options .options-wrapper select {
		padding: 5px;
		font-size: 13px;
	}
	#theme-options ul {
		margin: 0;
		margin-top: -3px;
		margin-left: -3px;
		padding: 0;
		list-style-type: none;
		display: block;
		font-size: 0;
		line-height: 0;
	}
		#theme-options ul li {
			display: inline-block;
			margin-left: 3px;
			margin-top: 3px;
		}
			#theme-options ul li a {
				width: 30px;
				height: 30px;
				display: block;
				border-radius: 2px;
				overflow: hidden;
				position: relative;
			}
				#theme-options ul li a:after {
					background-color: #fff;
					content: '';
					position: absolute;
					width: 14px;
					height: 14px;
					border-radius: 2px;
					top: -14px;
					left: 8px;
					opacity: 0;
				  	-webkit-transition: all linear 0.2s;
				  	 -moz-transition: all linear 0.2s;
				  	   -o-transition: all linear 0.2s;
				  	      transition: all linear 0.2s;
				}
				#theme-options ul li a.d:after {
					background-color: #2d343e;
				}
				#theme-options ul li a.active:after,
				#theme-options ul li a:hover:after {
					top: 8px;
					opacity: 1;
				}
				#theme-options ul li a img {
					width: 100%;
					height: auto;
				}
#theme-options .options-hidden {
	display: none;
}

/* Colors for demo */
#theme-options ul li a.bg-blue {
	background-color: #007aff;
}
#theme-options ul li a.bg-purple {
	background-color: #c643fc;
}
#theme-options ul li a.bg-brown {
	background-color: #7f5c49;
}
#theme-options ul li a.bg-dark {
	background-color: #282e3a;
}
#theme-options ul li a.bg-pink {
	background-color: #ff2d55;
}
#theme-options ul li a.bg-teal {
	background-color: #34aadc;
}
#theme-options ul li a.bg-green {
	background-color: #00B74C;
}
#theme-options ul li a.bg-yellow {
	background-color: #ffcc00;
}
#theme-options ul li a.bg-orange {
	background-color: #ff5d00;
}
#theme-options ul li a.bg-light {
	background-color: #f9f9f9;
}
#theme-options ul li a.bg-red {
	background-color: #FF3B30;
}
#theme-options ul li a.bg-white {
	background-color: #fff;
}

#bg-changer {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
}
#bg-changer > * {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
}
	#bg-changer a {
		width: 50px;
		height: 50px;
		border-radius: 2px;
		position: relative;
		overflow: hidden;
	}
	#bg-changer a.white {
		background-color: #fff;
		border: 1px solid #f1f1f1;
	}
	#bg-changer a.light {
		background-color: #f9f9f9;
		border: 1px solid #f1f1f1;
	}
	#bg-changer a.dark {
		background-color: #282e3a;
	}

	#bg-changer a:after {
		background-color: #fff;
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		border-radius: 2px;
		top: -20px;
		left: 15px;
		-webkit-transition: all linear 0.1s;
		-moz-transition: all linear 0.1s;
		-o-transition: all linear 0.1s;
		transition: all linear 0.1s;
	}
	#bg-changer a.d:after {
		background-color: #2d343e;
	}
	#bg-changer a.active:after,
	#bg-changer a:hover:after {
		top: 15px;
	}