.upload-file-component > div.upload {
	border: 2px dashed #B8B9BC;
	box-sizing: border-box;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 200px;
}

.upload-file-component > div.upload > span {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 130%;
	color: #060C1B;
}

.upload-file-component > div.upload > span > label {
	color: #3D97DE;
	text-decoration: underline;
	cursor: pointer;
}

.upload-file-component > div.upload > span.description {
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	color: #B8B9BC;	
}

.upload-file-component > div.upload input[type=file] {
	display: none;
}

.upload-file-component .files > div {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
}

.upload-file-component .files > div span {
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	color: black;
}

.upload-file-component .files img {
	cursor: pointer;
}

.upload-file-component .preview.upload {
	padding-top: 0px;
	padding-bottom: 0px;
}

.upload-file-component .preview img {
	height: 100%;
}