body {
  background-color: #fcfcfc;
}

.image-view {
  display: block;
  margin: 5px 5px;
  height: 150px;
  width: 150px;
  border: 3px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,.15);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.image-view img {
  width: 100%;
}

.image-view img {
    transition:all .5s;
    -webkit-transition:all .5s;
}
.image-view:hover img {
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
}

.image-view .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}

.image-view .overlay {
    visibility: hidden;
	text-align:center;
    top: auto;
    bottom: 0;
    padding: 5px;
    height: 50px;
    background: #EEEEEE;
    opacity: 0.9;
    color: var(--primary);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.image-view:hover .overlay
{
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    visibility: visible;
}

.image-body {
  padding-right: 15px;
  padding-left: 15px;
}

.image-upload {
  overflow: hidden;
}

.image-upload label {
  display: block;
  float: left;
  clear: left;
  width: 100px;
}

.image-upload input {
  display: block;
  margin-left: 110px;
}

.avater-alert {
  margin-top: 10px;
  margin-bottom: 10px;
}

.image-wrapper {
  height: 364px;
  width: 100%;
  margin-top: 15px;
  box-shadow: inset 0 0 5px rgba(0,0,0,.25);
  background-color: #fcfcfc;
  overflow: hidden;
}

.image-wrapper img {
  display: block;
  height: auto;
  max-width: 100%;
}

.image-preview {
  float: left;
  margin-top: 15px;
  margin-right: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
}

.image-preview:hover {
  border-color: #ccf;
  box-shadow: 0 0 5px rgba(0,0,0,.15);
}

.image-preview img {
  width: 100%;
}

.preview-lg {
  height: 184px;
  width: 184px;
  margin-top: 15px;
}

.preview-md {
  height: 100px;
  width: 100px;
}

.preview-sm {
  height: 50px;
  width: 50px;
}

@media (min-width: 992px) {
  .image-preview {
    float: none;
  }
}

.image-btns {
  margin-top: 30px;
  margin-bottom: 15px;
}

.image-btns .btn-group {
  margin-right: 5px;
}

.image_crop_loading {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff url("../img/loading.gif") no-repeat center center;
  opacity: .75;
  filter: alpha(opacity=75);
  z-index: 20140628;
}

