* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    position: relative;
    font-family: 'Lato', sans-serif;
}

.bgSizeCoverIndex {
    width: 100vw;
    background-image: url(../img/index-hall.jpg);
    background-size: cover;
    justify-content: space-between;
}
.flexBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    transition: 0.5s;
    align-content: center;
}
header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100px;
    align-content: center;
    justify-content: flex-start;
}
header .logo img {
    max-height: 100px;
}
body.active {

}
nav {
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    border-top: solid 1px #858796;
    border-bottom: solid 1px #858796;
}
nav ul {
    display: flex;
    list-style-type: none;
}
nav li {
    margin: 0 10px;
}
nav li a {
    text-decoration: none;
    color: #155faa;
    border: 2px solid rgb(229, 48, 31);
    border-radius: 2px;
    background-color: #8587967e;
    padding: 5px 10px;
    margin: 5px;
    display: block;
    font-weight:600;
}

/* Appearance */
.links {
	background-color: #123;
	background-image: linear-gradient(to bottom, #0003, transparent);
	border-bottom: 1px solid #0003;
	box-shadow: 0 0 32px #0003;
	font-size: 2em;
	font-weight: 300;
}
.links > a {
	color: #9ab;
	padding: .75em;
	text-align: center;
	text-decoration: none;
	transition: all .5s;
}
.links > a:hover,
.links > a.active {
	background: #ffffff06;
	color: #adf;
}
.links > .line {
	background: #68a;
	height: 1px;
	pointer-events: none;
}

/* The Magic */
#navContainer {
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
}
.links {
	display: grid;
	grid-template-columns: repeat(var(--items), 1fr);
	position: relative;
}
.links > .line {
	opacity: 0;
	transition: all .5s;
	position: absolute;
	bottom: 0;
	left: var(--left, calc(100% / var(--items) * (var(--index) - 1)));
	width: var(--width, calc(100% / var(--items)));
	--index: 0;
}
.links > a:hover ~ .line {
	opacity: 1;
}

.links > a:nth-of-type(1):hover ~ .line { --index: 1; }
.links > a:nth-of-type(2):hover ~ .line { --index: 2; }
.links > a:nth-of-type(3):hover ~ .line { --index: 3; }
.links > a:nth-of-type(4):hover ~ .line { --index: 4; }
.links > a:nth-of-type(5):hover ~ .line { --index: 5; }
.links > a:nth-of-type(6):hover ~ .line { --index: 6; }
.links > a:nth-of-type(7):hover ~ .line { --index: 7; }
.links > a:nth-of-type(8):hover ~ .line { --index: 8; }
.links > a:nth-of-type(9):hover ~ .line { --index: 9; }
.links > a:nth-of-type(10):hover ~ .line { --index: 10; }
.links > a:last-of-type:hover ~ .line { --index: var(--items); }

.push-right {
    margin-left: auto;
}
.toast {
    position: fixed;
    top: 30vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    max-width: 50%;
    overflow: hidden;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-radius: 0.25rem;
    z-index: 9999;
    transition: 0.5s ease-in-out;
}
.toast:not(:last-child) {
    margin-bottom: 0.75rem;
}
.toast.show {
    display: block;
    opacity: 1;
}
.toast.hide {
    display: none;
}
.toast-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.75rem;
    color: #858796;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.toast-body {
    padding: 0.75rem;
}
.toast-body h2,
.toast-body p {
    margin-bottom: 1em;
}
.container {
    position: relative;
    width: 800px;
    min-height: 500px;
    margin: 10px;
}
.bgTransparent {
    background: rgba(255,255,255,0.8);
    box-shadow: 0 5px 45px rgba(0,0,0,0.15);
}
.rouge {
    color: rgb(229, 48, 31);
    text-shadow: white 0.1em 0.1em 0.2em;
}
.bleu {
    color: #155faa;
    text-shadow: white 0.1em 0.1em 0.2em;
}
.loginBoxContainer {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.forgotBoxContainer {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.box {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 2px;
}
.box h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: white 0.1em 0.1em 0.2em;
}
.box button {
    cursor: pointer;
    padding: 10px 20px;
    background: #FFF;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 2px;
}
.signin {

}
.signup {
    
}
.formBox {
    position: absolute;
    top: 50px;
    left: 0;
    width: 50%;
    height: 80%;
    background: #FFF;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 45px rgba(0,0,0,0.25);
    transition: 0.5s ease-in-out;
    overflow: hidden;
    border-radius: 2px;
}
.formBox.active {
    left: 50%;
}
.formBox .form {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 50px;
    transition: 0.5s;
}
.formBox .signinForm {
    transition-delay: 0.25s;
}
.formBox.active .signinForm {
    left: -100%;
    transition-delay: 0s;
}
.formBox .signupForm {
    left: -100%;
    transition-delay: 0s;
}
.formBox.active .signupForm {
    left: 0;
    transition-delay: 0.25s;
}
.formBox .form form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.formBox .form form h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}
.formBox .form form input {
    width: 100%;
    margin-bottom: 5px;
    padding: 5px;
    outline: none;
    font-size: 12px;
    border: 1px solid #333;
    border-radius: 2px;
}
.formBox .form form input[type="submit"] {
    background: #155faa;
    border: none;
    border-radius: 2px;
    color: #FFF;
    max-width: 100px;
    cursor: pointer;
}
.formBox .form form .forgot {
    color: #333;
    font-size: 0.8em;
    margin-top: 5px;
}

@media(max-width:991px){
    .container {
        max-width: 400px;
        min-height: 650px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .container .loginBoxContainer {
        top: 0;
        height: 100%;
    }
    .formBox {
        width: 100%;
        height: 500px;
        top: 0;
        box-shadow: none;
    }
    .loginBoxContainer .box {
        position: absolute;
        width: 100%;
        height: 150px;
        bottom: 0;
    }
    .box.signin {
        top: 0;
    }
    .formBox.active {
        left: 0;
        top: 150px;   
    }
    .support {
        flex-direction: column-reverse !important;
    }
    .partners {
        font-size: 0.6em !important;
    }
    .partners img {
        height: 50px !important;
    }
}

.titre {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: inherit;
    color: rgb(229, 48, 31);
    text-shadow: white 0.1em 0.1em 0.2em;
}
.titre h1 {
    width: 100%;
    padding: 10px;
}
.titre h2 {
    width: 100%;
    padding: 5px;
}
.titre h3 {
    width: 100%;
    padding: 10px;
}
.partners {
    width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-around;
    align-items: center;
    background: #fff;;
    box-shadow: 0 5px 45px rgb(0 0 0 / 15%);
}
.partners img {
    width: inherit;
}
.partners .vline {
    width: 1px !important;
    background: #68a;
    height: 100px;
    pointer-events: none;
}
.support {
    display: flex;
    max-width: 60%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    margin: 10px;
    color: #155faa;
    background: #FFF;
    border-radius: 2px;
    padding: 5px;
}
.support .gauche {
    width: fit-content;
    overflow: hidden;
}
.support .gauche>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}
.support .gauche img {
    width: 100%;
    height: auto;
}
.support .droite {
    width: fit-content;
    border-left: solid 1px red;
    margin-left: 5px;
}
.support .droite img {
    width: 100%;
    max-width: 15vw;
    height: auto;
}
/*LOBBY*/
.bgSizeCoverLobby {
    width: 100vw;
    background-image: url(../img/lobby.jpg);
    background-size: cover;
    justify-content: flex-start;
}
.lobby {
    position: relative;
    width: 65%;
    min-height: 415px;
    margin: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}
.lobby .programme {
    background: #FFF;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 5px 45px rgba(0,0,0,0.25);
}
.lobby .programme .session {
    margin-bottom: 5px;
    padding: 5px;
}
.lobby .programme .session h2 {
    margin-bottom: 5px;
}
.lobby .programme .session ul {
    list-style: none;
}
.lobby .programme .session ul li {
    margin: 5px;
}
.lobby .programme .lien {
    padding: 15px;
}
.lobby .programme .lien a {
    padding: 10px 5px;
    border: solid 1px #bdbcbc;
    background: #155faa;
    color: #fff;
    text-decoration: none;
}
/* BARRE VERTICALE ORGANISATEUR */
.organisateur {
    width: 25%;
    display: flex;
    flex-direction: column;
    margin-left: 1em;
    height: auto;
    background-color: #fff;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 5px 45px rgba(0,0,0,0.25);
}
.organisateur img {
    width: 100%;
    height: auto;
    padding: 1em 0.5em;
}
.organisateur .line {
    width: 100%;
    background: #68a;
	height: 1px;
	pointer-events: none;
}
.organisateur .lineV {
    width: 1px;
    background: #68a;
	height: 100%;
	pointer-events: none;
}
/* BARRE HORIZONTALE ORGANISATEUR */
.organisateurH {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-around;
    align-items: center;
    background: #fff;;
    box-shadow: 0 5px 45px rgb(0 0 0 / 15%);
    font-size: 0.8em;
}
.organisateurH img {
    height: 60px;
}
.organisateurH .vline {
    width: 1px !important;
    background: #68a;
    height: 100px;
    pointer-events: none;
}
/*STAND*/
.bgSizeCoverStand {
    width: 100vw;
    background-image: url(../img/stand.jpg);
    background-size: cover;
}
.standContainer {
    position: relative;
    width: 80vw;
    margin: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.bgStand {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 5px 45px rgba(0,0,0,0.25);
}
.stands {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}
.stands .partenaire {
    width: 45%;
    text-align: center;
    padding: 25px;
}
.stands .partenaire img{
    width: 60%;
    opacity: 0.8;
}
.stands .partenaire a:hover img{
    opacity: 1;
}
.stand {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 60vh;
}
.stand > div {
    height: 100%;
}
.stand > div h2 {
    padding: 10px;
}
.standContainer .infos a {
    text-decoration: none;
    color: #fff;
}
.stand .exposant {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: flex-start;
    align-items: center;
    font-size: 1em;
    padding: 2em;
}
.stand .exposant h2 {
    text-align: center;
}
.stand .exposant img.logo {
    max-height: 150px;
    padding: 2px;
    margin: 5px 0;
}
.stand .exposant .description {
    padding: 10px;
}
.stand .exposant a {
    color:#5086c0;
    text-decoration: none;
}
.stand .fichiers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}
.stand .fichiers h2 {
    text-align: start;
    font-variant: small-caps;
}
.stand .fichiers a {
    width: 100%;
    background: #165dabbf;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    margin: 2px 0;
}
.stand .fichiers a img {
    max-height: 25px;
    margin-right: 2px;
}
.standContainer .infos {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-around;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 1px;
}
.standContainer .infos>div {
    width: 50%;
    text-align: center;
    padding: 5px;
    background: #165dabbf;
    margin: 1px;
}
.standContainer .infos a img {
    max-height: 20px;
    vertical-align: bottom;
}
.standBottom {
    width: 800px;
    height: 200px;
    perspective: 400px;
    background: transparent;
    transform: translateY(-60px);
}
.standBottomShape {
    background: #fff;
    -webkit-transform: scale3d(1, 1, 2) rotate3d(1, 0, 0, 
60deg) translateX(-65px) translateY(0px);
    transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, 
60deg) translateX(-65px) translateY(0px);
    width: 930px;
    height: 150px;
    text-align: center;
}
.standBottomShape img.logo {
    max-height: 150px;
    padding: 10px;
}
/*CONFERENCE*/
.bgSizeCoverConference {
    width: 100vw;
    background-image: url(../img/conference.jpg);
    background-size: cover;
    justify-content: flex-start;
}
.conference {
    position: relative;
    width: 90%;
    min-height: 70vh;
    margin: 20px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}
.media {
    width: 100%;
}
.player {
    padding: 56.25% 0px 0px;
    position: relative;
    transform: translate(0px , 0px );
    opacity: 1;
}
.chat {
    width: 25%;
    display: flex;
    flex-direction: column;
    margin-left: 1em;
    height: auto;
    background-color: #fff;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 5px 45px rgb(0 0 0 / 25%);
}
.msgs {
    height: 90%;
    width: 100%;
    background-color: #efeaea;
}
.userMsg {
    font-size: 0.8em;
    padding: 5px;
    border-bottom: solid 1px #fff;
}
.msgForm  {
	width: 95%;
	margin: auto;
	border: 1px solid #d2d2d2;
	background: #f8fafd;
	padding: 3px;
}
/* Zone de texte */
.msgForm #message {
	width: 80%;
}
/* Bouton d'envoi */
.msgForm #post {
	width: 18%;
}