/**
 * documents.css est inclus dans les fichiers :
 * - layout.php
 */

/* Documents */

#document h5 {
	font-size: 1.4vw;
	margin: 0;
}

#telecharger_document {
	background-color: #00799c;
	border-radius: 5px;
	border-style: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	width: 10vw;
}

#telecharger_document p {
	font-size: 1.2vw;
	height: 100%;
	margin: 0;
	width: 80%;
}

#telecharger_document img {
	font-size: 1vw;
	margin: 0;
}

#p_information_document {
	font-size: 1vw;
	height: 100%;
}

/* Partie de visualisation du document */

#docSpace {
	flex: 1;
	height: 65%;
}

#bloc_doc_info {
	height: 31%;
	overflow-y: auto;
	overflow-x: hidden;
	position: absolute;
	width: 100%;
	z-index: -1;
}

#bloc_doc_info h4 {
	font-size: 1.3vw;
	margin-top: 10px;
}

#bloc_doc_info h5 {
	font-size: 1vw;
	font-weight: 600;
}

#divDocPDF {
	display: none;
}

#divDocImg {
	display: none;
	height: 100%;
	text-align: center;
}

#imgTableur {
	display: block;
}

/* Bouton de téléchargement lorsque le téléchargement est impossible */

.telechargement_impossible {
	background-color: #212121 !important;
	/* !important pour que ce soit pris en compte après le jQuery.addClass */
	cursor: not-allowed !important;
	position: relative;
}

.telechargement_impossible .ti_bulle_txt {
	background-color: #00799c;
	border-color: #00799c;
	border-radius: 5px; /* 6px; */
	color: #ffffff;
	left: 50%;
	margin-left: -60px;
	padding: 4px 0; /* 5px 0; */
	position: absolute;
	text-align: center;
	top: 115%;
	visibility: hidden;
	width: 120px;
	z-index: 1;
}

.telechargement_impossible .ti_bulle_txt::after {
	border-color: transparent transparent black transparent;
	border-style: solid;
	border-width: 5px;
	bottom: 100%;
	content: "";
	left: 50%;
	margin-left: -5px;
	position: absolute;
}

.telechargement_impossible:hover .ti_bulle_txt {
	visibility: visible;
}