.image-clipper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  width: 100%;
}
.image-clipper .clipper-zone {
  width: calc(35% - 30px);
}
.image-clipper .clipper-zone .content {
  position: relative;
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
}
.image-clipper .clipper-zone .content .clipper {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
}
.image-clipper .clipper-zone .aspect-ratio-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
}
.image-clipper .divider {
  position: absolute;
  left: 35%;
  height: 90%;
  top: 0;
  -webkit-transform: translateY(5%);
      -ms-transform: translateY(5%);
          transform: translateY(5%);
  margin: 0 auto;
}
.image-clipper .preview-zone {
  width: calc(65% - 30px);
}
.image-clipper .preview-zone .preview-clipper-item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.image-clipper .preview-zone .preview-clipper-item [class^='img-preview-'] {
  overflow: hidden;
}
.image-clipper .preview-zone .preview-clipper-item .clipper-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-left: 15px;
}
