@charset "utf-8";
/* CSS Document */


form.dropzone input[type=file] {
    display: none;
}
#cropper-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8); 
	align-items: center;
	justify-content: center;
	z-index: 9999;
	display: none;
}	
#cropModal {
  display: none;
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  z-index: 9999;
  max-height: 100vh;
  max-width: 95vw;
  overflow: hidden; /* No scroll inside modal */
  box-sizing: border-box;
  border-radius: 10px;
  bottom: 2%;
}

.cropper-container {
  height: 82vh !important;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cropperImage {
  max-width: 100%;
  max-height: 82vh;
  display: block;
  object-fit: contain;
}
	
@media only screen and (max-width: 768px)  {
	#cropModal  {
		left: 2%;
		transform: translateX(0%);
	}
	.cropper-container, #cropperImage {
  		max-height: 72vh;
	}
}