.cropper-container {
  font-size: 0;
  line-height: 0;
  position: relative;
  user-select: none;
  direction: ltr;
  touch-action: none;
}
.cropper-container img {
  /* Avoid margin top issue (Occur only when margin-top <= -height) */
  display: block;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  image-orientation: 0deg;
}

.cropping-box {
  --border-color: #ff614c;
  background: repeating-conic-gradient(lightgrey 0% 25%, white 0% 50%) 50%/16px 16px;
}
.cropping-box .cropper-wrap-box,
.cropping-box .cropper-canvas,
.cropping-box .cropper-drag-box,
.cropping-box .cropper-crop-box,
.cropping-box .cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cropping-box .cropper-wrap-box {
  overflow: hidden;
}
.cropping-box .cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}
.cropping-box .cropper-modal {
  opacity: 0.5;
  background-color: #000;
}
.cropping-box .cropper-view-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid var(--border-color);
  outline-color: rgba(255, 97, 76, 0.6274509804);
}
.cropping-box .cropper-dashed {
  position: absolute;
  display: block;
  opacity: 0.5;
  border: 0 dashed #eee;
}
.cropping-box .cropper-dashed.dashed-h {
  top: 33%;
  left: 0;
  width: 100%;
  height: 33%;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.cropping-box .cropper-dashed.dashed-v {
  top: 0;
  left: 33%;
  width: 33%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px;
}
.cropping-box .cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  opacity: 0.75;
}
.cropping-box .cropper-center:before, .cropping-box .cropper-center:after {
  position: absolute;
  display: block;
  content: " ";
  background-color: #eee;
}
.cropping-box .cropper-center:before {
  top: 0;
  left: -3px;
  width: 7px;
  height: 1px;
}
.cropping-box .cropper-center:after {
  top: -3px;
  left: 0;
  width: 1px;
  height: 7px;
}
.cropping-box .cropper-face,
.cropping-box .cropper-line,
.cropping-box .cropper-point {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.cropping-box .cropper-face {
  top: 0;
  left: 0;
  background-color: #fff;
}
.cropping-box .cropper-line {
  background-color: var(--border-color);
}
.cropping-box .cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}
.cropping-box .cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}
.cropping-box .cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}
.cropping-box .cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}
.cropping-box .cropper-point {
  width: 5px;
  height: 5px;
  opacity: 0.75;
  background-color: var(--border-color);
}
.cropping-box .cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize;
}
.cropping-box .cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}
.cropping-box .cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize;
}
.cropping-box .cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}
.cropping-box .cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize;
}
.cropping-box .cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}
.cropping-box .cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize;
}
.cropping-box .cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  cursor: se-resize;
}
.cropping-box .cropper-invisible {
  opacity: 0;
}
.cropping-box .cropper-bg {
  background-image: inline("../images/bg.png");
}
.cropping-box .cropper-hide {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.cropping-box .cropper-hidden {
  display: none !important;
}
.cropping-box .cropper-move {
  cursor: move;
}
.cropping-box .cropper-crop {
  cursor: crosshair;
}
.cropping-box .cropper-disabled .cropper-drag-box,
.cropping-box .cropper-disabled .cropper-face,
.cropping-box .cropper-disabled .cropper-line,
.cropping-box .cropper-disabled .cropper-point {
  cursor: not-allowed;
}