/* =========================================
   CATEGORY - DROPMMS STYLE
   ========================================= */

.vf-category {
    margin-bottom: 24px;

    background: #ffffff;

    border: 1px solid #e1e6eb;
    border-radius: 5px;

    overflow: hidden;
}


/* Blue category header */

.vf-category-title {
    min-height: 59px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 28px;

    background: #1d6fa5;
    color: #ffffff;
}


.vf-category-title-text {
    min-width: 0;
}


.vf-category-title a {
    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    text-decoration: none;
}


.vf-category-description {
    display: none;
}


/* Collapse arrow */

.vf-category-toggle {
    display: flex;
    align-items: center;

    margin-left: 20px;
}


.vf-category-toggle img {
    width: 20px;
    height: 20px;

    object-fit: contain;

    opacity: 0.55;

    cursor: pointer;
}



/* =========================================
   FORUM ROW
   ========================================= */

.vf-forum-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        105px
        minmax(250px, 290px);

    gap: 20px;

    align-items: center;

    min-height: 140px;

    padding: 28px 30px;

    background: #ffffff;

    border-bottom: 1px solid #edf0f3;
}


.vf-forum-row:last-child {
    border-bottom: 0;
}



/* =========================================
   LEFT FORUM INFORMATION
   ========================================= */

.vf-forum-main {
    display: flex;
    align-items: center;

    min-width: 0;

    gap: 26px;
}



/* Forum thumbnail */

.vf-forum-thumb {
    width: 72px;
    height: 72px;

    flex: 0 0 72px;

    border-radius: 5px;

    background: #e5ebf1;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/*
   We don't need MyBB's old
   online/offline forum icon.
*/

.vf-forum-thumb .forum_status {
    display: none;
}



/* Forum title + description */

.vf-forum-info {
    min-width: 0;
}


.vf-forum-name {
    display: inline-block;

    margin-bottom: 4px;

    color: #131821;

    font-size: 21px;
    font-weight: 400;

    line-height: 1.25;

    text-decoration: none;
}


.vf-forum-name:hover {
    color: #1d6fa5;
}


.vf-forum-description {
    max-width: 620px;

    color: #70809a;

    font-size: 15px;
    line-height: 1.55;
}


.vf-forum-description a {
    color: #70809a;
}



/* =========================================
   POSTS
   ========================================= */

.vf-forum-post-count {
    text-align: center;

    color: #151922;
}


.vf-forum-post-count strong {
    display: block;

    font-size: 21px;
    font-weight: 400;

    line-height: 1.1;
}


.vf-forum-post-count span {
    display: block;

    margin-top: 4px;

    color: #728097;

    font-size: 14px;
}



/* =========================================
   LAST POST
   ========================================= */

.vf-forum-lastpost {
    min-width: 0;

    color: #71809a;

    font-size: 14px;

    line-height: 1.45;
}


.vf-forum-lastpost a {
    color: #151922;

    text-decoration: none;
}


.vf-forum-lastpost a:hover {
    color: #1d6fa5;
}


.vf-forum-lastpost strong {
    font-weight: 400;
}



/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 850px) {

    .vf-forum-row {
        grid-template-columns: 1fr;

        gap: 16px;

        padding: 22px 20px;
    }


    .vf-forum-post-count {
        text-align: left;

        padding-left: 98px;
    }


    .vf-forum-post-count strong,
    .vf-forum-post-count span {
        display: inline;
    }


    .vf-forum-post-count strong {
        margin-right: 4px;
    }


    .vf-forum-lastpost {
        padding-left: 98px;
    }

}



@media (max-width: 550px) {

    .vf-category-title {
        min-height: 52px;

        padding: 0 16px;
    }


    .vf-category-title a {
        font-size: 16px;
    }


    .vf-forum-row {
        padding: 20px 15px;
    }


    .vf-forum-main {
        align-items: flex-start;

        gap: 15px;
    }


    .vf-forum-thumb {
        width: 62px;
        height: 62px;

        flex-basis: 62px;
    }


    .vf-forum-name {
        font-size: 18px;
    }


    .vf-forum-description {
        font-size: 14px;
    }


    .vf-forum-post-count,
    .vf-forum-lastpost {
        padding-left: 77px;
    }

}* =========================================
   DROPMMS STYLE - LAST POST
   ========================================= */

.vf-lastpost-inner {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 0;
}


/* Temporary avatar until our helper plugin is added */

.vf-lastpost-avatar {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 50%;
    overflow: hidden;

    background: #edf1f5;
}

.vf-avatar-placeholder {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background: #d8dee8;
}


/* Text area */

.vf-lastpost-details {
    min-width: 0;
    flex: 1;
}


.vf-lastpost-title {
    display: block;

    overflow: hidden;

    color: #151922 !important;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.35;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.vf-lastpost-title:hover {
    color: #1d6fa5 !important;
}


.vf-lastpost-meta {
    margin-top: 3px;

    color: #74839c;

    font-size: 14px;
    line-height: 1.35;
}


.vf-lastpost-user a {
    color: #e6538a !important;
}


.vf-lastpost-user a:hover {
    text-decoration: underline;

    min-height: 112px;
    padding: 20px 24px;

    grid-template-columns:
        minmax(0, 1fr)
        90px
        minmax(230px, 280px);

    gap: 18px;
}


/* Left forum area */

.vf-forum-main {
    gap: 20px;
}

.vf-forum-thumb {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
}


/* Forum title */

.vf-forum-name {
    font-size: 17px !important;
    line-height: 1.3;
    margin-bottom: 3px;
}


/* Forum description */

.vf-forum-description {
    font-size: 13px !important;
    line-height: 1.45;
    color: #71809a;
}


/* Posts count */

.vf-forum-post-count strong {
    font-size: 17px;
}

.vf-forum-post-count span {
    font-size: 12px;
    margin-top: 2px;
}


/* Latest post */

.vf-lastpost-title {
    font-size: 13px;
}

.vf-lastpost-meta {
    font-size: 12px;
}

.vf-lastpost-avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
}


/* Mobile gets slightly larger text for readability */

@media (max-width: 600px) {

    .vf-category-title {
        min-height: 54px;
        padding: 0 16px;
    }

    .vf-category-title a {
        font-size: 17px;
    }

    .vf-forum-name {
        font-size: 18px !important;
    }

    .vf-forum-description {
        font-size: 14px !important;
        line-height: 1.5;
    }

    .vf-forum-row {
        padding: 20px 16px;
    }

    .vf-forum-thumb {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }
}/* =========================================
   DROPMMS - COMPACT DESKTOP SIZE
   ========================================= */

.vf-category-title {
    min-height: 44px !important;
    padding: 0 18px !important;
}

.vf-category-title a {
    font-size: 14px !important;
}


/* Forum row */

.vf-forum-row {
    min-height: 0 !important;
    height: auto !important;

    padding: 14px 20px !important;

    grid-template-columns:
        minmax(0, 1fr)
        80px
        minmax(210px, 260px);

    gap: 15px !important;
}


/* Forum thumbnail */

.vf-forum-main {
    gap: 16px !important;
}

.vf-forum-thumb {
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px !important;
}


/* Forum name */

.vf-forum-name {
    color: #171717 !important;

    font-size: 15px !important;
    font-weight: 400 !important;

    line-height: 1.25 !important;

    margin-bottom: 2px !important;
}

.vf-forum-name:hover {
    color: #1d6fa5 !important;
}


/* Description */

.vf-forum-description {
    font-size: 12px !important;
    line-height: 1.4 !important;

    color: #718096 !important;
}


/* Post count */

.vf-forum-post-count strong {
    font-size: 15px !important;
}

.vf-forum-post-count span {
    font-size: 11px !important;
}


/* Latest post */

.vf-lastpost-title {
    font-size: 12px !important;
}

.vf-lastpost-meta {
    font-size: 11px !important;
}

.vf-lastpost-avatar {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
}/* =========================================
   DYNAMIC FORUM THUMBNAIL
   Latest thread featured image
   ========================================= */

.vf-forum-thumb-wrap {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;

    overflow: hidden;
    border-radius: 4px;
    background: #e5ebf1;
}

.vf-forum-thumb-wrap img.vf-forum-thumb {
    display: block !important;

    width: 54px !important;
    height: 54px !important;

    max-width: none !important;

    object-fit: cover !important;
    object-position: center !important;

    border: 0 !important;
    border-radius: 4px !important;
}


/* Mobile - slightly larger like DropMMS */

@media (max-width: 600px) {

    .vf-forum-thumb-wrap {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .vf-forum-thumb-wrap img.vf-forum-thumb {
        width: 62px !important;
        height: 62px !important;
    }

}/* =========================================
   FORUM PAGE - THREAD GALLERY
   MOBILE FIRST
   ========================================= */

.vf-threadlist {
    width: 100%;
}


/* =========================================
   TOP TOOLBAR
   ========================================= */

.vf-threadlist-toolbar {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 12px;
}


.vf-thread-pagination {
    min-width: 0;
}


/* Existing MyBB New Thread button */

.vf-thread-newtopic {
    width: 100%;
}

.vf-thread-newtopic a {
    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 46px;

    padding: 10px 18px !important;

    background: #1689cf !important;

    color: #ffffff !important;

    border: 0 !important;
    border-radius: 4px !important;

    font-size: 15px !important;
    font-weight: 500 !important;

    text-decoration: none !important;

    box-shadow: none !important;
}


/* =========================================
   SORT BAR
   ========================================= */

.vf-threadlist-controls {
    display: flex;

    justify-content: space-between;
    align-items: center;

    min-height: 48px;

    padding: 8px 10px;

    margin-bottom: 10px;

    background: #ffffff;

    border: 1px solid #e1e5ea;
}


.vf-thread-page-info {
    color: #525d6d;

    font-size: 13px;
}


.vf-thread-sort select {
    min-height: 34px;

    padding: 5px 9px;

    background: #ffffff;

    border: 1px solid #dfe3e8;
    border-radius: 4px;

    color: #111827;

    font-size: 12px;
}


/* =========================================
   THREAD GRID
   DEFAULT = MOBILE
   ========================================= */

.vf-thread-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    align-items: start;
}


/* =========================================
   THREAD CARD
   ========================================= */

.vf-thread-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe4e9;
}


/* =========================================
   FEATURE IMAGE - EXACT 3:4
   ========================================= */

.vf-thread-image-link {
    display: block;

    width: 100%;

    text-decoration: none;
}


.vf-thread-image {
    position: relative;

    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #e8edf2;
}


.vf-thread-image .vf-thread-featured-image {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;
    object-position: center !important;

    border: 0 !important;
}


/* =========================================
   THREAD INFORMATION
   ========================================= */

.vf-thread-card-content {
    padding: 9px 9px 10px;
}


.vf-thread-prefix {
    margin-bottom: 4px;

    font-size: 10px;
}

.vf-thread-prefix:empty {
    display: none;
}


.vf-thread-title {
    display: -webkit-box;

    overflow: hidden;

    min-height: 35px;

    color: #101318 !important;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.35;

    text-decoration: none;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.vf-thread-stats {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 7px;

    color: #4f5967;

    font-size: 11px;
}


/* =========================================
   AUTHOR AREA
   ========================================= */

.vf-thread-author {
    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 58px;

    padding: 8px 9px;

    background: #eaf5fb;
}


.vf-thread-author-avatar {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border-radius: 50%;

    background: #d4dbe3;
}


.vf-thread-author-info {
    min-width: 0;
}


.vf-thread-author-name {
    overflow: hidden;

    font-size: 11px;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.vf-thread-author-name a {
    color: #e6538a !important;
}


.vf-thread-date {
    margin-top: 2px;

    color: #566274;

    font-size: 10px;

    line-height: 1.25;
}


/* =========================================
   BOTTOM AREA
   ========================================= */

.vf-threadlist-bottom {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 16px;
}


.vf-thread-tools {
    clear: both;

    margin-top: 20px;
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 340px) {

    .vf-thread-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   TABLET
   ========================================= */

@media (min-width: 700px) {

    .vf-thread-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 14px;
    }

}


/* =========================================
   SMALL DESKTOP
   ========================================= */

@media (min-width: 950px) {

    .vf-thread-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }


    .vf-threadlist-toolbar {
        flex-direction: row;

        justify-content: space-between;
        align-items: center;
    }


    .vf-thread-newtopic {
        width: auto;
    }


    .vf-thread-newtopic a {
        width: auto;

        min-width: 150px;
    }


    .vf-threadlist-bottom {
        flex-direction: row;

        justify-content: space-between;
        align-items: center;
    }

}


/* =========================================
   LARGE DESKTOP
   ========================================= */

@media (min-width: 1200px) {

    .vf-thread-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

}


@media (min-width: 1450px) {

    .vf-thread-grid {
        grid-template-columns:
            repeat(6, minmax(0, 1fr));
    }

}/* =========================================
   MOBILE FOUNDATION RESET
   ========================================= */

@media (max-width: 699px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow-x: hidden;
    }


    #container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    #content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;

        padding: 12px !important;

        box-sizing: border-box;
    }


    #content > .wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .vf-threadlist,
    .vf-threadlist-toolbar,
    .vf-threadlist-controls,
    .vf-thread-grid,
    .vf-threadlist-bottom {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box;
    }


    /* Two cards per row on normal phones */

    .vf-thread-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }


    .vf-thread-card {
        width: 100% !important;
        min-width: 0 !important;
    }


    /* Exact 3:4 creator-selected featured image */

    .vf-thread-image {
        width: 100% !important;
        aspect-ratio: 3 / 4 !important;
    }


    .vf-thread-image img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }


    /* Start New Topic */

    .vf-thread-newtopic {
        width: 100% !important;
    }


    .vf-thread-newtopic a {
        display: flex !important;

        width: 100% !important;
        min-height: 48px;

        align-items: center;
        justify-content: center;

        background: #1689cf !important;
        color: #ffffff !important;

        border: 0 !important;
        border-radius: 4px !important;

        font-size: 15px !important;
        font-weight: 500 !important;

        text-decoration: none !important;
    }


    /* MyBB normally uses an image for New Thread */
    .vf-thread-newtopic a img {
        display: none !important;
    }


    .vf-thread-newtopic a::after {
        content: "Start new topic";
    }


    /* We only need one big button on mobile */

    .vf-threadlist-bottom .vf-thread-newtopic {
        display: none !important;
    }

}/* =========================================
   HOMEPAGE / CATEGORY FORUM ROWS
   MOBILE FIX
   ========================================= */

@media (max-width: 699px) {

    .vf-category {
        width: 100% !important;
        margin-bottom: 18px !important;
    }

    .vf-category-title {
        min-height: 54px !important;
        padding: 0 16px !important;
    }

    .vf-category-title a {
        font-size: 16px !important;
    }


    /* Main forum row */

    .vf-forum-row {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            72px !important;

        grid-template-areas:
            "main last"
            "count last";

        column-gap: 10px !important;
        row-gap: 5px !important;

        width: 100% !important;
        min-width: 0 !important;

        padding: 16px 14px !important;

        min-height: 0 !important;
        height: auto !important;
    }


    /* Thumbnail + forum text */

    .vf-forum-main {
        grid-area: main;

        display: flex !important;
        align-items: flex-start !important;

        width: 100% !important;
        min-width: 0 !important;

        gap: 14px !important;
    }


    .vf-forum-thumb-wrap {
        width: 62px !important;
        height: 62px !important;

        flex: 0 0 62px !important;

        overflow: hidden;

        border-radius: 5px;
    }


    .vf-forum-thumb-wrap img.vf-forum-thumb {
        display: block !important;

        width: 62px !important;
        height: 62px !important;

        object-fit: cover !important;
        object-position: center !important;

        border-radius: 5px !important;
    }


    /* Forum title/description */

    .vf-forum-info {
        flex: 1 1 auto !important;

        width: auto !important;
        min-width: 0 !important;
    }


    .vf-forum-name {
        display: block !important;

        margin: 1px 0 4px !important;

        color: #171717 !important;

        font-size: 17px !important;
        font-weight: 500 !important;

        line-height: 1.3 !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
    }


    .vf-forum-description {
        width: 100% !important;
        max-width: none !important;

        color: #718096 !important;

        font-size: 13px !important;
        line-height: 1.45 !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
    }


    /* Posts count underneath the left section */

    .vf-forum-post-count {
        grid-area: count;

        width: 62px !important;

        padding: 0 !important;
        margin: 0 !important;

        text-align: center !important;
    }


    .vf-forum-post-count strong,
    .vf-forum-post-count span {
        display: inline !important;

        color: #718096 !important;

        font-size: 12px !important;
        font-weight: 400 !important;
    }


    /* Latest post on right */

    .vf-forum-lastpost {
        grid-area: last;

        width: 72px !important;
        min-width: 0 !important;

        padding: 0 !important;
        margin: 0 !important;

        align-self: center;

        text-align: center;
    }


    .vf-lastpost-inner {
        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        gap: 4px !important;
    }


    .vf-lastpost-avatar {
        width: 42px !important;
        height: 42px !important;

        flex: 0 0 42px !important;
    }


    .vf-lastpost-details {
        width: 100% !important;
        min-width: 0 !important;
    }


    .vf-lastpost-title {
        display: none !important;
    }


    .vf-lastpost-meta {
        margin: 0 !important;

        font-size: 10px !important;
        line-height: 1.25 !important;

        text-align: center !important;
    }
}/* =========================================
   FIX NEW TOPIC BUTTON TEXT
   ========================================= */

@media (max-width: 699px) {

    .vf-thread-newtopic a {
        font-size: 0 !important;

        background-image: none !important;
    }

    .vf-thread-newtopic a img,
    .vf-thread-newtopic a span {
        display: none !important;
    }

    .vf-thread-newtopic a::before {
        display: none !important;
        content: none !important;
    }

    .vf-thread-newtopic a::after {
        content: "Start new topic";

        display: block;

        color: #ffffff;

        font-size: 16px;
        font-weight: 500;
        line-height: 1;
    }
}/* =========================================
   CREATE NEW TOPIC
   MOBILE FIRST
   ========================================= */

.vf-create-topic-page {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    padding: 18px 12px 35px;
}


.vf-create-topic-title {
    margin: 5px 0 22px;

    color: #111;

    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}


/* Main card */

.vf-compose-card {
    background: #ffffff;

    border: 1px solid #e2e7ec;
    border-radius: 5px;

    overflow: hidden;
}


.vf-compose-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 58px;

    padding: 0 20px;

    background: #ffffff;

    border-top: 12px solid #40536a;

    color: #111;

    font-size: 20px;
    font-weight: 700;
}


.vf-compose-arrow {
    font-size: 14px;
}


.vf-compose-body {
    padding: 22px 14px;
}


/* Form groups */

.vf-form-group,
.vf-thumbnail-section {
    margin-bottom: 24px;
}


.vf-form-label {
    display: block;

    margin-bottom: 8px;

    color: #30343b;

    font-size: 16px;
    font-weight: 600;
}


.vf-required {
    margin-left: 8px;

    color: #a92e39;

    font-size: 11px;
    font-weight: 500;
}


/* Title */

.vf-subject-field {
    width: 100%;
}


.vf-topic-title-input {
    width: 100% !important;
    height: 50px;

    padding: 9px 12px;

    border: 1px solid #ccd3da !important;
    border-radius: 5px;

    background: #fff;

    font-size: 16px;

    box-sizing: border-box;
}


/* Prefix select */

.vf-subject-field select {
    width: 100%;

    min-height: 42px;

    margin-bottom: 7px;
}


/* =========================================
   FEATURED IMAGE / THUMBNAIL
   ========================================= */

.vf-featured-image-table {
    width: 100%;

    border: 0 !important;
    border-collapse: collapse;
}


.vf-featured-image-table tr,
.vf-featured-image-table td {
    display: block !important;

    width: 100% !important;

    padding: 0 !important;

    border: 0 !important;

    background: transparent !important;

    text-align: left !important;
}


/* Hide plugin's duplicate Featured Image label */

.vf-featured-image-table td:first-child {
    font-size: 0;
}


.vf-featured-image-table td:first-child strong {
    display: none;
}


.vf-featured-image-table td:first-child .smalltext {
    display: block;

    margin: 0 0 7px;

    color: #77818c;

    font-size: 12px;
}


.vf-featured-image-table input[type="file"] {
    display: block;

    width: 100%;
    min-height: 48px;

    padding: 8px;

    background: #f7fbfd;

    border: 2px solid #a8d6e9;
    border-radius: 5px;

    box-sizing: border-box;

    font-size: 14px;
}


/* =========================================
   EDITOR
   ========================================= */

.vf-editor-wrap {
    width: 100%;

    border: 1px solid #ccd3da;
    border-radius: 5px;

    overflow: hidden;

    background: #ffffff;
}


.vf-editor-wrap textarea {
    width: 100% !important;

    min-height: 310px !important;

    margin: 0 !important;

    padding: 12px !important;

    border: 0 !important;

    box-sizing: border-box;

    resize: vertical;

    font-size: 15px;
}


/* SCEditor */

.vf-editor-wrap .sceditor-container {
    width: 100% !important;

    max-width: 100% !important;

    border: 0 !important;

    box-shadow: none !important;
}


.vf-editor-wrap iframe {
    width: 100% !important;
}


/* =========================================
   ADVANCED + ATTACHMENTS
   ========================================= */

.vf-topic-advanced,
.vf-topic-attachments {
    margin-top: 15px;

    border-top: 1px solid #edf0f3;
}


.vf-topic-advanced summary,
.vf-topic-attachments summary {
    padding: 15px 2px;

    cursor: pointer;

    color: #374151;

    font-size: 14px;
    font-weight: 600;
}


.vf-topic-options table,
.vf-topic-attachments table {
    width: 100% !important;
}


.vf-topic-options tr,
.vf-topic-options td {
    display: block;

    width: 100% !important;

    box-sizing: border-box;
}


.vf-topic-options td {
    padding: 7px 0 !important;
}


/* =========================================
   SUBMIT BUTTON
   ========================================= */

.vf-topic-submit {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}


.vf-submit-topic {
    min-width: 160px;

    min-height: 48px;

    padding: 10px 24px !important;

    background: #1689cf !important;

    border: 0 !important;
    border-radius: 4px !important;

    color: #ffffff !important;

    font-size: 16px !important;
    font-weight: 500 !important;

    cursor: pointer;
}


.vf-preview-topic {
    min-height: 48px;

    padding: 10px 18px !important;

    background: #ffffff !important;

    border: 1px solid #ccd3da !important;

    border-radius: 4px !important;

    color: #4b5563 !important;
}


/* =========================================
   REMOVE OLD MYBB FORM CLUTTER
   ========================================= */

.vf-compose-login:empty {
    display: none;
}


/* Desktop enhancement */

@media (min-width: 700px) {

    .vf-create-topic-page {
        padding-top: 30px;
    }


    .vf-compose-body {
        padding: 28px 26px;
    }


    .vf-create-topic-title {
        font-size: 28px;
    }

}