.gallery {
	display: flex;
	flex-wrap: wrap;
}

.gallery-img-container {
	position: relative;
	margin: 5px;
}

.gallery-img {
	object-fit: cover;
	max-height: 200px;
	max-width: 200px;
}

.gallery-img-remove {
	position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    border-radius: 50%;
    background-color: #D31122;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
	z-index: 4;
}

.gallery-img-remove:hover {
	background-color: #8F111D;
}