ul.thread_tools,
ul.thread_tools li {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.thread_tools li {
	padding-left: 24px;
	padding-bottom: 4px;
	margin-bottom: 3px;
	font-size: 11px;
	background-image: url(../../../images/showthread_sprite.png);
	background-repeat: no-repeat;
}

ul.thread_tools li.printable {
	background-position: 0 0;
}

ul.thread_tools li.sendthread {
	background-position: 0 -20px;
}

ul.thread_tools li.subscription_add {
	background-position: 0 -40px;
}

ul.thread_tools li.subscription_remove {
	background-position: 0 -60px;
}

ul.thread_tools li.poll {
	background-position: 0 -80px;
}

.showthread_spinner {
	width: 100%;
	margin: 0 auto;
	display: block;
	text-align: center;
	padding: 20px;
}

/* =========================================================
   OUTBREAK THREAD LIST
   ========================================================= */

.outbreak-thread-row {
    transition:
        background-color .2s ease,
        border-color .2s ease;
}


/* =========================================================
   CELLS
   ========================================================= */

.outbreak-thread-row > td {
    background: #111 !important;

    border-bottom: 1px solid #292929 !important;

    color: #aaa;

    vertical-align: middle;
}

.outbreak-thread-row:hover > td {
    background: #151515 !important;
}


/* =========================================================
   STATUS
   ========================================================= */

.outbreak-thread-status {
    width: 2%;

    text-align: center;
}

.outbreak-thread-status .thread_status {
    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #555;
}


/* =========================================================
   ICON
   ========================================================= */

.outbreak-thread-icon {
    width: 2%;

    text-align: center;
}

.outbreak-thread-icon img {
    max-width: 18px;
    max-height: 18px;

    opacity: .75;

    transition: opacity .2s ease;
}

.outbreak-thread-row:hover .outbreak-thread-icon img {
    opacity: 1;
}


/* =========================================================
   MAIN THREAD AREA
   ========================================================= */

.outbreak-thread-main {
    padding: 13px 15px !important;
}

.outbreak-thread-content {
    min-width: 0;
}


/* =========================================================
   THREAD TITLE
   ========================================================= */

.outbreak-thread-title {
    display: block;

    color: #ddd;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.5;
}

.outbreak-thread-title a {
    color: #d8d2c5;

    text-decoration: none;

    transition: color .2s ease;
}

.outbreak-thread-title a:hover {
    color: var(--outbreak-pink);
}


/* Prefix */

.outbreak-thread-prefix {
    color: var(--outbreak-red);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   THREAD META
   ========================================================= */

.outbreak-thread-meta {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 5px;

    color: #666;

    font-size: 9px;

    line-height: 1.4;
}

.outbreak-thread-author a {
    color: #88847d;

    text-decoration: none;
}

.outbreak-thread-author a:hover {
    color: var(--outbreak-pink);
}

.outbreak-thread-separator {
    color: var(--outbreak-red);

    font-size: 10px;
    font-weight: 900;
}

.outbreak-thread-date {
    color: #5f5b56;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.outbreak-thread-stat {
    width: 8%;

    padding: 10px !important;

    text-align: center;
}

.outbreak-thread-stat-value {
    display: block;

    color: #d8d2c5;

    font-size: 13px;
    font-weight: 900;

    line-height: 1.2;
}

.outbreak-thread-stat-value a {
    color: inherit;

    text-decoration: none;
}

.outbreak-thread-stat-value a:hover {
    color: var(--outbreak-pink);
}

.outbreak-thread-stat-label {
    display: block;

    margin-top: 4px;

    color: #555;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   LAST POST
   ========================================================= */

.outbreak-thread-lastpost {
    min-width: 170px;

    padding: 10px 15px !important;

    text-align: right;
}

.outbreak-lastpost-label {
    display: block;

    margin-bottom: 4px;

    color: #555;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.outbreak-lastpost-date {
    display: block;

    color: #aaa;

    font-size: 10px;
}

.outbreak-lastpost-user {
    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 9px;
}

.outbreak-lastpost-user a {
    color: var(--outbreak-red);

    text-decoration: none;
}

.outbreak-lastpost-user a:hover {
    color: var(--outbreak-pink);
}


/* =========================================================
   UNREAD / NEW THREAD
   ========================================================= */

.outbreak-thread-row .new_class,
.outbreak-thread-row .new {
    color: var(--outbreak-red);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .outbreak-thread-lastpost {
        min-width: 130px;
    }

    .outbreak-thread-main {
        padding: 11px !important;
    }

    .outbreak-thread-title {
        font-size: 11px;
    }

    .outbreak-thread-meta {
        flex-wrap: wrap;
    }

}
		