.site-main {
    width: 100%;
    overflow-x: hidden;
    transition: all .2s ease;
    max-width: 62rem;
    margin: 0 auto;
}

.site-content {
    width: auto;
    padding: 2%;
    position: relative;
    z-index: 2;
    transition: linear 0.3s;
    min-height: 400px;
}




@media screen and (min-width: 64em) {

    .site-main {
        grid-template-columns: 80px calc(70% - 80px) 30%;
    }
    .open-menu .site-main {
        grid-template-columns: 300px calc(70% - 80px) 30%;
    }
}
/*MESSAGES*/
.message-teaser {
    padding: 1rem;
}

.message-author {
    display: block;
    cursor: pointer;
    font-size: .85rem;
    margin-bottom: .3rem;
}

.message-author--name {
    font-weight: 700;
    cursor: pointer;
}

.message-teaser:nth-child(odd) {
    background: #eeecec;
}

.message-teaser--content {
    color: #000000;
    display: block;
}

.btn-menu {
    display: inline-block;
    position: relative;
    z-index: 10;
    padding: 1rem;
    cursor: pointer;
    background: #CCCCCC;
}

/*COMMENTS*/
.comment {
    background: #ECECEC;
    padding: 1rem;
}
.comment:nth-child(odd) {
    background: #FFFFFF;
}
.comment__submitted {
    display: flex;
    font-size: .9rem;
    margin-bottom: 0;
}

/*USER INFOS*/
.user-infos {
    background: #ECECEC;
    border: solid 2px #6311b7;
    padding: 1rem;
    margin-bottom: 2rem;
}

.user-infos .subscribe-on{
   float: right;
    margin-right: 1rem;
}

/*LIST CANDIDATS*/
.list-candidats .item {
    width: calc(50% - 1rem);
    padding: 1.5rem;
    border-radius: 4px;
    border: solid 1px #c4c1c1;
    margin: 1rem 1rem 1rem 0;
}

.list-candidats .item h3 {
    margin-top: 0;
}

.pager__items {
    display: flex;
    
}


