body { }

.forum { }

.forum .content-box-title-nopadding { position: relative; }

.forum .content-box-title-nopadding ul { }

.forum .content-box-title-nopadding .toggle-navigation {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 45px;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 0;
    border: none;
    border-right: 1px solid #dddddd;
    box-sizing: border-box;
    box-shadow: inset 0 -1px 0 #dddddd, 1px 0 #fbfbfb;
    transition: all 0.3s ease-out;
}

.forum .content-box-title-nopadding .toggle-navigation:active {
    background-color: #2b2b2b;
    color: #fff;
    box-shadow: none;
}

.forum .content-box-title-nopadding .forums-titles-block {
    /*padding: 0 0 0 45px;*/
    margin: 7px 0 -7px 0;
    /*display: table;*/
    table-layout: fixed; /* optional */
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    background: #fbfbfb;
    border-top: 1px solid #ddd;
}

.forum .content-box-title-nopadding .forums-titles-block ul {
    /*display: table-cell;*/
    
    display: none;
    margin-top: 10px !important;

    width: 100%;
    padding: 3px 0 5px;
    border-right: 1px solid #dddddd;
}


.forum .content-box-title-nopadding .forums-titles-block ul:last-child { border-right: none; }

.forum .content-box-title-nopadding .forums-titles-block ul li {
    float: left;
    margin-right: 5px;
    margin-top: 5px;	
}

.forum .content-box-title-nopadding .forums-titles-block ul li a {
    padding: 5px 5px 5px 10px;
    margin: 0px;
    text-align: left;
    box-shadow: none;
    border: none;
    background-color: rgb(234, 232, 232);
    text-shadow: none;
}

.forum .content-box-title-nopadding .forums-titles-block ul li.active a {
    color: #ffffff;
    text-shadow: none;
    background-color: #000;
}

.forums-titles-block {
    display: none;
    padding: 0 5px 5px 5px;
}


.topic {
    border-bottom: 1px solid #d8d8d8;
    margin: 0 -15px;
    padding: 10px 10px 0;
    color: #8e8e8e;
    position: relative;
}

.topic img {
    height: 55px;
    width: 55px;
    border-radius: 3px;
    margin: 0 10px 10px 0;
}

.topic .topic-name {
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 600;
}

.topic .reply-count {
    color: #888;
    font-size: 10px;
    background-color: #EFEFEF;
    border-radius: 10px;
    position: relative;
    padding: 0 10px;
    transition: all 0.3s ease-out;
}

.topic:hover .reply-count {
    color: #fff;
    background-color: #0caeea;
}

.topic .reply-count .digit {
    position: relative;
    z-index: 3;
}

.topic .reply-count .icon-comment {
    color: #EFEFEF;
    position: absolute;
    font-size: 25px;
    z-index: 2;
    left: 0px;
    transition: all 0.3s ease-out;
}

.topic:hover .reply-count .icon-comment { color: #0caeea; }

.topic .category-name {
    font-size: 11px;
    position: absolute;
    right: 10px;
    bottom: 13px;
    opacity: 0.1;
    transition: all 0.3s ease-out;
}

.topic:hover .category-name { opacity: 1; }




.user-post {
    margin: -15px -15px 0 -15px;
    padding: 15px 15px 0 15px;
}

.user-post:hover { background-color: #fff; }

.user-post .functional-block {
    border-radius: 0px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 0 #fff;
    margin-bottom: 15px;
}

.user-post .user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-post .date {
    font-size: 10px;
    color: #8e8e8e;
}

.user-post .author-avatar {
    height: 55px;
    width: 55px;
    border-radius: 3px;
    margin: 0 10px 0px 0;
    position: relative;
}

.user-post .author-avatar img {
    height: 55px;
    width: 55px;
    border-radius: 3px;
}

.user-post .author-avatar .views-comments-count {
    position: absolute;
    color: #fff;
    bottom: 3px;
    left: 3px;
    background-color: #2b2b2b;
    padding: 0 5px 0;
    border-radius: 15px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    font-size: 8px;
    transition: all 0.3s ease-out;
    opacity: 0.5;
}

.user-post:hover .author-avatar .views-comments-count {
    opacity: 1;
    font-size: 11px;
}

.user-post .post-body {
    margin: 0 0 0px 65px;
    font-size: 13px;
    line-height: 160%;
}

.user-post .post-body p {
    overflow: hidden;
}

.user-post .post-body blockquote {
    font-size: 13px;
    line-height: 160%;
    color: #ccc;
}

.user-post .post-body blockquote:hover { color: #2b2b2b; }

.user-post .specialfix { height: 20px; }
