@charset "ISO-8859-1";

:root {
	color-scheme: light dark;
}

body {
	padding-top: 70px;
	padding-bottom: 50px;
	background-color: #343a40;
	background-image: url('../img/backgroundironstardark.jpg');
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	color: #DDD;
}

body:before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: url('../img/backgroundironstardark.jpg') no-repeat center
		center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

nav {
	box-shadow: 1px 0px 3px #000;
}

label {
	color: #FFF;
}

h1 {
	color: #FFF;
}

h3 {
	color: #FFF;
	text-decoration: underline #57A;
}

hr {
	border: 1px solid #888;
}

a {
	color: #57E;
}

a:hover {
	color: #58F;
	text-decoration: none;
}

.container-grid {
	display: grid;
	grid-template-areas: "n n u" "d s p" "d c p" "o o p" "h h h" "i i i"
		"v v v";
	grid-template-columns: 1fr 1fr 25%;
}

.container-grid-public {
	display: grid;
	grid-template-areas: "n n u" "d s p" "d c p" "o o o" "h h h" "i i i"
		"v v v";
	grid-template-columns: 1fr 1fr 25%;
}

.container-grid-public-nsfw {
	display: grid;
	grid-template-areas: "n n n u" "d x s p" "d x c p" "o o o o" "h h h h"
		"i i i i" "v v v v";
	grid-template-columns: 1fr 1fr 1fr 25%;
}

.container-grid-joueurs {
	display: grid;
	grid-template-areas: "n n u" "d c p" "o o p" "h h h" "v v v";
	grid-template-columns: 1fr 1fr 25%;
}

.RP-grid {
	display: grid;
	grid-template-areas: "t t t i" "c c c i";
}

.plan-grid {
	display: grid;
	grid-template-areas: "p i";
	grid-template-columns: 1020px 1fr;
}

.carte-grid-admin {
	display: grid;
	grid-template-areas: "n n" "a c";
	grid-template-columns: 300px 1fr;
}

.carte-grid {
	display: grid;
	grid-template-areas: "n" "c";
	grid-template-columns: 1fr;
}

.illustration-grid {
	display: grid;
	grid-template-areas: "f i";
	grid-template-columns: 1fr 400px;
}

.wiki-grid {
	display: grid;
	grid-template-areas: "a h" "a b";
	grid-template-columns: 1fr 3fr;
	grid-template-rows: auto 1fr;
}

.illustration-grid .image {
	grid-area: i;
}

.illustration-grid .form {
	grid-area: f;
}

.accueil-grid {
	display: grid;
	grid-template-areas: "r n" "m n" "a n";
	grid-template-columns: 2fr 1fr;
}

.accueil-grid-joueurs {
	display: grid;
	grid-template-areas: "r r n";
	grid-template-columns: 1fr 1fr 1fr;
}

.stats-grid {
	display: grid;
	grid-template-areas: "f" "v" "i";
	grid-template-columns: 1fr;
}

.stats-grid .image {
	grid-area: i;
	display: flex;
	justify-content: center;
}

.stats-grid .form {
	grid-area: f;
}

.stats-grid .valid {
	grid-area: v;
}

.stats-solo-grid {
	display: grid;
	grid-template-areas: "b" "a";
	grid-template-columns: 1fr;
	border-right: solid #666 1px;
	margin-right: 10px;
}

#grid-galerie {
	display: grid;
	grid-template-areas: "g p";
    grid-template-columns: 75% 25%;
}

#galerie {
	grid-area: g;
}

#palettes {
	grid-area: p;
}

.stats-sexe-grid {
	display: grid;
	grid-template-areas: "a b";
	grid-template-columns: 1fr 300px;
}

.stats-cul {
	height: auto !important
}

.colonne-perso-stat {
	width: 175px;
	grid-area: a;
}

.colonne-perso-stat-sexe {
	width: 175px;
	margin-right: 10px;
	border-right: solid #666 1px;
	grid-area: b;
}

.ui-accordion-header {
	background: #333;
	border: 1px solid #333;
	width: 25%;
}

.ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-hover .ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.png");
}

#fiche-header {
	grid-area: n;
}

#fiche-univers {
	grid-area: u;
	display: grid;
	grid-template-areas: "n" "f";
	align-items: center;
}

.fiche-univers-nom {
	grid-area: n;
	display: flex;
	justify-content: center;
}

.fiche-univers-public {
	grid-area: p;
}

.fiche-univers-public-english {
	grid-area: pe;
}

.fiche-univers-boutons {
	grid-area: f;
	display: flex;
	justify-content: center;
}

#fiche-corps {
	grid-area: d;
}

#fiche-milieu {
	grid-area: s;
}

#fiche-photo {
	grid-area: p;
}

#fiche-cul {
	grid-area: x;
}

#fiche-special {
	grid-area: o;
}

#fiche-stats {
	grid-area: c;
}

#fiche-histoire {
	grid-area: h;
}

#fiche-illustrations {
	grid-area: i;
}

#fiche-valid {
	grid-area: v;
}

#accueil-message {
	grid-area: m;
}

#accueil-anniversaires {
	grid-area: a;
}

#accueil-anniversaires .message-anniversaire {
	column-span: all;
}

#accueil-recherche {
	grid-area: r;
}

#RP-header {
	grid-area: t;
}

#RP-corps {
	grid-area: c;
}

#RP-infos {
	grid-area: i;
}

#wiki-header {
	grid-area: h;
}

#wiki-body {
	grid-area: b;
}

#wiki-arborescence {
	grid-area: a;
	overflow: auto;
}

#palettes {
	padding: 1rem;
}

.palette-couleur {
	width: 30%;
}

.palette-codecouleur {
	padding-right: 5px;
	padding-left: 5px;
	width: 30%;
}

.palette-libelle {
	padding-right: 5px;
	padding-left: 5px;
	width: 30%;
}

.redlink {
	color: #999;
}

.redlink:hover {
	color: #BBB;
}

.illustration-legende {
	padding: 5px;
	width: 100%;
	display: block;
	text-align: center;
	border-bottom: solid #000 1px;
	border-left: solid #000 1px;
	border-right: solid #000 1px;
}

.anniversaire {
	column-span: 1;
	display: grid;
	grid-template-areas: "i d";
	grid-template-columns: 75px 1fr;
	align-items: center;
}

.anniv-avatar {
	grid-area: i;
}

.anniv-description {
	grid-area: d;
}

#accueil-notifications {
	grid-area: n;
}

#nom {
	grid-area: n;
}

#plan-infos {
	grid-area: c;
}

#admin-infos {
	grid-area: a;
}

#cadre-login {
	width: 50%;
}

.bg-dark {
	background-color: rgba(20, 20, 20, 0.95) !important;
}

.btn-primary {
	border-color: #57A;
}

.blackground {
	background-color: rgba(20, 20, 20, 0.8);
	padding: 10px;
	margin: 10px;
}

.titre {
	margin-right: 10px;
}

.presentation {
	white-space: pre-line;
}

.notifications {
	background-color: rgba(20, 20, 20, 0.8);
	padding: 10px;
	margin: 5px;
	border-bottom: 2px solid #57A;
	list-style: none;
}

/*AccesPersonnage*/
.notif_0 {
	border-color: #A72;
}

/*UpdatePersonnage*/
.notif_1 {
	border-color: #27A;
}

/*AccesSexe*/
.notif_2 {
	border-color: #7A2;
}

/*UpdateSexe*/
.notif_3 {
	border-color: #A22;
}

/*NouvelleHistoire*/
.notif_4 {
	border-color: #2A7;
}

/*AccesIllustration*/
.notif_5 {
	border-color: #72A;
}

/*NouvelInstagram*/
.notif_6 {
	border-color: #277;
}

/*AccesMajWiki*/
.notif_7 {
	border-color: #2A7;
}

/*NouvelEvenement*/
.notif_8 {
	border-color: #2A7;
}

.special-jdr {
	display: flex;
	justify-content: center;
}

.competence {
	box-shadow: 0px 0px 2px 2px #000;
	padding: 5px;
	margin: 5px 5px;
}

.competence-titre {
	display: flex;
	justify-content: center;
}

.competence-level {
	display: flex;
	justify-content: center;
}

.competence-image {
	display: flex;
	justify-content: center;
	height: 100px;
}

.competence-image-cadre {
	width: 100px;
}

.competence-score {
	width: 50px;
	display: flex;
	justify-content: center;
}

.difficulte {
	color: #57A;
}

.italique {
	font-style: italic;
}

.particles-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	overflow: hidden;
}

.padding-general {
	padding-left: 15px;
	padding-right: 15px;
}

.dropdown {
	display: flex;
	align-items: center;
}

.dropdown-menu {
	background-color: rgba(20, 20, 20, 0.95);
	border-radius: 0px;
	color: #DDD;
}

#univers_select {
	background-color: #333;
	border-radius: 0px;
	color: #DDD;
}

.badge-mini {
	font-size: 0.7rem;
}

.btn-icon {
	padding: 5px;
	padding-top: 2px;
	width: 35px;
}

.btn-warning {
	color: #DDD;
}

.btn-text {
	padding: 0px 10px;
}

.btn-link, .btn-texte {
	color: #FFF;
	padding: 0px 10px;
	border-radius: 0px;
	background-color: #333;
	border: solid 0px transparent;
	border-bottom: solid 2px #57A;
}

.btn-link:hover {
	color: #FFF;
	padding: 0px 10px;
	border-radius: 0px;
	text-decoration: none;
	background-color: #57A;
	border: solid 0px transparent;
	border-bottom: solid 2px #57A;
}

input[type="submit"] {
	color: #FFF;
	padding: 0px 10px;
	border-radius: 0px;
	background-color: #333;
	border: solid 0px transparent;
	border-bottom: solid 2px #57A;
}

.edition input[type="submit"]:hover {
	color: #FFF;
	padding: 0px 10px;
	border-radius: 0px;
	text-decoration: none;
	background-color: #57A;
	border: solid 0px transparent;
	border-bottom: solid 2px #57A;
}

.label-penchant {
	width: 155px !important;
}

.invisible {
	width: 1px !important;
}

.edition label {
	width: 105px;
	height: 30px;
	line-height: 30px;
	background-color: #333;
	border: 0px solid transparent;
	border-bottom: solid 2px #57A;
	border-radius: 0px;
	color: #57A;
	font-weight: bold;
	padding-left: 5px;
}

.edition .label-large {
	width: auto;
	padding-right: 5px;
}

.label {
	color: #57A;
	font-weight: bold;
}

.edition input[type="text"], .edition input[type="number"], .edition input[type="date"],
	.edition input[type="file"], .edition select:not(.multiselect),
	.edition  option, .login input,
	#searchbar, #searchbar_persos, #searchbar_comp, #searchsmall {
	height: 30px !important;
	line-height: 30px;
	padding: 0px;
	background-color: #333;
	border-radius: 0px;
	border: 0px solid transparent;
	border-bottom: solid 2px #666;
	color: #DDD;
}

.edition option:checked {
  background-color: #2AF;
}

.edition .multiselect {
	display: inline-block;
	border-radius: 0px;
	border: 0px;
	padding: 0px;
	overflow: auto;
}

.pointer-trick {
	cursor: pointer;
}

#searchbar, #searchbar_persos, #searchbar_comp {
	margin: 0px 25px;
}

.separator-rp {
	border-top: solid 1px #DDD;
}

.edition input[type="text"] {
	padding-left: 5px;
}

.edition .capacite input[type="text"] {
	width: calc(100% - 5px);
}

.edition .personnage {
	width: 100px;
}

.edition .nom_personnage {
	width: 200px;
	padding: 3px 5px;
}

.edition .description_relation {
	padding: 0px 8px;
}

.container-grid textarea, .container-grid-joueurs textarea,
	.container-grid textarea:focus, .container-grid-joueurs textarea:focus,
	.accueil-grid textarea, .accueil-grid textarea:focus, .edition textarea,
	.edition textarea:focus {
	line-height: 30px;
	padding: 5px;
	background-color: #333;
	border-radius: 0px;
	border: 0px solid transparent;
	border-bottom: solid 2px #666;
	color: #DDD;
}

.btn, .edition button, .login button {
	height: 30px;
	background-color: #333;
	border-radius: 0px;
	border-top: 0px solid transparent;
	border-right: 0px solid transparent;
	border-left: 0px solid transparent;
	border-bottom-width: 2px;
}

.btn-accordion {
	background-color: transparent;
	color: #EEE;
	width: auto;
}

.dropdown-item {
	color: #DDD;
}

.login button {
	color: #DDD;
	border-bottom: 2px solid #57A;
}

.message {
	display: grid;
	grid-template-areas: "me de";
	grid-template-columns: 1fr 50px;
	border-bottom: 2px solid #888;
	padding-left: 10px;
}

.message-select option[value="Dev"] {
	background-color: #27A;
}

.message-select option[value="Rp"] {
	background-color: #A72;
}

.message-select option[value="Note"] {
	background-color: #A27;
}

.message-select option[value="Histoire"] {
	background-color: #7A2;
}

.message-dev {
	border-left: 10px solid #27A;
}

.message-rp {
	border-left: 10px solid #A72;
}

.message-note {
	border-left: 10px solid #A27;
}

.message-histoire {
	border-left: 10px solid #7A2;
}

.message-text {
	grid-area: me;
}

.message-delete {
	grid-area: de;
}

.edition option {
	padding: 0px;
}

.edition input:read-only {
	color: #79F;
}

.edition .label-file {
	width: 120px;
	border-right: 1px solid #57A;
	border-radius: 3px 3px 3px 3px;
}

.fakeinputs {
	position: relative;
}

.fakefile {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	display: flex;
	height: 30px;
}

.fakefile input {
	background-color: #333;
	border: 0px;
	border-bottom: 2px solid #666;
	color: #DDD;
}

.fakefile .label-file {
	border-radius: 0px;
	border-right: 0px;
}

.fakeinputs input[type='file'] {
	position: relative;
	text-align: right;
	-moz-opacity: 0;
	opacity: 0;
	z-index: 2;
	filter: alpha(opacity = 0);
}

.login-label {
	padding-top: 10px;
}

.login-button {
	padding-top: 20px;
}

.separator {
	height: 20px;
}

.morceau-histoire {
	padding-top: 10px;
	padding-bottom: 10px;
}

.date-histoire {
	font-weight: bold;
}

.edition-univers {
	display: none;
}

.visible {
	display: block;
}

.personnage_archive {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}

.encart_mineurs {
	border: 2px solid #666;
	background-color: #444;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dropdown-toggle {
	padding: 0px 10px;
}

.valid-accueil-message {
	display: flex;
	justify-content: center;
}

.thumbnail-rp {
	height: 60px;
	width: 50px;
	object-fit: cover;
}

.thumbnail-s {
	width: 75px;
	height: 75px;
	object-fit: cover;
}

.thumbnail {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.thumbnail-L {
	width: 180px;
	height: 200px;
	object-fit: cover;
}

.thumbnail-XL {
	width: 300px;
	height: 300px;
	object-fit: cover;
}

.img-modal {
	max-height: 95vh;
}

/* Customize the label (the container) */
.groupe-DI {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #a20010;
}

.groupe-EL {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #795548;
}

.groupe-LO {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #007bff;
}

.groupe-SA {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #ff6600;
}

.groupe-SF {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #28a745;
}

.groupe-SO {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #009688;
}

.groupe-SU {
	font-size: xx-small;
	color: white;
	text-align: center;
	background: #8a62d4;
}

.xx-small-centered-font {
	font-size: xx-small;
	text-align: center;
}

.small-centered-font {
	font-size: small;
	text-align: center;
}

.legende {
	font-size: small;
	text-align: center;
	padding-left: 10px;
	padding-top: 10px;
}

.edition .container-checkmark {
	display: block;
	background: none;
	border: none;
	border-radius: 0px;
	position: relative;
	cursor: pointer;
	width: 50px;
	user-select: none;
}

.errorMessage {
	padding: 10px;
	margin: 0px;
	padding-left: 25px;
	border-top: red 1px solid;
	border-bottom: red 1px solid;
	color: red;
	background-color: rgba(20, 20, 20, 0.8);
}

.actionMessage {
	padding: 10px;
	margin: 0px;
	padding-left: 25px;
	border-top: green 1px solid;
	border-bottom: green 1px solid;
	color: green;
	background-color: rgba(20, 20, 20, 0.8);
}

.actionMessageAnniversaire {
	color: green;
}

.div-icone {
	align-items: center;
	display: flex;
}

.icone-DE:before {
	background: url(/img/icones_univers/Dechus.png) no-repeat;
}

.icone-DI:before {
	background: url(/img/icones_univers/Divinités.png) no-repeat;
}

.icone-EL:before {
	background: url(/img/icones_univers/Elfes.png) no-repeat;
}

.icone-LO:before {
	background: url(/img/icones_univers/Loups.png) no-repeat;
}

.icone-SA:before {
	background: url(/img/icones_univers/Sanctuaire.png) no-repeat;
}

.icone-SF:before {
	background: url(/img/icones_univers/SciFi.png) no-repeat;
}

.icone-SO:before {
	background: url(/img/icones_univers/Sorciers.png) no-repeat;
}

.icone-SU:before {
	background: url(/img/icones_univers/Supers.png) no-repeat;
}

.icone-DE:before, .icone-DI:before, .icone-EL:before, .icone-LO:before, .icone-LY:before,
	 .icone-SA:before, .icone-SF:before, .icone-SO:before, .icone-SU:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-size: 100%;
	margin-right: 10px;
}

/* Hide the browser's default checkbox */
.container-checkmark input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 30px;
	width: 30px;
	color: #57A;
	background-color: #333;
	border: 0px solid transparent;
	border-bottom: 2px solid #666;
	box-shadow: inset 1px 1px 1px 1px #262626;
}

/* On mouse-over, add a grey background color */
.container-checkmark:hover input ~ .checkmark {
	background-color: #333;
	color: #9AF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container-checkmark input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container-checkmark .checkmark:after {
	left: 9px;
	top: 5px;
	width: 10px;
	height: 16px;
	border: solid #57A;
	border-width: 0 5px 5px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.histoire {
	margin-right: 10px;
}

.illustration {
	object-fit: cover;
	object-position: 50% top;
	height: 10rem;
	width:100%;
}
.thumbnail {
	width: 100px;
	height: 100px;
	object-fit: cover;
}


.illustration-small {
	object-fit: cover;
	object-position: 50%;
	width: 100%;
	height: 6rem;
}

.div-illustration-small {
	padding-right: 3px;
	padding-left: 3px;
}

#accueil-resume .row, #fiche-special .row {
	margin-left: 0px;
	margin-right: 0px;
}

.filtres-instagram.collapse.show {
	display: flex;
	margin-left: -5px;
	margin-right: -5px;
}

.lien-instagram {
	color: #90B;
}

.lien-instagram:hover {
	color: #B0B;
}

.micro-image {
	width: 100px;
}

.image-groupe {
	width: 100%;
}

.micro-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 5px;
	object-position: top;
}

.micro-avatar-bordure {
	width: 50px;
	height: 50px;
	border: 2px solid white;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
}

.negative-margin-top {
	position: relative;
	top: 50px;
}

.evenement-row {
	padding: 0 15px;
}

.evenement-row .btn-icon {
	align-self: center;
}

.images-row {
	padding: 0 15px;
	justify-content: flex-end;
}

.image-illustration {
	width: 30%;
}

.micro-embleme {
	width: 40px;
}

.micro-embleme2 {
	width: 30px;
}

.portrait_groupe {
	width: 75px;
	margin: 10px;
	display: inline-block;
	text-align: center;
	justify-content: center;
}

.portrait_groupe img {
	object-fit: cover;
	object-position: 50% top
}



.stat-div {
	height: 300px;
}

.message-erreur {
	color: red;
}

#myModal {
	background-color: rgba(20, 20, 20, 0.8);
	margin-top: 20px;
	overflow: auto;
}

#modal-content {
	max-height: 99%;
	overflow: auto;
}

.navbar-bottom {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.avatarsecondaire {
	border-bottom: 2px #F90 solid;
}

.avatarresponsable {
	border-left: 2px red solid;
}

.close {
	color: #FFF;
}

.close:hover {
	color: #FFF;
}

.timeline {
	padding: 50px 0;
	position: relative;
}

.timeline-nodes {
	padding-bottom: 25px;
	position: relative;
}

.timeline-nodes:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline h5, .timeline p {
	padding: 5px 15px;
	margin-bottom: 0px;
	padding-top: 0px;
}

.timeline h5 {
	display: flex;
	font-weight: lighter;
	padding-left: 0px;
	padding-right: 0px;
	align-self: center;
}

.switch-to-edit {
	align-self: center;
}

.timeline p, .timeline time {
	color: #AAA;
}

.timeline::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	border-left: 2px solid #AAA;
	height: 100%;
	z-index: 1;
	transform: translateX(-50%);
}

.timeline-content {
	border-bottom: 3px solid #57A;
	position: relative;
	background-color: rgba(20, 20, 20, 0.8);
	padding-top: 5px;
}
.timeline-eventunivers {
	border-bottom: 3px solid #A75;
	position: relative;
	background-color: rgba(20, 20, 20, 0.8);
	padding-top: 5px;
}

.timeline-eventperso {
	border-bottom: 3px solid #5A7;
	position: relative;
	background-color: rgba(20, 20, 20, 0.8);
	padding-top: 5px;
}

.timeline-nodes:nth-child(odd) h5, .timeline-nodes:nth-child(odd) p {
	text-align: right;
	justify-content: flex-end;
}

.timeline-nodes:nth-child(odd) .timeline-date {
	text-align: left;
}

.timeline-nodes:nth-child(odd) .images-row {
	justify-content: flex-start;
}

.timeline-nodes:nth-child(even) .timeline-date {
	text-align: right;
}

.timeline-nodes:nth-child(odd) .timeline-content::after {
	content: "";
	position: absolute;
	top: 5%;
	left: 100%;
	width: 0;
	border-left: 10px solid #57A;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.timeline-nodes:nth-child(even) .timeline-content::after {
	content: "";
	position: absolute;
	top: 5%;
	right: 100%;
	width: 0;
	border-right: 10px solid #57A;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.timeline-nodes:nth-child(odd) .timeline-eventperso::after {
	border-left: 10px solid #5A7;
}

.timeline-nodes:nth-child(even) .timeline-eventperso::after {
	border-right: 10px solid #5A7;
}
.timeline-nodes:nth-child(odd) .timeline-eventunivers::after {
	border-left: 10px solid #A75;
}

.timeline-nodes:nth-child(even) .timeline-eventunivers::after {
	border-right: 10px solid #A75;
}

.timeline-point {
	position: relative;
	z-index: 100;
}

.timeline-point::before {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: block;
	position: absolute;
	border: 4px solid #333;
	top: 20px;
	left: 50%;
	background: #AAA;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.timeline-image img {
	position: relative;
	top: 50%;
	left: 50%;
	border: 4px solid #333;
	transform: translate(-50%, 0%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
/*small device style*/
@media ( max-width : 767px) {
	.timeline-nodes:nth-child(odd) h5, .timeline-nodes:nth-child(odd) p {
		text-align: left
	}
	.timeline-nodes:nth-child(even) {
		flex-direction: row;
	}
	.timeline::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 4%;
		width: 0;
		border-left: 2px solid #AAA;
		height: 100%;
		z-index: 1;
		transform: translateX(-50%);
	}
	.timeline h5 {
		font-size: 1.7rem;
	}
	.timeline p {
		font-size: 14px;
	}
	.timeline-image {
		position: absolute;
		left: 0%;
		top: 60px;
		/*transform: translateX(-50%;);*/
	}
	.timeline-nodes:nth-child(odd) .timeline-content::after {
		content: "";
		position: absolute;
		top: 5%;
		left: auto;
		right: 100%;
		width: 0;
		border-left: 0;
		border-right: 10px solid var(- -blue);
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}
	.timeline-nodes:nth-child(even) .timeline-content::after {
		content: "";
		position: absolute;
		top: 5%;
		right: 100%;
		width: 0;
		border-right: 10px solid var(- -blue);
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}
	.timeline-nodes:nth-child(even) .timeline-date {
		text-align: left;
	}
	.timeline-image::before {
		width: 65px;
		height: 65px;
	}
}

/*extra small device style */
@media ( max-width : 575px) {
	.timeline::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 3%;
	}
	.timeline-image {
		position: absolute;
		left: -5%;
	}
	.timeline-image::before {
		width: 60px;
		height: 60px;
	}
}

.event-edit {
	display: none;
}

.event-add {
	display: none;
}

.event-add-button {
	display: flex;
	justify-content: center;
}

@media ( max-width : 1200px) {
	.RP-grid {
		display: grid;
		grid-template-areas: "t" "i" "c";
		grid-template-columns: 1fr;
	}
	#grid-galerie {
		grid-template-areas: "g p";
    	grid-template-columns: 50% 50%;
	}
	.btn:hover {
		background-color: #333
	}
	.btn-primary:hover {
		border-color: #57A;
	}
}

@media ( max-width : 767px) {
	.container-grid {
		grid-template-areas: "n u" "d p" "d c" "o o" "s s" "h h" "i i" "v v";
		grid-template-columns: 1fr 1fr;
	}
	.container-grid-public {
		grid-template-areas: "n u" "d p" "d c" "o o" "s s" "h h" "i i" "v v";
		grid-template-columns: 1fr 1fr;
	}
	.container-grid-public-nsfw {
		grid-template-areas: "n u" "d p" "d c" "x x" "o o" "s s" "h h" "i i"
			"v v";
		grid-template-columns: 1fr 1fr;
	}
	.RP-grid {
		display: grid;
		grid-template-areas: "t" "i" "c";
	}
	h1 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.3em;
	}
	#accueil-anniversaires {
		column-count: 1;
	}
}

@media ( max-width : 640px) {
	.container-grid {
		grid-template-areas: "n" "u" "p" "d" "s" "o" "h" "i" "v" "c";
		grid-template-columns: 1fr;
	}
	.container-grid-joueurs {
		grid-template-areas: "n" "u" "p" "d" "c" "o" "h" "v";
		grid-template-columns: 1fr;
	}
	.accueil-grid {
		grid-template-areas: "n" "r" "m" "a";
		grid-template-columns: 1fr;
	}
	.illustration-grid {
		display: grid;
		grid-template-areas: "i" "f";
		grid-template-columns: 1fr;
	}
	.RP-grid {
		display: grid;
		grid-template-areas: "t" "i" "c";
	}
	h4 {
		font-size: 1.2rem;
	}
	.timeline-nodes:nth-child(odd) .timeline-date {
		padding-left: 50px;
	}
	.timeline-nodes:nth-child(even) .timeline-date {
		padding-left: 50px;
	}
	.timeline-point::before {
		left: 10px;
	}
	#grid-galerie {
		grid-template-areas: "p" "g";
		grid-template-columns: 100%;
	}
}

.symboleCompetence {
	width: 30px;
	height: 30px;
}

.symboleLigneUniversAccueil {
	width: 100%;
}

.symboleUniversFavoris {
	position: absolute;
	z-index: 10;
	width: 30px;
	height: 30px;
	left: 16px;
	top: 1px;
}

.favoriSelectionne {
	border: 3px solid green;
}

.instagram-deja-utilise {
	color: orange;
}

.instagram-reserve {
	color: red;
}

.collapse.show {
	display: block;
}

.breadcrumb {
	background: none;
	margin: 0px;
	padding: 0px;
}

.rp-name {
	font-weight: bold;
}

.plan {
	z-index: 10;
	position: absolute;
	margin: 10px;
	padding-bottom: 50px;
}

.plan img {
	position: absolute;
	z-index: 1;
}

.surplan {
	z-index: 1;
	position: absolute;
	margin: 10px;
	padding-bottom: 50px;
}

.surplan img {
	position: absolute;
	z-index: 100;
}

.carte {
	position: fixed;
	z-index: 1;
	height : calc(100% - 150px);
}

.carte-admin {
	position: fixed;
	z-index: 1;
	width: calc(60% - 30px);
}

.zone {
	border: 1px solid #FFF;
}

.dispo {
	background-color: #F00;
	opacity: 0.5;
}

.progress {
	height: 8px;
	display: none;
	width: 100%;
	background-color: #57A;
	border-radius: 2px;
	background-clip: padding-box;
	overflow: hidden;
}

.progress .indeterminate {
	background-color: #333;
}

.progress .indeterminate:before {
	content: '';
	position: absolute;
	background-color: inherit;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left, right;
	-webkit-animation: indeterminate 2.1s
		cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
	animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395)
		infinite;
}

.progress .indeterminate:after {
	content: '';
	position: absolute;
	background-color: inherit;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left, right;
	-webkit-animation: indeterminate-short 2.1s
		cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
	animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1)
		infinite;
	-webkit-animation-delay: 1.15s;
	animation-delay: 1.15s;
}


@-webkit-keyframes indeterminate {
     0% {
         left: -35%;
         right: 100%;
    }
     60% {
         left: 100%;
         right: -90%;
    }
     100% {
         left: 100%;
         right: -90%;
    }
}
 @keyframes indeterminate {
     0% {
         left: -35%;
         right: 100%;
    }
     60% {
         left: 100%;
         right: -90%;
    }
     100% {
         left: 100%;
         right: -90%;
    }
}
 @-webkit-keyframes indeterminate-short {
     0% {
         left: -200%;
         right: 100%;
    }
     60% {
         left: 107%;
         right: -8%;
    }
     100% {
         left: 107%;
         right: -8%;
    }
}
 @keyframes indeterminate-short {
     0% {
         left: -200%;
         right: 100%;
    }
     60% {
         left: 107%;
         right: -8%;
    }
     100% {
         left: 107%;
         right: -8%;
    }
}


.png-over {
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	height: 100%;
}

.parent-illustration {
	position: relative;
}

#voirPlus button{
	z-index:2;
	padding-top:0px;
}

@media ( prefers-color-scheme : light) {
	body {
		background-color: #D4DaD0;
		background-image: url('../img/backgroundironstarlight.jpg');
		color: #333;
	}
	body:before {
		background: url('../img/backgroundironstarlight.jpg') no-repeat center
			center;
	}
	.blackground {
		background-color: rgba(230, 235, 240, 0.8);
		color: #333;
	}
	.edition input[type="text"], .edition input[type="number"], .edition input[type="date"],
		.edition input[type="file"], .edition select, .edition option,
		.edition select:focus, .login input, #searchbar, #searchbar_persos,
		#searchbar_comp, #searchsmall {
		background-color: #CCCFD0;
		color: #333;
	}
	.btn-link, .btn-texte {
		color: #000;
		background-color: #CCCFD0;
	}
	.container-grid textarea, .container-grid-joueurs textarea,
		.container-grid textarea:focus, .container-grid-joueurs textarea:focus,
		.accueil-grid textarea, .accueil-grid textarea:focus, .edition textarea,
		.edition textarea:focus {
		background-color: #CCCFD0;
		border-bottom: solid 2px #999;
		color: #333;
	}
	.edition label {
		background-color: #CCCFD0;
	}
	.multi2 {
		height:60px;
	}
	h1 {
		color: #112;
	}
	h3 {
		color: #112;
	}
	.checkmark {
		background-color: #CCCFD0;
		box-shadow: inset 1px 1px 1px 1px #A6A6A6;
	}
	.container-checkmark:hover input ~ .checkmark {
		background-color: #CCCFD0;
	}
	.btn, .edition button, .login button {
		background-color: #CCCFD0;
		color: #333 !important;
	}
	#myModal {
		background-color: rgba(230, 235, 240, 0.8);
	}
	.bg-dark {
		background-color: rgba(230, 235, 240, 0.95) !important;
	}
	.navbar-dark .navbar-nav .nav-link {
		color: rgba(25, 25, 25, .8);
	}
	.navbar-dark .navbar-nav .nav-link:hover {
		color: rgba(25, 100, 250, .75);
	}
	.navbar-dark .navbar-brand:hover {
		color: #333;
	}
	.navbar-dark .navbar-brand {
		color: #000;
	}
	.navbar-dark .navbar-toggler-icon {
		background-image:
			url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(33,33,33, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}
	.navbar-dark.navbar-toggler {
		border-color: rgb(33, 33, 33);
	}
	input[type="submit"] {
		color: #333;
		background-color: #CCCFD0;
	}
	.notifications {
		background-color: rgba(230, 235, 240, 0.8);
	}
	.dropdown-menu {
		background-color: rgba(230, 235, 240, 0.95);
		border-radius: 0px;
		color: #333;
	}
	.dropdown-item {
		color: #333;
	}
	.edition .label-file:after {
		color: #333;
	}
	label {
		color: #333;
	}
	.minitoggle{
		width:40px;
		height:25px;
		background-color: #CCC;
		border: 1px solid #CCC;
	}
	
	
}