.inf__drop-area * {
	box-sizing: border-box;
}

.inf__drop-area {
	position: relative;
	display: flex;
	align-items: center;
	height: 60px;
	width: 100%;
	border: 1px dashed #c4c4c4;
	border-radius: 3px;
	padding: 0 20px;
	transition: 0.2s;
	background: rgba(255,255,255,1)
}

.inf__drop-area.is-active {
	background-color: rgba(0, 20, 20, 0.03);
}

.inf__drop-area input[type="file"] {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	cursor: pointer;
}

.inf__drop-area input[type="file"]:focus {
	outline: none;
}

.inf__btn {
	display: inline-block;
	border: 1px solid #c4c4c4;
	border-radius: 3px;
	padding: 10px 15px;
	margin-right: 10px;
	font-size: 14px;
	text-transform: uppercase;
}

.inf__hint {
	flex: 1;
	min-width: 0;
	max-width: 300px;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #4f4f4f;
	line-height: 1.4;
}