
.kd-upload-file {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
}

.kd-upload-file > .kd-drop-area {
	border: 1px solid #aaa;
	width: 100%;
	border-radius: 5px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}
.kd-upload-file > .kd-drop-area > .kd-browse {
	display: block;
	font-weight: 300;
	width: 100%;
	padding: 10px 20px;
	text-align: center;
	color: #aaa;
	border: 1px dashed #aaa;
	border-radius: 5px;
	cursor: pointer;
}
.kd-upload-file > .kd-drop-area > .kd-browse h6{
	margin-bottom: 0;
}
.kd-upload-file > .kd-drop-area > .kd-preview {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: left;
	flex-direction: row;
	flex-wrap: wrap;
}
.kd-upload-file > .kd-drop-area > .kd-preview:not(.multiple) .kd-preview-item{
	width: 100%;
	display: block;
	position: relative;
	margin: 0.5rem;
}
.kd-upload-file > .kd-drop-area > .kd-preview .kd-preview-item{
	width: 15%;
	display: block;
	position: relative;
	margin: 0.75rem;
}
.kd-upload-file > .kd-drop-area > .kd-preview .kd-preview-item img{
	width: 100%;
}
.kd-upload-file > .kd-drop-area > .kd-preview .kd-preview-item button{
	position: absolute;
	right: 0;
	background-color: rgba(255, 0, 0, 0.5);
	border: unset;
	border-radius: 15px;
	color: #fff;
	width: 25px;
	height: 25px;
	top: 0;
	right: 0;
}
.kd-upload-file > .kd-drop-area > .kd-preview .kd-preview-item:hover button{
	background-color: rgba(255, 0, 0, 1);
}
.kd-upload-file > .kd-drop-area > .kd-preview .kd-preview-item span{
	display: none;
}
.kd-upload-file > .kd-drop-area > .kd-preview .kd-preview-item:hover span{
	display: block;
	position: absolute;
	right: 0;
	background-color: rgba(222,222,222,0.5);
	border-radius: 5px;
	color: #000;
	width: 100%;
	bottom: 0;
	padding: 7px;
	font-size: 10pt;
}
.kd-none {
	display: none !important;
}