.flex{
	display: flex;
}

.drop-zone {
	background-image: url(../img/front.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 300px;
    height: 200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0px;
	cursor: pointer;
	color: #cccccc;
	/*border: 4px dashed #009578;*/
	border: 5px solid white;
}

.drop-zone:hover{
	color: black;
	opacity: 70%;
	font-family: "Quicksand", sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
}

#back {
	background-image: url(../img/back.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 300px;
    height: 200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0px;
	cursor: pointer;
	color: #cccccc;
	/*border: 4px dashed #009578;*/
	border: 5px solid white;
}

#back:hover{
	color: black;
	opacity: 70%;
	font-family: "Quicksand", sans-serif;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
}

.drop-zone--over {
	border-style: solid;
}

.drop-zone__input {
	display: none;
}

.drop-zone__thumb {
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	overflow: hidden;
	background-color: #cccccc;
	background-size: cover;
	position: relative;
}

.drop-zone__thumb:hover::after {
	content: attr(data-label);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 0;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.75);
	font-size: 14px;
	text-align: center;
}