/** image uploader **/
.image-upload a[data-action] {
  cursor: pointer;
  color: #555;
  font-size: 18px;
  line-height: 24px;
  transition: color 0.2s;
}
.image-upload a[data-action] i {
  width: 1.25em;
  text-align: center;
}
.image-upload a[data-action]:hover {
  color: #c61b1b;
}
.image-upload a[data-action].disabled {
  opacity: 0.35;
  cursor: default;
}
.image-upload a[data-action].disabled:hover {
  color: #555;
}
.image-upload .uploader_wrap{
	margin-top:20px;
}
.image-upload .image_picker .uploader_wrap {
  overflow: hidden;
  position: relative;
}
.image-upload .image_picker .uploader_wrap .image_drop_target, 
.image-upload .image_picker .uploader_wrap .settings_actions {
	margin: 0 auto;
	display:block;
}
.image-upload .image_picker .uploader_wrap .settings_actions {
	float:left;
	margin:10px 0px;
	width: 100%;
}
.image-upload .settings_actions.image_remove a {
  clear:both;
  text-align:center;
  display: block;
  width:100%;
}
.image-upload .image_drop_target {
	position: relative;
	cursor: pointer;
	transition: all 0.2s;
    width: 250px;
    height: 250px;
    background: #f2f2f2;
    border-radius: 100%;
    margin: 0 auto 25px auto;
    overflow: hidden;
    border: 8px solid #E0E0E0;
}
.image-upload .image_drop_target input[type="file"] {
  visibility: hidden;
}
.image-upload .image_drop_target::before {
	content: "\f093";
	font-family: FontAwesome;
	position: absolute;
	display: block;
	width: 100%;
	line-height: 220px;
	text-align: center;
	font-size: 80px;
	color: rgba(0, 0, 0, 0.3);
	transition: color 0.2s;
}
.image-upload .image_drop_target:hover,
.image-upload .image_drop_target.dropping {
	background: rgba(98,125,77,1);
	background: -moz-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(98,125,77,1)), color-stop(100%, rgba(31,59,8,1)));
	background: -webkit-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: -o-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: -ms-linear-gradient(left, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	background: linear-gradient(to right, rgba(98,125,77,1) 0%, rgba(31,59,8,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08', GradientType=1 );
}
.image-upload .image_drop_target:hover:before,
.image-upload .image_drop_target.dropping:before {
  color: rgba(0, 0, 0, 0.6);
}
.image-upload .image_drop_target .image_preview {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.image-upload .uploader-help-text{
	text-align:center;
	font-size:20px;
	font-style:italic;
}
.image-upload .file-upload-btn {
	margin: 10px auto;
	width: 140px;
	height: 40px;
	background: #6ECE3B;
	border-radius: 3px;
	text-align: center;
	line-height: 40px;
	font-size: 14px;
	cursor: pointer;
	color:#fff;
	display: block;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.image-upload .file-upload-btn:hover {
	box-shadow: 0 2px 0 0 #498C25, 0 2px 10px 0 #6ECE3B;
}