* {
    margin: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Raleway', sans-serif;
}

:root {
    --primary: #289DD2;
    --secondary: #414b75;
}


body {
    margin: 0px;
    padding: 0px;
}

header {
        width: 100vw;
            background-image: url(/assets/images/logo.png);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            height: 20vh;
}


main {
    width: 90%;
    margin: auto;
    margin-top: 2vh;
    margin-bottom: 5vh;
        min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            text-align: center;

    font-size: 22px;
}

#textHome {
    margin: 30px;
}

#login {
    margin: 10px;
    padding: 20px;
    background-color: var(--primary);
    border-radius: 20px;
    color: #FFF;
}

#btnLogin {
        background-color: var(--secondary);
            color: #FFF;
            text-transform: uppercase;
            border: unset;
            padding: 10px;
            border-radius: 10px;
            cursor: pointer;
}

footer {
    background-color: var(--primary);
        position: fixed;
        bottom: 0px;
        width: 100vw;
        /* height: 5vh; */
        display: flex;
        justify-content: right;
        align-items: center;
}

footer > a {
    color: #FFF;
    text-decoration: none;
    padding: 10px;
}


.tablesorter .filtered {
    display: none;
}

/* All of the following css is already contained within each theme file; modify it as desired */
/* filter row */
.tablesorter-filter-row td {
    background: #eee;
    line-height: normal;
    text-align: center;
    /* center the input */
    -webkit-transition: line-height 0.1s ease;
    -moz-transition: line-height 0.1s ease;
    -o-transition: line-height 0.1s ease;
    transition: line-height 0.1s ease;
}

/* optional disabled input styling */
.tablesorter-filter-row .disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: not-allowed;
}

/* hidden filter row */
.tablesorter-filter-row.hideme td {
    /*** *********************************************** ***/
    /*** change this padding to modify the thickness     ***/
    /*** of the closed filter row (height = padding x 2) ***/
    padding: 2px;
    /*** *********************************************** ***/
    margin: 0;
    line-height: 0;
    cursor: pointer;
}

.tablesorter-filter-row.hideme * {
    height: 1px;
    min-height: 0;
    border: 0;
    padding: 0;
    margin: 0;
    /* don't use visibility: hidden because it disables tabbing */
    opacity: 0;
    filter: alpha(opacity=0);
}

/* filters */
.tablesorter-filter {
    width: 95%;
    height: inherit;
    margin: 4px;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: height 0.1s ease;
    -moz-transition: height 0.1s ease;
    -o-transition: height 0.1s ease;
    transition: height 0.1s ease;
}

#uploadSession {
    display: none;
    flex-direction: column;
}

.btnRetour {
    background-color: var(--primary);
        color: #FFF;
        border-radius: 20px;
        width: fit-content;
        padding: 5px 10px;
}
.blockContent {
    margin-top: 30px;
    margin-bottom: 30px;
}

#lastUpload {
    display: none;
    color: red;
    margin: 10px;
}

#uploadForm {
    flex-direction: column;
    display: flex;
        text-align: center;
            justify-content: center;
            align-items: center;
}
#uploadForm > input, textarea {
        margin: 10px;
}

button {
    background-color: var(--primary);
    color: #FFF;
    width: fit-content;
    border: unset;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.center {
    margin: auto;
        margin-top: 20px;
}

#fileUpload {
flex-direction: column;
    display: none;
    margin: 20px;
    color: var(--primary);
}

.dlstatus-nodl * {
    color: red !important;
}

.dlstatus-deprecated * {
    color: orange !important;
}

.loader {
    background: url('/core/images/loader.gif') 50% 50% no-repeat rgba(255, 255, 255, 0.8);
    cursor: wait;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    display: none;
}

.close {
    background: rgba(255, 255, 255, 0.8);;
   cursor: wait;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    display: none;
}

.loader h1 {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    font-variant: small-caps;
    font-weight: 700;
    height: 700px;
    line-height: 700px;
    margin: 0 0 10px;
    padding: 0;
    text-align: center;
}
.close h1 {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    font-variant: small-caps;
    font-weight: 700;
    height: 700px;
    margin: 0 0 10px;
    padding: 0;
    text-align: center;
    margin-top: 50%;
        transform: translateY(-50%);
}

.closeBtn {
    display: none;
    margin: auto;
        margin-top: 20px;
        background-color: green;
        
}

.support {
        font-size: medium;
}
.orange {
    color:orange;
}

a {
    color: var(--primary);
}
#logout {
        color: var(--primary);
            text-align: right;
            display: block;
            width: 100%;
}
.completed {
    background-color: rgb(0 128 0 / 50%) !important;
    font-weight: bold;
    text-align: center;
}

.partial {
    background-color: rgba(215, 146, 49, 0.5) !important;
        font-weight: bold;
        text-align: center;
}

.alerte {

            background-color: rgba(215, 49, 49, 0.5) !important;
            font-weight: bold;
            text-align: center;
        
}

.fileName {
    color: #000;
    cursor: pointer;
}

#filesTable {
    margin: 0 auto;
    width: 100%;
    -border-collapse: separate;
    border-spacing: 0;
}

#filesTable * {
    color: black;
    font-size: 1rem;
}

#filesTable tr {
    height: 50px
}

#filesTable tr:not(.tableHeader):hover {
    background-color: #ececec;
    cursor: pointer;
}

.action {
    cursor: pointer;
}

.short {
    width: 100px;
}

.medium {
width: 200px;
}
.large {
    width: 500px;
}

#editSession {
        text-align: left;
            display: flex;
            flex-direction: column;
            margin: auto;
}