/* dropzone */
.dropzone {
	min-height: 105px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px dashed #373b7b;
}

.dropzone .dz-message {
	margin: 0;
}

.dropzone .dz-message p {
	margin: 0;
	cursor: auto;
}

.dropzone .dz-message p:first-child {
	font-weight: 500;
	font-size: 16px;
}

.dropzone .dz-message p:first-child strong {
	color: var(--primary-color);
	cursor: pointer;
}

.dropzone .dz-message p:last-child {
	margin-top: 5px;
	color: #828080;
}

.dropzone.dz-clickable,
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
	cursor: auto;
}

input.error ~ .dropzone {
	border: 1px solid #f00;
}

.dropzone .dz-preview {
	margin: 0;
}
