/*Quizauswertung*/
.trActive {
	background-color: #2b2b2b;
}
.xxx {
}
/*FlashButton*/
.delAni {
	-webkit-animation: none !important;
	-moz-animation: none !important;
	-o-animation: none !important;
}
.flashButton {
	-webkit-animation: initial;
	-moz-animation: initial;
	-o-animation: initial;
	background-color: #b20000;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: none;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-family: Arial;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2px;
	width: 140px;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
	0% {
		background-color: #b20000;
		-webkit-box-shadow: 0 0 3px #b20000;
	}
	50% {
		background-color: #ff0000;
		-webkit-box-shadow: 0 0 40px #ff0000;
	}
	100% {
		background-color: #b20000;
		-webkit-box-shadow: 0 0 3px #b20000;
	}
}

@-moz-keyframes glowing {
	0% {
		background-color: #b20000;
		-moz-box-shadow: 0 0 3px #b20000;
	}
	50% {
		background-color: #ff0000;
		-moz-box-shadow: 0 0 40px #ff0000;
	}
	100% {
		background-color: #b20000;
		-moz-box-shadow: 0 0 3px #b20000;
	}
}

@-o-keyframes glowing {
	0% {
		background-color: #b20000;
		box-shadow: 0 0 3px #b20000;
	}
	50% {
		background-color: #ff0000;
		box-shadow: 0 0 40px #ff0000;
	}
	100% {
		background-color: #b20000;
		box-shadow: 0 0 3px #b20000;
	}
}

@keyframes glowing {
	0% {
		background-color: #b20000;
		box-shadow: 0 0 3px #b20000;
	}
	50% {
		background-color: #ff0000;
		box-shadow: 0 0 40px #ff0000;
	}
	100% {
		background-color: #b20000;
		box-shadow: 0 0 3px #b20000;
	}
}

.flashButtonOn {
	-webkit-animation: initial;
	-moz-animation: initial;
	-o-animation: initial;
	background-color: #076f33;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: none;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-family: Arial;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2px;
	width: 140px;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	-webkit-animation: glowingon 1500ms infinite;
	-moz-animation: glowingon 1500ms infinite;
	-o-animation: glowingon 1500ms infinite;
	animation: glowingon 1500ms infinite;
}
@-webkit-keyframes glowingon {
	0% {
		background-color: #189a00;
		-webkit-box-shadow: 0 0 3px #189a00;
	}
	50% {
		background-color: #27d507;
		-webkit-box-shadow: 0 0 40px #27d507;
	}
	100% {
		background-color: #189a00;
		-webkit-box-shadow: 0 0 3px #189a00;
	}
}

@-moz-keyframes glowingon {
	0% {
		background-color: #189a00;
		-moz-box-shadow: 0 0 3px #189a00;
	}
	50% {
		background-color: #27d507;
		-moz-box-shadow: 0 0 40px #27d507;
	}
	100% {
		background-color: #189a00;
		-moz-box-shadow: 0 0 3px #189a00;
	}
}

@-o-keyframes glowingon {
	0% {
		background-color: #189a00;
		box-shadow: 0 0 3px #189a00;
	}
	50% {
		background-color: #27d507;
		box-shadow: 0 0 40px #27d507;
	}
	100% {
		background-color: #189a00;
		box-shadow: 0 0 3px #189a00;
	}
}

@keyframes glowingon {
	0% {
		background-color: #189a00;
		box-shadow: 0 0 3px #189a00;
	}
	50% {
		background-color: #27d507;
		box-shadow: 0 0 40px #27d507;
	}
	100% {
		background-color: #189a00;
		box-shadow: 0 0 3px #189a00;
	}
}

/*Shoutbox*/
div.menue {
	border: none;
	width: 20px;
	position: relative;
}

div.menue div.title {
	color: #000000;
}

div.menue div.menue-container {
	display: none;
	background-color: #f2f2f2;
	padding: 5px;
}

div.menue div.title:hover div.menue-container {
	display: block;
	width: 190px;
	position: absolute;
	z-index: 1;
	border-left: solid 1px #ddd;
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	margin-left: -1px;
}

div.menue div.title:hover div.headline {
	border-bottom: solid 1px #ddd;
}

div.menue div.title div.headline {
	cursor: pointer;
	padding: 2px 5px;
	font-weight: bold;
	color: #777;
}

div.menue div.menue-item {
	border: solid 1px #ddd;
	padding: 3px;
	margin: 3px;
	text-align: left;
	background-color: #ffffff;
	cursor: pointer;
	color: #000000;
	z-index: 100;
}
div.menue-item img {
	width: 16px;
	height: 16px;
}

div.menue div.menue-item:hover {
	border: solid 1px #ddd;
	padding: 3px;
	margin: 3px;
	background-color: #000000;
	cursor: pointer;
	color: #ffffff;
	text-decoration: none;
}

.small {
	color: #696969;
	font-size: 9pt;
	font-weight: bold;
	font-family: tahoma;
}

.date {
	/*color: #FFFFFF;*/
	font-size: 7pt;
	font-family: tahoma;
}

.datered {
	color: red;
	font-size: 7pt;
	font-family: tahoma;
}

.dateyellow {
	color: yellow;
	font-size: 7pt;
	font-family: tahoma;
}

.button {
	padding: 1px;
	border: 0px;
	cursor: pointer;
}
.button:hover {
	background: #c1d2ee;
	color: #000000;
	padding: 0px;
	border: 1px solid #000000;
	cursor: pointer;
}
/*browse*/
a.catlink:link,
a.catlink:visited {
	text-decoration: none;
}
a.catlink:hover {
	color: #a83838;
}

.arrow-down {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	display: inline-block;
	vertical-align: middle;
	border-top: 10px solid #f00;
}
.zoom-in {
	cursor: zoom-in;
}

.tablesticki {
	background-color: rgba(103, 103, 103, 0.8);
	border-radius: 20px;
	position: sticky;
	top: 0px;
	margin: 0 auto;
	padding: 5px;
	width: 90%;
}

.stickyclass {
	font-size: 18px;
	text-align: center;
	vertical-align: middle;
	margin-bottom: -10px;
}

/* ==========================================================
   Shoutbox Reactions
   ========================================================== */

/* Gesamte Zeile: Klicker links, Text mittig, Reaktionen rechts */
.shout-reaction-line {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
}

/* Shouttext darf den verfügbaren Platz verwenden und umbrechen */
.shout-reaction-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

/* ==========================================================
   Reaktionsübersicht rechts
   ========================================================== */

.shout-reaction-row {
    flex: 0 0 auto;
    display: inline-block;
    margin-top: 0;
    font-size: 11px;
    line-height: 16px;
    white-space: nowrap;
    user-select: none;
}

.shout-reaction-summary {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 3px;
}

.shout-reaction-item {
    display: inline-flex;
    align-items: center;
    padding: 1px 5px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: default;
    white-space: nowrap;
}

.shout-reaction-item span {
    margin-left: 3px;
    font-size: 10px;
    font-weight: bold;
}

/* ==========================================================
   Reaktionsklicker links
   ========================================================== */

.shout-reaction-picker {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    margin-left: 0;
    vertical-align: middle;
    white-space: nowrap;
}

.shout-reaction-open {
    display: inline-block;
    padding: 1px 5px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;

    transition:
        background 0.15s,
        transform 0.15s;
}

.shout-reaction-open:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(12deg);
}

/* ==========================================================
   Aufklappende Reaktionsauswahl
   ========================================================== */

.shout-reaction-popup {
    position: absolute;
    left: 100%;
    top: -4px;

    display: none;
    align-items: center;
    gap: 3px;

    /*
     * Optischer Abstand zum Klicker.
     * Der unsichtbare ::before-Bereich überbrückt diesen Abstand,
     * damit das Popup beim Darüberfahren nicht verschwindet.
     */
    margin-left: 4px;
    padding: 3px 5px;

    border: 1px solid #666;
    border-radius: 12px;
    background: #2f2f2f;

    white-space: nowrap;
    z-index: 9999;
}

/* Unsichtbare Mausbrücke zwischen Klicker und Popup */
.shout-reaction-popup::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 8px;
    height: 100%;
}

/* Offenhalten, solange Maus auf Klicker oder Popup steht */
.shout-reaction-picker:hover .shout-reaction-popup,
.shout-reaction-picker:focus-within .shout-reaction-popup {
    display: inline-flex;
}

/* ==========================================================
   Einzelne Reaktionsbuttons
   ========================================================== */

.shout-reaction-btn {
    display: inline-block;
    padding: 2px 4px;
    border-radius: 6px;

    cursor: pointer;
    font-size: 15px;
    line-height: 18px;
    user-select: none;

    transition:
        transform 0.10s,
        background 0.10s;
}

.shout-reaction-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.25);
}