/* Purty Picker: https://github.com/jaydenseric/Purty-Picker */

.color-picker {
	margin: 20px 100px;
	padding: 11px;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	background-color: #f5f5f5;
}

@media only screen and (max-width: 600px) {
.color-picker {
	margin: 20px;
  }
}

.color-picker .format {
	display: block;
	margin: 0 auto 10px;
}
.color-picker .color,
.color-picker .lightness {
	display: block;
	box-sizing: border-box;
	width: 100%;
}
.color-picker .color {
	-webkit-appearance: none;
	padding: 10px;
	border: 0;
	border-radius: 2px;
	text-align: center;
	font-size: 14px;
	font-weight:bold;
	letter-spacing: 1px;
	font-family: Lucida, Helvetica, monospace; /*Consolas, Monaco, 'Andale Mono', monospace;*/
	color: rgba(0, 0, 0, .6);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
	-webkit-transition: color .2s;
	transition: color .2s;
}
.color-picker .color.dark {
	color: rgba(255, 255, 255, .7);
}
.color-picker .lightness {
	margin: 0;
}
.color-picker .spectrum {
	position: relative;
	padding-top: 30%;
	background: linear-gradient(gray, transparent), linear-gradient(90deg, red, yellow, lime, cyan, blue, magenta, red);
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	cursor: crosshair;
	overflow: hidden;
	margin: 10px 0;
	border-radius: 2px;
}
.color-picker .spectrum.active,
.color-picker .spectrum.active .pin {
	cursor: none;
}
.color-picker .lightness-filter {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}
.color-picker .pin {
	position: absolute;
	cursor: move;
	width: 4px;
	height: 4px;
	margin-left: -4px;
	margin-top: -4px;
	border: 2px solid white;
	border-radius: 50%;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}


#convertfdt1 {
	width: 50%;
	background: #ECECEC;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	padding: 0px;
}

@media only screen and (max-width: 600px) {
	#convertfdt1 {
	width: 69.9999%;
	margin-left: auto;
	margin-right: auto;
  }
}
