.imagein-wrapper {
	width: 157px;
    height: 88px;
    max-width: 100%;
	border: 1px dashed #0000001a;
	font-family: "Roboto", "Noto", sans-serif;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.imagein-wrapper label {
	padding: 0px;
	margin: 0px;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagein-wrapper svg {
	width: 15%;
}

.imagein-wrapper svg > g {
	fill: #606060;
}

.imagein-wrapper label > div > div {
	font-size: 12px;
	color: #606060;
}

.imagein-wrapper input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
	z-index: 1;
}

.imagein-wrapper .imagein-img-wrapper {
	position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    visibility:hidden;
}

.imagein-wrapper .imagein-img {
	position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagein-wrapper:hover .imagein-img-overlay {
    display: flex;
}

.imagein-wrapper .imagein-img-overlay {
    display: none;
    width: 100%;
    height: 100%;
    background: #00000061;
    position: absolute;
}

.imagein-wrapper .imagein-img-overlay svg {
    text-align: center;
    margin: auto;
    fill: white;
}

.imagein-wrapper img {
    cursor: pointer;
    margin: auto;
}