@font-face {
    font-family: "app-default";
    src: url('./Quicksand.otf');
}

/*style variables*/
*{
    --hd-color:rgb(255, 255, 255);
    --hb-bg-color : rgb(0,0,0);
    --hd-bg-hover : rgb(60, 60, 60);
    --main-bg-color: rgb(255,255,255);
    --main-fg-color: rgb(0,0,0);
    --pu-border-color : rgb(206, 212, 218);
    --pu-main-color: rgba(255,255,255,0.5);
    --tb-bg-color: rgb(223, 221, 206);
    
}

body {
    font-family:"app-default";
}


/*Navbar*/

.nav-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}

.navbar {
    position: fixed;
    padding : 1vw 0;
    top : 0;
    width: 100vw;
    z-index: 10;
}

.nav-hd-link {
    display: block;
    margin: 0;
    padding: 0;
}

.navbar-title{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 2vw;
}

.navbar-sub {
    font-size: 2.5vh;
    margin: 0;
}

.navbar-toggler-icon {
    background-image:url('../images/icons/Hamburger_icon.svg.png')
}

.nav-item:hover {
    background-color: var(--hd-bg-hover);
    border-radius: 1vh;
    transition: background-color 0.5s;
}

/*footer*/

footer {
    position: fixed;
    bottom: 0;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100vw;
    z-index: 0;
}

.footer-mail {
    text-decoration: none;
    width : 8vh;
    height: 8vh;
    border-radius: 4vh;
    background-color: var(--hb-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.footer-icon {
    display: block;
    width: 6vh;
}

/*Main Zone*/

main {
    position: relative;
    top: 8vh;
    padding: 2vw;
    z-index: 5;
    margin-bottom: 15vh;
}

/*formulaire évènement*/

#event-form {
    height : 75vh;
    width : 60vw;    
    display : flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color : var(--main-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 2vw;
    padding : 4vh 2vw;
    overflow-y: auto;
}

#event-form>form {
    width : 100%;
}

#event-form::-webkit-scrollbar {
  display: none;
}

.event-set {
    width : 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.event-set>* {
    width : 45%;
    
}

.event-del-box {
    
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.event-del-box>* {
    margin : 0 1vh;
}

.event-del-box>*>.form-check {
    
    
    padding-left: 2vh;
    padding-right: 1vh;
    width:fit-content;
}

/*admin Zone - liste utilisateur*/

.user-sticker {
    /*background-color: var(--main-bg-color);*/
    box-shadow: var(--main-fg-color) 5px 5px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.user-info {
    text-align: center;
}

.section-title {
    border-bottom: var(--main-fg-color) solid 0.5vh;
}

/*admin Zone - liste thèmes*/



.admin-tag-sticker {
    box-shadow: var(--main-fg-color) 5px 5px 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.tag-delete {
    display: block;
}

/*admin Zone - cartographie thèmes*/

.map-line {
    width : 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:stretch;
}


.map-site {
    text-align: center;
    border: var(--hb-bg-color) solid 1px;
}

.map-title>.map-site {
    background-color: var(--hb-bg-color);
    color : var(--hd-color);
    border: var(--hd-color) solid 1px;
}

.map-tag-name {
    background-color: var(--hb-bg-color);
    color : var(--hd-color);
    border: var(--hd-color) solid 1px;
}

.map-title>.map-tag-name {
    background-color: var(--hd-color);
    color : var(--hb-bg-color);
    border: none;
}

.map-tag-name {
    width : 20%;
}



/*Messages et tags*/

.message-box {
    height: 40vh;
}

#add-tag-box {
    height : 40vh;
    width : 70vw;    
    display : flex;
    align-items: center;
    justify-content: center;
    background-color : var(--main-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 2vw;
}

.tags-box {
    background-color: var(--tb-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 1vh;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
}

.tags-box>*>.form-check {
    background-color: var(--main-bg-color);
    border-radius: 3vh;
    padding-left: 6vh;
    padding-right: 2vh;
    width:fit-content;
}



.tags-box>* {
    width: fit-content;
    height: fit-content;
    margin : 0 1vw;
    margin-bottom: 1vw;
}

/*Message list*/

.message-list {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width :100%;
    
}

.message-list-line {
    display : flex;
    flex-direction: row;
    justify-content: center;
    align-items:start;
    width :100%;
}

.message-list-line>* {
    height: 4vh;
    font-size: 2vh;
    margin : 0;
    padding : 0.5vh;
    text-align: center;
   
}

.message-list-title {
    background-color: var(--hb-bg-color);
    color : var(--hd-color);
    border : var(--hd-color) solid 2px;
    
}

.message-list-box {
    border : var(--main-fg-color) solid 1px;
}

.readable-message {
    cursor:pointer;
}

.message-list-box.message-subject {
    text-align: start;
}

.message-date {
    width : 20%;
}

.message-anonymous {
    width : 15%;
}

.message-subject {
    width : 40%;
}

.message-state {
    width : 15%;
}

.message-author {
    width : 30%;
}

/* page téléchargement */

.document-title {
    
    width: 100%;
    border-bottom: var(--main-fg-color) solid 2px;
}

.document-zone {
    display : flex;
    width : 100%;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    
}

/*.document-zone>* {
    font-size: 2vmin;

}*/

#report-form {
    height : 50vh;
    width : 60vw;    
    display : flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color : var(--main-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 2vw;
    padding : 10vh 10vw;
}
/*message detail pop up*/

.message-read-box {
    height : 90vh;
    width : 90vw;    
    display : flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color : var(--main-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 2vw;
    padding : 10vh 10vw;
    overflow-y:auto;
    
}



.message-read-box::-webkit-scrollbar {
  display: none;
}

.message-zone {
    background-color: var(--tb-bg-color);
    width: 100%;
    border: var(--pu-border-color) solid 1px;
    border-radius: 1vw;
    padding : 0.5vh 1.5vw;
    
}

.button-zone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    width : 100%;
}

.ignore-button {
    display: none;
}


.tag-zone {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    padding : 1vh 1.5vw;
}

.tag-sticker {
    background-color: var(--main-bg-color);
    border-radius: 3vh;
    padding: 0.5vh 2vw;
    width:fit-content;
    margin: 0.5vh 0.5vw;
}

.ignore-form-box {
    height : 70vh;
    width : 80vw;    
    display : none;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color : var(--main-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 2vw;
    padding : 10vh 10vw;
    overflow-y:auto;
}

.ignore-form-box>* {
    width : 100%;
}

.dismiss-textarea {
    width : 100%;
    height: 20vh;
}

.restablish-button {
    display : none;
}

/* pop up création de réunion */

#meeting-form-box {
    height : 40vh;
    width : 40vw;    
    display : flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color : var(--main-bg-color);
    border : var(--pu-border-color) solid 1px;
    border-radius: 2vw;
    padding : 10vh 10vw;
}
/*pop up management*/

#pop-up-container, #meeting-form-container {
    position: fixed;
    top :0;
    left :0;
    height: 100vh;
    width: 100vw;
    background-color: var(--pu-main-color);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
}



