/* Spectrum Color-Picker style modifications */

.sp-container {
    border-radius: 4px;
    background-color: #ECECEC;
    border: solid 1px rgba(0, 0, 0, 0.3);
}

/* Palettes */
.sp-palette-container
{
    border-right: none;
}

.sp-palette .sp-thumb-el {
    display: block;
    position:relative;
    float:left;
    width: 24px;
    height: 15px;
    margin: 3px;
    cursor: pointer;
    border:solid 2px transparent;
}
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
    border-color: rgba(252, 88, 40, 0.15);
}

.sp-preview {
	width: 42px;
}
.sp-replacer {
	border-radius: 4px;
	padding: 7px 10px;
	width: 80px;
	background-color: rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.3);

	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, rgba(255, 255, 255, 0.7)),
		color-stop(1, rgba(255, 255, 255, 0))
	);
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
}
	.sp-replacer:hover, .sp-replacer.sp-active {
		background-color: rgba(255, 255, 255, 0.7);
	}

.brightmode {
	background-color: rgba(255, 255, 255, 0.7) !important;
}
.brightmode:hover {
	background-color: rgba(255, 255, 255, 0.7) !important;
	border: 1px solid rgba(0, 0, 0, 0.3) !important;
}	
.darkmode {
	margin-left:10px;
	background-color: rgba(0, 0, 0, 0.7) !important;
}
.darkmode:hover {
	background-color: rgba(0, 0, 0, 0.7) !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
}


.sp-picker-container, .sp-palette-container {
    padding: 5px 5px 295px;
}
.sp-picker-container {
    border-left: 1px solid #FFFFFF;
    width: 172px;
}
.sp-palette-container {
    border-right: none;
}

.sp-palette .sp-thumb-el
{
    width:21px;
    height: 21px;
    margin:2px 2px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}
	.sp-palette span:hover {
		border: 1px solid rgba(252, 88, 40, 0.15);
	}

.sp-thumb-el {
    background: none;
}
.sp-container
{
	border-color: #939284;
	background-color: #D1D0BD;

}