/* =========================================================
   OUTBREAK: LAS VEGAS
   Global Theme CSS
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --outbreak-bg: #0a0a0a;
    --outbreak-panel: #111;
    --outbreak-panel2: #171717;
    --outbreak-line: #2b2b2b;

    --outbreak-text: #d8d2c5;
    --outbreak-muted: #85827b;

    --outbreak-red: #b52b2b;
    --outbreak-pink: #d94f72;
    --outbreak-gold: #c99b4a;
}


/* =========================================================
   02. GLOBAL / RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #070707;
    color: var(--outbreak-text);

    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

a {
    color: inherit;
}


/* =========================================================
   03. MAIN SITE CONTAINER
   ========================================================= */

.outbreak-site {
    max-width: 1200px;
    min-height: 100vh;

    margin: 0 auto;

    background: var(--outbreak-bg);

    box-shadow: 0 0 90px rgba(0, 0, 0, .85);
}


/* =========================================================
   04. TOP NAVIGATION
   ========================================================= */

.outbreak-topbar {
    min-height: 72px;

    padding: 14px 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #0d0d0d;

    border-bottom: 1px solid var(--outbreak-line);

    position: relative;
    z-index: 5;
}


/* Logo */

.outbreak-logo {
    color: #f4f1ea;

    text-decoration: none;

    font-weight: 900;
    font-size: 60px;

    letter-spacing: 5px;
    line-height: .9;
}

.outbreak-logo span {
    display: block;

    margin-top: 7px;

    color: var(--outbreak-red);

    font-size: 10px;
    letter-spacing: 6px;
}


/* Navigation */

.outbreak-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 24px;
}

.outbreak-nav a {
    color: #9d9a94;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;

    transition: .2s;
}

.outbreak-nav a:hover {
    color: #fff;
}


/* User area */

.outbreak-user {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #8f8b84;

    font-size: 10px;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.outbreak-user a {
    color: #d8d2c5;

    text-decoration: none;
}

.outbreak-user a:hover {
    color: var(--outbreak-pink);
}


/* =========================================================
   05. HERO / HEADER IMAGE
   ========================================================= */

.outbreak-hero {
    min-height: 400px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .8) 0%,
            rgba(0, 0, 0, .25) 55%,
            rgba(0, 0, 0, .72) 100%
        ),
        url(https://i.postimg.cc/nLz0NGmP/banner.png)
        center / cover no-repeat;

    border-bottom: 1px solid #333;
}

.outbreak-hero:after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(0, 0, 0, .7)
        );
}


/* Hero content */

.hero-overlay {
    position: relative;
    z-index: 2;

    max-width: 610px;

    padding: 50px;
}

.hero-warning {
    color: #e06b6b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-overlay h1 {
    margin: 14px 0 15px;

    color: #fff;

    font-size: 58px;

    line-height: .88;
    letter-spacing: -2px;

    text-shadow: 0 4px 18px #000;
}

.hero-overlay h1 strong {
    color: var(--outbreak-pink);
}

.hero-overlay p {
    max-width: 420px;

    color: #d0cbc2;

    font-size: 14px;
    line-height: 1.65;
}


/* Hero button */

.hero-button {
    display: inline-block;

    margin-top: 10px;
    padding: 11px 18px;

    background: var(--outbreak-red);

    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-button:hover {
    background: var(--outbreak-pink);
}


/* =========================================================
   06. STATUS BAR
   ========================================================= */

.outbreak-statusbar {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #101010;

    border-bottom: 1px solid var(--outbreak-line);
}

.status-item {
    padding: 14px 24px;

    border-right: 1px solid var(--outbreak-line);
}

.status-item:last-child {
    border-right: 0;
}

.status-label {
    display: block;

    color: #6e6b65;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.status-value {
    display: block;

    margin-top: 3px;

    color: #e5dfd5;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
}

.status-value.danger {
    color: #d55d5d;
}


/* =========================================================
   07. INFORMATION BOXES
   ========================================================= */

.outbreak-info {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-bottom: 1px solid var(--outbreak-line);
}

.info-box {
    padding: 25px 28px;

    background: #121212;

    border-right: 1px solid var(--outbreak-line);
}

.info-box:last-child {
    border-right: 0;
}

.info-number {
    color: var(--outbreak-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.info-box h3 {
    margin: 6px 0 8px;

    color: #f2eee7;

    font-size: 16px;

    letter-spacing: 2px;
}

.info-box p {
    margin: 0 0 12px;

    color: #88847d;

    font-size: 12px;
    line-height: 1.6;
}

.info-box a {
    color: var(--outbreak-pink);

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   08. MAIN CONTENT
   ========================================================= */

.outbreak-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        290px;

    gap: 28px;

    padding: 38px;
}


/* Section heading */

.section-heading {
    margin: 0 0 18px;

    padding-bottom: 14px;

    border-bottom: 1px solid var(--outbreak-line);
}

.section-heading span {
    color: var(--outbreak-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 5px 0 0;

    color: #f1eee8;

    font-size: 28px;

    letter-spacing: 3px;
}


/* Forum list */

.forum-list {
    background: #0f0f0f;

    border: 1px solid var(--outbreak-line);
}


/* =========================================================
   09. FORUM CATEGORIES
   ========================================================= */

.forum-category {
    padding: 13px 18px;

    background: #171717;

    border-bottom: 1px solid #303030;

    color: #ddd;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   10. FORUM ROWS
   ========================================================= */

.forum-row {
    display: grid;

    grid-template-columns:
        52px
        minmax(0, 1fr)
        190px;

    gap: 14px;

    align-items: center;

    padding: 18px;

    background: #111;

    border-bottom: 1px solid #232323;

    transition: .18s;
}

.forum-row:last-child {
    border-bottom: 0;
}

.forum-row:hover {
    background: #151515;
}


/* Forum name */

.forum-name a {
    color: #eee;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .6px;
}

.forum-desc {
    margin-top: 2px;

    color: #77736d;

    font-size: 11px;
}


/* Forum statistics */

.forum-stats {
    overflow: hidden;

    color: #6f6c66;

    text-align: right;

    font-size: 10px;
    line-height: 1.5;
}

.forum-stats strong {
    color: #aaa;
}

.forum-stats a {
    color: #9d9991;

    text-decoration: none;
}

.forum-stats .smalltext {
    color: #777;
}


/* =========================================================
   11. FORUM STATUS ICON
   ========================================================= */

.forum-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* No new posts */

.forum_status {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    color: #fff;

    opacity: .28;

    font-size: 18px;
    line-height: 1;

    border: 1px solid rgba(255, 255, 255, .12);

    background: rgba(255, 255, 255, .025);

    transition:
        color .2s ease,
        opacity .2s ease,
        border-color .2s ease,
        background .2s ease,
        text-shadow .2s ease;
}


/* New posts */

.forum_status.forum_on {
    color: var(--outbreak-red);

    opacity: 1;

    border-color: var(--outbreak-red);

    background: rgba(181, 43, 43, .08);

    text-shadow:
        0 0 10px rgba(181, 43, 43, .45);
}

.forum_status.forum_on:hover {
    background: rgba(181, 43, 43, .16);

    border-color: var(--outbreak-red);

    text-shadow:
        0 0 14px rgba(181, 43, 43, .65);
}


/* =========================================================
   12. SIDEBAR
   ========================================================= */

.outbreak-sidebar {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.sidebar-box {
    padding: 21px;

    background: #121212;

    border: 1px solid var(--outbreak-line);
}

.sidebar-title {
    margin-bottom: 12px;

    color: #f1eee8;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.sidebar-title span {
    color: var(--outbreak-red);
}

.sidebar-box p {
    margin: 0;

    color: #87837c;

    font-size: 12px;
    line-height: 1.7;
}


/* Radio */

.radio-line {
    padding: 9px 0;

    color: #9a968f;

    font-size: 11px;

    border-top: 1px solid #292929;
}

.radio-line:first-of-type {
    border-top: 0;
}

.radio-time {
    color: var(--outbreak-pink);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* Live status */

.status-live {
    color: #d35c5c;

    font-size: 18px;
    font-weight: 900;

    letter-spacing: 2px;
}

.status-live:before {
    content: "";

    display: inline-block;

    width: 7px;
    height: 7px;

    margin: 0 8px 2px 0;

    background: #d35c5c;

    border-radius: 50%;

    box-shadow: 0 0 10px #d35c5c;
}

.sidebar-small {
    color: #666;

    font-size: 9px;
}


/* =========================================================
   13. BOARD STATISTICS
   ========================================================= */

.outbreak-boardstats {
    margin-top: 20px;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.outbreak-footer {
    padding: 28px 38px;

    background: #0d0d0d;

    border-top: 1px solid var(--outbreak-line);

    color: #666;

    font-size: 10px;
}

.outbreak-footer a {
    color: #888;

    text-decoration: none;
}


/* =========================================================
   15. MYBB DEFAULT ELEMENTS
   ========================================================= */

#container {
    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.wrapper {
    width: auto !important;
    max-width: none !important;
}

.navigation {
    display: none;
}

.thead {
    background: #171717 !important;

    color: #ddd !important;

    border: 0 !important;
}

.trow1,
.trow2 {
    background: #111 !important;

    color: #bbb !important;

    border-color: #252525 !important;
}

.smalltext {
    color: #777 !important;
}

.pagination a,
.pagination span {
    background: #171717 !important;

    border-color: #333 !important;

    color: #aaa !important;
}

.error,
.success,
.notice {
    border-radius: 0 !important;
}

.modal {
    background: #111 !important;

    border: 1px solid #333 !important;

    color: #ddd !important;
}


/* =========================================================
   16. CATEGORY BANNERS
   ========================================================= */

.outbreak-category {
    width: 100%;

    margin-bottom: 30px;
}


/* Banner */

.outbreak-category-banner {
    position: relative;

    width: 100%;
    height: 150px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    border: 1px solid #303030;
}


/* Overlay */

.outbreak-category-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, .35) 0%,
            rgba(5, 5, 5, .68) 55%,
            rgba(5, 5, 5, .90) 100%
        );
}


/* Category text */

.outbreak-category-content {
    padding: 25px 40px 25px 35px;

    text-align: right;
}

.outbreak-category-number {
    display: block;

    margin-bottom: 5px;

    color: #B52B2B;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.outbreak-category-content h2 {
    margin: 0;

    color: #B52B2B;

    font-size: 24px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: 4px;
    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .9);
}

.outbreak-category-description {
    margin-top: 7px;

    color: rgba(255, 255, 255, .68);

    font-size: 11px;

    letter-spacing: .5px;
}


/* Forums below banner */

.outbreak-category-forums {
    background: #151515;

    border-left: 1px solid #303030;
    border-right: 1px solid #303030;
    border-bottom: 1px solid #303030;
}


/* =========================================================
   17. CATEGORY IMAGES
   ========================================================= */

.outbreak-category-banner.category-1 {
    background-image:
        url(../../../images/themes/cat.png);
}

.outbreak-category-banner.category-4 {
    background-image:
        url(../../../images/themes/cat.png);
}

.outbreak-category-banner.category-7 {
    background-image:
        url(../../../images/themes/cat.png);
}

.outbreak-category-banner.category-13 {
    background-image:
        url(../../../images/themes/cat.png);
}

/* =========================================================
   21. POST BIT CLASSIC
   ========================================================= */


/* =========================================================
   POST CONTAINER
   ========================================================= */

.outbreak-post {
    display: grid;

    grid-template-columns:
        300px
        minmax(0, 1fr);

    width: 100% !important;
    max-width: none !important;

    margin: 0 0 22px 0;

    background: #111;

    border: 1px solid var(--outbreak-line);

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   AUTHOR AREA
   ========================================================= */

.outbreak-post-author {
    padding: 22px;

    background:
        linear-gradient(
            180deg,
            #171717 0%,
            #101010 100%
        );

    border-right: 1px solid var(--outbreak-line);

    text-align: center;
}


/* Survivor label */

.outbreak-post-author-status {
    margin-bottom: 15px;

    color: var(--outbreak-red);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   POST BIT AVATAR
   ========================================================= */

.outbreak-post-avatar {
    width: 250px;
    height: 300px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #090909;

    border: 1px solid var(--outbreak-red);

    overflow: hidden;

    box-sizing: border-box;
}


/* Tatsächliches Avatarbild */

.outbreak-post-avatar img {
    display: block;

    width: 250px !important;
    height: 300px !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover;
}


/* =========================================================
   USERNAME
   ========================================================= */

.outbreak-post-username {
    color: #f1eee8;

    font-size: 17px;
    font-weight: 900;

    line-height: 1.2;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.outbreak-post-username a {
    color: inherit;

    text-decoration: none;
}

.outbreak-post-username a:hover {
    color: var(--outbreak-pink);
}


/* Online status */

.outbreak-post-online {
    margin-top: 5px;
}


/* User title */

.outbreak-post-usertitle {
    margin-top: 5px;

    color: #77736d;

    font-size: 10px;
}


/* =========================================================
   RANK
   ========================================================= */

.outbreak-post-rank {
    margin-top: 8px;

    color: #777;
}

.outbreak-post-rank img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   USER STATISTICS
   ========================================================= */

.outbreak-post-statistics {
    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid #292929;

    color: #77736d;

    font-size: 10px;

    line-height: 1.7;
}

.outbreak-post-statistics strong {
    color: #aaa;
}


/* =========================================================
   POST CONTENT
   ========================================================= */

.outbreak-post-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   POST HEADER
   ========================================================= */

.outbreak-post-header {
    min-height: 50px;

    padding: 13px 20px;

    display: flex;
    align-items: center;

    background: #151515;

    border-bottom: 1px solid #292929;
}


/* Meta */

.outbreak-post-meta {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}


/* Post number */

.outbreak-post-number {
    color: var(--outbreak-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* Date */

.outbreak-post-date {
    color: #6e6b65;

    font-size: 9px;

    letter-spacing: .5px;
}


/* Edit information */

.outbreak-post-header .post_edit {
    color: #666;

    font-size: 9px;
}


/* =========================================================
   POST BODY
   ========================================================= */

.outbreak-post-body {
    flex: 1;

    padding: 28px 25px;

    color: #d8d2c5;

    font-size: 14px;

    line-height: 1.7;

    overflow-wrap: break-word;
}


/* Paragraphs */

.outbreak-post-body p {
    margin-top: 0;
}

.outbreak-post-body p:last-child {
    margin-bottom: 0;
}


/* Links */

.outbreak-post-body a {
    color: var(--outbreak-pink);

    text-decoration: none;
}

.outbreak-post-body a:hover {
    color: #fff;
}


/* Images */

.outbreak-post-body img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   POST META
   ========================================================= */

.outbreak-post-meta-bottom {
    min-height: 30px;

    padding: 7px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #101010;

    border-top: 1px solid #242424;

    color: #555;

    font-size: 9px;
}

.outbreak-post-status {
    color: #666;
}


/* =========================================================
   POST CONTROLS
   ========================================================= */

.outbreak-post-controls {
    min-height: 48px;

    padding: 9px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    background: #0d0d0d;

    border-top: 1px solid #292929;
}


/* Button groups */

.outbreak-post-author-buttons,
.outbreak-post-management-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 5px;
}


/* MyBB buttons */

.outbreak-post-controls .postbit_buttons a,
.outbreak-post-controls .postbit_buttons button,
.outbreak-post-controls .postbit_buttons input {
    display: inline-block;

    padding: 6px 9px;

    background: transparent;

    border: 1px solid #303030;

    color: #777;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;

    text-decoration: none;

    text-transform: uppercase;

    transition: .2s;
}


/* Hover */

.outbreak-post-controls .postbit_buttons a:hover,
.outbreak-post-controls .postbit_buttons button:hover,
.outbreak-post-controls .postbit_buttons input:hover {
    background: rgba(181, 43, 43, .08);

    border-color: var(--outbreak-red);

    color: #fff;
}


/* =========================================================
   POST BIT — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .outbreak-post {
        grid-template-columns: 1fr;
    }


    .outbreak-post-author {
        display: grid;

        grid-template-columns:
            80px
            minmax(0, 1fr);

        column-gap: 15px;

        padding: 15px;

        text-align: left;

        border-right: 0;
        border-bottom: 1px solid var(--outbreak-line);
    }


    .outbreak-post-author-status {
        grid-column: 1 / -1;
    }


    .outbreak-post-avatar {
        width: 80px;
        height: 96px;

        margin: 0;
    }


    .outbreak-post-avatar img {
        width: 80px;
        height: 96px;
    }


    .outbreak-post-username {
        align-self: end;
    }


    .outbreak-post-usertitle {
        grid-column: 2;
    }


    .outbreak-post-online {
        grid-column: 2;
    }


    .outbreak-post-rank {
        grid-column: 2;
    }


    .outbreak-post-statistics {
        grid-column: 1 / -1;

        margin-top: 12px;
    }


    .outbreak-post-header {
        padding: 11px 15px;
    }


    .outbreak-post-body {
        padding: 20px 17px;
    }


    .outbreak-post-controls {
        padding: 10px 15px;

        align-items: flex-start;

        flex-direction: column;
    }


    .outbreak-post-author-buttons,
    .outbreak-post-management-buttons {
        width: 100%;
    }

}


/* =========================================================
   18. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .outbreak-topbar {
        padding: 16px 22px;

        align-items: flex-start;

        flex-direction: column;
    }

    .outbreak-nav {
        justify-content: flex-start;
    }

    .outbreak-user {
        align-self: stretch;
    }

    .outbreak-hero {
        min-height: 350px;
    }

    .hero-overlay {
        padding: 35px 25px;
    }

    .hero-overlay h1 {
        font-size: 46px;
    }

    .outbreak-statusbar {
        grid-template-columns: repeat(2, 1fr);
    }

    .status-item:nth-child(2) {
        border-right: 0;
    }

    .outbreak-info {
        grid-template-columns: 1fr;
    }

    .info-box {
        border-right: 0;
        border-bottom: 1px solid var(--outbreak-line);
    }

    .outbreak-main {
        grid-template-columns: 1fr;

        padding: 24px;
    }

    .forum-row {
        grid-template-columns:
            45px
            minmax(0, 1fr);
    }

    .forum-stats {
        display: none;
    }
}


/* =========================================================
   19. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .forum-row {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 15px;
    }

    .forum-icon {
        justify-content: flex-start;
    }

    .forum-name {
        min-width: 0;
    }

    .forum-stats {
        text-align: left;
    }
}


/* =========================================================
   20. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .outbreak-logo {
        font-size: 22px;
    }

    .outbreak-nav {
        gap: 12px;
    }

    .outbreak-nav a {
        font-size: 9px;
    }

    .outbreak-hero {
        min-height: 330px;
    }

    .hero-overlay h1 {
        font-size: 39px;
    }

    .outbreak-statusbar {
        grid-template-columns: 1fr;
    }

    .status-item {
        border-right: 0;
        border-bottom: 1px solid var(--outbreak-line);
    }

    .status-item:last-child {
        border-bottom: 0;
    }

    .outbreak-main {
        padding: 18px;
    }

    .outbreak-footer {
        padding: 22px;
    }

    .forum-row {
        padding: 14px;
    }

    .forum-icon {
        width: 34px;
        height: 34px;
    }
}

/* =========================================================
   21. SHOWTHREAD — FULL WIDTH
   ========================================================= */

.outbreak-thread-page {
    width: 100%;
    padding: 38px;
}


/* =========================================================
   THREAD HEADER
   ========================================================= */

.outbreak-thread {
    width: 100%;
    max-width: none;
}


.outbreak-thread-top {
    width: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
    padding-bottom: 18px;

    border-bottom: 1px solid var(--outbreak-line);
}


.outbreak-thread-title span {
    display: block;

    margin-bottom: 6px;

    color: var(--outbreak-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.outbreak-thread-title h1 {
    margin: 0;

    color: #f1eee8;

    font-size: 30px;
    font-weight: 900;

    line-height: 1.15;

    letter-spacing: 2px;
}


.outbreak-thread-tools {
    color: #777;

    font-size: 10px;
}


/* =========================================================
   POSTS CONTAINER
   ========================================================= */

.outbreak-thread #posts_container {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


.outbreak-thread #posts {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   POST BIT FULL WIDTH
   ========================================================= */

.outbreak-thread .outbreak-post {
    width: 100% !important;
    max-width: none !important;
}


/* =========================================================
   THREAD PAGINATION / BUTTONS
   ========================================================= */

.outbreak-thread-page + .float_left,
.outbreak-thread-page + .float_right {
    margin-top: 10px;
}

/* =========================================================
   SHOWTHREAD — POSTS IMMER GLEICH BREIT
   ========================================================= */

.outbreak-thread-page {
    width: 100%;
    padding: 38px;

    box-sizing: border-box;
}

.outbreak-thread {
    width: 100%;
    max-width: none;

    margin: 0;
}

.outbreak-thread #posts_container {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

.outbreak-thread #posts {
    display: block;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}

.outbreak-thread #posts > * {
    width: 100% !important;
    max-width: none !important;
}

.outbreak-thread .outbreak-post {
    width: 100% !important;
    max-width: none !important;
}

/* =========================================================
   SPOTIFY RADIO
   ========================================================= */

.outbreak-spotify {
    overflow: hidden;
}


/* Titel */

.outbreak-spotify .sidebar-title {
    margin-bottom: 15px;
}


/* Radio-Bezeichnung */

.spotify-label {
    margin-bottom: 12px;

    color: var(--outbreak-red);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Spotify Player */

.outbreak-spotify iframe {
    display: block;

    width: 100%;

    min-height: 352px;

    border: 0;

    border-radius: 0;
}


/* Untertitel */

.spotify-note {
    margin-top: 10px;

    color: #555;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.spotify-note::before {
    content: "●";

    margin-right: 6px;

    color: var(--outbreak-red);

    font-size: 7px;
}