@keyframes passing-through {
	0% { opacity: 0; }
	40% { opacity: 0.7; }
	100% { opacity: 0; }
}

@keyframes slide-in {
	0%  { opacity: 0; }
	30% { opacity: 1; }
}

.dropzone,
.dropzone * {
	box-sizing: border-box;
}
.dropzone {
	min-height: 230px;
	padding: 20px 15px;
	text-align: center;
	position: relative;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	margin: 15px auto 15px auto;
	max-width: calc(100% - 30px);
}
@media (max-width: 500px) {
	.dropzone {
		max-width: calc(100% - 20px);
	}
}
.darkTheme .dropzone {
	border-color: #3B4657;
	background: #111827;
}
.widgetPage .dropzone {
	margin: auto;
	border-radius: 0;
	max-width: 100%;
}
.dropzone::before {
	content: "";
	position: absolute;
	display: block;
	top: -15px;
	left: -15px;
	bottom: -15px;
	right: -15px;
	border-radius: inherit;
	pointer-events: none;
	z-index: -1;
	background: #fff;
}
@media (max-width: 500px) {
	#dropzone::before {
		top: -12px;
		left: -12px;
		right: -12px;
	}
}
.darkTheme .dropzone::before {
	background: transparent;
}
.widgetPage .dropzone::before {
	border-radius: 0;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.dropzone.noShadow {
	margin: auto;
	max-width: 100%;
}
.dropzone.noShadow::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}


.dropzone + .dropzone {
	margin-top: 30px;
}


.dropzone.dz-clickable {
	cursor: pointer;
}
.dropzone.dz-clickable > .lowerLeft,
.dropzone.dz-clickable > .lowerRight,
.dropzone.dz-clickable > .upperLeft,
.dropzone.dz-clickable > .uperRight {
	cursor: default;
}


.dropzone .dz-previews {
	pointer-events: none;
}
.dropzone .dz-previews > * {
	pointer-events: auto;
}


.dropzone .dz-preview {
	width: 150px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 10px;
	user-select: none;
	background: transparent;
}
.dropzone .dz-preview .dz-image {
	width: 150px;
	height: 150px;
}
@media (max-width: 500px) {
	.dropzone .dz-preview {
		width: 135px;
	}
	.dropzone .dz-preview .dz-image {
		width: 135px;
	}
	.dropzone.dz-started:not(.listView) {
		padding-left: 0;
		padding-right: 0;
	}
}
.dropzone .dz-preview:hover {
	z-index: 1000;
}
.dropzone .dz-preview:not(.dz-image-preview) .dz-image img {
	display: none;
}
.dropzone .dz-preview.dz-complete.dz-file-preview .dz-details {
	opacity: 1;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
	transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-details {
	z-index: 20;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	opacity: 0;
	font-size: 13px;
	padding: 0 1em;
	text-align: center;
	color: rgba(0, 0, 0, 0.9);
	transform: translateY(-50%);
	pointer-events: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.dropzone:not(.sorting) .dz-preview.dz-image-hover .dz-details {
	opacity: 1;
}
.dropzone .dz-preview .dz-details .dz-size,
.dropzone .dz-preview .dz-details .dz-pages,
.dropzone .dz-preview .dz-details .dz-extension {
	font-size: 14px;
	white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-size strong {
	font-weight: normal;
}
.dropzone .dz-preview .dz-filename {
	white-space: nowrap;
	font-size: 12px;
	margin: 5px 0;
	text-align: center;
	width: 100%;
}
.dropzone .dz-preview .dz-filename:hover span {
	padding: 3px;
	border: 1px solid #c8c8c8;
	background-color: #fff;
	border-radius: 4px;
}
.darkTheme .dropzone .dz-preview .dz-filename:hover span {
	border: 1px solid #777;
	background-color: #333;
}
.dropzone .dz-preview .dz-filename:not(:hover) {
	overflow: hidden;
	text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-filename:not(:hover) span {
	border: 1px solid transparent;
	padding: 3px;
}
.dropzone .dz-preview .dz-details .dz-pages span,
.dropzone .dz-preview .dz-details .dz-size span,
.dropzone .dz-preview .dz-details .dz-extension span {
	padding: 0.2em 0.4em;
	background-color: rgba(255, 255, 255, 0.9);
}
.dropzone .dz-preview .dz-image {
	overflow: hidden;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #ffffffbe;
}
.darkTheme .dropzone .dz-preview .dz-image {
	border-radius: 8px;
	background-color: #4e5b6a;
	border-color: transparent;
}
.dropzone:not(.sorting) .dz-preview .dz-image:hover {
	background-color: #bbb;
}
.darkTheme .dropzone:not(.sorting) .dz-preview .dz-image:hover {
	background-color: #666;
}
.dropzone:not(.sorting) .dz-preview .dz-image:hover img {
	opacity: 0.3;
}
.dropzone .dz-preview.sortable-chosen .dz-image {
	background-color: #c8e1f3;
}
.dropzone .dz-preview .dz-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	flex: 0 0 auto;
	box-shadow: 0 0 5px rgb(0 0 0 / 25%);
	border: 1px solid #e0e0e0;
	pointer-events: none;
}
.darkTheme .dropzone .dz-preview .dz-image img {
	border: 0 none;
}
.dropzone .dz-preview[data-rotate="90"] .dz-image img {
	transform: rotate(90deg);
}
.dropzone .dz-preview[data-rotate="180"] .dz-image img {
	transform: rotate(180deg);
}
.dropzone .dz-preview[data-rotate="270"] .dz-image img {
	transform: rotate(270deg);
}
.dropzone .dz-preview.dz-success:not(.sortable-sorted) .dz-success-mark {
	animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
	animation-iteration-count: 1;
}
.dropzone .dz-preview.dz-error .dz-error-mark {
	opacity: 1;
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
	pointer-events: none;
	opacity: 0;
	z-index: 500;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin-left: -27px;
	margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
	display: block;
	width: 54px;
	height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
	opacity: 1;
	transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
	opacity: 0;
	transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview .dz-progress {
	opacity: 1;
	z-index: 1000;
	pointer-events: none;
	position: absolute;
	height: 20px;
	left: 50%;
	top: 50%;
	width: 90%;
	transform: translate(-50%, -50%);
	background: #f7f7f7;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px dotted #ccc;
}
.dropzone .dz-preview .dz-progress .dz-upload {
	display: block;
	background: #E3C549;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	transition: width 300ms ease-in-out;
}
.dropzone .dz-preview .dz-progress .dz-upload-text {
	position: relative;
	left: 0;
	top: 0;
	font-size: 11px;
	font-weight: 500;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dropzone .dz-preview.dz-error .dz-error-message {
	display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
	opacity: 1;
	pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
	pointer-events: none;
	z-index: 1000;
	position: absolute;
	display: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	font-size: 10px;
	bottom: 26px;
	left: -8px;
	width: calc(100% + 16px);
	background: #a92222;
	padding: 0.5em;
	color: white;
}
.dropzone:not(.listView) .dz-preview.dz-processing:not(.dz-complete) .dz-details .dz-size {
	display: none;
}
.dropzone:not(.listView) .dz-preview.dz-error .dz-details {
	display: none;
}
.dropzone .dz-preview .dz-tools {
	font-size: 15px;
	white-space: nowrap;
	padding: 3px 0;
	display: flex;
	justify-content: center;
	gap: 0.5em;
}
.dropzone .dz-preview .dz-tools [class*="icon-"] {
	color: #3c8ab9;
	cursor: pointer;
	padding: 3px 2px;
}
.dropzone .dz-preview .dz-tools [class*="icon-"]:hover {
	background-color: #e5f2fc;
	border-radius: 5px;
	background-color: #00000015;
}
.darkTheme .dropzone .dz-preview .dz-tools [class*="icon-"]:hover {
	background-color: #ffffff15;
}
.dropzone .dz-preview .dz-tools .dz-remove {
	color: #d15757;
	margin-left: auto;
}
[dir="rtl"] .dropzone .dz-preview .dz-tools .dz-remove {
	margin-left: 0;
	margin-right: auto;
}
.dropzone .dz-preview .dz-tools .icon-ccw,
.dropzone .dz-preview .dz-tools .icon-cw {
	color: #b568b6;
}
.dropzone.listView .dz-fileInfo {
	margin-bottom: 30px;
}
.dropzone.listView .dz-preview {
	position: relative;
	vertical-align: top;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 10px 0;
	min-height: 58px;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	border-color: #f0f0f0;
	background-color: #fff;
}
.darkTheme .dropzone.listView .dz-preview {
	background-color: #2b2f35;
	border-width: 0;
}
.dropzone.listView .dz-preview .dz-image {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	background-color: #f5f5f5;
	border-width: 0;
}
.darkTheme .dropzone.listView .dz-preview .dz-image {
	background-color: #3c4856;
}
.dropzone.listView .dz-preview .dz-image img {
	max-width: 100%;
	max-height: 100%;
}
.dropzone.listView .dz-preview .dz-details {
	position: relative;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 20;
	font-size: 15px;
	min-width: 100px;
	max-width: 100%;
	padding: 5px;
	text-align: start;
	line-height: 100%;
	flex-grow: 1;
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 0;
	color: #000;
	transform: none;
}
.darkTheme .dropzone.listView .dz-preview .dz-details {
	color: #ccc;
}
.dropzone.listView .dz-preview .dz-filename {
	font-size: 16px;
	margin: 0;
	display: inline-block;
	padding: 3px 5px 3px 10px;
	flex-grow: 1;
	text-align: start;
}
.dropzone.listView .dz-preview .dz-details .dz-size span,
.dropzone.listView .dz-preview .dz-details .dz-size:hover span,
.dropzone.listView .dz-preview .dz-details .dz-pages span,
.dropzone.listView .dz-preview .dz-details .dz-pages:hover span,
.dropzone.listView .dz-preview .dz-details .dz-extension span,
.dropzone.listView .dz-preview .dz-details .dz-extension:hover span,
.dropzone.listView .dz-preview .dz-filename span,
.dropzone.listView .dz-preview .dz-filename:hover span {
	border: 1px solid transparent;
	background-color: transparent !important;
}
.dropzone.listView .dz-preview .dz-details .dz-size,
.dropzone.listView .dz-preview .dz-details .dz-pages,
.dropzone.listView .dz-preview .dz-details .dz-extension {
	font-size: 14px;
	margin: 0;
	display: inline-block;
	padding: 3px 5px 3px 10px;
	overflow: hidden;
	white-space: nowrap;
	flex-shrink: 0;
}
@media (max-width: 500px) {
	.dropzone.listView .dz-preview .dz-details .dz-size,
	.dropzone.listView .dz-preview .dz-details .dz-pages,
	.dropzone.listView .dz-preview .dz-details .dz-extension {
		display: none;
	}
}
.dropzone.listView .dz-preview .dz-details .dz-size strong {
	font-weight: normal;
}
.dropzone.listView .dz-preview .dz-error-mark {
	display: none;
}
.dropzone.listView .dz-preview.sortable-chosen {
	background-color: #e3e3e3;
}
.darkTheme .dropzone.listView .dz-preview.sortable-chosen {
	background-color: #505050;
}
.dropzone.listView .dz-preview .dz-error-message {
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 0.25em;
}


.dropzone .dz-message {
	display: flex;
	flex-direction: column;
	min-height: 130px;
	justify-content: center;
	text-align: center;
	font-weight: 400;
	font-size: 24px;
	margin: 35px auto;
}
.dropzone.dz-started .dz-message {
	display: none;
}
.dropzone .dz-message .info {
	margin-bottom: 20px;
}
.dropzone .dz-message .note {
	font-size: 16px;
	font-weight: 400;
	margin-top: 20px;
}
.dropzone .dz-message .note.terms {
	display: none;
}
.dropzone .dz-message .chooseFile {
	font-size: 30px;
	font-weight: 500;
	font-family: system-ui, arial;
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: center;
}
.dropzone .dz-message .chooseFile .btn {
	border-radius: 8px;
	padding: 15px 24px;
	text-decoration: none;
	font-size: 24px;
	position: relative;
	overflow: hidden;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 1;
	min-width: 300px;
	box-shadow: 0 10px 22px rgba(229, 50, 45, 0.24);
}
@media (max-width: 600px) {
	.dropzone .dz-message .chooseFile .btn {
		padding: 12px 20px;
	}
}
.dropzone .dz-message .chooseFile .btn .icon {
	font-size: 24px;
	position: relative;
	left: 0;
	top: -1px;
}
@media (max-width: 600px) {
	.dropzone .dz-message .chooseFile .btn .icon {
		display: none;
	}
}
#widgetContent .dropzone .dz-message .chooseFile .btn {
	padding: 10px 20px;
}
.dropzone .dz-message .chooseFile .btn span {
	overflow: hidden;
	text-overflow: ellipsis;
}
.dropzone .dz-message .chooseFile .btn.compact {
	padding: 8px 16px;
	min-width: auto;
}
.dropzone .dz-message .chooseFile .btn.compact .icon {
	display: none;
}


.dropzone.sortable .dz-preview {
	cursor: move;
}
.dropzone.sortable .dz-preview .dz-tools {
	cursor: default;
}


.dropzone:not(.dz-started).hasUpperLeft,
.dropzone:not(.dz-started).hasUpperRight {
	padding-top: 40px;
}
.dropzone.hasLowerLeft,
.dropzone.hasLowerRight {
	padding-bottom: 40px;
}
.dropzone.listView.hasLowerLeft,
.dropzone.listView.hasLowerRight,
.dropzone.dz-started.hasLowerLeft,
.dropzone.dz-started.hasLowerRight {
	padding-bottom: 60px;
}


.dropzone .lowerRight {
	position: absolute;
	bottom: 5px;
	right: 5px;
	z-index: 11;
	display: flex;
	align-items: center;
	gap: 10px;
	user-select: none;
	height: 40px;
}
[dir="rtl"] .dropzone .lowerRight {
	left: 5px;
	right: auto;
}


.dropzone .lowerLeft {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 11;
	display: flex;
	align-items: center;
	gap: 10px;
	user-select: none;
	direction: ltr;
	height: 40px;
}
[dir="rtl"] .dropzone .lowerLeft {
	right: 5px;
	left: auto;
}


.dropzone .upperLeft {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 11;
	display: flex;
	align-items: center;
	gap: 10px;
	user-select: none;
	height: 40px;
}
[dir="rtl"] .dropzone .upperLeft {
	right: 5px;
	left: auto;
}


.dropzone .upperRight {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 11;
	display: flex;
	align-items: center;
	gap: 10px;
	user-select: none;
	height: 40px;
}
[dir="rtl"] .dropzone .upperRight {
	left: 5px;
	right: auto;
}


@media (max-width: 750px) {
	.dropzone .upperRight,
	.dropzone .upperLeft {
		display: none;
	}
	.dropzone {
		padding-top: 20px !important;
	}
}


.dropzone .importTools {
	display: inline-block;
	position: relative;
}
.dropzone .importTools .tools {
	display: flex;
	align-items: center;
	gap: 5px;
}
.dropzone .importTools .tools .tool {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	color: #E5322D;
	min-width: 40px;
	min-height: 38px;
	line-height: 1.0em;
}
.dropzone .importTools .tools .tool * {
	cursor: pointer;
}
.dropzone .importTools .tools .tool:hover {
	border-radius: 5px;
	background-color: #00000015;
}
.darkTheme .dropzone .importTools .tools .tool:hover {
	background-color: #ffffff15;
}
.dropzone .importTools .tools .tool svg {
	max-width: 30px;
	height: 30px;
}
.dropzone .importTools .tools .spacer {
	margin: 0 3px;
	width: 1px;
	height: 20px;
	background-color: #c0c0c0;
}
.dropzone .importTools .filesystemImport::before {
	position: relative;
	left: 0;
	top: -1px;
}
.dropzone:not(.dz-started) .importTools .filesystemImport {
	display: none;
}


.dropzone .dz-fileInfo {
	display: none;
	pointer-events: none;
	opacity: 0.75;
	font-size: 11pt;
	margin-bottom: 15px;
	padding: 0 10px;
}
.dropzone.dz-started .dz-fileInfo {
	display: block;
}


.dropzone .fileTools {
	pointer-events: none;
}
.dropzone .fileTools .fileTool {
	display: inline-block;
	padding: 5px;
	margin-bottom: 10px;
	cursor: pointer;
	color: inherit;
	pointer-events: auto;
}
.dropzone .fileTools .fileTool:hover {
	background-color: #eee;
}
.dropzone .fileTools .fileTool * {
	vertical-align: middle;
	cursor: pointer;
}
.dropzone .fileTools .fileTool img {
	max-height: 20px;
}


.dropzone.scrollable {
	overflow-y: auto;
	height: 250px;
	border-radius: 8px;
	background: #fff;
	margin: auto;
	max-width: 100%;
}
.darkTheme .dropzone.scrollable {
	background: #111827;
}
.dropzone.scrollable::before {
	display: none;
}
.dropzone.scrollable.hasLowerLeft,
.dropzone.scrollable.hasLowerRight {
	height: 300px;
	padding-bottom: 30px;
}


.dropzone .fileSecuritySign {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 3px;
}
.dropzone .fileSecuritySign .info {
	font-size: 14px;
}
.dropzone .hiddenFileSecuritySignInfo .fileSecuritySign .info,
.dropzone.dz-started .fileSecuritySign {
	display: none;
}
.dropzone .upperLeft .fileSecuritySign svg {
	width: 26px;
	height: 26px;
}
@media (max-width: 750px) {
	.dropzone .lowerLeft .fileSecuritySign .info {
		display: none;
	}
	.dropzone .upperLeft .fileSecuritySign {
		display: none;
	}
}


.dropzone .viewSelect {
	display: inline-flex;
	align-items: center;
	margin: 3px;
	vertical-align: middle;
	color: #666;
}
.darkTheme .dropzone .viewSelect {
	color: #ccc;
}
.dropzone:not(.dz-started) .viewSelect {
	display: none;
}
.dropzone .viewSelect > * {
	display: inline-block;
	font-size: 22px;
	padding: 4px;
}
.dropzone .viewSelect > *:hover {
	border-radius: 5px;
	background-color: #00000015;
}
.darkTheme .dropzone .viewSelect > *:hover {
	background-color: #ffffff15 !important;
}
.dropzone .viewSelect * {
	cursor: pointer;
}
.dropzone:not(.listView) .viewSelect .gridView {
	display: none;
}
.dropzone.listView .viewSelect .listView {
	display: none;
}


.dropzone .sortTools {
	display: inline-flex;
	align-items: center;
	height: 26px;
	margin: 3px;
	vertical-align: middle;
	font-size: 0px;
	color: #666;
}
.darkTheme .dropzone .sortTools {
	color: #ccc;
}
.dropzone:not(.dz-started) .sortTools {
	display: none;
}
.dropzone .sortTools * {
	cursor: pointer;
}
.dropzone .sortTools > * {
	display: inline-block;
	font-size: 18px;
	border-radius: 5px;
	padding: 4px;
}
.dropzone .sortTools > *:hover {
	background-color: #00000015;
}
.darkTheme .dropzone .sortTools > *:hover {
	background-color: #ffffff15;
}


.dropzone .ratingView {
	display: inline-flex;
	align-items: center;
}
.dropzone .ratingView .content {
	display: flex;
	align-items: center;
}
.dropzone .ratingView .star {
	font-size: 22px;
	color: #e7a81b;
	position: relative;
	left: 0;
	top: -1px;
}
.dropzone .ratingView .value {
	margin-inline-end: 5px;
	font-size: 15px;
}
.dropzone .ratingView .votes {
	font-size: 0.80em;
	color: #333;
}
.darkTheme .dropzone .ratingView .votes {
	color: #bbb;
}
.dropzone.dz-started .ratingView {
	display: none;
}
@media (max-width: 750px) {
	.dropzone .upperLeft .ratingView {
		display: none;
	}
}


.dropzone.importing .dz-message {
	visibility: hidden;
}
.dropzone.importing::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/squares.gif');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 30%;
}


.dropzone.immutable .importTools,
.dropzone.immutable .dz-remove {
	display: none;
}


.dropzone .desktopVersionLink {
	display: flex;
	align-items: center;
}
.dropzone .desktopVersionLink a {
	font-size: 14px;
	padding: 5px;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.dropzone .desktopVersionLink a .text {
	font-size: 14px;
	position: relative;
	top: -1px;
}
.dropzone.dz-started .desktopVersionLink {
	display: none;
}
@media (max-width: 750px) {
	.dropzone .desktopVersionLink {
		display: none;
	}
}


.dropzone.dz-drag-hover:not(.sorting) * {
	pointer-events: none;
}
.dropzone.dz-drag-hover:not(.sorting) {
	border-style: solid;
}
.dropzone .dz-drag-hover-message {
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	font-size: 32px;
	pointer-events: none;
	border-radius: inherit;
	z-index: 5;
	color: #0078d5;
	background: #F7FAFF;
}
.darkTheme .dropzone .dz-drag-hover-message {
	background: #252A31;
	color: inherit
}
.dropzone.dz-drag-hover:not(.sorting) > *:not(.dz-drag-hover-message) {
	visibility: hidden;
}
.dropzone.dz-drag-hover:not(.sorting) .dz-drag-hover-message {
	display: flex;
	opacity: 1;
}


@media (max-width: 750px) {
	.dropzone.llrom {
		padding-bottom: 20px !important;
		margin-bottom: 90px;
	}
	.dropzone.llrom .dz-message {
		margin: 30px auto;
	}
	.dropzone.llrom.dz-started {
		margin-bottom: 50px;
	}
	.dropzone.llrom::before {
		bottom: -50px;
	}
	.dropzone.llrom .lowerLeft {
		bottom: -45px;
		left: 0;
	}
	.dropzone.llrom .lowerRight {
		bottom: -45px;
		right: 0;
	}
}


/* Mobile responsive overrides: desktop dropzone sizing remains unchanged. */
@media (max-width: 600px) {
	.dropzone {
		width: calc(100% - 24px);
		max-width: calc(100% - 24px);
		min-height: 190px;
		padding: 18px 12px;
		margin-left: auto;
		margin-right: auto;
	}
	.dropzone::before,
	#dropzone::before {
		left: -8px;
		right: -8px;
		top: -8px;
		bottom: -8px;
	}
	.dropzone .dz-message {
		min-height: 110px;
		margin: 24px auto;
		font-size: 1.05rem;
	}
	.dropzone .dz-message .chooseFile {
		width: 100%;
		font-size: 1rem;
	}
	.dropzone .dz-message .chooseFile .btn {
		box-sizing: border-box;
		width: 100%;
		max-width: 260px;
		min-width: 0;
		padding: 13px 16px;
		font-size: 1rem;
		white-space: normal;
	}
	.dropzone .dz-message .note {
		margin-top: 14px;
		font-size: 0.95rem;
	}
	.dropzone.llrom {
		margin-bottom: 72px;
	}
	.dropzone.llrom::before {
		bottom: -42px;
	}
	.dropzone.llrom .lowerLeft,
	.dropzone.llrom .lowerRight {
		bottom: -42px;
	}
}
