form .form-message{
	display:none;
	font-size:12px;
}

form .form-error label{
	color:#dd4b39;
}

form .form-error input{
	border-color:#dd4b39;
}

form .form-error input[type="checkbox"]{
	outline: 1px solid #dd4b39;
}

form .form-error .form-message{
	display:block !important;
	color:#dd4b39;
}

form .form-error select{
	border-color:#dd4b39;
}

form .form-error .note-editor.note-frame{
	border-color:#dd4b39 !important;
}

form .form-error .file-preview{
	border-color:#dd4b39 !important;
}

form .frm-lock{
	color:#dd4b39;
	font-size:20px;
	margin-left:5px;
	cursor:pointer;
}

form .frm-unlock{
	color:#00a65a;
	font-size:20px;
	margin-left:5px;
	cursor:pointer;
}

form .color-picker-display{
	height:20px;
	width:20px;
	border:solid;
	border-width:1px;
	border-color:#ccc;
	margin-right:10px;
	float:left;
}

form .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
form .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
form .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

form .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

form input:checked + .slider {
  background-color: #2196F3;
}

form input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

form input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
form .slider.round {
  border-radius: 34px;
}

form .slider.round:before {
  border-radius: 50%;
}

form fieldset{
	border:solid;
	border-width:1px;
	border-color:#cccccc;
	padding:20px;
}

form fieldset legend{
	margin-left:20px;
    padding-left:10px;
	padding-right:10px;
	display:inline !important;
	border:none !important;
	width:auto !important;
}