
#output {
	max-width: 250px !important;
	max-height: 250px !important;
  }

.card-upload {
	height: auto;
	padding: 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
}

.card-upload .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.card-upload .top p {
	font-size: 0.9rem;
	font-weight: 600;
	color: #878a9a;
}

.card-upload .top button {
	outline: 0;
	border: 0;
	-webkit-appearence: none;
	background: #5256ad;
	color: #fff;
	border-radius: 4px;
	transition: 0.3s;
	cursor: pointer;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	font-size: 0.8rem;
	padding: 8px 13px;
}

.card-upload .top button:hover {
	opacity: 0.8;
}

.card-upload .top button:active {
	transform: translateY(5px);
}
/*
form {
	width: 100%;
	height: 160px;
	border-radius: 5px;
	border:  2px dashed #d5d5e1;
	color: #c8c9dd;
	font-size: 0.9rem;
	font-weight: 500;
	position: relative;
	background: #dfe3f259;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	margin-top: 20px;
}

form .select {
	color: #5256ad;
	margin-left: 7px;
	cursor: pointer;
}

form input {
	display: none;
}

form.dragover {
	border-style: solid;
	font-size: 2rem;
	color: #c8c9dd;
	font-weight: 600;
	background: rgba(0, 0, 0, 0.34);
}
*/
.container {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	position: relative;
	height: auto;
	margin-top: 20px;
	max-height: 300px;
	overflow-y: auto;
}

.container .image {
	height: 85px;
	width: 85px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	position: relative;
	margin-bottom: 7px;
	margin-right: 7px;
}

.container .image:nth-child(4n) {
	margin-right: 0;
}

.container .image img {
	height: 100%;
	width: 100%;
	cursor: pointer;
}


.container .image span {
	position: absolute;
	top: -4px;
	right: 5px;
	cursor: pointer;
	font-size: 22px;
	color: rgb(245, 122, 122);
}

.container .image span:hover {
	opacity: 0.5;
}
