body {
    box-sizing: border-box;
    margin: 0;
    background-color: rgb(88, 88, 88);
    color:rgb(255,255,255);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 12px;

    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

h4 {
    margin: 0 0 .1em 0;
    font-weight: 700;
}

.footer {
    background-color: #333;
}
.footer>div {
    max-width: 80%;
    margin: 2em auto;
    display: table;
}
.footer p {
    margin: .6em 0;
}
a {
    color: #86d2ee;
    text-decoration: none;
}
a:hover {
    /* color: rgb(82, 149, 88); */
    text-decoration: underline;
}

.header {
    background-color: rgb(59, 59, 59);
    border-bottom: 1px solid rgb(255,255,255);
    display: flex;
    align-items: center;
}
.header img { padding:.5em; }
.header h1 { text-transform: uppercase; margin: 0; font-size: 1.8em; font-weight: 300;}

.main {
    /* background-color: rgb(90, 73, 73); */
    flex-grow: 1; /* to push footer*/
}

.box {
    /* border: 1px solid rgb(255,255,255); */
    max-width: 33em; /*475 px*/
    margin: 2em auto;
    font-size: 1.2em;;
}
.padder { padding:.5em; }

.box h2 {
    margin: .5 0 0 0;
}

.box p {
    margin: .7em 0 0 0;
}

.infoContainer {
    display: flex;
    justify-content: center;
    border:1px solid white;
}

.infoContent {
    border:1px solid rgb(255, 0, 0);
}

.ulNoStyle {
    list-style-type: none;
    padding:0;
}

.ulNoStyle>li {
    display: flex;
    word-break: break-all;
    padding: .2em;
}

.ulNoStyle>li>span:first-child {
    display: inline-block;
    min-width: 12em;
}

.ulFilesList>li:nth-child(odd) {
    background-color: #4c4c4c;
}



input[type="file"] {
    display: none;
}

.divForm {
    border:1px solid white;
    height:10em;
    margin-top:2em;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background-color:rgb(59,59,59);
}
.divForm form { margin: 0 auto; }

.fileInputLabel {
    margin:0 auto;
    /* height:3em;
    width:10em; */
    background-color:#5eaa61;
    color:white;
    border:transparent;
    cursor:pointer;
    font-weight: 700;
    padding: 1em 2em;
}
.fileInputLabel:hover {
    background-color:#69c46c;
}

.divNotAccessible {
    /* border:1px solid white; */
    border:2px solid #86d2ee;
    display:flex;
    flex-direction:column;
    align-items:center;
    /* background-color:rgb(59,59,59); */
    background-color:#63b0d2;

}
.divNotAccessible>div {
    padding: 1em;
    margin: .5em;;
    /* font-weight: 400; */
    max-width: 70%;
    color:white;
}

