.titre {
	font-size: 4em;
}

/* CHAMPS DE RECHERCHE */

input::placeholder {
	color: whitesmoke;
}

.search-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	width: 568px;
	height: 59px;
	background-color: #00B8DE;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
  
.form {
	height: 100%;
	width: 100%;
}

input[type="search"] {
	width: calc(100% - 50px);
	height: 100%;
	border: none;
	background-color: transparent;
	font-size: 15px;
	padding: 0 10px;
}

.submit {
	padding: 10px;
	border: none;
	background-color: #00B8DE;
	color: white;
	font-size: 16px;
	cursor: pointer;
  }

.search-button {
	margin-left: 10px;
}

/* Affichage de la recherche */
.cadre-recherche {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 5%;
}

.cadre {
	width: 1000px;
    height: 100%;
	background-color: #f7fbfe;
}

.sous2 {
    font-size: 2em;
    text-align: left;
    margin-left: 10px;
}

.table {
    width: 1000px;
    height: 105%;
    background-color: #f7fbfe;
	border-collapse: collapse;
}

.table tr {
	border-bottom: 5px solid #00B8DE;
}

.ligneBleu {
    width: auto;
	margin-top: 15px;
	margin-bottom: 15px;
    height : 5px;
    background-color : #00B8DE;
}

.processus-button {
	background-color: transparent;
    color : black;
    border : none;
}

.cp {
	font-size: 2.5em;
	text-align: center;
}

b {
    color : #F41818;
	font-size: 2.5em;
	text-align: center;
}

/* PARTIE DECO */
.triangleOrange {
    display : flex inline-block;
    height : 1;
    width : 1;
    border-right : 150px solid transparent;
    border-bottom :150px solid #ef7d00;
    border-left : 150px solid transparent;
	position: fixed;
	bottom: 0;
	right: 10px;
}