/* React Easy Crop Styles (used by react-easy-crop library in image-cropper.tsx) */
.reactEasyCrop_Container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1A1A1A;
}

.reactEasyCrop_Image,
.reactEasyCrop_Video {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  will-change: transform;
}

.reactEasyCrop_CropArea {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  cursor: move;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.reactEasyCrop_CropAreaRound {
  border-radius: 50%;
}

.reactEasyCrop_CropAreaGrid::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  top: 0;
  bottom: 0;
  left: 33.33%;
  right: 33.33%;
}

.reactEasyCrop_CropAreaGrid::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  top: 33.33%;
  bottom: 33.33%;
  left: 0;
  right: 0;
}
