html, body {
	height : 100%;
}

.noOverflow { 
	overflow : hidden;
}

body {
	margin: 0;
}

body *{
	scrollbar-width: thin;
	scrollbar-color: #7a7a7a #ffffff00;
}

.fontFamily {
	font-family : 'Poppins', sans-serif;
}

.fontFamilyHead {
	font-family : 'Bai Jamjuree', sans-serif;
}

.fontColor {
	color : #3b4859;
}

.fontColorBlack {
	color : black;
}

.fontColorLien {
	color : #8da3c3;
}

.fontColorLienFooter {
	color : white;
}

.fontColorGrey {
	color : #3b4859;
}

.fontColorWhite {
	color : white;
}

.fontColorPink {
	color : #fd478c;
}

.fontColorRed {
	color : #e40e0e;
}

.fontSize{
	font-size : 16px;
}

.fontSize12 {
	font-size : 12px;
}

.fontSize14 {
	font-size : 14px;
}

.fontSize20 {
	font-size : 20px;
}

.fontWeightBold{
	font-weight : bold;
}

.fontStyleItalic{
	font-style : italic;
}

.fontStyleNormal{
	font-style : normal;
}

.presHeader {
    width: 100%;
    height: 60px;
	display: flex;
	align-items: center;
}

.colorFondHeader {
    background-color: #dce5f0;
}

.presLien {
    text-decoration: none;
}

.imLogo {
	width: auto;
	height: 33px;
}

.presBody {
    align-items: center;
    display: flex;
    flex-direction: column;
    -webkit-text-size-adjust: 100%; /* Évite les ajustements automatiques */
}

.colorFondBody {
    background-color: #ffffff;
}

.presRetour {
	margin: 0 0 10px 0;
	display: flex
}

.presMain {
    width: 100%;
	padding-top: 15px;
    height: 100%;
	overflow-y: auto;
    display: flex;
	flex-direction: column;
	align-items: center;
}

.colorFondMain {
    background: #3b4859;
}

.presMainBox {
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 1); 
    width: 90%;
    padding: 10px;
    align-items: center;
}

.colorFondMainBox {
    background: #fff;
}

.borderMainBox {
    border-radius: 20px;
}

#dvEndBody {
    margin-top:60px;
}

.presFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
	z-index: 600;
}

.presFooter nav {
	width:100%;
	display: flex;
	align-items: center;
	height: 100%;
}

.imagePied {
	width: auto;
	height: 100%;
}

.colorFondFooter {
    background-color: #8da3c3;
	background: -moz-linear-gradient(#8da3c3, #586679);
	background: -webkit-linear-gradient(#8da3c3, #586679);
	background: -o-linear-gradient(#8da3c3, #586679);
}

.dvTextLien p {
	margin-top: 0;
    margin-bottom: 1rem;
}

.presMessage {
    background-color: #feffc4;
	border-width: 5px;
	border-style: solid;
    border-radius: 20px;
	margin-top:10px;
    padding: 5px;
    text-align: center;
}

ul {
	margin: 0;
}

.colorMessageError {
    border-color: #e40e0e;
	color : #e40e0e;
}

.colorMessageNormal {
    border-color: #5ec15e;
	color : #5ec15e;
}

.inputSaisie {
    margin: 5px 0 10px 0;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #8da3c3;
}

.colorFondInputSaisie {
    background-color: #fff;
}

.bouton {
    border: none;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    margin: 10px 0;
    padding: 10px;
    transition: background-color 0.3s;
}

.colorGradientGreen {
    background-color: #5ec15e;
	background: -moz-linear-gradient(#5ec15e, #206c20);
	background: -webkit-linear-gradient(#5ec15e, #206c20);
	background: -o-linear-gradient(#5ec15e, #206c20);
}

.colorGradientPink {
    background-color: #fd478c;
	background: -moz-linear-gradient(#fd478c, #a72b5a);
	background: -webkit-linear-gradient(#fd478c, #a72b5a);
	background: -o-linear-gradient(#fd478c, #a72b5a);
}

.colorGradientGrey {
    background-color: #8da3c3;
	background: -moz-linear-gradient(#8da3c3, #586679);
	background: -webkit-linear-gradient(#8da3c3, #586679);
	background: -o-linear-gradient(#8da3c3, #586679);
}

.colorGradientRed {
    background-color: #e40e0e;
	background: -moz-linear-gradient(#e40e0e, #7c0b0b);
	background: -webkit-linear-gradient(#e40e0e, #7c0b0b);
	background: -o-linear-gradient(#e40e0e, #7c0b0b);
}

/* boite modale pour les messages */
.textMessage {
	height:80%;
	overflow-y: auto;
	overflow-x: hidden;
}

.corpsMessage{
	height: 100%;
}

.modalMessage {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	z-index: 800;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: auto;
}

.modalMessage > div {
	max-width: 68%;
	left: 50%;
	top: 38%;
	transform: translate(-50%, -50%);
	position: absolute;
	margin: 5% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
}

.modalMessage .close {
	cursor:pointer;
	height:30px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 30px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.modalMessage .close > img {
	height:80%;
	padding:3px;
}

.modalMessage .close:hover {
	background: white;
	color: black;
}

.presMain.loading, .presMain.modal-active{
	filter: blur(5px); /* Applique un flou à tout le contenu */
	pointer-events: none; /* Désactive les interactions avec le contenu */
}
/* Fin boite modale */

/* toast */
#dvToast {
	visibility: hidden;
	width:100%;
	margin: 0 auto;
	background-color: #4caf50;
	color: #fff;
	text-align: center;
	border-radius: 0px 0px 5px 5px;  /* Haut-gauche, Haut-droit, Bas-droit, Bas-gauche */
	padding: 16px;
	position: fixed;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.5s, top 0.5s;
}

#dvToast.show {
	visibility: visible; /* Show the toast */
	opacity: 1; /* Fully visible */
	top: 0px; /* Move up slightly */
}
/* Fin toast */

.tailleSelect {
	max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}