/*Image publication*/
.preview-img{
	/*width: 100%;*/
	width: 117px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	margin: 5px;
	cursor: pointer;
}
.info-file{
	position: relative;
	display: flex;
	flex-flow: column;
}
.preview-img:hover{
	filter: brightness(50%);
}
.delete-img, .principal-img{
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	width: auto;
	margin: auto;
}
.principal-img > .bi {
	color: var(--bs-teal) !important;
}
.delete-img > .bi {
	color: red !important;
}
.delete-img > .text-delete, .principal-img > .text-img-principal{
	color: #4e5574;
	text-decoration: underline;
}
.img-principal{
	width: 100%;
	max-height: 351px;
	object-fit: cover;
	border-radius: 10px;
    cursor: pointer;
}
.img-principal:hover {
    filter: brightness(50%);
}
/*Show a preview image*/
#modalShowPreviewImage .modal-content{
	background-color: #f000 !important;
	border: none;
}
#modalShowPreviewImage .modal-header{
	border: none;
}
#modalShowPreviewImage  .modal-dialog {
    max-width: 1870px !important;
    margin: 0;
}
#modalShowPreviewImage .btn-close{
	background-color: #ffff !important;
	opacity: 1 !important;
}
#modalShowPreviewImage .big-img-preview{
	margin: auto;
  	display: block;
  	width: fit-content;
	max-width: 800px;
	max-height: 800px;
	object-fit: contain;
	
 }
 
 
 