/* ==========================================================================
   cropper.css — base do Cropper.js (compatível com a UI premium em styles.css)
   --------------------------------------------------------------------------
   Não alterar a estrutura: o Cropper.js depende dos seletores abaixo. As
   customizações visuais (cores, sombras, modal opacity) ficam em styles.css.
   ========================================================================== */

   .cropper-container {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  
    position: relative;
    overflow: hidden;
    background-color: #fff;
  }
  
  .cropper-container > img {
    width: 100%;
    height: 100%;
  }
  
  .cropper-modal,
  .cropper-canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .cropper-canvas {
    background-color: #fff;
    opacity: 0;
  }
  
  .cropper-modal {
    background-color: #000;
    opacity: .5;
  }
  
  .cropper-dragger {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
  }
  
  .cropper-viewer {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline-width: 1px;
    outline-style: solid;
    outline-color: rgba(255, 255, 255, .85);
  }
  
  .cropper-viewer > img {
    max-width: none !important;
    max-height: none !important;
  }
  
  .cropper-dashed {
    position: absolute;
    display: block;
    border: 0 dashed #fff;
    opacity: .5;
  }
  
  .cropper-dashed.dashed-h {
    top: 33.333%;
    left: 0;
    width: 100%;
    height: 33.333%;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  
  .cropper-dashed.dashed-v {
    top: 0;
    left: 33.333%;
    width: 33.333%;
    height: 100%;
    border-right-width: 1px;
    border-left-width: 1px;
  }
  
  .cropper-face,
  .cropper-line,
  .cropper-point {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .1;
  }
  
  .cropper-face {
    top: 0;
    left: 0;
    cursor: move;
    background-color: #fff;
  }
  
  .cropper-line { background-color: #be1522; }
  .cropper-line.line-e { top: 0; right: -3px; width: 5px; cursor: ew-resize; }
  .cropper-line.line-n { top: -3px; left: 0; height: 5px; cursor: ns-resize; }
  .cropper-line.line-w { top: 0; left: -3px; width: 5px; cursor: ew-resize; }
  .cropper-line.line-s { bottom: -3px; left: 0; height: 5px; cursor: ns-resize; }
  
  .cropper-point {
    width: 5px;
    height: 5px;
    background-color: #be1522;
    opacity: .9;
  }
  
  .cropper-point.point-e  { top: 50%; right: -3px; margin-top: -3px; cursor: ew-resize; }
  .cropper-point.point-n  { top: -3px; left: 50%; margin-left: -3px; cursor: ns-resize; }
  .cropper-point.point-w  { top: 50%; left: -3px; margin-top: -3px; cursor: ew-resize; }
  .cropper-point.point-s  { bottom: -3px; left: 50%; margin-left: -3px; cursor: ns-resize; }
  .cropper-point.point-ne { top: -3px; right: -3px; cursor: nesw-resize; }
  .cropper-point.point-nw { top: -3px; left: -3px; cursor: nwse-resize; }
  .cropper-point.point-sw { bottom: -3px; left: -3px; cursor: nesw-resize; }
  .cropper-point.point-se {
    right: -3px;
    bottom: -3px;
    width: 12px;
    height: 12px;
    cursor: nwse-resize;
    opacity: 1;
  }
  
  .cropper-point.point-se::before {
    position: absolute;
    right: -50%;
    bottom: -50%;
    display: block;
    width: 200%;
    height: 200%;
    content: " ";
    background-color: #be1522;
    opacity: 0;
  }
  
  /* Helper classes for JavaScript */
  .cropper-hidden { display: none !important; }
  
  .cropper-invisible {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    opacity: 0;
  }
  
  .cropper-move { cursor: move; }
  .cropper-crop { cursor: crosshair; }
  
  .cropper-disabled .cropper-canvas,
  .cropper-disabled .cropper-face,
  .cropper-disabled .cropper-line,
  .cropper-disabled .cropper-point {
    cursor: not-allowed;
  }
  