/* ----- Tableau avec liste ----- */

.table-list-head {
    display: flex;
    background: linear-gradient(#4e8cbe, #9FB8D9) !important;
    color: #fff;
    font: bold .9em Arial, sans-serif;
    text-align: center;
    border-left: 1px solid var(--grey);
    border-top: 1px solid var(--grey);
    
}

.table-list-head .e {
    border-right: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 2px 4px;
}

.table-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .9em;
}

.table-list li {
    display: flex;
    width: 100%;
    border-left: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
}

.table-list .e {
    border-right: 1px solid var(--grey);
    padding: 2px 4px;
}

/* ----- Forum ----- */

.forum-home {
    background: linear-gradient(to top, #f2f5fd, #eef5f9);
}

.forum-home img {
    max-width: 100px;
    margin: 6px;
}

.forum-home,
.topics-box {
    font-size: .9em;
    font-family: Verdana, sans-serif;
}

.forum-home-box1 {
    display: flex;
    align-items: center;
}

.forum-home .e:nth-child(1),
.topics-box .e:nth-child(1) {
    width: 60%;
}
.forum-home .e:nth-child(2),
.topics-box .e:nth-child(2) {
    width: 7%;
}
.forum-home .e:nth-child(3),
.topics-box .e:nth-child(3) {
    width: 7%;
}
.forum-home .e:nth-child(4),
.topics-box .e:nth-child(4) {
    width: 26%;
}

.topics-box li {
    background: linear-gradient(#eaf4ff, #fff);
}

.topics-box [class*="icon-"] {
    margin-left: 6px;
    margin-right: 6px;
}

.topics-box .topics-box-title-icon {
    float: left;
    font-size: 2.4em;
    color: var(--blue6);
}

.topics-box-title {
    padding-left: 48px;
    position: relative;
}
.topics-box-title > div:first-child {
    margin-bottom: 3px;
}

.forum-box {
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 50px;
    overflow: hidden;
}

.forum-box ul  {
    padding-left: 18px;
}
.forum-box ol  {
    padding-left: 30px;
}

.forum-box-head {
    padding: 12px;
    background: linear-gradient(var(--blue2), var(--blue1));
    display: flex;
}

.forum-box-head img {
    max-width: 50px;
    max-height: 50px;
}

.forum-box-head > div:first-child {
    margin-right: 12px;
}

.forum-profil {
    max-width: 600px;
    margin: auto;
}

.forum-profil h1 {
    font: bold 1.2em sans-serif;
    margin: auto;
}

.profil-info {
    margin: auto;
    max-width: 500px;
    font: 1em Arial, sans-serif;
}

.profil-info > div {
    margin: auto 10px;
}

.avatar-box img {
    max-width: 250px;
}

.post-user {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.post-user .username {
    font-weight: 600;
    margin-bottom: 3px;
}

.post-user .username.blue > a {
    color: var(--blue6);
}
.post-user .username.red > a {
    color: var(--red);
}

.post-user .userinfo {
    font: .8em Arial, sans-serif;
}

.forum-box-body {
    padding: 12px;
}
.forum-box-body > :first-child {
    margin-top: 0;
}
.forum-box-body > :last-child {
    margin-bottom: 0;
}

.forum-box-foot {
    padding: 12px;
    background-color: var(--blue1);
}

.forum-box-foot a:not(:last-child) {
    display: inline-block;
    margin-right: 8px;
}

.forum-add-edit > div {
    margin-top: 15px;
}


/* ######################## Tablette (ou certains mobiles en horizontal) ######################## */

@media screen and (max-width: 1100px) {

    /* ----- Forum ----- */


}


/* ######################## Mobile ######################## */

@media screen and (max-width: 600px) {

    /* ----- Forum ----- */

    .profil-info {
        text-align: center;
    }

    .forum-home .e:nth-child(1),
    .topics-box .e:nth-child(1) {
        width: 70%;
    }
    .forum-home .e:nth-child(2),
    .topics-box .e:nth-child(2) {
        width: 0;
    }
    .forum-home .e:nth-child(3),
    .topics-box .e:nth-child(3) {
        width: 0;
    }
    .forum-home .e:nth-child(4),
    .topics-box .e:nth-child(4) {
        width: 30%;
    }


}