.webuploader-container {
	position: relative;
}
.webuploader-element-invisible {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px,1px,1px,1px);
}
.webuploader-pick {
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: #00b7ee;
	padding: 10px 15px;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	overflow: hidden;
}
.webuploader-pick-hover {
	background: #00a2d4;
}

.webuploader-pick-disable {
	opacity: 0.6;
	pointer-events:none;
}

.uploader {
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(220, 220, 220, 0.52);
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
  height: 125px;
}
.uploader:after {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  content: "NO PIC";
  font-size: 18px;
  background-color: rgba(220, 220, 220, 0.52);
  display: block;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
  line-height: 125px;
}
.uploader img {
  position: initial;
  width: 100%;
  height: 100%;
  display: block;
  -o-box-shadow: 0 5px 0 #fff;
  -ms-box-shadow: 0 5px 0 #fff;
  -moz-box-shadow: 0 5px 0 #fff;
  -webkit-box-shadow: 0 5px 0 #fff;
  box-shadow: 0 5px 0 #fff;
}
.uploader img + .uploader:after {
  display: none;
}
.uploader.disabled {
  cursor: not-allowed;
}
.uploader.disabled img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
.uploader.uploader-lg {
  width: 200px;
  height: 150px;
}
.uploader.uploader-lg:after {
  line-height: 150px;
}
.uploader.uploader-sm {
  width: 45px;
  height: 45px;
}
.uploader.uploader-sm:after {
  font-family: FontAwesome;
  content: "\f03e";
  font-size: 30px;
  line-height: 38px;
}
.uploader.uploader-sm .uploader-button {
  left: 1px;
  right: 1px;
  bottom: 0;
  padding: 1px;
}
.uploader.uploader-sm .error {
  display: none;
}
.uploader.uploader-sm img {
  -o-box-shadow: 0 4px 0 #fff;
  -ms-box-shadow: 0 4px 0 #fff;
  -moz-box-shadow: 0 4px 0 #fff;
  -webkit-box-shadow: 0 4px 0 #fff;
  box-shadow: 0 4px 0 #fff;
}
.uploader.uploader-circle {
  border-radius: 50%;
}
.uploader.uploader-circle:after {
  border-radius: 50%;
}
.uploader.uploader-circle .uploader-button {
  border-left: 4px solid transparent;
}
.uploader:hover:not(.disabled) .uploader-button {
  display: block;
}
.uploader .error {
  padding: 5px;
  display: block;
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  text-align: center;
  color: #fff;
  background-color: #cc3e4a;
}
.uploader .uploader-button {
  left: 5px;
  right: 5px;
  position: absolute;
  margin: 0;
  padding: 8px;
  bottom: 5px;
  text-align: center;
  display: none;
  cursor: pointer;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.uploader .uploader-button .webuploader-pick {
  margin: 0;
  background: none;
  width: auto;
}
