* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background:#aaa;
}
p, a, h4, h5 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1em;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333;
    user-select: none;
}
.btn {
    padding: 4px 8px !important;
}
.rouge {
    color: #fff;
    background-color: rgb(197, 21, 21);
}
.orange {
    color: #000;
    background-color: rgb(214, 137, 20);
    border: none;
}
.jaune {
    color: #000;
    background-color: rgb(200, 200, 0);
}
.vert {
    color: #000;
    background-color: #4E9B5F;
}
.defo {
    color: #333;
    background-color: #999;
}
.visible {
    visibility: visible;
}
.hidden {
    visibility: hidden;
}
/* ------------------------------------------- */
/*          # H E A D E R                      */
/* ------------------------------------------- */

#header {
    position: absolute;
    background: #333;
    width: 100%;
    height: 60px;
    z-index: 20;
}
p.userName {
    position:absolute;
    bottom: 15px;
    left: 60px;
    font-size: .8em;
    color:rgb(163, 188, 238);
}
i.passIcon {
    font-size: 3em;
    color:rgb(163, 188, 238);
    margin: 7px 15px;
    user-select: none;
}
i.passIcon:hover {
    color:white;
}
i.passIcon.red {
    color: red;
}
p.countDown {
    position: absolute;
    right:12px;
    top: 22px;
    text-align: left;
    font-size: .8em;
    color:rgb(163, 188, 238);
}
p.countDown.warning {
    color: orange;
}
p.countDown.danger {
    color: red;
}
/* ------------------------------------------- */
/*         N A V B A R                         */
/* ------------------------------------------- */

.navContainer {
    position: relative;
    height: 60px;
}
.topnav {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.topnav-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-right: 15px;
}
.dropdown {
    background-color: inherit;
    display: inline-block;
}
.dropdown .dropbtn {
    border: none;
    color: rgb(163, 188, 238);
    background-color: inherit;
}
.dropdown-content {
    list-style-type: disc;
    background-color: #666;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 60px;
    min-width: 160px;
    border-top: 2px solid rgb(163, 188, 238);
    padding: 10px;
    z-index: 2;
    transition-duration: .2s;
}
.dropdown-content li {
    display: block;
    font-size: 100%;
}
.dropdown-content li a {
    display: block;
    text-decoration: none;
    color: rgb(163, 188, 238);
    text-align: left;
    padding: 10px 15px;
    width: 100%;
}
.dropdown-content li a:hover {
    text-decoration: underline;
    color: #fff;
    transition-duration: .2s;
}
/* .dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
} */
#dropdown-content.over {
    visibility: visible;
    opacity: 1;
}
.topnav.open .topnav-content {
    animation-name: openNav;
}
.topnav.close .topnav-content {
    animation-name: closeNav;
}
.topnav .topnav-content a {
    /* display: block; */
    position: relative;
    text-align: center;
    color: rgb(163, 188, 238);
    padding: 15px 0;
    text-decoration: none;
}
.topnav .topnav-content h3 {
    text-align: center;
    padding: 15px 0;
    user-select: none;
}
.topnav .topnav-content a:hover {
    color: white;
    text-decoration: underline;
}

@keyframes openNav {
    0%      { max-height: 0 }
    1%      { border-top: 4px solid rgb(163, 188, 238); max-height: 0 }
    100%    { border-top: 4px solid rgb(163, 188, 238); max-height: 150px }
}
@keyframes closeNav {
    0%      { border-top: 4px solid rgb(163, 188, 238); max-height: 150px }
    99%     { border-top: 4px solid rgb(163, 188, 238); max-height: 0 }
    100%    { max-height: 0 }
}

/* ------------------------------------------- */
/*          # C O N T E N T                    */
/* ------------------------------------------- */

#content {
    position: absolute;
    top: 60px;
    width: 100%;
    padding: 10px 10% 0 10%;
}
div.vue {
    position: absolute;
    visibility: hidden;
    width: 80%;
}
div.rowForm {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 10px;
}
h3.titre {
    user-select: none;
    margin: 0 2% 10px 2%;
}
#container {
    max-height: 600px;
    overflow:auto;
}
div.contenu {
    overflow-x: hidden;
    overflow-y: auto;
}
table.container {
    cursor: pointer;
    border-color:rgb(163, 188, 238);
}
table.container td {
    font-size: 1.15em;
    font-weight: 500;
    /* text-align: center; */
    vertical-align: middle;
    padding: 3px 5px 3px 5px;
    line-height: 1em;
}
table.container td a {
    font-size: .8em;
    font-weight: 500;
    color: #000;
    text-decoration:none;
}
table.container tr.over {
    color:#000;
    background-color:rgb(163, 188, 238) ;
    /* font-weight: bolder; */
}
table.container tr.over td {
    font-weight: bolder;
}
table.container tr.over td a:hover {
    font-weight: bolder !important;
}
i.myIcon {
    cursor: pointer;
    user-select: none;
    background-color: #aaa;
    color: #198754;
    font-size: 36px;
    margin: 0 0 0 2%;
}
i.plusIcon {
    vertical-align: middle;
    user-select: none;
    background-color: #198754;
    color: white;
    font-size:36px;
    margin: 1px 0 0 0 !important;
    padding: 0 !important;
}
i.btnIcon {
    vertical-align: middle;
    padding: 0 10px 0 0;
}
i.folderIcon {
    font-size: 32px;
    color: white;
    vertical-align: middle;
    padding: 0 0 0 2%;
    margin: 0;
}
i.folderIcon.dragover {
    color:orange;
}
i.downloadIcon {
    font-size: 24px;
    color: #4E9B5F;
    vertical-align: bottom;
    padding: 0 0 0 2%;
    margin:0;
}
i.editIcon {
    font-size: 24px;
    color: #ffc107;
    vertical-align: bottom;
    padding: 0 0 0 2%;
    margin:0;
}
i.deleteIcon {
    font-size: 24px;
    color: red;
    vertical-align: middle;
    padding: 0 0 0 2%;
    margin:0;
}
label.myLabel {
    margin-bottom: 3px !important;
    user-select: none;
}
i.myIcon.orange {
    color: #ffc107;
}
i.myIcon.red {
    color: red;
}
#strengthMeter {
    width: 100%;
    height: 5px;
    margin: 5px 0 20px 0;
    padding: 0;
    background-color: #8f8f8f;
    border-radius: 3px;
}
#meter {
    height: 5px;
    border-radius: 3px;
}
#meterText {
    font-size: .8em;
    margin: 0 2px;
}
.form-control[readonly] {
    background-color: rgb(205, 212, 228) !important;
    border: none !important;
}
div.mdpDetails {
    width: 100%;
    margin: 0 2px 15px 2px;
    font-size: .8em;
}
.form-check-input[type=checkbox] {
    background-color:red;
}
.form-check-input:disabled {
    opacity: 1;
}
.form-check-input[disabled]~.form-check-label {
    opacity: 1;
    user-select: none;
    margin: 0;
    padding: 0 12px 0 0;
}
.form-check-input:checked {
    background-color: #198754;
    border:none;
}
/* ------------------------------------------- */
/*         M E S S A G E                         */
/* ------------------------------------------- */

#messages {
    position: absolute;
    top: 0;
    width: 100%;
}
div.message {
    position: absolute;
    top: 60px;
    text-align: center;
    transition-duration: 500ms;
    transition-timing-function: ease-out;
    width: 100%;
    padding: 8px 10px 5px 10px;
    min-height: 45px;
    max-height: 500px;
    overflow: auto;
    border-top: 1px solid rgb(163, 188, 238);
}
div.message.marge {
    padding: 8px 60px 5px 10px;
}
#message1 {
    z-index: 9;
}
#message2 {
    z-index: 10;
}
div.message p {
    color: white;
    font-size: .9em;
    line-height: 1.2em;
    padding: 5px 0 0 0;
}
div.message p span.emoji {
    font-size: 2em;
}
div.message.blanc p {
    color: #333;
}
div.message.hide {
    transform: translateY(-110%);
}
button.domos {
    font-size: .8em !important;
    background: #bbb;
    margin: 1px 0 1px 0;
    padding: 8px 0 !important;
    border: solid 1px #666;
    border-radius: 5px;
}
button.domos.alert {
    position :absolute;
    bottom : 10px;
    right: 10px;
    padding: 2px 15px !important;
    font-weight: 900;
}

/* ------------------------------------------- */
/*         P O P U P                         */
/* ------------------------------------------- */

div.popup {
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 8;
    transition-duration: 500ms;
    transition-timing-function: ease-out;
    width: 260px;
    min-height: 280px;
    max-height: 330px;
    margin: 0 0 0 -140px;
    padding: 10px;
}
div.popup-content {
    position: relative;
    width: 260px;
    height: 280px;
    text-align: left;
}
div.popup-bg-white {
    position: absolute;
    width: 260px;
    height: 280px;
    background:rgba(255, 255, 255, 1);
    border-radius: 0 0 10px 10px;
    padding: 10px;
}
div.popup-th {
    position: relative;
    bottom: -40px;
    margin-left: 60px;
}
div.popup.hide {
    transform: translateY(-110%);
}

/* ------------------------------------------- */
/*         E R R O R S                       */
/* ------------------------------------------- */

h1.forbidden {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 45px;
    text-align: center;
    color: white;
    background-color: red;
}
h1.not_found {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    line-height: 1.5em;
    text-align: center;
    color: white;
    background-color: orange;
}
