/* !
 * cropme v1.4.3
 * https://shpontex.github.io/cropme
 *
 * Copyright 2020 shpontex
 * Released under the MIT license
 *
 * Date: 2020-03-02T12:55:13.295Z */

.cropme-wrapper {
  width: 100%;
  height: 100%;
}

.cropme-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.cropme-container img {
  width: auto!important;
  cursor: move;
  opacity: 0;
  touch-action: none;
}

#img {
  border: 5px solid red;
}

.viewport {
  box-sizing: content-box!important;
  position: absolute;
  border-style: solid;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  box-shadow: 0 0 2000px 2000px rgba(0,0,0,.5);
  z-index: 0;
  pointer-events: none;
}

.viewport.circle {
  border-radius: 50%;
}

.cropme-rotation-slider, .cropme-slider {
  text-align: center;
}

.cropme-rotation-slider input, .cropme-slider input {
  -webkit-appearance: none;
}

.cropme-rotation-slider input:disabled, .cropme-slider input:disabled {
  opacity: .5;
}

.cropme-rotation-slider input::-webkit-slider-runnable-track, .cropme-slider input::-webkit-slider-runnable-track {
  height: 3px;
  background: rgba(0,0,0,.5);
  border-radius: 3px;
}

.cropme-rotation-slider input::-webkit-slider-thumb, .cropme-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top: -6px;
}

.cropme-rotation-slider input:focus, .cropme-slider input:focus {
  outline: none;
}

