/* ANCHOR VARIABLES */
:root {
	--noir: #333333;
	--bleu-classique: #6e92ff;
	--bleu-classique-hover: #6586e9;
	--rouge-classique: #ff6257;
	--rouge-classique-hover: #f1463b;
	--success-green: #2e7e32;
	--success-green-hover: #2a742e;
	--grey-text: #9ba8af;
	--dark-blue: #0078d4;
	--grey-border: #d5d9de;
	--bg-color: #f1f4f9;
}

/* ANCHOR GENERAL STYLE*/
* {
	padding: 0;
	margin: 0;
	font-family: "Roboto", sans-serif;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

*::placeholder {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html,
body {
	height: 100%;
}

.non-selectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input[type="checkbox"] {
	appearance: checkbox;
}

strong {
	font-weight: 900;
}

.main-body {
	display: flex;
}

button {
	cursor: pointer;
}

a,
button,
div,
input,
label,
select,
span,
strong,
textarea {
	outline: 0;
}

/* ANCHOR Header */
header {
	width: 74%;
	height: 70px;
	background: white;
	display: flex;
	align-items: center;
	box-shadow: 0 4px 5px -2px darkgray;
	padding: 0 13%;
}

header nav {
	width: 100%;
	margin-left: 30px;
}

header nav a {
	text-decoration: none;
	outline: none;
	border-bottom: 2px solid transparent;
	margin-right: 20px;
	color: #262626;
}

header nav a:hover {
	border-bottom: 2px solid #262626;
}

div.logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	outline: none;
}

div.logo img {
	height: 45px;
	margin-left: 80px;
}

div.logo span {
	outline: none;
	border-bottom: 2px solid transparent;
	margin-right: 20px;
	color: black;
	margin-left: 10px;
	font-size: 24px;
}

div.line::before {
	content: "|";
	display: block;
	font-size: 30px;
	font-weight: 400;
	margin-left: 10px;
	top: 7px;
}

nav div.account-action {
	float: right;
}

/***************************************** Overlay Scrollbar ***************************************************************************************/
.os-theme-dark.os-theme-dark-thin
	> .os-scrollbar
	> .os-scrollbar-track
	> .os-scrollbar-handle {
	width: 5.5px;
	cursor: default;
}

/* ANCHOR Boutons */
.bouton {
	font-size: 15px;
	color: white;

	border-radius: 7px;
	border: none;
	outline: none;

	padding-bottom: 7px;
	padding-top: 7px;
	padding-right: 10px;
	padding-left: 10px;

	transition-property: background-color;
	transition-duration: 0.2s;

	cursor: pointer;
	-webkit-appearance: none;
}
.bouton-classique {
	background-color: var(--bleu-classique);
}
.bouton-classique:hover {
	background-color: var(--bleu-classique-hover);
}
.bouton-grave {
	background-color: var(--rouge-classique);
}
.bouton-grave:hover {
	background-color: var(--rouge-classique-hover);
}

/***************************************** Styles du formulaires qui envoit le message***************************************************************************************/
#bouton-envoyer-message {
	color: white;
	font-size: 1rem;
	border-radius: 500px;
	background-color: var(--bleu-classique);
	outline: none;
	border: none;
	padding: 10px;
	height: max-content;
	cursor: pointer;
}
#formulaire-envoi-message {
	background-color: white;
	position: fixed;
	bottom: 0;
	width: 100%;
	padding-bottom: 12px;
	padding-top: 12px;
}
#placeholder-input-message {
	position: absolute;
	color: #999999;
}

#conteneur_formulaire_envoi_message {
	display: flex;
	width: 70%;
	margin: auto;
}

#input_message {
	word-wrap: break-word;
	position: relative;
	outline: none;
	width: 100%;
	height: max-content;
	border: none;
}

#conteneur_input_message {
	display: flex;
	flex: 1;
	border: none;
	border-radius: 5px;
	padding: 10px;
	margin-right: 20px;
	max-height: 80px;
	height: max-content;
	background-color: var(--bg-color);
	cursor: text;
	max-width: 50%;
}

/***************************************** Styles du contenu de la liste des discussions ***************************************************************************************/
#listOfDiscussions {
	width: 20%;
	height: 100%;
	min-width: 250px;
	background-color: var(--bg-color);
	border-right-color: var(--grey-border);
	border-right-style: solid;
	border-right-width: thin;
}

div.empty-discussion {
	margin-top: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

div.empty-discussion img {
	width: 50%;
}

div.empty-discussion h2 {
	width: 80%;
	margin: 20px 10%;
	text-align: center;
}

.list-of-link {
	list-style: none;
	height: var(--discussion-body-height);
}

.link-to-discussion {
	display: flex;
	padding-left: 10px;
	height: 50px;
	cursor: pointer;
	justify-content: space-between;
}

.link-to-discussion:hover {
	background-color: #dcf1fa;
}

.link-to-discussion-selected,
.link-to-discussion-selected:hover {
	background-color: #c7edfc;
}

.notification {
	background-color: #6e92ff;
	border-radius: 50%;
	height: 20px;
	width: 20px;
	display: block;
	text-align: center;
	line-height: 21px;
	font-size: 10px;
	color: white;
	position: absolute;
	margin-top: 23px;
	margin-left: 44px;
	left: 170px;
}

.date-last-message {
	margin-top: 5px;
	font-size: 12px;
	color: var(--grey-text);
	margin-right: 15px;
}

.discussion-title {
	margin-top: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/***************************************** Styles du contenu des messages ***************************************************************************************/
#discussionBody {
	width: 80%;
	height: 100%;
}

.name-message-author {
	font-weight: bold;
}

#conteneur_des_messages {
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 10px;
	padding-top: 10px;
	list-style-type: none;
	height: var(--discussion-body-height);
}

.conteneur_d_un_message {
	background-color: var(--bg-color);
	word-wrap: break-word;
	width: max-content;
	max-width: 500px;
	padding: 10px;
	border-radius: 5px;
	border-bottom-left-radius: 0px;
	margin-top: 2px;
}

.connect-user-message {
	background-color: #c7edfc;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 0px;
}

.message-flex {
	display: flex;
	justify-content: flex-end;
}

#go-to-bottom {
	position: absolute;
	bottom: 20%;
	right: 1%;
	z-index: 2;
	height: 50px;
	width: 50px;
	background-color: skyblue;
	border-radius: 50%;
	text-decoration: none;
	color: white;
	text-align: center;
	font-size: 40px;
	cursor: pointer;
}

#arrow-go-to-bottom {
	margin-top: 7px;
}

/* TITRE DISCUSSION */
#discussion-title-detail {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: solid var(--grey-border) 1px;
}

#link-to-discussion-detail {
	font-size: 25px;
	text-decoration: none;
	cursor: pointer;
	margin-left: 20px;
	color: black;
	font-weight: 500;
}

#link-to-discussion-detail:hover {
	color: #3c3c3c;
}

#gear-discussion-detail {
	font-size: 30px;
	cursor: pointer;
	color: var(--bleu-classique);
	margin-right: 20px;
	transition-duration: 0.2s;
}

#gear-discussion-detail:hover {
	color: var(--bleu-classique-hover);
}

/***************************************** Style des messages d'erreur et de réussite ***************************************************************************************/
div.success {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background-color: var(--success-green);
	color: white;
	padding: 8px;
	z-index: 2;
	border-radius: 5px;
	box-shadow: 0px 0px 15px black;
	font-size: 18px;
	animation: 3s fadeout;
	opacity: 0;
}

.fadeout {
	animation: 3s fadeout;
}

@keyframes fadeout {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.close-alert {
	background-color: var(--success-green);
	cursor: pointer;
	color: white;
	font-weight: bold;
	outline: none;
	border: none;
	margin-left: 10px;
	padding: 7px;
	transition-duration: 0.2s;
	border-radius: 5px;
	font-size: 16px;
}

.close-alert:hover {
	background-color: var(--success-green-hover);
}

/***************************************** Style du bouton pour créer une nouvelle discussion ***************************************************************************************/
#control-list-of-discussion {
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#new-discussion-button {
	font-size: 16px;
	padding: 8px 15px;
	background-color: white;
	border: 1px solid #e5e4e8;
	border-radius: 500px;
	cursor: pointer;
	outline: none;
}

#new-discussion-button-text {
	font-size: 14px;
}

#new-discussion-button-icon {
	font-size: 16px;
}

/***************************************** Style du formulaire de la nouvelle discussion ***************************************************************************************/
#new-discussion-title {
	color: white;
}

#form-create-discussion {
	padding-top: 20px;
	width: 95%;
	margin: auto;
	word-wrap: break-word;
}

.input-create-discussion {
	outline: none;
	border: none;
	padding: 7px;
	width: calc(100% - (2 * 7px));
	margin: auto;
	border-radius: 6px;
}

.input-create-discussion::placeholder {
	font-size: 14px;
}

.label-create-discussion {
	font-size: 17px;
}

#number-of-character-input-discussion-title {
	margin-right: 10px;
	font-size: 12px;
	color: var(--grey-text);
}

#container-input-title {
	display: flex;
	align-items: center;
	background-color: white;
	border: var(--grey-border) solid 1px;
	border-radius: 6px;
}

#form-create-discussion button {
	border-radius: 3px;
	border: none;
	outline: none;
	font-size: 17px;
	padding: 10px;
	background: transparent;
	color: #0078d4;
	border: #0078d4 solid 1px;
	cursor: pointer;
	transition: background 0.5s;
}

#form-create-discussion button:hover {
	background-color: #3dabff42;
}

#form-create-discussion > #searchMember {
	border: var(--grey-border) solid 1px;
	border-radius: 6px;
}

label[for="searchMember"] {
	display: block;
	margin-top: 20px;
}

#form-create-discussion > .container-button {
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	z-index: 2;
}

.resultSearchMember input[type="checkbox"] + label {
	display: flex;
	align-items: center;
	margin: 0.2em;
	cursor: pointer;
	padding: 0.2em;
}

.resultSearchMember input[type="checkbox"] {
	display: none;
}

.resultSearchMember input[type="checkbox"] + label:before {
	content: "\2714";
	border: 0.1em solid var(--grey-border);
	border-radius: 50%;
	display: inline-block;
	width: 1em;
	height: 1em;
	padding-left: 0.2em;
	padding-bottom: 0.3em;
	margin-right: 0.2em;
	vertical-align: bottom;
	color: transparent;
	transition: 0.2s;
}

.resultSearchMember input[type="checkbox"] + label:active:before {
	transform: scale(0);
}

.resultSearchMember input[type="checkbox"]:checked + label:before {
	background-color: var(--dark-blue);
	border-color: var(--dark-blue);
	color: #fff;
}

#form-create-discussion input[type="checkbox"]:disabled + label:before {
	transform: scale(1);
	border-color: #aaa;
}

.resultSearchMember input[type="checkbox"]:checked:disabled + label:before {
	transform: scale(1);
	background-color: #bfb;
	border-color: #bfb;
}

#listOfResults {
	border-top: var(--grey-border) 1px solid;
	margin-top: 10px;
	height: 80%;
	list-style: none;
}

#listOfResults li {
	width: 100%;
	height: 2rem;
	cursor: pointer;
	transition: 0.2s;
}

#listOfResults li:hover {
	background-color: #e1ecfa;
}

.selectedMember {
	margin-top: 5px;
}

#listOfSelectedMember {
	margin-top: 10px;
	max-height: 70px;
	height: max-content;
}

#listOfSelectedMember li {
	width: max-content;
	background-color: #dbdbdb;
	padding: 2px;
	border-radius: 50px;
	padding-left: 10px;
	padding-right: 10px;
	display: flex;
	align-items: center;
}

#listOfSelectedMember .cross-container {
	text-align: center;
	border-radius: 50%;
	height: 17px;
	width: 17px;
	cursor: pointer;
	transition: all 0.1s ease-out;
	margin-right: 7px;
}

#listOfSelectedMember .cross-container:hover {
	background-color: white;
}

/* ANCHOR popup*/
.overlay {
	position: fixed;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 1;
	display: none;
	z-index: 3;
	/* backdrop-filter: blur(4px); */
}

.popup {
	width: 30%;
	height: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 50%;
	background-color: rgb(243, 243, 243);
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
}

.popup > .title {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: var(--dark-blue);
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup > .title > h1 {
	color: white;
	font-size: 25px;
	font-weight: normal;
}

.popup .content {
	padding: 20px;
}

.popup div.error {
	margin: 0;
	/* On soustrait le padding */
	width: calc(100% - 0.8rem * 2);
}

.close-popup {
	position: absolute;
	left: 90%;
}

.close-popup span {
	cursor: pointer;
	color: white;
	font-size: 37px;
}

.popup.little-popup {
	height: max-content;
	top: 25%;
}

/***************************************** Animation de la page principale ***************************************************************************************/
#interconnexion-animation {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/* ANCHOR Présentation*/
div#presentation {
	display: flex;
	justify-content: space-around;
	position: absolute;
	width: max-content;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 50px;
	border-radius: 10px;
	box-shadow: 0 15px 35px rgba(61, 61, 61, 0.13);
}

div#presentation h1 {
	font-size: 50px;
	font-weight: 400;
	margin-bottom: 10px;
}

div#presentation h3 {
	font-size: 30px;
	font-weight: 300;
}

div#presentation img {
	width: 700px;
}

div#presentation div.content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

div#presentation a {
	display: block;
	margin-top: 35px;
	color: white;
	background-color: #0078ca;
	text-decoration: none;
	padding: 0.75rem 1.5rem 0.75rem 1.5rem;
	width: max-content;
	font-weight: medium;
	font-size: 1.25rem;
	border: 2px solid #fff;
	letter-spacing: 0.1pt;
	border-radius: 100px;
	-webkit-transition: background 0.3s;
	transition: background 200ms;
	text-shadow: 0 1px 3px rgb(0 0 255 / 15%);
	outline: none;
	cursor: pointer;
}

div#presentation a:hover {
	background: #0c65a4;
}

@media all and (max-width: 1260px) {
	div#presentation {
		flex-direction: column;
		padding: 30px;
	}

	div#presentation a {
		margin-top: 10px;
		margin-bottom: 30px;
	}

	div#presentation div.content {
		width: 80%;
		margin: auto;
	}
}

@media all and (max-width: 830px) {
	div#presentation {
		width: 80%;
	}

	div#presentation img {
		width: 90%;
	}
}

/* ANCHOR Formulaire d'accès */
form.form-user-access h1 {
	font-size: 40px;
	margin-bottom: 5px;
}

span.require-input {
	color: var(--rouge-classique-hover);
}

form.form-user-access {
	margin: auto;
	margin-top: 40px;
	width: 900px;
	text-align: center;
}

div.input-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 50%;
	margin: auto;
}

div.input-container + div.input-container {
	margin-top: 20px;
}

div.input-container label {
	font-size: 1rem;
	margin-bottom: 3px;
}

div.input-container input[type="text"],
div.input-container input[type="password"] {
	outline: none;
	border: solid 1.5px black;
	border-radius: 5px;

	/* On soustrait a la moitié le padding + la bordure */
	width: calc(100% - ((5px * 2) + 1.5px));
	padding: 5px;
	font-size: 16px;
}

div.input-container input:focus {
	border: solid 1.5px var(--bleu-classique-hover);
}

form.form-user-access button {
	margin: 20px 0px;
	padding: 12px 20px;
	font-size: 1rem;
	color: white;
	background-color: var(--bleu-classique);
	transition: background-color 200ms, box-shadow 200ms;
	outline: none;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
	box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%),
		0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

form.form-user-access button:hover,
form.form-user-access button:focus {
	background-color: var(--bleu-classique-hover);
	box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
		0px 8px 10px 1px rgba(0, 0, 0, 0.14),
		0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

form.form-user-access a {
	color: var(--bleu-classique);
}

form.form-user-access a:hover {
	text-decoration: none;
}

form.form-user-access p {
	margin-bottom: 15px;
}

div.error {
	margin: 15px auto;
	padding: 0.8rem;
	border-radius: 0.25rem;
	color: #842029;
	background-color: #f8d7da;
	border: solid 1px #f5c2c7;
	width: calc(50% - 0.8rem);
	display: flex;
	align-items: center;
	animation: 0.2s linear 3 alternate blink;
	opacity: 1;
}

@keyframes blink {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.error-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

div.error .icon {
	margin-right: 10px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ANCHOR CONTEXT MENU */
.context-menu {
	transform: scale(0);
	z-index: 10;
	position: fixed;
	width: 140px;
	box-shadow: 0px 2px 9px #aaa;
	overflow: hidden;
	border: solid 1px #aaa;
	transform-origin: left top;
	transition: transform 150ms ease-in-out;
}

.context-menu.show {
	transform: scale(1);
}

.context-menu > div {
	padding: 10px;
	background: white;
	border-bottom: solid 1px #aaa;
	font-size: 11pt;
	cursor: pointer;
}

.context-menu > div:hover {
	background: #f0f0f0;
}

/* ANCHOR REGLAGE DISCUSSION */
.add-participant form input[type="text"] {
	border: var(--grey-border) solid 1px;
}

main.reglage-discussion {
	width: 800px;
	margin: auto;
	padding-top: 50px;
}

input#discussion-title {
	outline: none;
	border-radius: 5px;
	font-size: 3rem;
	padding: 4px;
	width: 100%;
	text-align: center;
	border: 2px solid white;
}

input#discussion-title:not(:read-only) {
	border: 2px solid var(--bleu-classique);
	background-color: var(--grey-border);
}

input:read-only {
	outline: none;
	border: none;
}

ul.list-participant {
	list-style: none;
}

ul.list-participant > li {
	padding-left: 40px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #f2f2f2;
	z-index: 0;
	display: grid;
	grid-template-columns: 250px 10px;
	grid-template-rows: 1fr;
	gap: 0px 0px;
	grid-template-areas: ". .";
}

ul.list-participant > li:last-child {
	border-bottom: 1px solid #f2f2f2;
}

ul.list-participant .more {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}

ul.list-participant .more > i {
	z-index: 2;
}

ul.list-participant .more > .circle {
	transition: all 0.1s;
	position: absolute;
	padding: 16px;
	border-radius: 50%;
	background-color: #dbdbdb;
	z-index: 1;
	opacity: 0;
}

ul.list-participant .more > .circle.show {
	opacity: 1;
}

div.container-discussion-title {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

a.go-back-arrow {
	color: #6e92ff;
	font-size: 3rem;
	margin-right: 10px;
}

button.modify-title {
	padding: 5px;
	outline: none;
	border: none;
	font-size: 20px;
	background-color: white;
}

.add-participant .button-container {
	width: 100%;
	text-align: center;
	margin-top: 75px;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
}

.quitter-discussion .button-container {
	width: 100%;
	text-align: center;
	margin-top: 25px;
}

.quitter-discussion button {
	border: none;
	outline: none;
	font-size: 1.2rem;
	border-radius: 30px;
	padding: 7px 25px;
	background-color: var(--rouge-classique);
	color: white;
	transition: background-color 0.2s;
}

.quitter-discussion button:hover {
	background-color: var(--rouge-classique-hover);
}

.add-participant button {
	outline: none;
	border: none;
	background-color: white;
	color: var(--bleu-classique);
	font-size: 1.2rem;
	padding-top: 10px;
	padding-bottom: 10px;
}

.annuler-quitter-container {
	margin-top: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

button.annuler,
button.quitter {
	outline: none;
	border: none;
	border-radius: 5px;
	padding: 7px 15px 7px 15px;
	font-size: 1rem;
	transition: background-color 0.2s;
	color: white;
}

button.quitter {
	background-color: var(--rouge-classique);
}

button.quitter:hover {
	background-color: var(--rouge-classique-hover);
}

button.annuler {
	background-color: var(--bleu-classique);
}

button.annuler:hover {
	background-color: var(--bleu-classique-hover);
}

/* ANCHOR COMPTE DESCRIPTION */
.account-description {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: solid var(--grey-border) 1px;
	padding: 0px 25px;
}

.account-description .pseudo {
	font-size: 1.1rem;
}

.account-description a {
	font-size: 1.3rem;
	text-decoration: none;
	color: black;
}

.account-description a:hover {
	font-size: 1.3rem;
	text-decoration: none;
	color: rgb(53, 53, 53);
}

/* ANCHOR Mon compte */
main.compte {
	width: 800px;
	margin: auto;
	padding-top: 50px;
}

a.escape-compte {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 36px;
	border: 2px solid #dcddde;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
}

a.escape-compte:hover {
	background-color: #ebedef;
}

main.compte > div.title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div.card-compte {
	margin-top: 15px;
	background: var(--bg-color);
	padding: 20px;
	border-radius: 7px;
	width: 80%;
}

div.card-compte > h2 {
	margin-bottom: 30px;
	margin-top: 10px;
	margin-left: 10px;
}

div.card-compte > div.info-container-container {
	background: white;
	padding: 15px;
	border-radius: 5px;
}

div.info-container h5 {
	color: #6a7480;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-size: 12px;
	line-height: 16px;
}

div.contenu-champ-compte {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

div.info-container + div.info-container {
	margin-top: 20px;
}

div.contenu-champ-compte button {
	color: #fff;
	background: #747f8d;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	padding: 10px 16px;
	user-select: none;
	outline: none;
	position: relative;
	transition: background 0.2s;
	letter-spacing: 0.2px;
	font-weight: 400;
}

div.contenu-champ-compte button:hover {
	background: #68727f;
}

div.contenu-champ-compte button:focus {
	background: #5d6671;
}

div.boutons-graves-container {
	margin-top: 30px;
	display: flex;
}

div.boutons-graves-container button {
	cursor: pointer;
	border: none;
	border-radius: 3px;
	font-size: 14px;
	line-height: 16px;
	padding: 10px 16px;
	user-select: none;
	outline: none;
	position: relative;
	transition: background 0.2s;
	letter-spacing: 0.2px;
	font-weight: 400;
	background: transparent;
	margin-right: 10px;
}

div.boutons-graves-container button.deconnexion {
	color: #fff;
	background: #ed4245;
}

div.boutons-graves-container button.deconnexion:hover {
	background: #d53b3e;
}

div.boutons-graves-container button.deconnexion:focus {
	background: #be3537;
}

div.supprimer-compte button {
	color: #ed4245;
	border: 1px solid #ed4245;
}

div.supprimer-compte button:hover {
	background: #fdebec;
}

div.supprimer-compte .button-container {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-top: 20px;
}
div.modifier-pseudo .popup button,
div.supprimer-compte .annuler {
	background: var(--bleu-classique);
	color: white;
	border-color: transparent;
}
div.modifier-pseudo .popup button:hover,
div.supprimer-compte .annuler:hover {
	background: var(--bleu-classique-hover);
}

div.supprimer-compte .supprimer {
	color: white;
	background: #ed4245;
}

div.supprimer-compte .supprimer:hover {
	background: #d53b3e;
}

div.modifier-pseudo .button-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

div.modifier-pseudo .popup {
	width: 400px;
}

div.modifier-pseudo .input-container {
	width: 100%;
}

.input-create-discussion::placeholder {
	font-size: 14px;
}

div.info-container div.error {
	margin-bottom: 20px;
}

div.info-container .popup div.input-container {
	width: 100%;
}

div.info-container .popup .button-container {
	margin-top: 10px;
	display: flex;
	justify-content: center;
}

div.info-container .popup button {
	background: var(--bleu-classique);
	transition: background .2s;
}

div.info-container .popup button:hover {
	background: var(--bleu-classique-hover);
}