﻿.forums {
    
}
    .forums .no-results {
        padding: 1rem 1.5rem;
        background-color: #fff;
    }
    .forums .validation, .forums .reply-validation {
        font-size: 1.4rem;
        color: #fff;
        background-color: #ba0000;
        margin: 0 0 2rem 0;
        padding: .5rem 1rem;
        border-radius: 3px;
    }
.k-form-error, .k-form-field-error .k-text-error {
    font-size: 1.4rem !important;
    color: #fff !important;
    background-color: #ba0000 !important;
    margin: 0 0 0 0 !important;
    padding: .5rem 1rem !important;
    border-radius: 3px !important;
    font-style: normal !important;
}
    .forums form {
        margin: 0;
    }
.forums .hero {
    min-height: 110px;
    max-height: 110px;
    margin-bottom: 2rem;
    background-position: center center !important;
    background-size: cover !important;
}
.forums .staff {
    background-color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: .3rem;
}
    
/* List Pages */

    .forums .hero h1 {
        padding-top: 3rem;
        color: #fff;
        text-align: center;
    }
    .forums h2 {
        font-size: 2.2rem;
        font-weight: 400;
    }
    .forums .search-query-container {
        display: grid;
        grid-template-columns: 1fr 10rem;
    }
    .forums .search-query-container input[type=text] {
        width: 100%;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        transition: border var(--transition-duration);
    }
    .forums .search-query-container button {
        width: 100%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .forums .search-query-container input[type=text]:hover,
    .forums .search-query-container input[type=text]:focus {
        border: 1px solid var(--main-color-hover);
        transition: border var(--transition-duration);
    }

    .forums .latest-posts-header-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        margin: 1.5rem 0 0 0;
    }

        .forums .latest-posts-header-grid div:nth-child(2) {
            justify-self: right;
        }

/* List Items */

    .forums .post-list {
        box-shadow: 0 2px 23px 0 #e4e6e9;
        margin-bottom: 5rem;
    }
        .forums .post-list h3 {
            font-size: 1.8rem;
            letter-spacing: 0.6px;
            font-weight: 600;
            padding-right: 3rem;
            margin: 0 0 .5rem 0;
        }
        .forums .post-list h4 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 0; 
        }
        .forums .post-list h5 {
            font-size: 1.2rem;
            font-weight: 400;
            margin: .3rem 0 0 0;
        }
        .forums .post-list .post-list-item {
            padding: 20px;
            border: 1px solid #fff;
            border-bottom: 1px solid #e4e6e9;
            transition: all .25s;
            background-color: #fff;
            border-left: 5px solid #000;
        }
            .forums .post-list .post-list-item:hover {
                border: 1px solid var(--accent-color) !important;
                border-left: 5px solid var(--accent-color) !important;
                transition: all var(--transition-duration);
            }
        .forums .post-list .post-list-item-grid {
            cursor: pointer;
            display: grid;
            grid-template-columns: 1fr 7.5rem 7.5rem;
            align-items: center;
        }
            .forums .post-list .post-list-item-grid.cats {
                grid-template-columns: 1fr 1px 7.5rem;
            }
            .forums .post-list .post-list-item-grid.pinned {
                grid-template-columns: 1fr 6.5rem 7.5rem 7.5rem;
            }
            .forums .post-list .post-list-item-grid.pinned .counts.pin .k-i-pin {
                color: #ff0000;
                font-size: 3.4rem;
            }
        .forums .post-list .post-list-item-grid .counts {
            display: flex;
            flex-direction: row;
        }
            .forums .post-list .post-list-item-grid .counts .k-icon {
                font-size: 2.2rem;
                margin: 0 1rem 0 0;
            }
            .forums .post-list .post-list-item-grid .counts .count {
                font-size: 1.4rem;
            }

        /* List Items - Read */

        .forums .post-list .discussion.read .post-list-item {
            border-left: 5px solid #ccc;
        }
        .forums .post-list .discussion.read .post-list-item-grid h3,
        .forums .post-list .discussion.read .post-list-item-grid h4,
        .forums .post-list .discussion.read .post-list-item-grid h5 {
            color: #888;
        }


/* Create Discussion */

    .forums .post-wrapper {
        padding: 2rem 1.5rem;
        box-shadow: 0 2px 23px 0 #e4e6e9;
        background-color: #fff;
    }
    .forums .post-wrapper h6 {
        font-size: 1.4rem;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
    }
        .forums .post-wrapper input[type=text] {
            width: 100%;
            margin-bottom: 1rem;
        }
    .forums .pin-top {
        margin: 10px 0 20px 0;
    }
    .forums label {
        margin-left: .5rem;
        display: inline;
        font-size: 1.4rem;
        text-transform: uppercase;
    }
    .forums .hint {
        font-size: 1.2rem;
        font-style: italic;
        color: #888;
        margin: .5rem 0 2.5rem .5rem;
    }
    .forums .photo-upload .k-file-name-size-wrapper {
        display: inline-block !important;
        padding: 1rem;
        box-shadow: 0 2px 15px 0 #e4e6e9;
        border: 1px solid #ccc;
        margin: .5rem !important;
    }
        .forums .photo-upload .k-file-name-size-wrapper img {
            background-position: center center !important;
            background-size: cover !important;
            height: 10rem;
        }
    .forums .k-file-name {
        margin: .5rem 0 0 0 !important;
    }
    .forums .k-file-information {
        margin: .5rem 0 0 .5rem !important;
    }
    .forums .post-buttons button {
        margin-right: 1rem;
    }

/* Discussion Page */
    .forums .post-titles h2 {
        white-space: normal;
        overflow: auto;
        text-overflow: unset;
        font-size: 1.6rem;
        margin: 0;
        font-weight: 700;
        border-bottom: 1px solid #ccc;
        letter-spacing: 0.5px;
        padding-right: 1.5rem;
        padding-bottom: 0 0 .5rem 0;
    }

    .forums .post-titles h5 {
        margin-top: .2rem;
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
    .forums .post-titles .staff {
        font-size: 1.4rem;
    }
    .forums .post-body {
        line-height: 1.45;
        font-size: 1.4rem;
        overflow-wrap: break-word;
    }
    .forums.new .post-wrapper .image-grid {
        display: grid;
        grid-template-columns: 1fr max-content max-content max-content;
        justify-content: end;
        border-bottom: 1px solid #ccc;
        margin: 2.5rem 0 .5rem 0;
    }
        .forums .post-wrapper .image-grid h2 {
            font-size: 1.8rem;
            margin: 0 0 .5rem 0;
        }
    .forums .command-grid {
        display: grid;
        grid-template-columns: 3rem 1fr 1fr;
        margin: 1.5rem 0;
    }
        .forums .command-grid .likes {
            cursor: pointer;
            font-weight: 700;
        }
        .forums.new .command-grid .likes span {
            cursor: pointer;
            color: var(--accent-color);
            font-size: 2.4rem;
        }
        .forums.new .command-grid #like-count {
            color: var(--accent-color);
            font-size: 2rem;
            font-weight: 700;
            margin-top: -.3rem;
            display: inline-block;
        }
        .forums .command-grid .flag-container {
            justify-self: end;
            align-self: center;
            cursor: pointer;
        }
    .forums .command-grid .flag {
        color: var(--accent-color);
        font-size: 1.4rem;
        font-weight: 500;
        display: inline-block;
    }
    .forums .command-grid .delete {
        display: inline-block;
        color: var(--accent-color);
        font-size: 2rem;
    }
    .forums .comment-form-box {
        margin: 2rem 0;
        background-color: #fff;
        padding: 1rem 2rem;
        box-shadow: 0 2px 23px 0 #e4e6e9;
    }
        .forums .comment-form-box h3 {
            font-weight: 400;
            margin-bottom: 0;
            font-size: 2.0rem;
            line-height: 1.3;
        }
    .forums.new .photo-upload {
        margin: 1rem 0 2rem 0;
    }
    .forums h6 {
        text-decoration: underline;
        margin: 3rem 0 .5rem 0;
    }

    .forums .post-comments h3 {
        border-bottom: 1px solid #ccc;
        text-transform: uppercase;
    }

    /* Discussion Page - Comment Box */
.k-listview {
    padding: 0 0 2rem 0 !important;
    border: none !important;
    background: none !important;
}
    .forums .post-comments .comment-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid #ccc;
        margin-bottom: 0;
        padding-bottom: .2rem;
    }

        .forums .post-comments .comment-grid div:nth-child(1) {
            font-weight: 400;
            font-size: 1.2rem;
            padding-bottom: .1rem;
        }

        .forums .post-comments .comment-grid div:nth-child(2) {
            font-weight: 400;
            justify-self: end;
            font-size: 1.2rem;
        }
    .forums .post-comments .body {
        font-size: 1.4rem;
        line-height: 1.45;
        margin-top: 1rem;
        padding: 0 .5rem;
    }
    .forums.new .comment-box .static-images {
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
        grid-gap: 1rem;
    }

    .forums .post-comments .comment-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1rem;
    }
    .forums .comment-grid.actions {
        border: none;
        margin: 1.5rem 0 0 -1rem;
        font-size: 1.2rem;
        grid-template-columns: max-content max-content max-content max-content;
        justify-content: end;
    }
        .forums .comment-grid.actions.is-staff {
            grid-template-columns: max-content max-content max-content max-content max-content;
        }
    .forums .post-comments .comment-grid div:nth-child(1) {
        font-weight: 400;
        font-size: 1.2rem;
        padding-bottom: .1rem;
    }
        .forums .comment-grid.actions > div {
            color: var(--accent-color) !important;
            cursor: pointer;
            padding: .3rem 1rem;
            border-radius: .3rem;
            margin-top: 1rem;
        }
    .forums .comment-grid.actions .like-comment {
        justify-self: flex-start;
    }
    .forums .comment-grid.actions > div > span {
        margin: -.1rem .5rem 0 0;
        color: var(--accent-color);
    }

    .forums #comment-list.k-listview {
        border: none;
    }

    .forums .comment-box .body {
        color: #000;
    }

        .forums .comment-box .body .quote {
            font-size: 1.6rem;
            margin: 0 0 1rem 0;
            font-size: 1.2rem;
            border: 1px solid #ddd;
            padding: .7rem 1rem;
            background-color: #eaeaea;
            margin: 0 1rem .7rem 1rem;
        }

            .forums .comment-box .body .quote h6 {
                margin: 0 0 .5rem 0;
                text-decoration: none;
                font-style: italic;
                font-weight: 500;
                padding: 0;
            }

    .forums .comment-box .reply-area .quote {
        font-size: 1.6rem;
        margin: 0 0 1rem 0;
        font-size: 1.2rem;
        border: 1px solid #ddd;
        padding: .7rem 1rem;
        background-color: #eaeaea;
    }

        .forums .comment-box .reply-area .quote h6 {
            margin: 0 0 5px 0;
            text-decoration: none;
            font-style: italic;
            padding: 0;
        }

    .forums .comment-grid.actions {
        border: none;
    }

    .forums .comment-grid.actions {
        border: none;
        margin: 1.5rem 0 0 -1rem;
        font-size: 1.2rem;
        grid-template-columns: max-content max-content max-content max-content;
        justify-content: end;
    }

        .forums .comment-grid.actions.is-staff {
            grid-template-columns: max-content max-content max-content max-content max-content;
        }

        .forums .comment-grid.actions > div {
            color: var(--accent-color) !important;
            cursor: pointer;
            padding: .3rem 1rem;
            border-radius: 3px;
            margin-top: 1rem;
        }

            .forums .comment-grid.actions > div:hover {
                background-color: #e8e8e8;
            }

        .forums .comment-grid.actions .like-comment {
            justify-self: flex-start;
        }

            .forums .comment-grid.actions .like-comment span:hover {
                color: var(--accent-color);
            }

            .forums .comment-grid.actions .like-comment:hover {
                background-color: transparent;
            }

        .forums .comment-grid.actions > div > span {
            margin-right: .5rem;
            color: var(--accent-color);
        }

    .forums .reply-area {
        border: 1px solid #ccc;
        margin-bottom: 0;
        margin: 0 0 2.5rem .3rem;
        padding: .5rem 1.5rem;
        box-shadow: 0 .2rem 1rem 0 #e4e6e9;
    }

        .forums .reply-area blockquote {
            margin: 0 .5rem 1rem 1rem;
            font-size: 1.2rem;
            border: 1px solid #ddd;
            padding: .7rem 1rem;
            background-color: #eaeaea;
        }

        .forums .reply-area button.reply-btn {
            border-radius: .3rem;
            margin: 1rem .5rem 1rem 0;
        }

        .forums .reply-area .cancel-reply {
            color: var(--accent-color);
            cursor: pointer;
            font-weight: 500;
        }

        .forums .reply-area .quote-area {
            border: 1px solid rgba(0,0,0,0.06);
            border-bottom: none;
            padding: .5rem;
            background-color: #f6f6f6;
        }

            .forums .reply-area .quote-area h6 {
                margin: 0 0 0 10px;
                text-decoration: none;
                font-style: italic;
                padding: .3rem .3rem 0 .3rem;
            }

        .forums .reply-area h3 {
            border: none;
            margin: .5rem 0 .5rem;
            font-size: 1.4rem;
            text-transform: uppercase;
        }

.forums .comment-box {
    display: grid;
    grid-template-columns: 1.5rem 1fr;
    border: 1px solid #d8d8d8;
    padding: 1rem 1rem 0 0;
    background-color: #fff;
    margin: 1.5rem 0 0 .7rem;
}

        .forums .comment-box .comment-box {
            background-color: #f8f8f8;
        }

        .forums .comment-box .comment-box .comment-box {
            background-color: #fff;
        }

            .forums .comment-box .comment-box .comment-box .comment-box {
                background-color: #f8f8f8;
            }

                .forums .comment-box .comment-box .comment-box .comment-box .comment-box {
                    background-color: #fff;
                }

                    .forums .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box {
                        background-color: #f8f8f8;
                    }

                        .forums .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box {
                            background-color: #fff;
                        }

                            .forums .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box {
                                background-color: #f8f8f8;
                            }

    .forums .comment-box > div:nth-child(1) {
        cursor: pointer;
        padding-bottom: 0;
        margin-left: -1.9rem;
        margin-top: -1.1rem;
    }

    .forums .comment-box .box {
        padding: 0;
        border: none;
        box-shadow: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .forums .comment-box .comment-bar > div {
        background-color: #ccc;
        width: 2px;
        margin: 0 auto;
        height: 100%;
        transition: all var(--transition-duration);
    }

    .forums .comment-box .expand-bar {
        display: none;
        transition: all var(--transition-duration);
        margin-top: 0px;
        margin-left: -2.2rem;
    }

    .forums .comment-box .comment-bar:hover > div {
        background-color: var(--accent-color);
        transition: all var(--transition-duration);
    }

    .forums .comment-box.collapsed {
        padding: 1rem 2.5rem 0 1.5rem;
        background-color: #efefef;
    }

        .forums .comment-box.collapsed .comment-bar {
            display: none;
        }

        .forums .comment-box.collapsed .comment-grid div:nth-child(1) {
            margin-left: -1rem;
        }

        .forums .comment-box.collapsed .comment-grid {
            border: none;
        }

            .forums .comment-box.collapsed .comment-grid.actions {
                display: none;
            }

        .forums .comment-box.collapsed .body {
            display: none;
        }

        .forums .comment-box.collapsed .sub-comments {
            display: none;
        }

        .forums .comment-box.collapsed .reply-area {
            display: none;
        }

        .forums .comment-box.collapsed .static-images {
            display: none;
        }

        .forums .comment-box.collapsed .expand-bar {
            display: block;
            cursor: pointer;
            margin-top: .1rem;
        }

            .forums .comment-box.collapsed .expand-bar:hover {
                color: var(--accent-color);
                transition: all var(--transition-duration);
            }

.forums .sub-comments {
    padding: 10px 0 0 0;
    margin-right: -1.1rem;
}

.forums #comment-list {
    min-height: 10rem;
}

/* Images */
.forums .post-wrapper .discussion-images {
    margin-top: 2.5rem;
}
.forums .post-wrapper .discussion-images .static-images.small {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: center;
    grid-gap: 1rem;
}
.forums .post-wrapper .discussion-images .static-images.small > div {
    border: 1px solid #ccc;
    display: flex;
    padding: 1.5rem;
    box-shadow: rgb(169 169 169) 0px 2px 23px 0px;
    max-height: 35rem;
}
    .forums .post-wrapper .discussion-images .static-images.small > div > img {
        object-fit: cover;
        max-width: 100%;
        cursor: pointer;
    }
.forums .comment .static-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: center;
    grid-gap: 1rem;
    margin-top: 2.5rem;
}

        .forums .comment .static-images > div {
            border: 1px solid #ccc;
            display: flex;
            padding: 1.5rem;
            box-shadow: rgb(169 169 169) 0px 2px 23px 0px;
            max-height: 35rem;
        }

            .forums .comment .static-images > div > img {
                object-fit: cover;
                max-width: 100%;
                cursor: pointer;
            }

/* Image Viewer */
.forums.discussion {
    position: relative;
}

    .forums.discussion #image-viewer {
        height: 100vh;
        width: 100%;
        position: absolute;
        z-index: 1000;
        top: -80px;
        left: 0;
        background-color: #000;
        overflow: hidden;
        transition: 0.5s;
        padding: 2.5rem;
        box-sizing: border-box;
        color: #fff;
    }

        .forums.discussion #image-viewer #close-dialog {
            position: absolute;
            font-size: 3.6rem;
            right: 2rem;
            background-color: rgba(1,1,1,.9);
            padding: 1rem 2rem;
            cursor: pointer;
            margin-top: -1.5rem;
        }

        .forums.discussion #image-viewer .image {
            display: flex;
            width: 100%;
            align-content: center;
            justify-content: center;
        }

        .forums.discussion #image-viewer img {
            max-height: calc(100vh - 4rem);
            max-width: 100%;
            align-self: center;
        }
        .forums.discussion #image-viewer .k-i-close {
            font-size: 3.8rem;
        }


    .forums .pin-to-top.pinned {
        color: #fa0000;
    }
    .forums .pin-to-top.k-i-pin {
        font-size: 2.2rem;
    }

@media (max-width: 767px) {

}
@media (max-width: 550px) {
    .forums .post-list .post-list-item-grid.cats {
        grid-template-columns: 1fr 1px 5rem;
    }
    .forums .latest-posts-header-grid {
        grid-template-columns: 1fr;
    }
    .forums h2 {
        font-size: 1.8rem;
        font-weight: 400;
    }
    .forums #create-discussion {
        width: 100%;
        display: block;
    }
    .forums .latest-posts-header-grid div:nth-child(2) {
        justify-self:stretch; 
    }
    .forums .search-query-container {
        margin-bottom: 1rem;
    }
        .forums .search-query-container input,
        .forums .search-query-container button {
            margin-bottom: 1rem;
            height: 5.5rem;
        }
    .forums .post-list .post-list-item-grid.pinned div:nth-child(1) {
        grid-column: 1/5;
        margin-bottom: 1.5rem;
    }
    .forums .post-list .post-list-item-grid.pinned div:nth-child(2) {
        grid-column: 1/3;
    }
    .forums .post-list .post-list-item-grid div:nth-child(1) {
        grid-column: 1/4;
        margin-bottom: 1.5rem;
    }
    .forums .post-list .post-list-item-grid div:nth-child(2) {
        grid-column: 2/3;
    }
    .forums .post-list h3 {
        font-size: 1.6rem;
    }
    .forums .post-wrapper {
        margin: 0 -2.5rem;
    }
    .forums .photo-upload .k-file-name-size-wrapper {
        display: block !important;
    }
    .forums .photo-upload .image-preview {
        width: initial;
        max-width: 100%;
        height: initial;
        object-fit: cover;
    }
    .forums .photo-upload .k-file-name-size-wrapper img {
        height: initial;
    }
    .forums .photo-upload .k-upload .k-upload-files {
        max-height: initial;
    }
    .forums .comment-form-box {
        margin: 2rem -2.5rem;
    }
    .forums  #comment-section {
        margin: 0 -2.5rem;
    }
    .forums .comment-box {
        grid-template-columns: .5rem 1fr;
    }
    .forums .comment-box > div:nth-child(1) {
        margin-left: -.9rem;
    }
    .forums .post-comments h3 {
        padding-left: .5rem;
    }
    .forums .post-wrapper .discussion-images .static-images.small {
        grid-template-columns: 1fr 1fr;
    }
        .forums .post-wrapper .discussion-images .static-images.small > div {
            padding: .75rem;
            box-shadow: rgb(169 169 169) 0px 2px 15px 0px;
        }
    .forums .comment .static-images {
        grid-template-columns: 1fr 1fr;
    }
        .forums .comment .static-images > div {
            padding: .75rem;
            box-shadow: rgb(169 169 169) 0px 2px 15px 0px;
        }
    .forums.discussion #image-viewer #close-dialog {
        padding: 0 1rem;
    }
    .forums.discussion #image-viewer .k-i-close {
        font-size: 2.4rem;
    }
    .forums.discussion #image-viewer .image {
        margin-top: 5rem;
    }
}



/* forums */
        /*.forums {
    background-color: #fff;
}

.latest-posts {
    padding: 115px 0;
}

.latest-posts-header-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

    .latest-posts-header-grid div:nth-child(2) {
        text-align: right;
    }

.latest-posts h1 {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 50px;
}


.post-list {
    box-shadow: 0 2px 23px 0 #e4e6e9;
}

    .post-list .post-list-item {
        padding: 25px 30px;
        border: 1px solid #fff;
        border-bottom: 1px solid #e4e6e9;
        transition: all .25s;
    }

        .post-list .post-list-item:hover {
            border: 1px solid var(--accent-color) !important;
            transition: all .25s;
        }

        .post-list .post-list-item.pinned:hover {
            border-left: 3px solid var(--accent-color) !important;
            transition: all .25s;
        }

        .post-list .post-list-item.pinned {
            padding: 25px 28px;
            border-left: 3px solid var(--accent-color);
        }

    .post-list .post-list-item-grid {
        cursor: pointer;
        display: grid;
        grid-template-columns: 1fr 75px 75px;
        align-items: center;
    }

        .post-list .post-list-item-grid.pinned {
            grid-template-columns: 1fr 65px 75px 75px;
        }

        .post-list .post-list-item-grid h3 {
            font-size: 18px;
            letter-spacing: 0.6px;
            color: #6b7897;
            font-weight: 700;
            padding-right: 30px;
            margin: 0 0 5px 0;
        }

        .post-list .post-list-item-grid h4 {
            font-size: 14px;
            color: #8c96ab;
            font-weight: 400;
            font-family: 'Roboto';
            margin: 0;
        }

            .post-list .post-list-item-grid h4 span {
                color: #8c96ab;
            }

        .post-list .post-list-item-grid img {
            width: 20px;
        }

        .post-list .post-list-item-grid div.counts {
            font-size: 14px;
            font-weight: 500;
            color: var(--accent-color);
        }

            .post-list .post-list-item-grid div.counts div {
                margin: -17px 0 0 25px;
            }

.forums {
    padding-bottom: 60px;
}

    .forums .hero {
        min-height: 200px;
        max-height: 200px;
    }

        .forums .hero h1 {
            text-align: center;
            padding-top: 70px;
            width: 100%;
        }

    .forums h2 {
        font-size: 24px;
        color: #3c404b;
        padding: 30px 0 0 0;
    }

    .forums h6 {
        text-decoration: underline;
        margin: 30px 0 5px 0;
    }

    .forums input[type=text] {
        border: 1px solid #ccc;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .forums .posting-message {
        text-align: center;
        padding: 20px;
        border: 1px solid var(--accent-color);
        border-radius: 5px;
    }

        .forums .posting-message h1 {
            color: var(--accent-color);
        }

        .forums .posting-message h3 {
            color: var(--accent-color);
        }

    .forums .post-titles {
        margin-bottom: 25px;
    }

        .forums .post-titles h6 {
            text-decoration: none;
            margin-bottom: 0;
            font-size: 14px;
        }

        .forums .post-titles h2 {
            margin: 0;
            color: #3c404b;
            font-weight: 700;
            border-bottom: 1px solid #ccc;
            letter-spacing: 0.5px;
            padding-right: 15px;
            padding-bottom: 5px;
        }

        .forums .post-titles h5 {
            margin-top: 2px;
            font-size: 14px;
            color: #3c404b;
            font-weight: 400;
            letter-spacing: 0.5px;
            font-family: 'Roboto';
        }

    .forums .post-body {
        color: #3c404b;
        line-height: 1.63;
        font-size: 16px;
        overflow-wrap: break-word;
    }

        .forums .post-body img {
            max-width: 100%;
        }

    .forums .post-wrapper {
        padding: 20px 25px 50px 25px;
        box-shadow: 0 2px 23px 0 #e4e6e9;
    }

    .forums .command-grid {
        display: grid;
        grid-template-columns: 30px 1fr 180px;
        margin: 15px 0;
    }

        .forums .command-grid img {
            width: 20px;
            cursor: pointer;
        }

        .forums .command-grid .flag {
            justify-self: end;
            align-self: center;
            font-size: 16px;
        }

        .forums .command-grid .likes {
            cursor: pointer;
        }

    .forums .like-panel {
    }

        .forums .like-panel h6 {
            margin-bottom: 10px;
            text-decoration: none;
        }

    .forums .like-box {
        background-color: var(--accent-color);
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        margin-bottom: 5px;
        line-height: 2.5;
    }

    .forums .comment-form-box {
        margin: 20px 0;
    }

        .forums .comment-form-box h3 {
            font-weight: 400;
            color: #3c404b;
            margin-bottom: 0;
            font-family: Roboto;
        }

        .forums .comment-form-box textarea {
            border: 1px solid #ccc;
            width: 100%;
            padding: 10px 15px;
            font-size: 16px;
            box-sizing: border-box;
        }

    .forums .please-wait {
        border: 1px solid #ccc;
        color: var(--accent-color);
        height: 220px;
        border-radius: 5px;
        margin-bottom: 5px;
        text-align: center;
        font-size: 16px;
    }

        .forums .please-wait div {
            padding-top: 75px;
        }

        .forums .please-wait h1 {
            margin: 0;
            color: var(--accent-color);
            font-weight: 500
        }

        .forums .please-wait h2 {
            margin: 0;
            color: var(--accent-color);
            font-weight: 400;
        }

    .forums .post-comments {
        margin: 30px 0;
    }

        .forums .post-comments h3 {
            border-bottom: 1px solid #ccc;
            font-family: Roboto;
            text-transform: uppercase;
        }

        .forums .post-comments .comment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid #ccc;
            margin-bottom: 10px;
        }

            .forums .post-comments .comment-grid:last-of-type {
                border-bottom: none;
            }

            .forums .post-comments .comment-grid div:nth-child(1) {
                font-weight: 400;
                color: #888;
                font-size: 12px;
                padding-bottom: 1px;
            }

            .forums .post-comments .comment-grid div:nth-child(2) {
                font-weight: 400;
                color: #888;
                justify-self: end;
                font-size: 12px;
            }

        .forums .post-comments .body {
            font-size: 16px;
            margin-bottom: 10px;
            line-height: 1.47;
        }

    .forums .comment-box {
        margin-bottom: 10px;
    }

        .forums .comment-box .box {
            margin-bottom: 10px;
            padding: 20px 25px;
            box-shadow: 0 2px 5px 0 #e4e6e9;
            border: 1px solid #ccc;
        }

    .forums .sub-comments {
        padding: 0 0 0 35px;
    }

    .forums .sub-comment-form textarea {
        border: 1px solid #ccc;
        width: 100%;
        padding: 10px 15px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .forums .comment-please-wait {
        padding: 6px 10px;*/
        /*border: 1px solid var(--accent-color);*/
        /*border-radius: 5px;
        color: var(--accent-color);
        font-weight: 500;
    }

    .forums .comment-box-sub.hilight .box {
        border: 2px solid var(--accent-color);
    }

figcaption {
    font-weight: 500;
    background-color: #3c404b;
    margin-top: -5px;
    color: #fff;
    padding: 5px 10px;
}

figure {
    margin: 0;
}
.forums .search-query-container {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: 1fr 107px;
    margin-bottom: 15px;
}

    .forums .search-query-container input[type="text"] {
        font-size: 1.6rem;
        padding: 10px 15px;
        border-radius: 5px;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

        .forums .search-query-container input[type="text"]:focus {
            border: 2px solid var(--accent-color) !important;
        }

        .forums .search-query-container input[type="text"]::placeholder {
            color: rgba(255, 98, 96, 0.50);
        }

.forums #search-results #search-results,
.forums #search-results #no-results {
    font-size: 16px;
    text-align: center;
}

.forums #search-results .shadow-box {
    border-radius: 0;
    border: none;
    overflow-wrap: break-word;
}

    .forums #search-results .shadow-box:hover {
        border: none;
    }

    .forums #search-results .shadow-box h1 {
        border-bottom: 1px solid #ccc;
        font-size: 20px;
    }

    .forums #search-results .shadow-box a.result-link {
        color: #3c404b;
    }

.forums #show-more {
    width: 300px;
    margin: 30px auto;
}

.forums.new #create-discussion {
    border-radius: 3px;
}

.forums.new .search-query-container button:focus {
    padding: 11px 26px;
    border-radius: 5px;
    margin-left: -6px;
    border: solid 2px #a94645 !important;
}

.forums.new .post-list .post-list-item-grid h5 {
    font-size: 12px;
    color: #8c96ab;
    font-weight: 400;
    margin: 3px 0 0 0;
    font-family: Roboto;
}

.forums.new .post-list .post-list-item {
    border-bottom: 1px solid #e4e6e9;
}

.forums.new .km-list > li {
    padding: 0;
}

.forums.new .post-list .post-list-item-grid div.counts span {
    font-size: 24px;
}

.forums.new .post-list .post-list-item-grid div.counts div {
    margin: -24px 0 0 36px;
    font-size: 14px;
}

.forums.new .command-grid .likes span {
    cursor: pointer;
    color: var(--accent-color);
    font-size: 24px;
    margin-left: 5px;
}

.forums.new .command-grid #like-count {
    color: var(--accent-color);
    font-size: 20px;
    margin: 5px 0 0 5px;
    font-weight: 700;
}

.forums.new input[type="file"] {
    display: block;
}*/
        /*.forums.new .discussion-post input[type="text"] {
    border: none;
    border-bottom: 2px solid #ccc;
}
.forums.new .discussion-post input[type="text"]:focus {
    border: none !important;
    border-bottom: 2px solid #000 !important;
}*/
        /*.forums.new .discussion-post h6 {
    color: #3c404b;
    text-decoration: none;
    margin: 10px 0 5px 0;
}

.forums.new .pin-top {
    margin: 10px 0 20px 0;
}

.forums.new .photo-upload {
    margin: 10px 0 20px 0;
}

.forums.new .post-buttons .btn {
    font-family: Roboto;
    margin-right: 7px;
    border-radius: 5px;
}

.forums.new .photo-upload .image-preview {
    width: 100%;
    max-width: 100px;
    height: 100px;
    object-fit: cover;
}

.forums.new .photo-upload .k-file-name-size-wrapper {
    display: inline-block;
    padding: 10px;
    box-shadow: 0 2px 15px 0 #e4e6e9;
    border: 1px solid #ccc;
    margin: 5px 5px 15px 5px;
}

.forums.new .hint {
    font-size: 12px;
    font-style: italic;
    color: #888;
    margin: 5px 0 25px 5px;
}

.forums.new .validation,
.forums.new .reply-validation {
    font-size: 14px;
    color: #fff;
    background-color: var(--accent-color);
    font-family: Roboto;
    margin: 0 0 20px 0;
    padding: 5px 10px;
    border-radius: 3px;
}

.forums.new .k-form-error {
    font-style: normal;
    margin-top: 5px;
}

.forums.new #discussion-title {
    margin-bottom: 0;
}

.forums.new .forum-message {
    background-color: #20a000;
    color: #fff;
    padding: 10px 15px;
    margin: 0 0 25px 0;
    box-shadow: 0 2px 23px 0 #e4e6e9;
    border: 1px solid #fff;
    font-size: 16px;
    font-family: Roboto;
}

.forums.new .command-grid {
    grid-template-columns: 30px 1fr 1fr;
}

    .forums.new .command-grid .flag {
        color: var(--accent-color);
        font-size: 16px;
        cursor: pointer;
    }

        .forums.new .command-grid .flag > span > span {
            font-family: Roboto;
            font-size: 16px;
            padding-left: 5px;
            font-weight: 600;
        }

.forums.new #post-comment {
    font-family: Roboto;
    margin-right: 7px;
    border-radius: 3px;
}

.forums.new #comment-list.k-listview {
    border: none;
}

.forums.new .comment-box .body {
    color: #000;
}

    .forums.new .comment-box .body .quote {
        font-size: 16px;
        margin: 0 0 10px 0;
        font-size: 12px;
        border: 1px solid #ddd;
        padding: 7px 10px;
        background-color: #eaeaea;
        margin: 0 10px 7px 10px;
    }

        .forums.new .comment-box .body .quote h6 {
            margin: 0 0 5px 0;
            color: #3c404b;
            text-decoration: none;
            font-style: italic;
            padding: 0;
        }

.forums.new .comment-box .reply-area .quote {
    font-size: 16px;
    margin: 0 0 10px 0;
    font-size: 12px;
    border: 1px solid #ddd;
    padding: 7px 10px;
    background-color: #eaeaea;
    margin: 0 10px 7px 10px;
}

    .forums.new .comment-box .reply-area .quote h6 {
        margin: 0 0 5px 0;
        color: #3c404b;
        text-decoration: none;
        font-style: italic;
        padding: 0;
    }

.forums.new .comment-grid.actions {
    border: none;
}

.forums.new .comment-grid.actions {
    border: none;
    margin: 15px 0 0 -10px;
    font-size: 12px;
    grid-template-columns: max-content max-content max-content max-content;
    justify-content: end;
}

    .forums.new .comment-grid.actions.is-staff {
        grid-template-columns: max-content max-content max-content max-content max-content;
    }

    .forums.new .comment-grid.actions > div {
        color: #3c404b !important;
        cursor: pointer;
        padding: 3px 10px;
        border-radius: 3px;
        margin-top: 10px
    }

        .forums.new .comment-grid.actions > div:hover {
            background-color: #e8e8e8;
        }

    .forums.new .comment-grid.actions .like-comment {
        justify-self: flex-start;
    }

        .forums.new .comment-grid.actions .like-comment span:hover {
            color: var(--accent-color);
        }

        .forums.new .comment-grid.actions .like-comment:hover {
            background-color: transparent;
        }

    .forums.new .comment-grid.actions > div > span {
        margin-right: 5px;
        color: var(--accent-color);
    }

.forums.new .reply-area {
    border: 1px solid #ccc;
    margin-bottom: 0;
    margin: 0 0 25px 3px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px 0 #e4e6e9;
}

    .forums.new .reply-area blockquote {
        margin: 0 5px 10px 10px;
        font-size: 12px;
        border: 1px solid #ddd;
        padding: 7px 10px;
        background-color: #eaeaea;
    }

    .forums.new .reply-area button.pink-button {
        border-radius: 3px;
        margin: 10px 5px 10px 0;
    }

    .forums.new .reply-area .cancel-reply {
        color: var(--accent-color);
        cursor: pointer;
        font-weight: 500;
    }

    .forums.new .reply-area .quote-area {
        border: 1px solid rgba(0,0,0,0.06);
        border-bottom: none;
        padding: 5px;
        background-color: #f6f6f6;
    }

        .forums.new .reply-area .quote-area h6 {
            margin: 0 0 0 10px;
            color: #3c404b;
            text-decoration: none;
            font-style: italic;
            padding: 3px 3px 0 3px;
        }

    .forums.new .reply-area h3 {
        border: none;
        margin: 5px 0 5px;
        font-family: Roboto;
        font-size: 14px;
        text-transform: uppercase;
    }

.forums.new .comment-box {
    display: grid;
    grid-template-columns: 15px 1fr;
    padding: 10px 10px 0px 0;*/
        /*box-shadow: 0 2px 5px 0 #e4e6e9;*/
        /*border: 1px solid #eaeaea;
    background-color: #fff;
    margin-left: 7px;
    margin-bottom: 0;
    margin-top: 15px;
}

    .forums.new .comment-box .comment-box {
        background-color: #f8f8f8;
    }

        .forums.new .comment-box .comment-box .comment-box {
            background-color: #fff;
        }

            .forums.new .comment-box .comment-box .comment-box .comment-box {
                background-color: #f8f8f8;
            }

                .forums.new .comment-box .comment-box .comment-box .comment-box .comment-box {
                    background-color: #fff;
                }

                    .forums.new .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box {
                        background-color: #f8f8f8;
                    }

                        .forums.new .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box {
                            background-color: #fff;
                        }

                            .forums.new .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box .comment-box {
                                background-color: #f8f8f8;
                            }

    .forums.new .comment-box > div:nth-child(1) {
        cursor: pointer;
        padding-bottom: 0;
        margin-left: -19px;
        margin-top: -11px
    }

    .forums.new .comment-box .box {
        padding: 0;
        border: none;
        box-shadow: none;
        padding-left: 0px;
        margin-bottom: 0;
    }

    .forums.new .comment-box .comment-bar > div {
        background-color: #ccc;
        width: 2px;
        margin: 0 auto;
        height: 100%;
        transition: all .25s;
    }

    .forums.new .comment-box .expand-bar {
        display: none;
        transition: all .25s;
        margin-top: 0px;
        margin-left: -22px;
    }

    .forums.new .comment-box .comment-bar:hover > div {
        background-color: var(--accent-color);
        transition: all .25s;
    }

    .forums.new .comment-box.collapsed {
        padding: 10px 25px 0 15px;
        background-color: #efefef;
    }

        .forums.new .comment-box.collapsed .comment-bar {
            display: none;
        }

        .forums.new .comment-box.collapsed .comment-grid div:nth-child(1) {
            margin-left: -10px;
        }

        .forums.new .comment-box.collapsed .comment-grid {
            border: none;
        }

            .forums.new .comment-box.collapsed .comment-grid.actions {
                display: none;
            }

        .forums.new .comment-box.collapsed .body {
            display: none;
        }

        .forums.new .comment-box.collapsed .sub-comments {
            display: none;
        }

        .forums.new .comment-box.collapsed .reply-area {
            display: none;
        }

        .forums.new .comment-box.collapsed .static-images {
            display: none;
        }

        .forums.new .comment-box.collapsed .expand-bar {
            display: block;
            cursor: pointer;
            margin-top: 1px;
        }

            .forums.new .comment-box.collapsed .expand-bar:hover {
                color: var(--accent-color);
                transition: all .25s;
            }

.forums.new .sub-comments {
    padding: 10px 0 0 0;
    margin-right: -11px;
}

.forums.new #comment-list {
    min-height: 100px;
}

.forums.new #discussion-list {
    min-height: 100px;
}

.forums.new #no-discussions {
    padding: 20px;
    font-size: 16px;
}

.forums.new .post-list .discussion .post-list-item {
    border-left: 3px solid #000;
}

    .forums.new .post-list .discussion .post-list-item:hover {
        border-left: 3px solid var(--accent-color) !important;
    }

.forums.new .post-list .discussion .post-list-item-grid h3 {
    color: #000;
}

.forums.new .post-list .discussion .post-list-item-grid h4 span {
    color: #000;
}

.forums.new .post-list .discussion.read .post-list-item {
    border-left: 3px solid #ccc;
}

    .forums.new .post-list .discussion.read .post-list-item:hover {
        border-left: 3px solid var(--accent-color) !important;
    }

.forums.new .post-list .discussion.read .post-list-item-grid h3 {
    color: #888;
}

.forums.new .post-list .discussion.read .post-list-item-grid h4 span {
    color: #888;
}

.forums.new .post-list .discussion .post-list-item.pinned {
    border-left: 3px solid var(--accent-color);
}

.forums.new .post-list .discussion.read .post-list-item.pinned {
    border-left: 3px solid #fbcecd;
}

.forums.new .post-list .discussion .post-list-item-grid div.counts {
    color: #3c404a;
}

.forums.new .post-list .discussion.read .post-list-item-grid div.counts {
    color: #888;
}

.forums.new .post-list .discussion .post-list-item-grid div.counts.pin {
    color: var(--accent-color);
}

.forums.new .post-list .discussion.read .post-list-item-grid div.counts.pin {
    color: #fbcecd;
}

.k-window .k-textbox {
    border: 1px solid #ccc !important;
}

.forums.new .post-wrapper .image-grid {
    display: grid;
    grid-template-columns: 1fr max-content max-content max-content;
    justify-content: end;
    border-bottom: 1px solid #ccc;
    margin: 25px 0 5px 0;
}

    .forums.new .post-wrapper .image-grid h2 {
        font-size: 18px;
        margin: 0 0 5px 0;
    }

    .forums.new .post-wrapper .image-grid div {
        margin-left: 5px;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 3px;
        margin-bottom: 3px;
    }

        .forums.new .post-wrapper .image-grid div.active {
            background-color: #e8e8e8;
        }

        .forums.new .post-wrapper .image-grid div:hover {
            background-color: #e8e8e8;
        }

        .forums.new .post-wrapper .image-grid div > span {
            margin-right: 5px;
            color: var(--accent-color);
        }

        .forums.new .post-wrapper .image-grid div > span {
            margin-right: 5px;
            color: var(--accent-color);
        }

.forums.new .post-wrapper .discussion-images .images img {
    max-width: 100%;
}

.forums.new .post-wrapper .discussion-images .image-slide {
    min-height: 700px;
    background-position: center center !important;
    background-size: cover !important;
}

.forums.new .post-wrapper .discussion-images .owl-carousel {
    position: relative;
}

.forums.new .post-wrapper .discussion-images .owl-nav {
    font-size: 100px;
    color: #fff;
    font-family: Lato;
}

    .forums.new .post-wrapper .discussion-images .owl-nav button {
        position: absolute;
        bottom: 50%;
    }

        .forums.new .post-wrapper .discussion-images .owl-nav button > span:hover {
            color: var(--accent-color);
            transition: all .25s;
        }

        .forums.new .post-wrapper .discussion-images .owl-nav button:focus {
            border: none !important;
        }

        .forums.new .post-wrapper .discussion-images .owl-nav button:focus {
            border: none !important;
        }

        .forums.new .post-wrapper .discussion-images .owl-nav button:nth-child(2) {
            right: 0;
        }

.forums.new .post-wrapper .discussion-images .owl-dots {
    margin-top: 10px;
}

.forums.new .post-wrapper .discussion-images .static-images {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

    .forums.new .post-wrapper .discussion-images .static-images.small {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-content: center;
    }

        .forums.new .post-wrapper .discussion-images .static-images.small > div {
            border: 1px solid #ccc;
            display: flex;
            padding: 15px;
            box-shadow: rgb(169, 169, 169) 0px 2px 23px 0px;
            max-height: 350px;
        }

            .forums.new .post-wrapper .discussion-images .static-images.small > div > img {
                object-fit: cover;
            }

    .forums.new .post-wrapper .discussion-images .static-images img {
        max-width: 100%;
        cursor: pointer;
        object-fit: cover;
    }

.forums.new.discussion {
    position: relative;
}

    .forums.new.discussion #image-viewer {
        height: 100vh;
        width: 100%;
        position: absolute;
        z-index: 1000;
        top: -95px;
        left: 0;
        background-color: #000;
        overflow: hidden;
        transition: 0.5s;
        padding: 25px;
        box-sizing: border-box;
        color: #fff;
    }

        .forums.new.discussion #image-viewer #close-dialog {
            position: absolute;
            font-size: 36px;
            right: 20px;
            background-color: rgba(1,1,1,.9);
            padding: 10px 20px;
            font-family: 'Lato';
            cursor: pointer;
            margin-top: -15px;
        }

        .forums.new.discussion #image-viewer .image {
            display: flex;
            width: 100%;
            align-content: center;
            justify-content: center;
        }

        .forums.new.discussion #image-viewer img {
            max-height: calc(100vh - 40px);
            max-width: 100%;
            align-self: center;
        }

.forums.new .post-titles h2 span {
    text-align: right;
    color: #ff0000;
    cursor: pointer;
}

.forums.new .comment-box .static-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: center;
    grid-gap: 10px;
}

    .forums.new .comment-box .static-images > div {
        border: 1px solid #ccc;
        display: flex;
        padding: 15px;
        box-shadow: rgb(169, 169, 169) 0px 2px 10px 0px;
        cursor: pointer;
        max-height: 350px;
    }

    .forums.new .comment-box .static-images img {
        max-width: 100%;
        object-fit: cover;
    }

.forums.new .new-badge {
    background-color: #0277ff;
    font-size: 10px;
    color: #fff !important;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 1px;
    font-weight: 400;
    border-radius: 10px;
}

.forums.new .no-results {
    padding: 10px 15px;
    font-size: 16px;
}

.forums.new .post-list .post-list-item-grid div.counts {
    color: #3c404a;
}

.forums.new .post-comments .k-pager-wrap {
    margin-top: 20px;
}

.forums.new .k-listview-content {
    overflow: hidden;
}

.forums.new .post-list .post-list-item-grid.cats {
    grid-template-columns: 1fr 1px 80px;
    align-items: center;
}

    .forums.new .post-list .post-list-item-grid.cats > div:nth-child(1) {
        grid-column: initial;
        margin-bottom: 0;
    }

    .forums.new .post-list .post-list-item-grid.cats > div:nth-child(2) {
        grid-column: initial;
    }

    .forums.new .post-list .post-list-item-grid.cats > div:nth-child(3) {
        grid-column: initial;
    }
.forums .hero {
    min-height: 110px;
    max-height: 110px;
}
    .forums .hero h1 {
        padding-top: 30px;
        color: #fff;
    }

.forums h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.forums .post-titles h2 {
    white-space: normal;
    overflow: auto;
    text-overflow: unset;
    font-size: 16px;
    padding: 0;
}

.forums .post-titles h5 {
    font-size: 12px;
}

.forums .post-wrapper {
    padding: 20px 15px;
}

.forums .post-body {
    line-height: 1.45;
    font-size: 14px;
}

.forums .comment-box .box {
    margin-bottom: 0px;
    padding: 15px;
}

.forums .comment-box-sub {
    margin-top: 5px;
}

.forums .post-comments .body {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 10px;
}

.forums .post-comments .comment-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
}

    .forums .post-comments .comment-grid div:nth-child(2) {
        justify-self: end;
    }

.forums .sub-comments {
    padding: 0 0 0 20px;
}

.forums .wrapper.sm {
    padding: 0 15px;
}

.forums.new .post-list.wrapper.sm {
    padding: 0 3px;
}

.forums.new .post-list .post-list-item {
    padding: 15px 15px;
}

.forums.new .post-list .discussion .post-list-item.pinned {
    border-left: 5px solid var(--accent-color);
}

.forums.new .post-list .discussion.read .post-list-item.pinned {
    border-left: 5px solid #fbcecd;
}

.forums.new .post-list .discussion.read .post-list-item {
    border-left: 5px solid #ccc;
}

.forums.new .post-list .discussion .post-list-item {
    border-left: 5px solid #000;
}

.staff {
    font-size: 11px;
    padding: 1px 5px;
    font-weight: 400;
}

.forums .pink-button.create {
    padding: 10px 20px;
}

.forums.new .pink-button.create {
    display: block;
    padding: 15px 20px;
}

.forums.new .post-list .post-list-item {
    padding: 20px;
}

    .forums.new .post-list .post-list-item.pinned {
        padding: 20px 17px;
    }

        .forums.new .post-list .post-list-item.pinned .post-list-item-grid div:nth-child(2) {
            grid-column: 1/2;
        }


.forums.new .post-list .post-list-item-grid.cats div:nth-child(2) {
    grid-column: auto;
}

.join-fan-cult h1 {
    padding: 40px 0 20px 0;
    font-size: 20px;
}

.join-fan-cult h2 {
    font-size: 16px;
    font-weight: 700;
}
.forums.new .wrapper.sm.discussion {
    padding: 0 3px;
}

.forums.new .photo-upload .k-file-name-size-wrapper {*/
        /*    display: block;
    width: 85%;*/
        /*}

.forums.new .photo-upload .image-preview {
    width: initial;
    max-width: 15rem;
    height: initial;
}

.forums.new .post-wrapper .image-grid > div:nth-child(3) {
    display: none;
}

.forums.new .post-wrapper .discussion-images .image-slide {
    min-height: 350px;
}

.forums.new .post-wrapper .discussion-images .owl-nav button {
    position: absolute;
    bottom: 42%;
}

.forums.new .post-comments h3 {
    padding-left: 15px;
}

.forums.new #comment-section {
    margin: 0 -15px;
}

.forums.new .comment-box {
    grid-template-columns: 5px 1fr;
}

    .forums.new .comment-box > div:nth-child(1) {
        margin-left: -10px;
    }

    .forums.new .comment-box.collapsed {
        padding: 5px 25px 0 15px;
    }

        .forums.new .comment-box.collapsed .expand-bar {
            margin-top: -1px;
        }

    .forums.new .comment-box .body {
        padding: 0 5px;
    }

.forums.new.discussion #image-viewer #close-dialog {
    padding: 5px 5px;
}

.forums.new .comment-box .static-images {
    grid-template-columns: 1fr;
}

    .forums.new .comment-box .static-images > div {
        padding: 7px;
        max-height: initial;
        display: block;
    }

        .forums.new .comment-box .static-images > div img {
            max-width: 100%;
            object-fit: initial;
        }
@media (max-width: 320px) {
    .forums.new .post-wrapper .image-grid > div {
        display: none;
    }
}*/