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;
}

/* =========================================================
   SHOWTHREAD – ANTWORTEN LEISTE
   ========================================================= */

.showthread-replybar {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    background: transparent;
}


/* =========================================================
   ANTWORTEN BUTTON
   ========================================================= */

.showthread-replybar .new_reply_button {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: auto !important;
    min-width: 110px;
    height: 28px;

    padding: 0 16px !important;
    margin: 0 !important;

    box-sizing: border-box;

    background: #11131D !important;

    border: 1px solid #4A3A75 !important;
    border-radius: 0 !important;

    font-family: Arial, sans-serif;

    font-size: 9px;
    line-height: 26px;

    font-weight: normal;

    letter-spacing: 1.3px;
    text-transform: uppercase;

    color: #8A6FD1 !important;

    text-decoration: none !important;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}


/* Text im Button */

.showthread-replybar .new_reply_button span {
    color: inherit !important;

    background: transparent !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.showthread-replybar .new_reply_button:hover {
    background: #151722 !important;

    border-color: #8A6FD1 !important;

    color: #D8D8E6 !important;

    box-shadow: 0 0 7px rgba(138,111,209,.25);
}

/* =========================================================
   BUTTONS UNTER DER POSTBIT
   ========================================================= */

.showthread-bottom-buttons {
    width: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 8px;

    margin-top: 8px;
    margin-bottom: 8px;

    box-sizing: border-box;
}


/* Der Newreply-Wrapper soll hier nur so breit
   wie sein Inhalt sein */

.showthread-bottom-buttons .showthread-replybar {
    width: auto;
    flex: 0 0 auto;
}