﻿.upload__img-container {
	position: relative;
	display: inline-block;
	margin: 0 10px 20px 0;
}

.upload__img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 8px;
}

.delete-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	color: red;
	/* Change the color to red */
	cursor: pointer;
	padding: 10px;
	border-radius: 50%;
	font-size: 18px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

	.delete-icon:before,
	.delete-icon:after {
		position: absolute;
		left: 10px;
		content: ' ';
		height: 24px;
		width: 3px;
		background-color: red;
		/* Change the color to red */
	}

	.delete-icon:before {
		transform: rotate(45deg);
	}

	.delete-icon:after {
		transform: rotate(-45deg);
	}

.col-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.col-item {
	flex-basis: calc(50% - 10px);
	box-sizing: border-box;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.col-item {
		flex-basis: calc(100% - 10px);
	}
}
