.site-main {
    width: 100%;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: 80px calc(100% - 80px);
    transition: all .2s ease;
}

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

.site-sidebar {
    background: #ECECEC;
}

.site-menu {
    height: 100%;
    background: #ECECEC;
    padding: 1rem 1%;
    display: flex;
    flex-flow: column;
    align-items: center;
    transition: linear .3s;
    z-index: 3;
}

.open-menu .site-menu {
    width: 100%;
    align-items: flex-start;
    z-index: 3;
}

.site-menu .menu-label {
    display: none;
    opacity: 0;
    width: 1px;
    padding: 0 1rem;
}

.open-menu .site-menu .menu-label {
    opacity: 1;
    display: inline-block;
    width: auto;
}

.site-menu a {
    font-size: 1.5rem;
    display: flex;
    padding: 1rem .5rem;
    justify-content: center;
    align-items: center;
}

.site-menu a span {
    display: inline-block;
}

.open-menu .site-menu {
    padding-left: 1rem;
}

.open-menu .site-menu a {
    justify-content: flex-start;
}

/*SIDEBAR*/
.site-sidebar ul li a {
    background: #8325e5 ;
    display: block;
    padding: .8rem 1rem;
    color: #FFFFFF;
    margin: 1rem auto;
    text-align: center;
}

.site-sidebar ul li a:hover {
    background: #6311b7;
}


@media screen and (min-width: 64em) {
    .site-sidebar {
        border-left: solid 1px #e3e2e2;
        padding: 1.5rem;
        position: relative;
        z-index: 5;
    }

    .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;
}


