
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Roboto:ital,wght@0,100;1,100&display=swap');



body {
    font-family: "Roboto", serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #333333; /* Couleur par défaut du texte */
	display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Scrollbar pour Webkit (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
    width: 6px; /* Largeur très fine */
}

body::-webkit-scrollbar-track {
    background: transparent; /* Fond invisible */
}

body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2); /* Couleur discrète */
    border-radius: 10px; /* Arrondi */
}

body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4); /* Un peu plus visible au survol */
}

/* Pour Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}


h1, h2, h3, h4, h5{

  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;

    font-size: 2.5rem;
    color: #222222;
}
h6 {
	margin: 0;
	margin-top: 20px;
    font-weight: 100;
    font-size: 2rem;
    color: #222222;
}

p {
    line-height: 1.6;
    margin: 0.5em 0;
    font-weight: 300;
}


.Normal {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 2.5rem;
  font-variation-settings:
    "wdth" 100;
}

#NomCopro {
  width: 100%;
  max-width: 600px;
  margin-top: 25px;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.0rem !important;
  margin: 0 auto;
  margin-top : 15px;

}
#NomCopro2 {
	  width: 100%;
  max-width: 600px;
  margin-top: 25px;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem !important;
  margin: 0 auto;
    margin-top : 15px;

}
#NomCopro3 {
	  width: 100%;
  max-width: 600px;
  margin-top: 25px;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem !important;
  color: #6658d3;
  margin: 0 auto;
    margin-top : 15px;

}
#NomCopro4 {
	  width: 100%;
  max-width: 600px;
  margin-top: 10px;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 1rem !important;
  margin: 0 auto;
    margin-top : 15px;

}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.container {
    max-width: 100%;
    margin: 0 auto;
}
#container-main {
    width: 100%;
	max-width: 400px;
    margin: 0 auto;
}
#container-form {
	width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Layout des div principales */
header {
    background-color: #fff;
    padding: 5px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	height: 120px;
}

main {
    flex: 1;
	text-align: center;
}


footer {  padding: 10px; text-align: center; display: block; }

    #main-box {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; /* Permet de passer les divs à la ligne si nécessaire */
    }

    #box1, #box2 {
      width: 50%; 
	  padding: 10px;
      text-align: center;
	  box-sizing: border-box;
	  font-family: "Roboto", serif;
	  font-optical-sizing: auto;
	  font-weight: 100;
	  font-style: normal;
	  font-size: 1rem;
    }

    @media (max-width: 768px) {
      #box1, #box2 {
        width: 100%; /* Sur petits écrans, les divs prennent toute la largeur */
      }
    }

/*

.btn-1 {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;

}

.btn-1 a {
    width: 200px;
  min-width: 200px;
  max-width: 200px;
  text-decoration: none;
  border: 2px solid #010100;
  padding: 15px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

span {
  position: relative;
  z-index: 3;
}

.btn-1 a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -2px;
  width: calc(100% + 6px);
  height: calc(100% - 10px);
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
  transform: scaleY(1);
}

.btn-1 a:hover::before {
  transform: scaleY(0);
}

.btn-1 a::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -5px;
  width: calc(100% - 10px);
  height: calc(100% + 10px);
  background-color: #ffffff;
  transition: all 0.5s ease-in-out;
  transform: scaleX(1);
}


.btn-1 a:hover::after {
  transform: scaleX(0);
}
*/

.btn {
    display: inline-block; /* Nécessaire pour styliser comme un bouton */
    width: 250px;
    height: 50px;
    line-height: 50px; /* Aligne le texte verticalement */
    text-align: center; /* Aligne le texte horizontalement */
    border: 1px solid #000;
    border-radius: 8px;
    background-color: #fff;
    color: #000;
    text-decoration: none; /* Supprime le soulignement */
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f0f0f0;
    color: #333;
    border-color: #333;
}

#div_inscription {
	width: 600px;
	margin : 0 auto;
	
}
@media (max-width: 768px) {
      #div_inscription {
        width: 99%; /* Sur petits écrans, les divs prennent toute la largeur */
      }
    }




// iOS Reset 
input {
	appearance: none;
	border-radius: 0;
}


.input {
	
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	padding-top: 1.5rem;
	&+.input {
		margin-top: 1.5rem;
	}
}

.input-label {
	color: #8597a3;
	position: absolute;
	top: 1.5rem;
	transition: .25s ease;
	font-weight: 700;
	font-size: 16px;
}
.input-check-cont {
	display: flex;
	flex-direction: row; /* Place le label après le bouton */
	align-items: center;
	position: relative;
	gap: 10px;
	padding-top: 1rem;
}
.input-label-check {
	color: #8597a3;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.25s ease;
}

.input-field {
	border: 0;
	z-index: 1;
	background-color: transparent;
	border-bottom: 2px solid #eee; 
	font: inherit;
	font-size: 1.125rem;
	padding: .25rem 0;
	&:focus, &:valid {
		outline: 0;
		border-bottom-color: #6658d3;
		&+.input-label {
			color: #6658d3;
			transform: translateY(-1.5rem);
		}
	}
}


.input-check {
	width: 15px;
	height: 15px;
	border: 2px solid #eee;
	border-radius: 50%;
	position: relative;
	background-color: transparent;
	cursor: pointer;
	transition: border-color 0.25s ease;
}

/* Effet lorsque le bouton est coché */
.input-check:checked {
	border-color: #6658d3;
	background-color: #6658d3;
}

/* Ajout d'un point au centre quand coché */
.input-check:checked::before {
	content: "";
	width: 7px;
	height: 7px;
	background-color: #6658d3;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Hover effect */
.input-check:hover {
	border-color: #6658d3;
}
.input-check:checked + .input-label-check {
    font-weight: 900;
    color: #6658d3; /* Change aussi la couleur pour plus de visibilité */
}
.input textarea.input-field {
    resize: none; /* Empêche le redimensionnement */
    min-height: 4rem;
	    padding: .25rem 0;
}

.input textarea.input-field:focus,
.input textarea.input-field:not(:placeholder-shown) {
    outline: 0;
    border-bottom-color: #6658d3;
}

.input textarea.input-field:focus + .input-label,
.input textarea.input-field:not(:placeholder-shown) + .input-label {
    color: #6658d3;
    transform: translateY(-1.5rem);
}

.action {
	margin-top: 2rem;
}

.action-button {
	font: inherit;
	font-size: 1.25rem;
	padding: 1em;
	width: 100%;
	font-weight: 500;
	background-color: #6658d3;
	border-radius: 6px;
	color: #FFF;
	border: 0;
	&:focus {
		outline: 0;
	}
}

.card-info {
	padding: 1rem 1rem;
	text-align: center;
	font-size: .875rem;
	color: #8597a3;
	a {
		display: block;
		color: #6658d3;
		text-decoration: none;
	}
}


.link-button {
	font: inherit;
	font-size: 1.25rem;
	padding: 1em;
	font-weight: 500;
	background-color: #6658d3;
	border-radius: 6px;
	color: #FFF;
	cursor: pointer;
	border: 0;
	&:focus {
		outline: 0;
	}
}

.form-container {
	width: 99%;
	max-width: 500px;
	margin: 0 auto;
	
}

/* CSS */
.buttonCopro {
  appearance: button;
  backface-visibility: hidden;
  background-color: #405cf5;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
  font-size: 100%;
  height: 44px;
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: left;
  text-transform: none;
  transform: translateZ(0);
  transition: all .2s,box-shadow .08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.buttonCopro:disabled {
  cursor: default;
}

.buttonCopro:focus {
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}

.TitreCat {
  backface-visibility: hidden;
  background-color: #405cf5;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, 
              rgba(50, 50, 93, .1) 0 2px 5px 0, 
              rgba(0, 0, 0, .07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, sans-serif;
  font-size: 100%;
  min-height: 44px; /* Hauteur minimale pour s'adapter au contenu */
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 10px 25px; /* Ajout de padding pour plus d'espace */
  position: relative;
  text-align: center; /* Alignement horizontal */
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;

  /* Centrage vertical et horizontal du texte */
  display: flex;
  align-items: center;
  justify-content: left;
}
#tickets-container-main {
    max-height: 500px; /* Ajuste selon ton besoin */
    overflow-y: auto;
}

.ticket-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 1rem;
}

.ticket {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.ticket.header {
    font-weight: bold;
    background: #f4f4f4;
}

.col1 {
    width: 75px;
	height: 22px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col2 {
    width: 150px;
	height: 22px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col2-5 {
    width: 50px;
	height: 22px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col3 {
    width: 400px;
	height: 22px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col4 {
    width: 100px;
	height: 22px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col5 {
    width: 100px;
	height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col6 {
    width: 150px;
	height: 22px;
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.col7 {
    width: 150px;
	height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


        .image-preview {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 1px solid #ccc;
            margin-top: 10px;
            margin-right: 10px;
            position: relative;
        }
.image-wrapper {
    position: relative;
    display: inline-block;
    margin: 10px;
}
.delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
	
}

.delete-btn:hover {
    background: darkred;
}

        .image-container {
            display: flex;
            flex-wrap: wrap;
        }
	
	
.photo {
	width: 50%;
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #405cf5;
    font-size: 16px;
    border-radius: 5px;
	border-color : #405cf5;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: background 0.3s;
	margin: 0 auto;
}

.photo:hover {
    background-color: #405cf5;
	color : #fff;
}


body {
    font-family: Arial, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#sticky-title {
    position: fixed;
    top: 119px;

    width: 100%;
	max-width: 600px;
    z-index: 100;
    display: none; /* Caché au départ */
	margin-top: 119px;
	margin: 0 auto;

}
@media (max-width: 768px) {
      #sticky-title {
        width: 99%;
		/* Sur petits écrans, les divs prennent toute la largeur */
      }
    }

.contenu-div {
    
    
}

.titre-div {

}
.Question-Champs {
	color: #8597a3;
	top: 1.5rem;
	transition: .25s ease;
	font-weight: 700;
	font-size: 16px;
	text-align: left;
	margin-top: 10px;
}

        #dataContainer {
           
            overflow: auto; /* Activation du scroll */
           
        }
		.container {
            width: 600px;
            margin: auto;
        }
        .item {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
		
		.container-fiche {
            display: flex; /* Active Flexbox */
            justify-content: space-between; /* Espace entre les divs */
            width: 500px;
            margin: auto;
			border-bottom: 2px solid black;
        }

        .box-fiche {


            text-align: left;
            padding: 10px;
        }
		
				.box-fiche:first-child {
			width: 400px; /* Largeur de la première box-fiche */
		}

		.box-fiche:last-child {
			width: 100px; /* Largeur de la seconde box-fiche */
		}