:root {
    --color1: #fbfbfb;
    --color2: #1a6d94;
    --color3: #1bbd9d;
    --color4: #dfb73f;
    --color5: #4eca61;
    --color6: #e46868;
    --color7: #6c5d50;
    --font1: arial;
    --font2: verdana;
}

* {
    margin: 0;
    padding: 0;
}

.menu {
    position: fixed;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.menu div {
    height: 14vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 102px;
}

.menu div.logo {
    display: flex;
    align-content: center;
}

.menu div img {
    width: 30px;
    margin-bottom: 5px;
}

.menu div img.logo {
    width: 66px;
}

.menu div span {
    color: #fbfbfb;
    font-weight: bold;
    font-size: 14px;
    font-family: var(--font1);
}

.menu div:nth-child(1) {
    background-color: #fbfbfb;
    border-left: solid 4px #fbfbfb;
    border-right: solid 4px #fbfbfb;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    height: 15vh;
}

.menu div:nth-child(2) {
    background-color: #1a6d94;
    border-left: solid 4px #1a6d94;
    border-right: solid 4px #1a6d94;
}

.menu div:nth-child(3) {
    background-color: #1bbd9d;
    border-left: solid 4px #1bbd9d;
    border-right: solid 4px #1bbd9d;
}

.menu div:nth-child(4) {
    background-color: #dfb73f;
    border-left: solid 4px #dfb73f;
    border-right: solid 4px #dfb73f;
}

.menu div:nth-child(5) {
    background-color: #4eca61;
    border-left: solid 4px #4eca61;
    border-right: solid 4px #4eca61;
}

.menu div:nth-child(6) {
    background-color: #e46868;
    border-left: solid 4px #e46868;
    border-right: solid 4px #e46868;
}

.menu div:nth-child(7) {
    background-color: #6c5d50;
    border-left: solid 4px #6c5d50;
    border-right: solid 4px #6c5d50;
    height: 15vh;
}

.menu div:hover {
    cursor: pointer;
    border-left: solid whitesmoke 4px;
    transition: 0.4s;
    filter: contrast(85%);
}


/*---------------PROGRESSBAR-------------*/

#progressbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background: linear-gradient(to bottom, #00fe7b, #00b7f9);
    z-index: 97;
}

@media screen and (max-width: 800px) {
    .menu div {
        width: 62px;
    }
    .menu div span {
        font-weight: 1;
        font-size: 11px;
    }
    #progressbar {
        width: 8px;
    }
    .menu div:hover {
        cursor: pointer;
    }
    .menu div img {
        width: 25px;
        margin-bottom: 5px;
    }
    .menu div img.logo {
        width: 44px;
    }
}

@media screen and (max-width: 480px) {
    .menu {
        position: fixed;
        bottom: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    .menu div {
        height: 50px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 16%;
    }
    .menu div span {
        font-size: 9px;
    }
    .menu div:nth-child(1) {
        display: none;
    }
    .menu div:nth-child(7) {
        height: 50px;
    }
    #progressbar {
        width: 5px;
    }
    .menu div img {
        width: 18px;
        margin-bottom: 2px;
    }
}


/* TITRE PAR PAGE BODY */

#header-body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#header-body h1 strong {
    font-weight: 1;
    color: rgb(180, 180, 180);
}

.left,
.right {
    background: rgb(254, 254, 254);
    position: relative;
    height: 65px;
    float: left;
    color: rgb(107, 107, 107);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.right {
    justify-content: center;
    width: 5%;
    background: linear-gradient(250deg, rgb(21, 198, 204), rgba(255, 0, 0, 0) 70.71%), linear-gradient(350deg, rgb(38, 247, 101), rgba(0, 0, 255, 0) 70.71%), linear-gradient(127deg, #1bbd9d, rgba(0, 255, 0, 0) 71%);
}

.left {
    width: 95%;
    border-bottom: 2px solid rgb(241, 241, 241);
    display: flex;
    justify-content: space-between;
}

.left h1 {
    font-size: 22px;
    margin-left: 9%;
    padding-left: 3%;
}

.left span.langues {
    position: relative;
    top: 2px;
    width: 105px;
    margin-right: 20px;
    display: flex;
    justify-content: space-around;
}

span.langues a {
    padding-bottom: 4px;
    width: 25px;
    color: rgba(255, 255, 255, 0);
    background-size: 25px 17px;
    background-repeat: no-repeat;
    opacity: 0.85;
    transition: 0.2s;
}

span.langues a:hover,
span.langues a:focus,
span.langues a:active {
    opacity: 1;
    transition: 0.2s;
    border-bottom: 3px solid rgb(238, 238, 238);
}

a.lang-active {
    border-bottom: 3px dotted rgb(190, 190, 190);
}

.langues a#fr {
    background-image: url('../../img/icons-menu/francais.PNG');
}

.langues a#en {
    background-image: url('../../img/icons-menu/english.PNG');
}

.langues a#de {
    background-image: url('../../img/icons-menu/deutsch.PNG');
}

.left:after {
    content: '';
    line-height: 0;
    font-size: 0;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 65px solid rgb(255, 255, 255);
    border-left: 30px solid transparent;
    border-right: 0 solid #fff;
    position: absolute;
    top: -50px;
    right: 0;
}

.right:before {
    content: '';
    line-height: 0;
    font-size: 0;
    width: 0;
    height: 0;
    border-top: 65px solid rgb(255, 255, 255);
    border-bottom: 50px solid transparent;
    border-left: 0px solid transparent;
    border-right: 30px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.right a {
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: rgba(255, 255, 255, 0.664) 2px solid;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.863);
    height: 27px;
    width: 34px;
    text-align: center;
    text-decoration: none;
    font-family: system-ui, Tahoma, sans-serif;
    font-size: 13px;
    font-weight: bold;
    transition: 0.2s;
}

.right a.lang-active {
    background-color: rgba(255, 255, 255, 0.644);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.788)
}

.right a:hover,
.right a:focus,
.right a:active,
.right a#lang-active:hover {
    transition: 0.2s;
    border: white 2px solid;
    color: white;
}

@media screen and (max-width:800px) {
    .left,
    .right {
        height: 55px;
    }
    .left:after {
        border-bottom: 55px solid rgb(255, 255, 255);
    }
    .right:before {
        border-top: 55px solid rgb(255, 255, 255);
    }
    .left h1 {
        font-size: 16px;
    }
}

@media screen and (max-width:480px) {
    #header-body h1 {
        margin-right: 10px;
    }
    .left,
    .right {
        height: 55px;
    }
    .left:after {
        border-bottom: 55px solid rgb(255, 255, 255);
    }
    .right:before {
        border-top: 55px solid rgb(255, 255, 255);
    }
    .left h1 {
        font-size: 14px;
    }
    .right {
        min-width: inherit;
    }
    .right a:nth-child(1) {
        margin-left: 14px;
    }
    span.langues {
        width: 72px !important;
        margin-right: 17px !important;
    }
    span.langues a {
        padding-bottom: 1px !important;
        width: 20px;
        color: rgba(255, 255, 255, 0);
        background-size: 18px 16px;
    }
    .langues a#fr {
        background-image: url('../../img/icons-menu/rfrancais.PNG');
    }
    .langues a#en {
        background-image: url('../../img/icons-menu/renglish.PNG');
    }
    .langues a#de {
        background-image: url('../../img/icons-menu/rdeutsch.PNG');
    }
}


/* ------------------------BODY----------------------- */

* {
    margin: 0;
    padding: 0;
}

body {
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

@media screen and (min-width: 1px) {
    body {
        padding-bottom: 50px;
        width: calc(100% - 0px);
    }
}

@media screen and (min-width: 480px) {
    body {
        padding-bottom: 0px;
        width: calc(100% - 70px);
    }
}

@media screen and (min-width: 800px) {
    body {
        padding-bottom: 0px;
        width: calc(100% - 110px);
    }
}


/* NOTIFICATIONS */

#notification {
    width: 100%;
    height: 60px;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 65px;
    z-index: 99;
}

#notification span {
    position: relative;
    left: -70px;
    max-width: 325px;
    min-width: 225px;
    padding-left: 25px;
    padding-right: 25px;
    height: 46px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(24, 111, 125, 0.97);
    border-radius: 100px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-family: sans-serif;
    z-index: 1;
    font-weight: bold;
}

#notification span:hover {
    background-color: rgba(250, 250, 250, 0.986);
}

@media screen and (max-width:800px) {
    #notification {
        width: 100%;
        height: 50px;
    }
    #notification span {
        padding-left: 15px;
        padding-right: 15px;
        left: 0px;
        height: 43px;
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    #notification {
        width: 100%;
        height: 38px;
    }
    #notification span {
        max-width: 280px;
        min-width: 180px;
        padding-left: 8px;
        padding-right: 8px;
        left: 0px;
        height: 36px;
        font-size: 11px;
    }
}


/* MESSAGES D'ERREURS */

.messages {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.msg-modification {
    width: 81%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-self: center;
    color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 14px;
    padding-bottom: 13px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 3px;
}

.errors {
    background-color: rgb(235, 64, 64);
}

.success {
    background-color: rgba(128, 212, 111, 0.774);
    border: 2px solid rgb(117, 209, 117);
}

.msg-modification span:nth-child(1) {
    padding-bottom: 13px;
    border-bottom: whitesmoke 1px solid;
}

.msg-modification span.msg-ligne:nth-child(1) {
    text-align: center;
    padding-bottom: 0px;
    border-bottom: none;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.msg-modification span:nth-child(2) {
    margin-top: 10px;
    margin-left: 25px;
    font-size: 13px;
    line-height: 18px;
}


/* --------------- MESSAGE ERREUR */

.msg-erreurs {
    width: 70%;
    min-width: 300px;
    display: flex;
    flex-direction: column !important;
    align-self: center;
    background-color: rgb(235, 64, 64);
    color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 14px;
    padding-bottom: 13px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 3px;
}

.msg-erreurs span:nth-child(1) {
    padding-bottom: 13px;
    border-bottom: whitesmoke 1px solid;
}

.msg-erreurs span.login:nth-child(1) {
    text-align: center;
    padding-bottom: 0px;
    border-bottom: none;
    font-size: 14px;
}

.msg-erreurs span:nth-child(2) {
    margin-top: 10px;
    margin-left: 25px;
    font-size: 13px;
    line-height: 18px;
}

strong {
    font-weight: inherit;
}