:root {
  color-scheme: only light;
}
@font-face { font-family: "circular";
             src: url("fonts/OpenSans-Regular.ttf") format("truetype"); }
@font-face { font-family: "Roboto";
             src: url("fonts/OpenSans-Regular.ttf") format("truetype"); }
@font-face { font-family: "Roboto Slab";
             src: url("fonts/OpenSans-Regular.ttf") format("truetype"); }
html body {
	font-size: 16px;
	font-family: "Roboto", serif;
}
* {
	box-sizing:border-box;
}
body {
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background-color: #f5f5f5;
}
h1, h2, h3, h4, h5 {
	font-family: "Roboto Slab", serif;
	margin-top:0px;
	margin-bottom:0px;
}
h1 {
	font-size: 3.3rem;
	color: #f41c26;
	text-align: center;
	margin-bottom: 40px;
}
h2 {
	font-size: 2.2rem;
	text-align: center;
}
h3 {
	font-size: 1.8rem;
	text-transform: uppercase;
}
h3 strong {
	color: #f41c26;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	margin:15px 0px;
}
h6 {
	font-weight:bold;
}
.hidden {
  display: none !important;
}
ul {
  list-style-type: none;
}
.card-block ul {
	list-style-type: square;
}
a {
	display:contents;
	outline:none !important;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}
p {
	margin-bottom: 0;
}
strong {
	font-weight: bold;
}
blockquote {
	margin: 0px 0px 0px 42px;
	font-style: italic;
	color: #555555;
	padding: 35px 0px 10px 20px !important;
	border-left: 1px solid #f41c26;
	position: relative;
}
blockquote::before {
	font-family:Arial;
	content: "“";
	color:#f41c26;
	font-size:50px;
	position: absolute;
	left: 10px;
	top: 0px;
}
blockquote::after {
  content: "";
}
.progress {
	height: auto;
	padding: 6px;
	border-radius: 6px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.progress-bar {	
	width: 0%;
	height: 18px;
	background-color: #ee303c;  
	border-radius: 4px; 
	transition: 0.4s linear;  
	transition-property: width, background-color;    
}
.progress-bar { 	
	background-color: #333; 
}
.progress-bar > div {
	width: fit-content;
	padding: 4px 9px;
	font-weight:bold;
	letter-spacing: 2px;
	color:#fff;
	background-color:rgba(33,33,33,0.47);
	border-radius: 4px;
}
/***Navigation***/
.indexheader {
	display:flex;
	width:100%;
	height:60px;
	color:#000;
	font-family: "Roboto", serif;
	text-transform: uppercase;
	font-size:16px;
	background-color:#fff;
	border-bottom:5px solid #f41c26;
	box-shadow: 0 0 1em #222;
	position:fixed;
	top:0px;
	left:0px;
	z-index:9999;
	justify-content:space-between;
}
.indexheader > div {
	display:flex;
	background-color: #f41c26;
	padding-right: 10px;
}
.indexheader > div > img {
	float:left;
	padding:7px 0px 7px 15px;
	z-index:105;
}
.indexheader a {
	color:#000;
}
body .navbar {
	top:0px;
	border-radius: 0;
	margin-bottom: 0;
	position: fixed;
	z-index: 9999;
	width: 100%;
	border: none;
	-webkit-box-shadow: -1px 4px 13px -8px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 4px 13px -8px rgba(0,0,0,0.75);
	box-shadow: -1px 4px 13px -8px rgba(0,0,0,0.75);
}
.navbar .container-fluid {
	background: #f41c26;
}
ul.navbar-nav {
	margin-left: 10px;
}
.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
.right {
	float: right;
}
@media  (max-width: 786px)  {
  .nav {
		justify-content: flex-end;
	}
}
.navbar-header {
	width: 100%;
}
.nav__picture {
	width: 50px;
	height: 50px;
	background: #fff;
	float: right;
	border: 3px solid #fff;
}
.nav__picture a {
	padding:0 !important;
	margin:0 !important;
}
.nav__picture a img {
	width: 44px;
	height: 44px;
	padding:0;
	margin:0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
@media  (max-width: 767px)  {
}
.link, .button, .submenu-wrapper ul li {
	cursor:pointer;
	color:#333;
	position: relative;
	text-decoration: none;
}
button.link,
button.margin-icon,
button.cardbtn {
	appearance: none;
	border: 0;
	background: transparent;
	font: inherit;
	color: inherit;
	padding: 0;
}
.link:before, .button:before, .submenu-wrapper ul li:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.submenu-wrapper ul li:before {
	height: 3px;
}
.link:hover:before, .button:hover:before, .submenu-wrapper ul li:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
/***Header***/
.header {
	height: 490px;
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.public-header-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.public-profile-picture {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.divProfilbild, .userpic {
	height: 220px;
	width: 220px;
	z-index: 2;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display:flex;
	margin: 0 auto;
}
.header__profil-picture {
	width:100%;
	max-width: 320px;
	position: relative;
	display:flex;
	flex-direction:column;
	padding: 10px 0px 3px 0px;
}
.header__profil-picture .divProfilbild .cogwheel {
	height: 220px;
	width: 220px;
	z-index: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
/* CIRCLEMENU NEW*/
/* CIRCLEMENU NEW*/
.profile-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}
.circlemenu {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  visibility: hidden;
  /* Kein pointer-events Hack mehr nötig! */
}

/* MongoDB News */
.newsbin-app {
	width: 100%;
}
.newsbin-toolbar {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	margin-bottom: 18px;
	padding: 14px;
	border: 1px solid #e6e9ef;
	background: #f8fafc;
	border-radius: 8px;
}
.newsbin-count {
	display: flex;
	align-items: baseline;
	gap: 8px;
	color: #1f2937;
}
.newsbin-count span {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}
.newsbin-count small {
	font-size: 12px;
	text-transform: uppercase;
	color: #667085;
}
.newsbin-toolbar-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}
.newsbin-filter-toggle,
.newsbin-refresh,
.newsbin-provider-button,
.newsbin-subscription-pill button {
	border: 1px solid #d5dae3;
	background: #fff;
	color: #263241;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	min-height: 38px;
	padding: 8px 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.newsbin-filter-toggle.is-active,
.newsbin-provider-button.is-subscribed {
	background: #163f63;
	border-color: #163f63;
	color: #fff;
}
.newsbin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 16px;
}
.newsbin-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(22, 63, 99, 0.08);
}
.newsbin-card-media {
	aspect-ratio: 16 / 9;
	background: #edf2f7;
	overflow: hidden;
}
.newsbin-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.newsbin-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #163f63;
	color: #fff;
	font-size: 42px;
	font-weight: 800;
}
.newsbin-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.newsbin-card-meta {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	color: #667085;
	font-size: 12px;
}
.newsbin-card h3 {
	font-size: 18px;
	line-height: 1.25;
	margin: 0;
	color: #172033;
}
.newsbin-card a:hover {
	text-decoration: none;
}
.newsbin-card p {
	margin: 0;
	color: #3f4b5f;
	line-height: 1.45;
}
.newsbin-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
}
.newsbin-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	background: #eef2f6;
	color: #364152;
}
.newsbin-mood-positive {
	background: #e8f7ef;
	color: #126b3a;
}
.newsbin-mood-negative {
	background: #fdecec;
	color: #9d1c20;
}
.newsbin-politics {
	background: #fff4d6;
	color: #7a4f00;
}
.newsbin-empty,
.newsbin-provider-empty {
	padding: 26px;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	color: #475467;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}
.newsbin-empty-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e8eef5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #163f63;
}
.newsbin-provider-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 8px;
	background: #fff;
}
.newsbin-provider-initial,
.newsbin-subscription-pill strong {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #163f63;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	flex: 0 0 auto;
}
.newsbin-provider-copy {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}
.newsbin-provider-copy strong {
	color: #172033;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsbin-provider-copy span {
	color: #667085;
	font-size: 12px;
}
.newsbin-search-hint {
	margin-top: 8px;
	color: #667085;
	font-size: 12px;
	line-height: 1.35;
	display: flex;
	align-items: center;
	gap: 6px;
}
.newsbin-search-hint i {
	color: #163f63;
}
.newsbin-subscription-section {
	margin: 18px 0;
}
.newsbin-provider-section {
	margin-top: 18px;
}
.newsbin-section-title {
	margin: 0 0 10px;
	color: #172033;
	font-size: 14px;
	font-weight: 800;
}
.newsbin-subscriptions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 8px;
	max-height: 260px;
	overflow-y: auto;
	padding-right: 4px;
}
.newsbin-subscription-pill {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 8px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
}
.newsbin-subscription-label {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	flex: 1;
}
.newsbin-subscription-name {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #172033;
	font-weight: 700;
}
.newsbin-subscription-name small {
	color: #667085;
	font-size: 11px;
	font-weight: 700;
}
.newsbin-subscription-pill button {
	width: 34px;
	height: 34px;
	padding: 0;
	justify-content: center;
	flex: 0 0 auto;
}
.newsbin-search-results {
	margin: 10px 0 18px;
}
.newsbin-letter-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}
.newsbin-letter-button {
	width: 34px;
	height: 34px;
	border: 1px solid #d5dae3;
	border-radius: 8px;
	background: #fff;
	color: #263241;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
}
.newsbin-letter-button.is-active,
.newsbin-letter-button:hover {
	background: #163f63;
	border-color: #163f63;
	color: #fff;
}
.newsbin-provider-results {
	padding-right: 0;
}
@media (max-width: 768px) {
	.newsbin-toolbar {
		align-items: stretch;
		flex-direction: column;
	}
	.newsbin-toolbar-actions {
		justify-content: flex-start;
	}
	.newsbin-filter-toggle,
	.newsbin-refresh {
		flex: 1 1 100%;
		justify-content: center;
	}
	.newsbin-provider-row {
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.newsbin-provider-button {
		width: 100%;
		justify-content: center;
	}
}
.circlemenu.is-circle-ready {
  visibility: visible;
}
.circlemenu .menu-item {
  position: absolute;
  inset: 0;
  cursor: pointer;
  /* DIE MAGIE: Wir beschneiden das komplette li-Element auf die Kuchenform. 
     Dadurch überlappen sie sich nicht mehr und der Hover sitzt immer perfekt! */
  clip-path: var(--sector, polygon(50% 50%, 50% 0, 50% 0));
}
.circlemenu .menu-item-back {
  position: absolute;
  inset: 0;
  background: #efefef;
  transition: background-color 0.2s ease;
  z-index: 1; /* Bleibt unter den Icons */
  /* Das clip-path hier ist entfernt, da das nun der Container (.menu-item) macht */
}
/* --- Hover-Effekte (funktionieren jetzt absolut zuverlässig) --- */
.circlemenu .menu-item:hover .menu-item-back {
  background-color: #f41c26;
}
.circlemenu .menu-item img, .circlemenu .menu-item svg, .circlemenu .menu-icon {
  position: absolute;
  left: var(--icon-x, 50%);
  top: var(--icon-y, 50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}
/* Icon wird größer beim Hover auf das Kuchenstück */
.circlemenu .menu-item:hover img, .circlemenu .menu-item:hover svg, .circlemenu .menu-item:hover .menu-icon {
  transform: translate(-50%, -50%) scale(1.08);
}
/* SVGs entsprechend deiner alten Vorlage einfärben */
.circlemenu .menu-item svg {
  fill: #f41c26 !important;
}
.circlemenu .menu-item:hover svg {
  fill: #efefef !important;
}
/* --- Das Profilbild in der Mitte (unverändert) --- */
.circle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 0 0 8px #fff;
}
.userpic, .userpic-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 41;
  position: absolute;
}
.user-name {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 6;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.divProfilbild div {
  left: 0px;
  top: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vcard-main .userpic, .vcard-ext .userpic {
  cursor: pointer;
  -webkit-transition: All 0.5s ease-in-out;
  -moz-transition: All 0.5s ease-in-out;
  -o-transition: All 0.5s ease-in-out;
  transition: All 0.5s ease-in-out;
  background-size: cover;
}
.cogwheel {
  opacity: 0;
  z-index: 40;
  -webkit-transition: All 0.5s ease-in-out;
  -moz-transition: All 0.5s ease-in-out;
  -o-transition: All 0.5s ease-in-out;
  transition: All 0.5s ease-in-out;
}
.vcard-main .userpic:hover, .vcard-ext .userpic:hover {
  opacity: 0;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}
.vcard-main .userpic:hover ~ .cogwheel, .vcard-ext .userpic:hover ~ .cogwheel {
  opacity: 1;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}
/* CIRCLEMENU OLD */
.boerse_matching {
	width:15px !important;
	height:15px !important;
	position:absolute !important;
	left:28px;
	top:32px;
	background-color:#cc0000;
	font-size:10px;
	line-height:15px;
	padding:1px !important;
	font-weight: bold;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color:#fff;
}
.boerse_matching svg {
	width:7px;
	height:8px;
	color:#fff;
}

.community-app-link span {
	align-items: center;
	display: inline-flex;
	gap: 6px;
	position: relative;
}

.dating-notify-dot {
	background: #cc0000;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
	display: none;
	height: 11px;
	width: 11px;
}

.community-app-dating.has-dating-unread .dating-notify-dot {
	display: inline-block;
}

.dating-action-icon {
	fill: none;
	height: 27px;
	stroke: #f41c26;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
	width: 27px;
}

.dating-action-busy {
	opacity: 0.62;
}

.dt-chat-footer {
	padding: 0 16px 16px;
}

.dt-chat-shell {
	width: 100%;
}

.dt-slot-line {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.dt-slot-line .dt-chat-list,
.dt-slot-line .dt-request-slot-list {
	display: contents;
}

.dt-slot-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.dt-slot-label {
	align-items: center;
	color: #666;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 10px;
	justify-content: space-between;
	line-height: 1.2;
	text-transform: uppercase;
}

.dt-slot-label strong {
	color: #222;
	font-size: 12px;
	font-weight: 800;
}

.dt-chat-list,
.dt-request-slot-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.dt-chat-list .dt-chat-contact {
	outline: none;
}

.dt-chat-list .dt-chat-contact.is-active {
	border-color: rgba(244, 28, 38, 0.45);
	box-shadow: 0 0 0 4px rgba(244, 28, 38, 0.10), 0 10px 18px rgba(0, 0, 0, 0.10);
	transform: translateY(-2px);
}

.dt-chat-list .dt-chat-contact.has-unread::after {
	background: #f41c26;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(244, 28, 38, 0.20);
	content: "";
	display: block;
	height: 12px;
	position: absolute;
	right: 6px;
	top: 6px;
	width: 12px;
}

.dt-chat-list .dt-chat-empty {
	align-items: center;
	color: #777;
	display: flex;
	font-size: 13px;
	min-height: 62px;
}

.dt-slot-tile {
	cursor: default;
}

#dt-chat-root {
	position: fixed;
	top: 76px;
	right: 20px;
	bottom: 20px;
	width: min(420px, calc(100vw - 24px));
	z-index: 9999;
	pointer-events: none;
	font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
	--chat-color-primary: #f41c26;
	--chat-color-primary-soft: rgba(244, 28, 38, 0.08);
	--chat-color-primary-border: rgba(244, 28, 38, 0.18);
	--chat-color-surface: #ffffff;
	--chat-color-bg: #f5f5f5;
	--chat-color-text: #222222;
	--chat-color-muted: #7e7e7e;
	--chat-color-line: #e8e8e8;
	--chat-radius-panel: 24px;
	--chat-radius-button: 14px;
	--chat-radius-bubble: 16px;
	--chat-shadow-panel: 0 18px 50px rgba(0, 0, 0, 0.18);
}

#dt-chat-root * {
	box-sizing: border-box;
}

#dt-chat-root.chat-is-open {
	pointer-events: auto;
}

#dt-chat-root .chat-shell {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.98);
	border-left: 1px solid var(--chat-color-primary-border);
	border-radius: var(--chat-radius-panel);
	box-shadow: var(--chat-shadow-panel);
	backdrop-filter: blur(16px);
	transform: translateX(calc(100% + 32px));
	opacity: 0;
	pointer-events: none;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

#dt-chat-root.chat-is-open .chat-shell {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}

#dt-chat-root .chat-topbar {
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	background: #fff;
	border-bottom: 3px solid var(--chat-color-primary);
	flex-shrink: 0;
}

#dt-chat-root .chat-topbar-brand {
	min-width: 0;
	flex: 1;
}

#dt-chat-root .chat-topbar-title {
	font-family: "Roboto Slab", Roboto, serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--chat-color-text);
}

#dt-chat-root .chat-topbar-subtitle,
#dt-chat-root .chat-status-text,
#dt-chat-root .chat-partner-subline {
	color: var(--chat-color-muted);
	font-size: 12px;
}

#dt-chat-root .chat-topbar-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

#dt-chat-root .chat-status-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #cccccc;
	flex: 0 0 auto;
}

#dt-chat-root .chat-status-dot.chat-status-online {
	background: #47a447;
}

#dt-chat-root .chat-icon-button,
#dt-chat-root .chat-send-button {
	appearance: none;
	border: 0;
	cursor: pointer;
}

#dt-chat-root .chat-icon-button {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 12px;
	background: #f7f7f7;
	color: #333;
	line-height: 1;
	flex: 0 0 auto;
	transition: background-color 0.18s ease, color 0.18s ease;
}

#dt-chat-root .chat-icon-button:hover {
	background: var(--chat-color-primary);
	color: #fff;
}

#dt-chat-root .chat-icon-button.is-disabled,
#dt-chat-root .chat-icon-button:disabled {
	cursor: default;
	opacity: 0.45;
	pointer-events: none;
}

#dt-chat-root .chat-button-icon {
	width: 19px;
	height: 19px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#dt-chat-root .chat-main-panel,
#dt-chat-root .chat-main-panel.chat-main-panel-active,
#dt-chat-root .chat-view.chat-view-active {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}

#dt-chat-root .chat-conversation-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #fff;
	border-bottom: 1px solid var(--chat-color-line);
	flex-shrink: 0;
}

#dt-chat-root .chat-partner-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	background: #efefef;
	flex: 0 0 auto;
}

#dt-chat-root .chat-partner-meta {
	flex: 1;
	min-width: 0;
}

#dt-chat-root .chat-partner-name {
	font-family: "Roboto Slab", Roboto, serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--chat-color-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#dt-chat-root .chat-messages {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 8px 0;
	background: var(--chat-color-bg);
}

#dt-chat-root .chat-message {
	max-width: 78%;
	margin: 3px 10px;
	padding: 8px 12px;
	border-radius: var(--chat-radius-bubble);
	font-size: 13px;
	line-height: 1.4;
	word-wrap: break-word;
}

#dt-chat-root .chat-message.chat-message-foreign {
	align-self: flex-start;
	color: #fff;
	background: var(--chat-color-primary);
	border-bottom-left-radius: 4px;
	margin-right: auto;
}

#dt-chat-root .chat-message.chat-message-own {
	align-self: flex-end;
	margin-left: auto;
	color: #333;
	background: #fff;
	border-bottom-right-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

#dt-chat-root .chat-message-time {
	display: block;
	margin-top: 3px;
	text-align: right;
	font-size: 10px;
	opacity: 0.72;
}

#dt-chat-root .chat-message.chat-message-foreign .chat-message-time {
	color: rgba(255, 255, 255, 0.82);
}

#dt-chat-root .chat-message-text {
	white-space: pre-wrap;
}

#dt-chat-root .chat-composer {
	position: relative;
	padding: 12px;
	background: #fff;
	border-top: 1px solid var(--chat-color-line);
	flex-shrink: 0;
}

#dt-chat-root .chat-composer-inner {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	padding: 8px;
	background: #f8f8f8;
	border: 1px solid #ececec;
	border-radius: 18px;
}

#dt-chat-root .chat-input {
	width: 100%;
	flex: 1;
	min-height: 42px;
	max-height: 140px;
	resize: none;
	border: 0;
	outline: none;
	background: transparent;
	padding: 8px 10px;
	font: inherit;
	color: var(--chat-color-text);
	overflow-y: auto;
}

#dt-chat-root .chat-send-button {
	width: 44px;
	height: 44px;
	border-radius: var(--chat-radius-button);
	background: linear-gradient(135deg, #f41c26 0%, #ff5b62 100%);
	color: #fff;
	flex: 0 0 auto;
	box-shadow: 0 8px 18px rgba(244, 28, 38, 0.22);
}

#dt-chat-root .dt-chat-empty {
	color: #777;
	font-size: 13px;
	line-height: 1.5;
	padding: 16px;
}

@media (max-width: 767px) {
	#dt-chat-root {
		top: 68px;
		right: 8px;
		bottom: 8px;
		width: calc(100vw - 16px);
	}

	#dt-chat-root .chat-shell {
		border-radius: 18px;
	}
}
/***Columns***/
.row > div {
	width:100%;
	margin: 5px 0px;
	/**box-shadow: 0 0px 9px 4px rgba(0, 0, 0, 0.1), 0 -5px 2px 2px rgba(0, 0, 0, 0.1);**/
}
/***Panels***/
.none {
	display: none;
}
.profile-settings-trigger,
[data-world-action] {
	cursor: pointer;
}
.oev-form-label {
	display: block;
	margin-bottom: 2px;
	color: #888;
	font-size: 0.85rem;
}
.alarm-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}
.alarm-row .oev-alarm-select {
	flex: 1;
}
.oev-alarm-action {
	padding: 5px;
	color: #f41c26;
}
.oev-alarm-remove {
	padding: 5px;
	color: #888;
}
.comment-own-avatar {
	border-radius: 16px;
}
.comment-body-inline {
	display: inline;
	vertical-align: top;
}
.card {
	-webkit-box-shadow: 3px 4px 5px 1px rgba(0,0,0,0.03);
	box-shadow: 3px 4px 5px 1px rgba(0,0,0,0.03);
}
.card-block {
	padding:5px;
}
.card > .card-header {
	background: #fff !important;
	color: #333 !important;
	box-shadow: inset 0px -3px 0px 0px #f41c26;
	border:none;
	min-height:70px;
	transition: 1s;
	display: flex;
	align-items: center;
	padding:0px 0px 0px 10px;
	justify-content: space-between;
}
.card > .card-header svg {
	height:32px;
	width:32px;
}
.card > .card-header i {
	font-size: 1.8rem;
	margin-right: 10px;
}
.card-header span {
	vertical-align:middle;
	font-weight:bold;
}
.card-header > img {
	height:24px;
	margin-right:5px;
}
/***profil-section***/
.profil__name {
	font-size: 23px;
	background-color: #fff;
	border-radius: 5px;
	padding: 5px;
	margin: -25px auto 0 auto;
	z-index: 2;
	text-align:center;
}
/***Subnavigation**/
/***Utility***/
.padding-10 {
	padding:10px;
}
.padding-20 {
	padding:20px;
}
.mtop5 {
	margin-top:5px;
}
.mbottom5 {
	margin-bottom:5px;
}
.mtop30 {
	margin-top:20px;
}
.mbottom30 {
	margin-bottom:20px;
}
.color-white {
	color: #fff;
}
a .color-white:hover {
	color: #d4d4d4;
	transition: 
}
.width-100 {
	max-width: 100% !important;
}
.socialed-hidden {
	display: none !important;
}
.socialed-clickable {
	cursor: pointer;
}
.socialed-font-bold {
	font-weight: bold;
}
.socialed-profilepic-gap {
	margin: 3px;
}
.socialed-profilepic-inline {
	margin-top: 3px;
	vertical-align: top;
}
.socialed-inline-profile-name {
	display: inline-block;
	margin-top: 2px;
	margin-left: 10px;
	vertical-align: top;
}
.socialed-section-placeholder {
	position: relative;
	height: 500px;
}
.socialed-button-w200 {
	width: 200px;
}
.socialed-my-10 {
	margin: 10px 0;
}
.socialed-my-15 {
	margin: 15px 0;
}
.socialed-mt-10 {
	margin-top: 10px;
}
.socialed-muted-hint {
	margin-top: 10px;
	color: #777;
}
.socialed-page-offset {
	margin-top: 130px;
}
.socialed-reset-form-row {
	max-width: 300px;
	position: relative;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.socialed-support-avatar {
	cursor: pointer;
}
.socialed-warning-link {
	color: #f41c26;
	font-weight: bold;
}
.socialed-icon-gap-right {
	margin-right: 5px;
}
.socialed-karmalist {
	font-family: "Roboto";
	font-size: 16px;
}
.socialed-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.margin-icon {
	margin-left: 10px;
}
.profilepic68 {
	display:flex;
	width:68px;
	height:68px;
	justify-content: center;
}
.profilepic32 {
	width:32px;
	height:32px;
}
.profilepic24 {
	width:24px;
	height:24px;
}
.profilepic20 {
	width:20px;
	height:20px;
}
.round {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.eventdate {
	position:relative;
	display:inline-block;
	width:50px;
	height:50px;
	font-size:13px;
	color:#fff;
	font-family: "Roboto", serif;
	background-color:#f41c26;
	text-align:center;
	letter-spacing:1px;
	z-index:2;
	line-height: normal;
	border-right:1px solid #fff;
}
.eventdate > div:nth-child(2) {
	letter-spacing:2.5px;
}
.eventdate > div:nth-child(3) {
	letter-spacing:1.5px;
}
.cursor-default {
	cursor: default !important;
}
/***Buttons***/
.submenu-wrapper {
	width: 100%;
}
.submenu-wrapper ul {
	display:flex;
	margin: 0;
	padding: 0;
	height: 100px;
	border-radius: 3px;
	background-color: #fff;
	justify-content:center;
}
.submenu-wrapper ul li {
	width: 20%;
	text-align: center;
	vertical-align:middle;
	cursor:pointer;
	color:#ff0000;
	list-style:none;
}
.submenu-wrapper ul li:before {
	background-color: #ff0000;
}
.submenu-wrapper ul li {
	color:#ff0000;
}
.submenu-wrapper img {
	width: 40px;
	padding-top:15px;
}
.submenu-wrapper li div {
	margin-top: 5px;
	font-size: 16px;
}
@media  (min-width: 800px)  {
}
@media  (max-width: 600px)  {
}
@media  (max-width: 512px)  {
  .submenu-title {
		display:none;
	}
  .submenu-wrapper ul {
		height:70px;
	}
}
.center {
	text-align: center;
}
.flex {
	display:flex;
}
.flexcontainer{
	display:flex;
	flex-wrap: wrap;
}
.button {
	width:min-content;
	position:relative;
	display:inline-flex;
	align-items:center;
	background-color:#f9f9f9;
	white-space: nowrap;
	cursor:pointer;
	flex-wrap:nowrap;
	padding:3px;
}
.button div:first-child img {
	position:absolute;
	top:9px;
	left:9px;
	height:20px;
	width:20px;
	filter: invert(100%);
}
.button:hover div:first-child img {
	filter: invert(0%);
}
.button .red {
	height:32px;
	width:32px;
	display:flex;
	background-color:#f41c26;
	border-radius:5px;
}
.button .default {
	height:32px;
	width:32px;
	display:flex;
	background-color:#333;
	border-radius:5px;
}
.button .text {
	height:32px;
	display:flex;
	align-items:center;
	padding:0px 12px 0px 8px;
	border-radius:5px;
}
.button > div:first-child {
	margin-right: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: bold;
}
.button:hover > div:first-child {
	background-color:#fff;
	transition: .3s ease-out;
	margin-right:4px;
	color: #f41c26;
}
.button:hover .red ~ .text {
	box-shadow: inset 300px 0 0 0 #f41c26;
	color:#fff;
	transition: .5s ease-out;
}
.button:hover .red {
	box-shadow: inset 1px 0px 0px 4px #f41c26;
}
.button:hover .default ~ .text, .button:hover .default ~ a .text {
	box-shadow: inset 300px 0 0 0 #f41c26 ;
	color:#fff;
	transition: .5s ease-out;
}
.button:hover .default {
	box-shadow: inset 0px 0px 0px 4px #f41c26;
}
.button-black {
	background-color: #333333;
	color: #ffffff;
	border-radius: 5px;
	padding: 3px 8px;
	margin-right: -5px;
	font-size: 13px;
}
.button-info {
	background-color: #337ab7;
	color: #ffffff;
	border-radius: 5px;
	font-size: 13px;
	cursor:pointer;
}
.button-black:hover, .button-info:hover {
	background-color: #f41c26;
}
.button img {
	height:14px;
}
.button .info {
	filter: invert(1);
}
/***Gruppen***/
.gp-adm-ind-content {
	display:none;
}
/***Voting***/
.voting-standalone {
	background: #f5f5f5;
}
.voting-standalone .voting-page {
	padding-top: 82px;
}
.voting-page {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto 50px auto;
}
.feature-voting-profile {
	margin: 18px auto 8px auto;
}
.voting-content {
	max-width: 1120px;
	margin: 0 auto;
}
.voting-content .card {
	border: 0;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 14px;
}
.voting-intro-body {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 22px !important;
}
.voting-intro-copy p {
	max-width: 700px;
	color: #444;
	font-size: 16px;
	line-height: 1.55;
}
.voting-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(92px, 1fr));
	gap: 10px;
	min-width: 320px;
}
.voting-stat {
	background: #fafafa;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 8px;
	padding: 12px;
	text-align: center;
}
.voting-stat strong {
	display: block;
	font-size: 25px;
	line-height: 1;
	color: #f41c26;
}
.voting-stat span {
	display: block;
	margin-top: 6px;
	color: #555;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.voting-steps {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.voting-steps span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 8px;
	color: #333;
	font-weight: 700;
	padding: 8px 10px;
}
.voting-steps i {
	color: #f41c26;
}
.voting-form-body {
	padding: 22px !important;
}
.voting-form-body .inputgroup {
	max-width: none;
}
.voting-form-actions,
.voting-card-actions,
.voting-header-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.voting-header-actions {
	justify-content: flex-end;
	padding-right: 10px;
}
.voting-sort-controls {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #f4f4f4;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 8px;
	padding: 4px;
}
.voting-sort-controls button,
.voting-reset-button,
.voting-action {
	appearance: none;
	border: 0;
	font: inherit;
	cursor: pointer;
}
.voting-sort-controls button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	border-radius: 6px;
	background: transparent;
	color: #333;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 9px;
}
.voting-sort-controls button.active,
.voting-sort-controls button:hover {
	background: #f41c26;
	color: #fff;
}
.voting-reset-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	border-radius: 6px;
	background: #333;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 7px 10px;
}
.voting-reset-button:hover {
	background: #f41c26;
}
.voting-list-body {
	position: relative;
	padding: 16px !important;
}
.voting-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	padding-bottom: 10px;
}
.voting-tabs button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	border: 0;
	border-radius: 6px;
	background: #f4f4f4;
	color: #333;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 11px;
}
.voting-tabs button.active,
.voting-tabs button:hover {
	background: #f41c26;
	color: #fff;
}
.voting-votes-left {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin-bottom: 12px;
	border-radius: 6px;
	background: #333;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 7px 10px;
}
.voting-suggestions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.voting-suggestion {
	border: 1px solid rgba(0,0,0,0.08);
	border-left: 4px solid #d8d8d8;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.voting-suggestion:hover {
	border-left-color: #f41c26;
	box-shadow: 0 8px 18px rgba(0,0,0,0.08);
	transform: translateY(-1px);
}
.voting-suggestion.is-voted {
	border-left-color: #2f9e6b;
}
.voting-suggestion.is-top {
	border-top-color: rgba(244,28,38,0.25);
}
.voting-suggestion.is-closed {
	border-left-color: #333;
	background: #fdfdfd;
}
.voting-suggestion.is-closed .voting-score {
	background: #efefef;
	color: #555;
}
.voting-suggestion-main {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) 34px;
	gap: 14px;
	align-items: center;
	width: 100%;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	padding: 14px;
	text-align: left;
}
.voting-score {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 70px;
	border-radius: 8px;
	background: #f6f6f6;
	color: #333;
}
.voting-suggestion.is-voted .voting-score {
	background: rgba(47,158,107,0.1);
	color: #21734e;
}
.voting-score strong {
	font-size: 28px;
	line-height: 1;
}
.voting-score span {
	margin-top: 5px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}
.voting-copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.voting-title-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
}
.voting-title-row strong {
	font-size: 18px;
	line-height: 1.25;
	color: #202020;
	word-break: break-word;
}
.voting-top-badge,
.voting-own-badge {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 7px;
}
.voting-top-badge {
	background: rgba(244,28,38,0.1);
	color: #f41c26;
}
.voting-own-badge {
	background: rgba(47,158,107,0.12);
	color: #21734e;
}
.voting-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: #666;
	font-size: 13px;
}
.voting-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.voting-chevron {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #777;
	transition: transform .2s ease;
}
.voting-suggestion.is-open .voting-chevron {
	transform: rotate(180deg);
}
.voting-suggestion-details {
	display: none;
	border-top: 1px solid rgba(0,0,0,0.06);
	padding: 16px 16px 18px 116px;
	color: #444;
	line-height: 1.55;
}
.voting-suggestion-details p {
	margin-bottom: 14px;
	word-break: break-word;
}
.voting-reason {
	margin: 0 0 14px 0;
	border-left: 4px solid #333;
	border-radius: 6px;
	background: #f6f6f6;
	color: #444;
	padding: 10px 12px;
}
.voting-reason strong {
	color: #222;
}
.voting-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 12px;
}
.voting-action-primary {
	background: #f41c26;
	color: #fff;
}
.voting-action-secondary {
	background: #333;
	color: #fff;
}
.voting-action-disabled {
	background: #efefef;
	color: #666;
	cursor: default;
}
.voting-action-primary:hover,
.voting-action-secondary:hover {
	filter: brightness(0.94);
}
.voting-admin-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
	border-top: 1px solid rgba(0,0,0,0.06);
	padding-top: 14px;
}
.voting-admin-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 34px;
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	padding: 7px 10px;
}
.voting-admin-accept {
	background: #2f9e6b;
}
.voting-admin-reject {
	background: #7a7a7a;
}
.voting-admin-delete {
	background: #c62828;
}
.voting-admin-button:hover {
	filter: brightness(0.94);
}
.voting-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	border: 1px dashed rgba(0,0,0,0.16);
	border-radius: 8px;
	color: #555;
	text-align: center;
	padding: 24px;
}
.voting-empty-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 10px;
	border-radius: 50%;
	background: rgba(244,28,38,0.1);
	color: #f41c26;
	font-size: 22px;
}
.voting-empty-state strong {
	font-size: 18px;
	color: #222;
}
.voting-empty-state span {
	max-width: 360px;
	margin-top: 6px;
}
@media (max-width: 900px) {
	.voting-intro-body {
		grid-template-columns: 1fr;
	}
	.voting-stats {
		min-width: 0;
	}
	.voting-header-actions {
		width: 100%;
		justify-content: flex-start;
		padding: 0 0 10px 10px;
	}
}
@media (max-width: 620px) {
	.voting-stats {
		grid-template-columns: 1fr;
	}
	.voting-suggestion-main {
		grid-template-columns: 68px minmax(0, 1fr) 26px;
		gap: 10px;
		padding: 12px;
	}
	.voting-score {
		min-height: 62px;
	}
	.voting-score strong {
		font-size: 23px;
	}
	.voting-title-row strong {
		font-size: 16px;
	}
	.voting-suggestion-details {
		padding: 14px;
	}
	.voting-sort-controls,
	.voting-reset-button,
	.voting-action,
	.voting-tabs button,
	.voting-admin-button {
		width: 100%;
	}
	.voting-sort-controls button {
		flex: 1;
		justify-content: center;
	}
}
/***Interests***/
.interestcheckbox {
	width:300px !important;
}
/***Calendar***/
@media  (max-width: 991px)  {
}
.bggrey {
	background-color:#eee;
}
/***Contactinformation***/
/***Hamburger***/
.wi-100 {
	width: 100% !important;
}
.wi-auto {
	width: auto !important;
}
.li__distance {
	position:relative;
}
.li__distance:hover {
    background-color: #f41c26;
}
/*** Interests ***/
.bgwhite {
	background-color:#fff;
}
.nobg {
	background-color:transparent;
	background-image: none;
}
.svg-red svg {
	fill:#ee0000;
}
.svg-green svg {
	fill:#00cc99;
}
.colorred {
	color: #f41c26;
	fill: #f41c26;
}
.colorgreen {
	color: #47a447;
	fill: #47a447;
}
.colorblue {
	color: #39b3d7;
	fill: #39b3d7;
}
/** OTHER **/
#searchmembers {
	padding:5px;
	margin-bottom:20px;
}
/*--------------------Uploads----------------------*/
.table {
	background-color:#fff;
	margin-bottom: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.table .link:hover {
	color:#ffffff;
	background-color:#f41c26;
	transition:0.5s;
}
.table > div {
	display:flex;
	width:100%;
	padding-left:5px;
	background-color:#fff;
	margin:2px 0px;
	align-items: center;
	border-radius:5px;
}
.table > div:hover {
	color:#ffffff;
}
.table > div:nth-child(even) {
	background-color:#f5f5f5;
}
.table > div > span, .table > div > div > span {
	padding: 10px 0px 10px 10px;
}
.contactlist {
	padding:0px 15px;
}
.contactlist > div {
	padding:5px;
	margin: 0px;
}
.contactlist > div img {
	width:32px;
	height:32px;
	margin-right:5px;
}
.contactlist > div > span {
	vertical-align:middle;
}
.contactlist > div:hover {
	background-color: #f41c26;
	color: #fff;
	border-radius: 5px;
}
.tablenav {
	height:40px;
	display:inline-block;
	text-align:right;
}
.tablenav div {
	min-width:40px;
	min-height:40px;
	background-size:24px 24px;
	background-position:center;
	background-repeat:no-repeat;
}
.tablenav div:hover {
	background-color:#eee;
}
.table .tag {
	padding:3px 8px;
	background-color:#f41c26;
	border-radius:50%;
	margin-right: 5px;
	display:inline;
	color:#fff;
	font-size:12px;
}
/*************Forum************/
/******FORMS*******/
:invalid {
	box-shadow:none;
}
.form-block {
	position:relative;
	display:block;
	width:100%;
	max-width:300px;
}
.flexform-entry {
	display:flex;
	align-items: center;
}
.form-block .inputgroup, .form-block .select {
	margin:5px 0px;
}
/* ============================== */
/* FORMULARFELDER                                            */
/* ============================== */
/* Container für das alte HTML-Markup */
.inputgroup { 
    position: relative; 
    margin-bottom: 25px; 
    width: 100%; 
    background: #fff; 
    display: block; 
}

/* Verstecke die alten Balken-Animationen des alten Designs */
.inputgroup .highlight,
.inputgroup .inputbar,
.inputgroup .inputbarta {
    display: none !important;
}

/* Das eigentliche Eingabefeld (Input, Textarea, Select) */
.inputgroup input, 
.inputgroup textarea, 
.inputgroup select { 
    width: 100%; 
    padding: 16px 15px; 
    font-size: 1rem; 
    border: 2px solid #e2e8f0; 
    border-radius: 8px; 
    background-color: transparent; 
    color: #333; 
    transition: all 0.3s ease; 
    box-sizing: border-box; 
    font-family: inherit; 
}

/* Fokus-Zustand des Feldes */
.inputgroup input:focus, 
.inputgroup textarea:focus, 
.inputgroup select:focus { 
    border-color: #f41c26; 
    outline: none; 
    box-shadow: 0 0 0 4px rgba(244, 28, 38, 0.1); 
}

/* Das schwebende Label (Standard-Zustand) */
.inputgroup label { 
    position: absolute; 
    top: 50%; 
    left: 12px; 
    transform: translateY(-50%); 
    font-size: 1rem; 
    color: #888; 
    background: #fff; 
    padding: 0 6px; 
    pointer-events: none; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: 4px; 
    margin: 0;
}

/* Wenn fokussiert oder valide (ausgefüllt) -> Label schwebt nach oben */
.inputgroup input:focus ~ label,
.inputgroup textarea:focus ~ label,
.inputgroup select:focus ~ label,
.inputgroup input:valid ~ label,
.inputgroup textarea:valid ~ label { 
    top: 0; 
    font-size: 0.85rem; 
    color: #f41c26; 
    font-weight: 500; 
}

/* Label wieder grau machen, wenn Feld ausgefüllt, aber nicht mehr fokussiert ist */
.inputgroup input:not(:focus):valid ~ label,
.inputgroup textarea:not(:focus):valid ~ label { 
    color: #888; 
}

/* --- TEXTAREA SPEZIFISCH --- */
.inputgroup textarea { 
    resize: vertical; 
    min-height: 120px; 
    padding-top: 18px; 
}
.inputgroup textarea ~ label { 
    top: 24px; 
}
.inputgroup textarea:focus ~ label,
.inputgroup textarea:valid ~ label { 
    top: 0; 
}

/* --- DATE & SELECT SPEZIFISCH --- */
/* Diese Felder haben immer einen Wert, daher schwebt das Label immer oben */
.inputgroup input[type="date"] ~ label,
.inputgroup select ~ label { 
    top: 0; 
    font-size: 0.85rem; 
    color: #888; 
}
.inputgroup input[type="date"]:focus ~ label,
.inputgroup select:focus ~ label { 
    color: #f41c26; 
}
.inputgroup select { 
    appearance: none; 
    cursor: pointer; 
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23888" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); 
    background-repeat: no-repeat; 
    background-position: right 12px center; 
    padding-right: 40px; 
}

/* ========================================================= */
/* Lokale Modernisierungen (Cards, Chips, Banner)            */
/* ========================================================= */
.modern-event-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; margin-bottom: 10px; background: #f9f9f9; border-radius: 6px; border-left: 4px solid #f41c26; cursor: pointer; transition: all 0.2s ease; }
.modern-event-item:hover { background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.08); transform: translateY(-2px); border-left: 6px solid #f41c26; }
.modern-event-info { display: flex; flex-direction: column; gap: 5px; }
.modern-event-info strong { color: #f41c26; font-size: 0.95rem; }
.modern-event-info span { font-size: 1.1rem; color: #333; font-weight: 500; }
.modern-event-badge { background: #333; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; display: flex; align-items: center; gap: 6px;}
.modern-banner { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); border-radius: 0 0 5px 5px; display: flex; align-items: center; gap: 25px; padding: 35px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); color: #fff; }
.modern-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.6; margin-top: 10px; }
.modern-user-chip { display: flex; align-items: center; gap: 15px; padding: 10px 15px; background: #fff; border-radius: 50px; border: 1px solid #eee; cursor: pointer; transition: all 0.2s ease; margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.modern-user-chip:hover { border-color: #f41c26; box-shadow: 0 4px 12px rgba(244, 28, 38, 0.15); transform: translateY(-2px); }
.modern-user-chip span { font-weight: bold; flex-grow: 1; font-size: 1.05rem; color: #333;}
.modern-user-chip .fa-chevron-right { color: #ccc; transition: color 0.2s; }
.modern-user-chip:hover .fa-chevron-right { color: #f41c26; }
.modern-checkbox-list { list-style: none; padding: 0; margin: 0; }
.modern-checkbox-list li { position: relative; padding: 15px; margin-bottom: 10px; background: #fdfdfd; border-radius: 6px; border: 1px solid #eee; display: flex; align-items: center; cursor: pointer; transition: background 0.2s; }
.modern-checkbox-list li:hover { background: #f5f5f5; }
.modern-checkbox-list input[type="checkbox"] { margin-right: 15px; transform: scale(1.3); cursor: pointer; }
.modern-checkbox-list label { margin: 0; cursor: pointer; font-size: 0.95rem; flex-grow: 1; color: #444; }
@media(max-width: 768px){ .modern-banner { flex-direction: column; text-align: center; } }
.tag {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
	margin: 12px 5px 0px 0px;
}
.tag.active {
    background-color: #0056b3;
}
.tag button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    margin-left: 5px;
}
.tag-input {
    border: none;
    outline: none;
    padding: 5px;
    display: inline-block;
    min-width: 100px;
}
ul li.radio, ul li.checkbox {
	display: inline-flex;
	position: relative;
	width: 100%;
	margin-left:-35px;
}
ul li.radio input[type=radio], ul li.checkbox input[type=checkbox] {
  visibility: hidden;
}
ul li.radio label, ul li.checkbox label {
  display: flex;
  position: relative;
  font-weight: 300;
  padding: 0px 0px 0px 20px;
  margin: 0px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.15s linear;
  line-height:initial !important;
  min-height: 35px;
  align-items: center;
}
ul li.radio:hover label, ul li.checkbox:hover label {
	color: #f41c26;
}
ul li.radio .check {
  display: block;
  position: absolute;
  border: 3px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 6px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}
ul li.checkbox .check {
  display: block;
  position: absolute;
  border: 3px solid #AAAAAA;
  height: 25px;
  width: 25px;
  top: 6px;
	z-index: 5;
}
ul li.radio:hover .check, ul li.checkbox:hover .check {
  border: 3px solid #000;
}
ul li.radio .check::before {
	display: block;
	position: absolute;
	top:2px;
	left:2px;
	content: "";
	border-radius: 100%;
	height: 15px;
	width: 15px;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}
ul li.checkbox .check::before {
	display: block;
	position: absolute;
	top:2px;
	left:2px;
	content: "";
	height: 15px;
	width: 15px;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}
input[type=radio]:checked ~ .check, input[type=checkbox]:checked ~ .check {
  border: 3px solid #f41c26;
}
input[type=radio]:checked ~ .check::before, input[type=checkbox]:checked ~ .check::before {
  background: #f41c26;
}
input[type=radio]:checked ~ label, input[type=checkbox]:checked ~ label {
  color: #f41c26;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 7.3px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 11.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: rgba(48, 113, 169, 0.78);
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
  border: 1.8px solid #00001e;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #fdffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(54, 126, 189, 0.78);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
  border: 1.8px solid #00001e;
  height: 26px;
  width: 26px;
  background: #fdffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: rgba(42, 100, 149, 0.78);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 0.9px 0.9px 1px #000031, 0px 0px 0.9px #00004b;
  border: 1.8px solid #00001e;
  height: 26px;
  width: 26px;
  background: #fdffff;
  cursor: pointer;
  height: 11.4px;
}
.select {
  position: relative;
  display: block;
  width: 100%;
  max-width: 300px;
  color: #999;
  vertical-align: middle;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}
.select .placeholder {
	position: relative;
	display: block;
	background: #fff;
	color: rgba(0, 0, 0, 0.6);
	z-index: 1;
	padding: 1em;
	cursor: pointer;
	border-bottom:1px solid #757575;
	font-size: 14px;
	padding: 10px 10px 10px 5px;
}
.select .placeholder:hover {
  background: #337ab7;
  color:#fff;
  border-bottom:1px solid #fff;
}
.select .placeholder:after {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: url("img/dropdown_inactive.png");
  z-index: 10;
}
.select ul {
  display: none;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  background: #fff;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  z-index: 100;
  max-height: 120px;
}
.select ul li {
  display: block;
  text-align: left;
  padding: 7px 5px;
  color: #999;
  cursor: pointer;
}
.select ul li:hover {
  background: #337ab7;
  color: #fff;
}
/*************************/
.regpromo li {
	list-style-type:none;
	margin:none;
	margin-left:-35px;
	margin-bottom:10px;
	display:inline-block;
	width:100%;
	min-height:32px;
	padding-left:37px;
}
.groupnavigation, .dtgroupnavigation {
	position:relative;
	z-index:2;
}
.groupheadline {
	margin-top:60px;
}
.btn-xl {
  color: white;
  background-color: #f41c26;
  border-color: #f41c26;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  font-size: 18px;
  padding: 20px 40px;
  border: none;
  border-radius: 0px;
}
.btn-xl:hover, .btn-xl:focus, .btn-xl:active, .btn-xl.active {
  color: white;
  background-color: #f41c26;
  border-color: #f41c26;
}
.infobar {
	margin-bottom:-25px !important;
}
.paybtn {
	margin:10px;
	padding:10px;
}
.chat {
  position:relative;
  width: 100%;
  max-width:400px;
  height:100%;
  padding:0px !important;
  margin:0px !important;
}
.nopadding {
	padding:0px !important;
}
.nomargin {
	margin:0px !important;
}
.tablenav > img {
	display:inline !important;
	padding:10px;
	font-size:20px;
	background-color:#fcfcfc;
}
.navtoggle {
	display:none;
	position:fixed;
	width:210px;
	left:0px;top:0px;
	border-right:1px solid #f41c26;
	border-bottom:1px solid #f41c26;
	background-color:#fff;
	margin-top:60px;
}
.navtoggle ul {
	padding-left:0px;
	list-style-type: none;
	padding:none;
}
.navtoggle ul li {
	line-height:40px;
	padding-left:10px;
	text-align:left;
}
.navtoggle ul a li {
	line-height:40px;
	padding-left:10px;
	text-align:left;
}
.navtoggle ul a li:hover,
.navtoggle ul li:hover {
	background-color:#fafafa;
	cursor:pointer;
}
.nav-menu-action,
.profileround-action {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	padding: 0;
}
.nav-menu-action {
	display: block;
	width: 100%;
	line-height:40px;
	text-align: left;
	text-transform: uppercase;
}
.navtoggle ul hr {
	margin-top:3px;
	margin-bottom:3px;
}
.inputgroup .feedsearch-label {
	top:13px;
}
.feedsearch-input,
.member-search-input {
	max-width: none;
	padding: 1em 1.5em;
	text-indent: 1em;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAUCAYAAABvVQZ0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAT5JREFUeNqsVLtOw0AQtIMlRJHCEhUVMg398QEUSZnSfILzCXxDPsFu6XAJHWnTcS1lWsprKdmLxtKwvjVBYaTV7cm+udnX5fPb+yyBSmwhVmK/FfPZLyjUPhI8YtXYi23EOovs7PzyevAbsWeoGg5HNUHsCipX8F9TZDOstVgLPxIsxW6w3sHv6dJ2StkLbh6IPtR/AWRfSIET20H9D2U1hfaAgxY2KMagcBSmg9/rmwx0lBqTzGfHoVfVHxXgXzCjHNRHnnHke4vMGc2q0RBR0GSeCLlpLaJGFWKUszVuib32nih7iTFrjXAPyGnQ48c3Gu5AOVlMtMk6NZuf+FiC+AIhV0T+pBQ5ntXceIJKqKko2duJ2TwoLAz5QTVnagJaXWEO8y/wSMuKH9RTJoCTHyNZFidOUEfNu/8WYAAOXUT04MOtlwAAAABJRU5ErkJggg==) no-repeat 14px 14px;
}
.member-search-wrapper {
	z-index: 100;
}
.karma {
	position:absolute;
	top:85px;
	right:15px;
	height:30px;
	width:30px;
	z-index:100;
}
.token {
	position:absolute;
	top:150px;
	right:15px;
	height:30px;
	width:30px;
	z-index:100;
}
.profileround {
	position:absolute;
	height:50px !important;
	width:50px !important;
	line-height:20px;
	background-color:#f41c26;
	color:#fff;
	text-align:center;
}
.profileround:hover {
	background-color:#fff;
	color:#000;
	cursor:pointer;
}
.profileround span {
	font-size:18px;
	font-weight:bold;
	line-height:43px;
}
.profileround div {
	font-size:10px;
	line-height:12px;
	margin-top:-14px;
	text-align:center;
	width:50px;
	height:auto !important;
}
.taskbutton {
	width:100%;
	position:relative;
	padding-top:5px;
	padding-bottom:5px;
	padding-left:5px !important;
	padding-right:0px !important;
	border-bottom:1px solid #f41c26;
	font-size:12px;
	cursor:pointer;
	font-family: "Roboto Slab", serif;
}
.row div .taskbutton:last-child {
	border-bottom:none !important;
}
.taskbutton:hover {
	background-color:#f41c26;
	color:#fff;
}
.taskbuttonstatic {
	padding-top:15px !important;
	padding-bottom:15px !important;
}
.chatHeader {
	position:relative;
	width:100%;
	height:153px;
	text-align:center;
	color:#fff;
	font-size:30px;
	vertical-align:top;
	background-position:center;
	background-size:cover;
}
.chatHeader div {
	display:inline-block;
	font-family: "Roboto Slab", serif;
	font-size:20px;
}
.chatHeaderPic {
	position:relative;
	top: 20px;
	width: 68px;
	-webkit-box-shadow: 0px 0px 0px 3px rgba(255,255,255,1);
	-moz-box-shadow: 0px 0px 0px 3px rgba(255,255,255,1);
	box-shadow: 0px 0px 0px 3px rgba(255,255,255,1);
	border-radius:50%;
}
.chatback {
	position: absolute;
	top: 38px;
	left: 44px;
	height: 34px;
	width: 34px;
	cursor:pointer;
}
.taskformtitle {
	line-height:50px;
}
.ball {
	width: 10px;
	height: 10px;
	margin: 10px auto;
	border-radius: 50px;
}
.ball:nth-child(1) {
	background: #ff005d;
	-webkit-animation: right 1s infinite ease-in-out;
	-moz-animation: right 1s infinite ease-in-out;
	animation: right 1s infinite ease-in-out;
}
.ball:nth-child(2) {
	background: #35ff99;
	-webkit-animation: left 1.1s infinite ease-in-out;
	-moz-animation: left 1.1s infinite ease-in-out;
	animation: left 1.1s infinite ease-in-out;
}
.ball:nth-child(3) {
	background: #008597;
	-webkit-animation: right 1.05s infinite ease-in-out;
	-moz-animation: right 1.05s infinite ease-in-out;
	animation: right 1.05s infinite ease-in-out;
}
.ball:nth-child(4) {
	background: #ffcc00;
	-webkit-animation: left 1.15s infinite ease-in-out;
	-moz-animation: left 1.15s infinite ease-in-out;
	animation: left 1.15s infinite ease-in-out;
}
.ball:nth-child(5) {
	background: #2d3443;
	-webkit-animation: right 1.1s infinite ease-in-out;
	-moz-animation: right 1.1s infinite ease-in-out;
	animation: right 1.1s infinite ease-in-out;
}
.ball:nth-child(6) {
	background: #ff7c35;
	-webkit-animation: left 1.05s infinite ease-in-out;
	-moz-animation: left 1.05s infinite ease-in-out;
	animation: left 1.05s infinite ease-in-out;
}
.ball:nth-child(7) {
	background: #4d407c;
	-webkit-animation: right 1s infinite ease-in-out;
	-moz-animation: right 1s infinite ease-in-out;
	animation: right 1s infinite ease-in-out;
}
@-webkit-keyframes right {
	0% {
		-webkit-transform: translate(-15px);
	}
	50% {
		-webkit-transform: translate(15px);
	}
	100% {
		-webkit-transform: translate(-15px);
	}
}
@-webkit-keyframes left {
	0% {
		-webkit-transform: translate(15px);
	}
	50% {
		-webkit-transform: translate(-15px);
	}
	100% {
		-webkit-transform: translate(15px);
	}
}
@-moz-keyframes right {
	0% {
		-moz-transform: translate(-15px);
	}
	50% {
		-moz-transform: translate(15px);
	}
	100% {
		-moz-transform: translate(-15px);
	}
}
@-moz-keyframes left {
	0% {
		-moz-transform: translate(15px);
	}
	50% {
		-moz-transform: translate(-15px);
	}
	100% {
		-moz-transform: translate(15px);
	}
}
@keyframes right {
	0% {
		transform: translate(-15px);
	}
	50% {
		transform: translate(15px);
	}
	100% {
		transform: translate(-15px);
	}
}
@keyframes left {
	0% {
		transform: translate(15px);
	}
	50% {
		transform: translate(-15px);
	}
	100% {
		transform: translate(15px);
	}
}
.dib {
	display:inline-block !important;
}
@media  (min-width: 787px)  {
  .contentpadding {
		padding:25px !important;
	}
}
@media  (max-width: 786px)  {
  .contentpadding {
		padding:0px !important;
	}
}
/**CHAT**/
@keyframes chatopen {
    from {opacity: 0;}
    to {opacity: 1;}
}
.chatbuddylist {
	display:flex;
	width:100%;
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 85;
	flex-direction: column;
}
.chatbuddylist li {
	display:flex;
	padding: 0;
	margin: 0;
	height: 44px;
	border-bottom: 1px solid transparent;
	width: 100%;
	position: relative;
	color: #333;
	font-family: Roboto Slab, sans-serif;
	line-height: 44px;
	padding-left: 6px;
	padding-top: 4px;
	padding-bottom: 4px;
	box-sizing: border-box;
	align-items: center;
	border-bottom: 1px solid #e9e9e9;
}
.chatbuddylist li img {
	margin-right:5px;
}
.chatcontent {
	display:none;
	height: calc(100% - 170px);
	width:100%;
	background-color:#fff;
	overflow-y:scroll;
	overflow-x: hidden;
}
.messagecontent {
	position:fixed;
	margin-top:60px;
	width:100%;
	z-index:9;
}
.chatmessage {
	position:absolute;
	bottom:146px;
	width:100%;
	padding-right:90px;
}
.chatmessage textarea {
	position:absolute;
	width:100%;
	border-radius: unset;
	border: none;
	border-top: 1px solid #f0f4f7;
	padding: 10px 50px 0px 10px;
	font-size:13px;
}
.chatmessage .send {
	width: 24px;
	height: 24px;
	position: absolute;
	right: 15px;
	top: 30px;
	border: none;
	cursor:pointer;
}
.chatpartnerlbl {
	position:absolute;
	top:90px;
	font-size:14px;
	font-weight:bold;
	margin: 0px auto;
	left: 0px;
	right: 0px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.27);
}
.chatoverlay {
	position:fixed;
	right:0px;
	top:60px;
	width:290px;
	min-width:50px;
	max-width:100%;
	height:100%;
	z-index:999;
	background-color:#fff;
	border-left:1px solid #f41c26;
}
.ta-left {
	text-align:left;
}
/* preloader */
.preloader {
  display:inline-block;
  height: 24px;
  width: 24px;
  border: 5px solid rgba(48,48,180,0.45);
  border-top: 5px solid rgb(48,48,180);
  border-radius: 50%;
  animation: rotate 1s infinite linear;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vchatoverlay {
	display:none;
	position:fixed;
	bottom:0px;
	left:0px;
	height:150px;
	width:150px;
	z-index:5000;
}
/* INCOMING CALL */
.incomingcall {
	position: fixed;
	height:100%;
	width:100%;
	background-color:#fff;
	z-index:1000;
}
.pulse {
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:200%;
}
@keyframes pulse {
	25% {
		opacity: 0.9;
	}
	100% {
		transform: scale(1);
	}
}
@keyframes pulsebg /* Firefox */ {
    0% {fill:red;}
    33% {fill:blue;}
    66% {fill:green;}
	100%{fill:red;}
}
.incomingcallicon {
	position:absolute;
	z-index: 2000;
	font-size:20vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.calldeny {
	color:#ff3b30;
}
.callaccept {
	color:#4cd964;
}
/* Player */
#app-player {
	position: fixed;
	bottom: 0%;
	right: 0;
	left: 0;
	width: 100%;
	height: 60px;
	margin: -4px auto;
	z-index: 9999;
}
#bg-artwork {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	filter: blur(40px);
	-webkit-filter: blur(40px);
	z-index: 1;
}
#player {
	display:none;
	position: relative;
	height: 100%;
}
#app-player.active > #player {
	display:initial;
}
#player-track {
	position: absolute;
	display:flex;
	width:100vw;
	height:60px;
	right: 300px;
	left: 0px;
	align-items:center;
	border-radius: 15px 15px 0 0;
	transition: 0.5s ease top, 0.5s ease opacity;
	z-index: 3;
	opacity: 0;
}
#player-track.active {
	opacity: 1;
}
.player-track-info {
	position: fixed;
	margin-left:100px;
	max-width: 360px;
	overflow: hidden;
	pointer-events: none;
	z-index: 5;
}
#album-name,
#track-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.player-track-position {
	height:100%;
	width: 100%;
	display: flex;
	position:relaive;
	align-items: center;
	gap: 10px;
	padding: 0px 175px 0px 120px;
}
#player-progress-bar {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    outline: none;
    cursor: pointer;
    overflow: hidden;
}
#player-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 5px;
    height: 100%;
    background: #f41c26;
    cursor: pointer;
    box-shadow: -10000px 0 0 10000px #f41c26;
}
#player-progress-bar::-moz-range-thumb {
    width: 0; 
    height: 10px;
    background: transparent;
    cursor: pointer;
    border: none;
}
#player-progress-bar::-moz-range-progress {
    background-color: #f41c26;
    height: 100%;
}
#album-name {
	color: #54576f;
	font-size: 17px;
	font-weight: bold;
}
#track-name {
	color: #acaebd;
	font-size: 13px;
	margin: 2px 0 13px 0;
}
#current-time {
	margin-left:15px;
}
#track-length {
	right:190px;
}
#current-time, #track-length {
	position:absolute;
	padding:5px;
	color: #333;
	font-size: 14px;
	background-color: #fff;
	border-radius: 10px;
	transition: 0.3s ease all;
	pointer-events: none;
	text-align: center;
}
#player-content {
	position: relative;
	height: 100%;
	background-color: #fff;
	box-shadow: 0 30px 80px #656565;
	border-radius: 15px;
}
#album-art {
	position: absolute;
	top: -20px;
	width: 60px;
	height: 60px;
	margin-left: 30px;
	transform: rotateZ(0);
	transition: 0.3s ease all;
	box-shadow: 0 0 0 10px #fff;
	border-radius: 50%;
	cursor:pointer;
	overflow: hidden;
	z-index:4;
}
#album-art.active {
	box-shadow: 0 0 0 4px #f41c26, 0 30px 50px -15px #afb7c1;
}
#album-art:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	width: 20px;
	height: 20px;
	margin: -10px auto 0 auto;
	background-color: #d6dee7;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px #fff;
	z-index: 2;
}
#album-art img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#album-art.active img.active {
	z-index: 1;
	animation: rotateAlbumArt 3s linear 0s infinite forwards;
	width: 160%;
	height: 160%;
	position: absolute;
	left: -30%;
	top: -30%;
}
@keyframes rotateAlbumArt {
	0% {
		transform: rotateZ(0);
	}
	100% {
		transform: rotateZ(360deg);
	}
}
#album-art img {
	transition: 0.1s linear all;
}
#app-player-content {
    position: fixed;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: calc(100% - 111px);
    display: none;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9998;
    overflow: hidden;
}
#app-player-content .socialed-player-shell {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 166px;
}
#app-player-content .socialed-provider-slots {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 166px;
}
#app-player-content .socialed-provider-slot {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	min-height: 166px;
	opacity: .001;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
#app-player-content .socialed-provider-slot.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
	overflow: visible;
}
#app-player-content iframe {
	width: 100%;
	height: 100%;
	max-width: 100%;
	border: 0;
	display: block;
}
.socialed-player-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 166px;
	background: #111;
	color: #fff;
	border-radius: 12px;
	font-weight: 700;
}
.socialed-player-gesture-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(0, 0, 0, .72);
	color: #fff;
	text-align: center;
}
.socialed-player-gesture-overlay.is-visible {
	display: flex;
}
.socialed-player-gesture-box {
	max-width: 420px;
	padding: 18px 20px;
	border-radius: 16px;
	background: rgba(20, 20, 20, .94);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}
.socialed-player-gesture-box strong {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
}
.socialed-player-gesture-box span {
	display: block;
	margin-bottom: 14px;
	font-size: 13px;
	line-height: 1.4;
	color: #ddd;
}
.socialed-player-gesture-box button {
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: #f41c26;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
}
.socialed-player-gesture-box button:hover {
	background: #d91520;
}
#player-controls {
	position:absolute;
	width: 150px;
	margin: 0 5px 0 141px;
	right: 0;
	bottom: 12px;
	overflow: hidden;
	z-index:3;
}
.control {
	width: 33.333%;
	float: left;
}
.player-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 20px;
	border-radius: 6px;
	cursor: pointer;
}
.player-button i {
  display: block;
  color: rgba(0,0,0,0.4);
  font-size: 18px;
  text-align: center;
  line-height: 1;
}
.player-button, .player-button i {
  transition: 0.2s ease all;
}
.player-button:hover {
  background-color: #d6d6de;
}
.player-button:hover i {
  color: #fff;
}
.dtgallery {
}
.dtgallery > div {
	width:24.0%;
	margin:0.5%;
	cursor:pointer;
	height:150px;
	background-size: cover;
	background-position: center center;
	display:inline-block;
	position:relative;
}
.dtgallery-image,
.photo-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media  (max-width: 786px)  {
  .dtgallery > div {
		width:48.5%;
		margin:0.5%;
	}
}
.dtgalleryoverlay {
	position:absolute !important;
	width:100%;
	height:100%;
	display:none;
	background:rgba(0,0,0,0.4);
	text-align:center;
}
.dtdatafield {
	padding:6px;
	margin:4px 0px;
	display:inline-block;
}
.dtdatafield svg {
	width:32px;
	height:32px;
}
.ppprop {
	background-size: cover;
	background-position: center center;
}
.ppname {
	position: relative;
	display:flex;
	align-self: end;
	padding: 2px;
	background-color: rgba(255,255,255);
	border-radius: 25%;
}
.recipeh1 {
	padding:4px;
	background-color:#43bdcb;
}
.recipeh2 {
	padding:4px;
	background-color:#4eef25;
}
.recipeh3 {
	padding:4px;
	background-color:#efeb25;
}
.recipeh4 {
	padding:4px;
	background-color:#fa8700;
}
.recipeh5 {
	padding:4px;
	background-color:#d11f1f;
}
.recipestars {
	display:flex;
}
.lbl-recipe-name {
	display:flex;
	align-items:center;
}
.lbl-recipe-name > div {
	min-height: 32px;
	min-width: 32px;
	margin-left: 3px;
	cursor:pointer;
}
.stf-header {
	background-color:#000;
	width:100%;
	height:50px;
}
.margin0 {
	margin:0px !important;
}
.margin5 {
	margin:5px;
}
.mr5 {
	margin-right:5px;
}
.mb5{
	margin-bottom:5px;
}
.padding5 {
	padding:5px;
}
/**PIE CHART**/
@keyframes bake-pie {
  from {
    transform: rotate(0deg) translate3d(0,0,0);
  }
}
.pieID {
  display: inline-block;
  vertical-align: top;
}
.pie {
  height: 100px;
  width: 100px;
  position: relative;
  margin: 0 30px 30px 0;
}
.pie::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: #EEE;
  border-radius: 50%;
  top: 25px;
  left: 25px;
}
.pie::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  box-shadow: 0 0 3px 4px rgba(0,0,0,0.1);
  margin: 110px auto;
}
.legend {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #FFF;
  padding: 15px;
  font-size: 13px;
  box-shadow: 1px 1px 0 #DDD,
              2px 2px 0 #BBB;
}
.legend li {
  width: 110px;
  height: 1.25em;
  margin-bottom: 0.7em;
  padding-left: 0.5em;
  border-left: 1.25em solid black;
}
.legend em {
  font-style: normal;
}
.legend span {
  float: right;
}
/* The bar container */
/* Individual bars */
/* Example wrapper */
/* Frame */
/* Scrollbar */
.divoption {
	width:100%;
	padding: 10px 5px;
	font-size:13px;
	cursor:pointer;
}
.divoption:hover {
	background-color:#3333cc;
	color:#fff;
}
.ach-content img {
	float:left;
}
@media  (min-width: 500px)  {
}
@media  (min-width: 768px)  {
}
@media  (min-width: 992px)  {
}
@media  (min-width: 1200px)  {
}
@media  (min-width: 1408px)  {
}
/**PUBLIC CONTENT**/
.public_opening_list > div {
	border-bottom:1px solid #ccc;
	padding-bottom:5px;
	margin-bottom:7px;
}
.public_opening_list > div:last-child {
	border-bottom:none;
}
.public_structure_elem_add {
	padding: 20px 0px;
	border: 2px dashed #ccc;
	text-align: center;
}
.public_structure_elem_add:hover {
	border: 2px dashed #f41c26;
	cursor:pointer;
}
.articlecontrol {
	height: auto;
	display:flex;
	position: relative;
	font-size: 13px;
	font-weight: normal;
	padding: 0px 10px;
	cursor: pointer;
	border-width: 0;
	margin: 0px;
	margin-left: auto;
	align-self:stretch;
	align-items:center;
	background-color:transparent;
}
.articlecontrol > div {
	background-color: #333333;
    color: #ffffff;
    border-radius: 5px;
    padding: 3px 8px;
    margin-right: -5px;
}
.articlecontrol:hover > div {
	background-color: #f41c26;
}
.articlemenu-toggle-ico .active {
	color:#fff;
}
.articlemenu-toggle-ico {
	width: 44px;
	border-radius: 20%;
	height: 44px;
	position: absolute;
	left: -52px;
	top: 0px;
	text-align: center;
	background: #333;
}
.articlemenu {
	display:none;
	position:absolute;
	top:0px;
	right:0px;
	width:160px;
	height:100%;
	border-right:3px solid #f41c26;
	background-color:#fff;
	text-align:right;
	z-index:1;
}
.articlemenu ul {
	padding:40px 0px 0px 0px;
}
.articlemenu li {
	width:100%;
	line-height:40px;
	padding-right:3px;
	border-top:1px solid #dedede;
	transition:0.2s;
	color:#333;
	cursor:pointer;
}
.articlemenu li:last-child {
	border-bottom:1px solid #dedede;
}
.articlemenu li:hover {
	background-color:#f41c26;
	color:#fff;
}
.public-article-heading-main {
	display: flex;
	align-items: center;
}
.art-menu:hover {
	background-color:#f41c26;
}
.ham {
	width: 42px;
	height: 42px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	top: 1px;
	position: relative;
	filter: invert(1);
}
.hamRotate.active {
  transform: rotate(45deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#000;
  stroke-width:5.5;
  stroke-linecap:round;
}
.articlemenu-toggle .top {
  stroke-dasharray: 40 160;
}
.articlemenu-toggle .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.articlemenu-toggle .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.articlemenu-toggle.active .top {
  stroke-dashoffset: -64px;
}
.articlemenu-toggle.active .middle {
  //stroke-dashoffset: -20px;
  transform: rotate(90deg);
}
.articlemenu-toggle.active .bottom {
  stroke-dashoffset: -64px;
}
.public_article {
	position:relative;
	padding:0;
	margin:10px;
}
.public_article > *:nth-child(n/**/+3) {
	background-color:#fff;
	padding:10px;
}
.public_article > .public_article_heading {
	display:flex;
	flex-direction:row;
	margin-left: 55px;
}
.public_article > .public_article_heading > div:nth-child(1) {
	width: 48px;
	position: relative;
	display: flex;
	background: #fff;
	font-size: 14px;
	color: #fff;
	vertical-align: bottom;
	font-weight: bold;
	line-height: 15px;
	padding-top: 6px;
	padding-left: 0px;
	border-radius: 5px 0px 0px 5px;
	background-color: #f41c26;
}
.public_article ul > li > ul {
	list-style-type: square;
	padding-left: 40px !important;
}
.art-date {
	width: 42px;
	text-align: center;
	margin-left: 5px;
}
.public_article > .public_article_heading > div:nth-child(2) {
	width: calc(100% - 58px);
	background-color: #fff;
	font-size: 24px;
	padding: 5px 5px 5px 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	color: #fff;
	border-radius: 0px 15px 15px 0px;
	background-color: #f41c26;
}
.public_article_heading > input {
	width:100%;
	background-color:#f41c26;
	font-size:24px;
	padding:5px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	max-width: 100%;
	color:#fff;
}
/**CREATE CONTENT MENU START**/
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}
/**CREATE CONTENT MENU END**/
/**Recipe Rating**/
body {
  font-family: "Roboto", Helvetica;
  color: #737373;
  font-weight: 300;
}
.rating-result {
  width: 100%;
  text-align: center;
}
.histo-star {
  float: left;
  padding: 3px;
}
.histo-rate {
  width: 100%;
  display: block;
  clear: both;
}
.rating-bar-block {
  margin-left: 5px;
  color: black;
  display: block;
  float: left;
  width: 75%;
  position: relative;
}
.rating-bar {
  padding: 4px;
  display: block;
  min-width: 22px;
}
#bar-five {
  width: 0;
  background-color: #9FC05A;
}
#bar-four {
  width: 0;
  background-color: #ADD633;
}
#bar-three {
  width: 0;
  background-color: #FFD834;
}
#bar-two {
  width: 0;
  background-color: #FFB234;
}
#bar-one {
  width: 0;
  background-color: #FF8B5A;
}
* { box-sizing: border-box; }
.set-rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}
.rating-0 {
  filter: grayscale(100%);
}
.set-rating > input {
  display: none;
}
.set-rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: .3s;
}
.set-rating > input:checked ~ label, .set-rating > input:checked ~ label ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
.set-rating > input:not(:checked) ~ label:hover, .set-rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
.set-rating > .emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.set-rating > .emoji-wrapper:before, .set-rating > .emoji-wrapper:after {
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}
.set-rating > .emoji-wrapper:before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%);
}
.set-rating > .emoji-wrapper:after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%);
}
.set-rating > .emoji-wrapper > .emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s;
}
.set-rating > .emoji-wrapper > .emoji > svg {
  margin: 15px 0; 
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
#rating-1:checked ~ .emoji-wrapper > .emoji { transform: translateY(-100px); }
#rating-2:checked ~ .emoji-wrapper > .emoji { transform: translateY(-200px); }
#rating-3:checked ~ .emoji-wrapper > .emoji { transform: translateY(-300px); }
#rating-4:checked ~ .emoji-wrapper > .emoji { transform: translateY(-400px); }
#rating-5:checked ~ .emoji-wrapper > .emoji { transform: translateY(-500px); }
/**GRID SYSTEM**/
/*
 *  Project: Babylon Grid sampl SASS/CSS
 *  Description: Lightweight jQuery + CSS plugin for creating responsive, dynamic & customizable pinterest like grid with diferent colun width support and few display mods.
 *  Author: Marek Fajkus @turbo_MaCk (http://marekrocks.it)
 *  License: MIT
 */
/*
 *  HOW TO:
 *  Start with container class container-{ number of columns };
 *  Set columns by class columns-{ column number } and set them width
 */
.babylongrid-container .column {
  position: relative;
  display: inline;
  float: left; }
.babylongrid-container.container-4 .column-1, .babylongrid-container.container-4 .column-3 {
  width: 30%; }
.babylongrid-container.container-4 .column-2, .babylongrid-container.container-4 .column-4 {
  width: 20%; }
.babylongrid-container.container-3 .column-1, .babylongrid-container.container-3 .column-2 {
  width: 35%; }
.babylongrid-container.container-3 .column-3 {
  width: 30%; }
.babylongrid-container.container-2 .column-1 {
  width: 50%; }
.babylongrid-container.container-2 .column-2 {
  width: 50%; }
.babylongrid-container.container-1 .column-1 {
  width: 100%; }
.babylongrid-container:after, .babylongrid-container:before {
  content: "";
  display: table;
  height: 0;
  clear: both; }
.babylongrid-container.tower .column {
  vertical-align: bottom; }
.babylongrid-container.city .column {
  vertical-align: middle; }
.babylongrid-container.tower, .babylongrid-container.city {
  display: table; }
  .babylongrid-container.tower .column, .babylongrid-container.city .column {
    display: table-cell;
    float: none; }
/*# sourceMappingURL=babylongrid-default.css.map */
.inputbox {
	margin:2px 0px 5px 0px;
	background-color:#fff;
}
.inputbox .button {
	border-bottom:1px solid #757575;
	background-color:transparent;
	padding: 11px 5px;
	height: 41px;
}
/**CARDLIST EVENT START**/
/**CARDLIST EVENT END**/
/**CARDLIST NEWS START**/
/**CARDLIST NEWS END**/
/**COLLABEDITOR START**/
/**COLLABEDITOR END**/
#feedlist .list-group:first-child .list-group-item {
	border-radius: 0px !important;
	border-bottom:1px solid #ddd;
	border-top:1px solid #ddd;
}
#feedlist .list-group-item:last-of-type {
	border-radius: 0px !important;
	border-top:0;
}
span.list-group-item:hover, button.list-group-item:hover, span.list-group-item:focus, button.list-group-item:focus {
	background-color: #0f56bf;
}
@media  (max-width: 768px)  {
}
.board-element {
	flex-flow:column;
	align-items: normal !important;
}
.board-element > div {
	margin-left:5px;
}
.board-element > div:nth-child(2) {
	flex-flow: row;
	display: flex;
}
.board-element > div:nth-child(2) > div {
	font-size:10px;
	padding:1px 6px;
	margin-right:2px;
	color:#fff;
	background-color:#333;
}
/**COLLABTILE**/
.vcard-main, .vcard-ext {
	width: 100%;
	max-width: 320px;
	display:flex;
	flex-direction:column;
	margin: -125px auto 0 auto;
}
/* = .card */
.dashboard-elem {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	border: 0;
	margin-top: 30px;
	border-radius: 6px;
	color: #333;
	background: #fff;
	width: 100%;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}
/* = .card > .card-icon */
.dashboard-elem-icon {
	border-radius: 3px;
	background-color: #999;
	padding: 15px;
	margin-top: -20px;
	margin-right: 15px;
}
.dashboard-elem-icon svg {
	height:32px;
	width:32px;
}
/* for card-icon */
.gradient-yellow {
	background: linear-gradient(60deg,#ffa726,#fb8c00);
}
.gradient-green {
	background: linear-gradient(60deg,#66bb6a,#43a047);
}
.gradient-red {
	background: linear-gradient(60deg,#ef5350,#e53935);
}
.dashboard-elem-title {
	color: #999;
	font-size: 14px;
}
.dashboard-elem-footer {
	display: flex;
	background-color: transparent;
	border: 0;
	padding: 0;
	padding-top: 10px;
	margin: 0 15px 10px;
	border-radius: 0;
	justify-content: space-between;
	align-items: center;
}
.dashboard-elem > div > span {
	font-size:16px;
	font-weight:bold;
}
.dashboard-elem-icon.gradient-red > svg {
	fill:#fff;
}
.pricing-circle {
  background: #ffffff;
  padding: 15px;
  text-align: center;
  height: 250px;
  width: 250px;
  transition: all 0.5s;
  -moz-transition: all 0.5s; /* Firefox 4 */
  -webkit-transition: all 0.5s; /* Safari and Chrome */
  -o-transition: all 0.5s; /* Opera */
}
.pricing-circle h4 {
  margin: 0;
  padding: 0;
}
.pricing-circle span.icon i {
  font-size: 48px;
}
.pricing-circle span.price-large {
  font-size: 68px;
}
.pricing-circle .price-small {
  font-size: 24px;
}
.pricing-circle.c1:hover {
  background: #39b3d7;
  color: #ffffff;
}
.pricing-circle.c1 .blue, .pricing-circle.c1 .blue span svg {
  color: #39b3d7;
  fill: #39b3d7;
}
.pricing-circle.c1:hover .blue, .pricing-circle.c1:hover .blue span svg {
  color: #ffffff;
  fill: #ffffff;
}
.pricing-circle.c2:hover {
  background: #ed9c28;
  color: #ffffff;
}
.pricing-circle.c2 .yellow, .pricing-circle.c2 .yellow span svg {
  color: #ed9c28;
  fill: #ed9c28;
}
.pricing-circle.c2:hover .yellow, .pricing-circle.c2:hover .yellow span svg {
  color: #ffffff;
  fill: #ffffff;
}
.pricing-circle.c3:hover {
  background: #47a447;
  color: #ffffff;
}
.pricing-circle.c3 .green, .pricing-circle.c3 .green span svg {
  color: #47a447;
  fill: #47a447;
}
.pricing-circle.c3:hover .green, .pricing-circle.c3:hover .green span svg {
  color: #ffffff;
  fill: #ffffff;
}
.pricing-circle.c4:hover {
  background: #d2322d;
  color: #ffffff;
}
.pricing-circle.c4 .red, .pricing-circle.c4 .red span svg {
  fill: #d2322d;
  color: #d2322d;
}
.pricing-circle.c4:hover .red, .pricing-circle.c4:hover .red span svg {
  color: #ffffff;
  fill: #ffffff;
}
.pricing-circle span svg {
	height:64px;
	margin-top:20px;
}
.list-elem {
	padding: 10px 30px;
	width: 100%;
	margin: 5px 0px;
	background-color:#fff;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
	background-size: 26px 26px;
	background-repeat:no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNTA7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MCA1MCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGcgc3R5bGU9ImZpbGw6I2Y0MWMyNiIgaWQ9IkxheWVyXzFfMV8iPjxwb2x5Z29uIHBvaW50cz0iMTMuODU0LDQ4LjcwNyAzNy41NjEsMjUgMTMuODU0LDEuMjkzIDEyLjQzOSwyLjcwNyAzNC43MzIsMjUgMTIuNDM5LDQ3LjI5MyAgIi8+PC9nPjwvc3ZnPg==");
	background-position: 5px 10px;
	transition:ease-in-out all 0.2s;
}
.list-elem:hover {
	background-color:#f41c26;
	color:#fff;
	background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNTA7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MCA1MCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGcgc3R5bGU9ImZpbGw6I2ZmZmZmZiIgaWQ9IkxheWVyXzFfMV8iPjxwb2x5Z29uIHBvaW50cz0iMTMuODU0LDQ4LjcwNyAzNy41NjEsMjUgMTMuODU0LDEuMjkzIDEyLjQzOSwyLjcwNyAzNC43MzIsMjUgMTIuNDM5LDQ3LjI5MyAgIi8+PC9nPjwvc3ZnPg==");
	cursor:pointer;
}
iframe {
	width:100%;
}
.ach-content {
	display: flex;
	align-items: center;
	cursor: default;
	transition: 0.2s;
}
.ach-content > div:first-child {
	background-color: #ffe300;
	padding: 20px 10px;
	margin-right: 20px;
}
.ach-content:hover {
	transform: scale(1.07);
}
.extcontent, .maincontent {
	margin-bottom:50px;
}
.recipe-random > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
}
.recipe-random img {
	height:100px;
	max-width:100%;
}
.recipe-new-steps {
	display: flex;
}
.recipe-new-steps > .inputgroup {
	margin-left:5px;
}
.recipe-new-step {
	width: 100%;
	max-width: 64px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 30px;
	border: 3px dashed #333;
	background-image: url(/img/upload.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor:pointer;
}
.recipe-new-step:hover {
	border: 3px dashed #f41c26;
}
.recipe-new-steps > div {
	width:100%;
}
.recipe-new-steps .card-header {
	justify-content: space-between;
}
.recipe-new-steps .step-content {
	display:flex;
}
.recipe-new-steps .step-info {
	width:100%;
	display:flex;
}
.recipe-new-steps .inputgroup {
	display:flex;
}
.ingredient-autocomplete {
  position: relative;
}
.ingredient-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ingredient-suggestions li {
  padding: 5px 10px;
  cursor: pointer;
}
.ingredient-suggestions li:hover {
  background: #f5f5f5;
}
@media  (max-width: 700px)  {
}
.main-files-frame {
	position:relative;
	color:#333333;
}
#main-upload-form {
	position:relative;
}
.main-upload-overlay {
	display:none;
	position: absolute;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding:4px;
	background-color: rgba(255,255,255,0.8);
}
.main-upload-overlay.is-visible {
	display: flex;
}
.main-upload-overlay > div {
	height:32px;
	width:32px;
}
.main-upload-section {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 35px;
	border: 1px solid #757575;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.35s;
	box-sizing: border-box;
}
.main-upload-section:hover {
	border: 1px dashed #f41c26;
}
.main-upload-section.active {
	color: #fff;
	border: 1px dashed #f41c26;
	transition-delay: 0.2s;
	animation: main-upload-section 0.6s forwards;
	background: radial-gradient(circle, #f41c26 0.2em, transparent 0.3em) 6em 6em/1em 1em, radial-gradient(circle, #f41c26 0.2em, transparent 0.3em) 0 0/1em 1em;
}
@keyframes main-upload-section{
	100% {
		background-size: 2.375em 2.375em, 0.1em 0.1em;
	}
}
.main-upload-transfer {
	display:none;
}
.main-files-list > .datatable-container > div:first-child {
	display: flex;
	align-items: center;
	gap: 10px;
}
.main-files-list p {
	margin: 10px 0px;
}
.button-group button {
	margin: 5px;
	padding: 10px;
}
#main-upload-fileList {
	padding: 10px;
}
#main-upload-selectedFiles {
	margin-top: 10px;
	font-size: 0.95em;
	max-height: 300px;
	overflow-y: auto;
	background: #fafafa;
	border: 1px solid #eee;
}
#main-upload-selectedFiles ul {
	margin: 0;
	padding-left: 0px;
}
#main-upload-selectedFiles li {
	margin: 2px 0;
	white-space: pre;
	display: flex;
	align-items: center;
	padding: 5px 0px 5px 0px;
}
.upload-remove-btn {
	color: #ff4444;
	margin-right: 10px;
	cursor: pointer;
	font-weight: bold;
	opacity: 0.7;
	border: none;
	background: none;
	font-size: 1.1em;
	margin-left: 0;
}
.upload-remove-btn:hover {
	opacity: 1;
}
.upload-file-size {
	color: #888;
	font-size: 0.9em;
	margin-left: 8px;
}
.generic-loader {
	border: 16px solid #f3f3f3;
	border-top: 16px solid #f41c26;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: generic-loader 1s linear infinite;
}
@keyframes generic-loader{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.datatable-filter-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.datatable {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.datatable th, .datatable td {
    padding: 0px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.datatable thead th {
    cursor: pointer;
    position: relative;
    user-select: none;
    font-weight: bold;
}
.datatable thead th::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    border: 5px solid transparent;
    border-bottom-color: #333;
}
#mealplanner-table a {
	display:flex;
}
.datatable td {
    word-break: break-word;      /* Lange Wörter brechen um */
    overflow-wrap: break-word;   /* Alternative Schreibweise */
}
.datatable td:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.datatable td:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.datatable a {
    word-break: break-all;       /* Bricht überall um, oder */
    overflow-wrap: break-word;
}
.datatable .action-icon {
	appearance: none;
	border: 0;
	background: transparent;
	text-decoration: none;
	color: #555;
	cursor: pointer;
	font: inherit;
	transition: color 0.2s ease-in-out;
}
.datatable .action-icon:hover {
	color: #f41c26;
}
.datatable .action-icon i {
	padding: 10px;
}
.datatable tr:has(.file-entry-clickable:hover) td, .datatable tr:has(.file-entry-clickable:hover) .action-icon{
	background-color: #f41c26;
	color:#fff;
	fill:#fff;
	transition: all 0.3s ease-in-out 0s;
}
#custom-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
#custom-dialog-overlay.dialog-visible {
  opacity: 1;
  visibility: visible;
}
#custom-dialog-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  width: 90%;
  max-width: 450px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
#custom-dialog-overlay.dialog-visible #custom-dialog-box {
    transform: scale(1);
}
#dialog-title {
  margin-top: 0;
  font-size: 1.5em;
  color: #333;
}
#dialog-message {
  margin-bottom: 20px;
  color: #666;
  font-size: 1.1em;
}
#dialog-input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Wichtig, damit padding die Breite nicht beeinflusst */
}
#dialog-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
#dialog-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.2s;
}
#dialog-btn-confirm {
  background-color: #007bff;
  color: white;
}
#dialog-btn-confirm:hover {
  background-color: #0056b3;
}
#dialog-btn-cancel {
  background-color: #6c757d;
  color: white;
}
#dialog-btn-cancel:hover {
  background-color: #5a6268;
}
#bulk-action-toolbar {
	display: none; padding: 10px; background-color: #f2f2f2; border-radius: 5px; display: flex; align-items: center; gap: 15px;
}
#move-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
/* Die Klasse, die unser JavaScript hinzufügt, um den Dialog einzublenden */
#move-dialog-overlay.dialog-visible {
  opacity: 1;
  visibility: visible;
}
/* Die eigentliche Dialog-Box */
#move-dialog-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  width: 90%;
  max-width: 500px;
  max-height: 80vh; /* Verhindert, dass der Dialog auf kleinen Bildschirmen zu groß wird */
  display: flex;
  flex-direction: column;
}
#move-dialog-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}
#move-dialog-path-display {
  font-family: monospace;
  background-color: #f1f1f1;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 15px;
  color: #555;
  word-break: break-all;
}
/* Die Liste der Ordner im Dialog */
#move-dialog-folder-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  overflow-y: auto; /* Macht die Liste scrollbar, falls sie zu lang wird */
  flex-grow: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
}
#move-dialog-folder-list li {
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px; /* Abstand zwischen Icon und Text */
  border-bottom: 1px solid #eee;
}
#move-dialog-folder-list li:last-child {
  border-bottom: none;
}
#move-dialog-folder-list li:hover {
  background-color: #f7f7f7;
}
#move-dialog-folder-list li i {
  color: #007bff; /* Ordner-Icon-Farbe */
}
/* Die Buttons am Ende des Dialogs */
#move-dialog-buttons {
  display: flex;
  justify-content: flex-end; /* Buttons rechtsbündig anordnen */
  gap: 10px;
}
/* Hier können Sie Ihre bestehenden .button-Stile anpassen, falls nötig */
#move-dialog-buttons .button {
  /* Ihre Stile für die div-basierten Buttons */
}
/* Container für die Aktionsleiste (Buttons und Suche) */
.files-path-bar {
    display: flex;         /* Elemente in einer Zeile anordnen */
    align-items: center;   /* Vertikal zentrieren */
    gap: 10px;             /* Abstand zwischen den Elementen */
    margin-bottom: 10px;   /* Abstand zur Suchleiste darunter */
}
/* Stellt sicher, dass die Buttons ihre feste Größe behalten */
.files-path-bar .button {
    flex-shrink: 0;
    margin-bottom: 0;      /* Entfernt den Standard-Abstand, falls vorhanden */
}
/* Die Pfadanzeige (<p>-Tag) füllt den restlichen Platz */
.files-path-bar p {
    flex-grow: 1;          /* Element wächst, um freien Platz zu füllen */
    margin: 0;             /* Entfernt den Standard-Absatz-Abstand */
}
/** OAUTH **/
/**
 * OAuth2 CSS Erweiterungen für socialed.me
 * Ergänzt die bestehende index2.css um OAuth2-spezifische Styles
 */
/* OAuth2 Login Button Styling */
.oauth-login {
    margin: 20px 0;
    text-align: center;
}
.oauth-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 250px;
}
.oauth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white;
}
.oauth-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.oauth-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.oauth-button-content::before {
    content: "🔐";
    font-size: 18px;
}
/* Info Text Styling */
/* Error Message Styling - erweitert */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.error-message strong {
    display: block;
    margin-bottom: 5px;
}
.error-message code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
}
/* Responsive Design für OAuth2 Komponenten */
@media  (max-width: 768px)  {
  .oauth-button {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
  .oauth-login {
        margin: 15px 0;
    }
  .error-message {
        margin: 10px 0;
        padding: 12px;
    }
}
/* Loading Animation */
@keyframes oauth-loading {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
/* Success Message (für zukünftige Verwendung) */
/* Compatibility mit bestehenden Styles */
.logincard .oauth-login {
    margin-top: 0;
}
/* Info Section Styling - erweitert */
/* Zusätzliche Utility Classes */
.text-center { text-align: center; }
#cookbook-cookingscheduletoday thead th::after, #mealplanner-table thead th::after {
  display: none !important;
}
/* Verhindert, dass sort-Klassen angezeigt werden */
/* Cursor auf Standard setzen */
#mealplanner-table thead th {
  cursor: default;
}
.recipe-difficulty { display: flex; align-items: center; gap: 0.5rem; }
.recipe-steps { margin-top: 1.5rem; }
.step-list { padding-left: 1.5rem; }
/* Container für jeden Zubereitungsschritt */
.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
/* Thumbnail */
.step-item .step-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  margin-right: 1rem;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.step-item .step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.step-item .step-thumb:hover img {
  transform: scale(1.1);
}
/* Textbereich */
.step-item .step-desc {
  flex: 1;
  margin: 0;
  line-height: 1.4;
}
/* Lightbox-Bild im Modal */
#stepImageModal .modal-dialog {
  max-width: 90%;
}
#stepImageModal .modal-body {
  text-align: center;
  padding: .5rem;
}
#stepImageModal .modal-body img {
  max-width: 100%;
  height: auto;
}
.services {
  display: flex;
  align-items: center;
}
.service-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin: 8px;
  transition: all .3s ease;
  border-radius:5px;
  min-width: 0;
}
.service-card img {
  height: 70px;
  margin: 16px 0;
}
.service-card > * {
  flex: 1 1 100%;
}
.service-card:hover a {
  border-color: white;
  background: white;
}
.service-card h2 {
  font-size: 30px;
  margin: 16px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-card h2 img {
	margin-right:14px;
}
.service-card p {
  font-size: 17px;
  font-family: "Poppins",sans-serif;
}
.service-card a {
  background: black;
  color: white;
  text-decoration: none;
  border: 1px solid black;
  padding: 15px 0;
  border-radius: 25px;
  transition: .3s ease;
}
.service-card a:hover {
  border-radius: 4px;
}
.service-card-header {
	width: 100%;
	display: flex;
	flex-direction: row;
	background-color: #333333;
	color: #ffffff;
	border-radius: 5px;
	padding: 10px;
	margin-right: -5px;
	font-size: 13px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	min-width: 0;
}
.service-card-header img {
  height: 40px;
  filter: invert(100%);
  position: absolute;
  margin-left: -55px;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
}
.service-card-sub{
	display:flex;
	flex-direction:row;
}
.service-card-sub > div{
	border:2px solid #ccc;
	padding:2px;
	font-size:11px;
}
.service-card-content {
  margin: 5px 0px 0px 0px;
}
.service-card-content > div, .service-card-content > a > div {
  padding-bottom:5px;
}
.service-card-content > a {
	color: inherit;
}
.service-card-content > a:hover {
	color: inherit;
}
@media  (max-width: 900px)  {
  .services {
    display: flex;
    flex-direction: column;
  }
}
.tc-input {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 14px;
  min-width: 150px;
}
.tc-loading {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}
.tc-calendar {
  background: white;
  overflow: hidden;
}
.tc-header-row {
  display: grid;
  grid-template-columns: 120px 1fr;
}
.tc-header-cell {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #333;
  text-align: center;
}
.tc-header-cell--appointments {
  text-align: left;
}
.tc-table-wrapper {
  height: 600px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.tc-table {
  min-height: 100%;
}
.tc-day-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #f1f3f4;
  transition: background-color 0.15s;
  cursor:pointer;
}
.tc-day-row:hover {
  background-color: #f8f9fa;
}
.tc-day-row--today > div:first-child, .tc-day-row--today > div:first-child > div{
	background-color:#f41c26;
	color:#fff;
}
.tc-day-cell {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  min-height: 60px;
}
.tc-day-cell--date {
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.tc-day-number {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.tc-day-month {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}
.tc-day-cell--appointments {
  flex-wrap: wrap;
  gap: 8px;
}
.tc-no-appointments {
  color: #999;
  font-style: italic;
  font-size: 12px;
}
.tc-status {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}
.tc-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.tc-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.tc-status.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.file-entry-clickable {
	display: block;
	width: 100%;
	height: 100%;
	padding: 6px 0px;
	cursor: pointer;
}

.file-entry-clickable:hover {
    text-decoration: underline;
}
#calendarTable .button .default {
	width: auto;
}
/* Media Thumbnail Container Styles */
.media-thumbnail-container {
    position: relative;
    width: 100%;
    min-height: 200px;
}
/* Loading State */
.media-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}
/* Media Thumbnail Styles */
.media-thumbnail {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
/* Thumbnail Image Container */
.thumbnail-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform;
}
.media-thumbnail:hover .thumbnail-image {
    transform: scale(1.05);
}
/* Play Button Overlay */
.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.media-thumbnail:hover .play-button-overlay {
    opacity: 1;
}
.play-button-circle {
  stroke: #f41c26;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0.3;
}
.play-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  /*  border: 1px solid red;*/
  -webkit-transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button-triangle {
  -webkit-transition: all 0.7s ease-in-out;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  stroke: #fff;
  transform: translateY(0);
}
.play-button:hover .play-button-triangle {
  stroke-dashoffset: 0;
  opacity: 1;
  stroke: #f41c26;
  animation: nudge 0.7s ease-in-out;
}
@keyframes nudge {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  70% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
.play-button svg {
border-radius: 50%;
}
.media-info {
	display:flex;
	position:absolute;
	top:5px;
	left:5px;
}
.media-info > div {
	margin:0px 5px 0px 0px;
	padding:3px 8px;
	color:#000;
	background-color:#fff;
	border-radius:5px;
	font-size:11px;
	text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Playlist Specific Styles */
/* Error State Styles */
.media-error .thumbnail-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    text-align: center;
}
.error-icon {
    opacity: 0.7;
}
.media-error .play-button {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
}
.media-error .play-button:hover {
    filter: brightness(0.9);
    transform: none;
}
/* Block Error Styles */
/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.media-thumbnail {
    animation: fadeIn;
	border-radius: 10px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Responsive Design */
@media  (max-width: 768px)  {
  .thumbnail-image-container {
        height: 200px;
    }
  .play-button {
        width: 60px;
        height: 60px;
    }
}
@media  (max-width: 480px)  {
  .thumbnail-image-container {
        height: 180px;
    }
  .play-button {
        width: 50px;
        height: 50px;
    }
  .media-loading {
        height: 160px;
    }
  .media-error .thumbnail-error {
        height: 160px;
    }
}
.app-player-window-overlay {
	position:absolute;
	width:160%;
	height:160%;
	top:-30%;
	left:-30%;
	z-index:1;
	pointer-events:none;
	background-repeat:no-repeat;
	background-size:100% 100%;
	background-position:center;
}
#album-art.active .app-player-window-overlay {
	animation: rotateAlbumArt 3s linear 0s infinite forwards;
}
.art-user-pic {
	position: absolute;
	left: -50px;
}
.art-user-pic.content-profile-link {
	cursor: pointer;
	margin-right: 15px;
}
.content-profile-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}
/* Der Loader füllt jetzt direkt den Content-Bereich aus */
/* (Die restlichen Klassen für .loader-equalizer und .bar bleiben EXAKT gleich!) */
/* Der Equalizer-Container */
/* Die einzelnen Balken */
@keyframes equalize {
    0%, 100% { 
        transform: scaleY(0.22); /* Entspricht ca. 10px */
        background-color: #f41c26;
        box-shadow: none;
    }
    50% { 
        transform: scaleY(1); /* Entspricht den vollen 45px */
        background-color: #ff3355; 
        box-shadow: 0 0 12px #ff3355; 
    }
}
/** CHAT START **/
/* ── Chat Views ──────────────────────────────────────────────── */
.chat-view {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.chat-view.none {
    display: none;
}
/* ── Topbar ──────────────────────────────────────────────────── */
.chat-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 12px;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 3px solid #f41c26;
    background: #fff;
    flex-shrink: 0;
}
.chat-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.3s;
}
/* ── Kontaktliste ────────────────────────────────────────────── */
.chatbuddylist {
    flex: 1;
    overflow-y: auto;
}
/* ── Skeleton Loader ─────────────────────────────────────────── */
.chat-loading-item {
    padding: 10px 12px;
    display: flex !important;
    flex-direction: column;
    gap: 6px;
}
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position:  400px 0; }
}
.chat-skeleton {
    height: 14px;
    border-radius: 4px;
    width: 80%;
    background: linear-gradient(90deg, #eee 25%, #e0e0e0 50%, #eee 75%);
    background-size: 400px 100%;
    animation: shimmer 1.4s ease-in-out infinite;
}
.chat-skeleton-sm {
    width: 50%;
    height: 10px;
}
/* ── Nachrichtenbereich ──────────────────────────────────────── */
.chatcontent {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 8px 0;
    background-color: #f5f5f5;
}
/* Tagestrennlinie */
/* ── Eingabe ─────────────────────────────────────────────────── */
.chatmessage {
/** CHAT END **/}


/* --- MODERN VOICE CHANNEL UI --- */

/* Container für den gesamten Voice-Bereich */
.modern-voice-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 4px solid #f41c26; /* Dein primäres Rot aus style2.css */
}

/* Header / Info-Bereich */
.modern-voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-voice-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Der Status-Indikator */
.modern-voice-status {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: #f5f5f5;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Status: Connected */
.modern-voice-status.status-connected {
    background-color: rgba(76, 217, 100, 0.1); /* Helles Grün */
    color: #2e8b57;
}

.modern-voice-status.status-connected::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4cd964;
    box-shadow: 0 0 0 0 rgba(76, 217, 100, 0.7);
    animation: voice-pulse 2s infinite;
}

/* Buttons */
.modern-voice-actions {
    display: flex;
    gap: 10px;
}

.btn-voice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-voice-join {
    background-color: #f41c26; /* Dein Rot */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(244, 28, 38, 0.2);
}

.btn-voice-join:hover {
    background-color: #d11f1f; /* Dunkleres Rot beim Hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(244, 28, 38, 0.3);
}

.btn-voice-leave {
    background-color: #333333;
    color: #ffffff;
}

.btn-voice-leave:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

/* Animation für den aktiven Raum */
@keyframes voice-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 217, 100, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(76, 217, 100, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 217, 100, 0); }
}
.modern-participants {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.participants-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.participants-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 80px;
    overflow-y: auto;
}

.participant-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.participant-chip.talking {
    background: rgba(244, 28, 38, 0.1);
    border-color: #f41c26;
}

.participant-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
}

.download-progress-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    width: 100%;
    font-size: 12px;
    line-height: 1;
}

.download-progress-inline[hidden] {
    display: none !important;
}

.download-progress-track {
    position: relative;
    flex: 1 1 auto;
    min-width: 120px;
    height: 6px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 999px;
    overflow: hidden;
}

.download-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f41c26 0%, #ff6b72 100%);
    border-radius: 999px;
    transition: width 0.15s linear, background-color 0.2s ease;
}

.download-progress-text {
    flex: 0 0 auto;
    min-width: 42px;
    text-align: right;
    color: #666;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.download-progress-inline.is-complete .download-progress-fill {
    width: 100%;
    background: linear-gradient(90deg, #2e7d32 0%, #66bb6a 100%);
}

.download-progress-inline.is-complete .download-progress-text {
    color: #2e7d32;
}

.download-progress-inline.is-error .download-progress-fill {
    width: 100%;
    background: linear-gradient(90deg, #c62828 0%, #ef5350 100%);
}

.download-progress-inline.is-error .download-progress-text {
    color: #c62828;
}

.chart-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 320px;
  overflow: hidden;
}

.chart-box canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.recipe-random {
	padding: 12px !important;
}


.recipe-random-image-wrap {
	position: relative;
	min-height: 100%;
	background: #f3f3f3;
	overflow: hidden;
}

.recipe-random-image {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.recipe-random-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 24px 24px 0;
}

.recipe-random-title {
	margin: 0 0 12px 0;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
	text-transform: none;
	letter-spacing: -0.02em;
	color: #1f1f1f;
	text-align: left;
}

.recipe-random-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.recipe-random-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background: #f7f7f8;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

.recipe-random-nutrition {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 22px;
}

.nutrition-pill {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 16px;
	padding: 14px 16px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.nutrition-pill small {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8b8b8b;
}

.nutrition-pill strong {
	font-size: 18px;
	line-height: 1;
	color: #222;
}

.recipe-random-arrow {
	font-size: 18px;
	line-height: 1;
}

.today-picked-card {
	border: none;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(145deg, #ffffff 0%, #fbfbfb 100%);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-header-inline {
	display: flex;
	gap: 12px;
}

.card-header-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.1;
}

.card-header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(244, 28, 38, 0.08);
	font-size: 22px;
	flex-shrink: 0;
}

.card-header-icon > img{
	height:24px;
}

.card-header-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f41c26;
}

.card .card-header .card-header-title {
	margin: 2px 0 0 0;
	font-size: 22px;
	line-height: 1.1;
	font-weight: 700;
	color: #1f1f1f;
	text-transform: none;
}

.today-picked-body {
	padding: 18px !important;
	background: transparent;
}

.today-picked-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.today-picked-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 18px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.today-picked-item:hover {
	transform: translateY(-2px);
	border-color: rgba(244, 28, 38, 0.20);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.today-picked-time {
	flex: 0 0 68px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 8px;
	border-radius: 14px;
	background: linear-gradient(135deg, #f41c26 0%, #ff5b63 100%);
	color: #fff;
	box-shadow: 0 8px 18px rgba(244, 28, 38, 0.22);
}

.today-picked-time span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.today-picked-time small {
	margin-top: 4px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.9;
}

.today-picked-content {
	flex: 1;
	min-width: 0;
}

.today-picked-date {
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8a8a8a;
}

.card-header-title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: #232323;
	word-break: break-word;
}

.today-picked-arrow {
	font-size: 24px;
	line-height: 1;
	color: #c7c7c7;
	transition: transform 0.2s ease, color 0.2s ease;
}

.today-picked-item:hover .today-picked-arrow {
	transform: translateX(3px);
	color: #f41c26;
}

.today-picked-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 26px 18px;
	background: linear-gradient(145deg, #fffdfd 0%, #fff7f7 100%);
	border: 1px dashed rgba(244, 28, 38, 0.18);
	border-radius: 20px;
}

.today-picked-empty-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 14px;
	border-radius: 20px;
	background: rgba(244, 28, 38, 0.08);
	font-size: 34px;
}

.today-picked-empty h4 {
	margin: 0 0 8px 0;
	font-size: 22px;
	font-weight: 700;
	color: #222;
	text-transform: none;
}

.today-picked-empty p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	max-width: 32ch;
}

.today-picked-empty-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 18px;
}

.today-picked-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 12px;
	background: #f3f3f4;
	color: #333 !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.today-picked-link:hover {
	background: #e9e9eb;
	color: #111 !important;
	text-decoration: none;
}

.today-picked-link-primary {
	background: #f41c26;
	color: #fff !important;
	box-shadow: 0 10px 20px rgba(244, 28, 38, 0.18);
}

.today-picked-link-primary:hover {
	background: #d91a22;
	color: #fff !important;
}

@media (max-width: 768px) {
	.card .card-header .card-header-title {
		font-size: 19px;
	}

	.today-picked-item {
		padding: 12px;
		gap: 12px;
	}

	.today-picked-time {
		flex: 0 0 60px;
	}

	.today-picked-time span {
		font-size: 16px;
	}

	.card-header-title {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.card-header-inline {
		gap: 10px;
	}

	.card-header-icon {
		width: 38px;
		height: 38px;
		font-size: 20px;
	}

	.today-picked-arrow {
		display: none;
	}

	.today-picked-empty {
		padding: 22px 14px;
	}

	.today-picked-empty h4 {
		font-size: 19px;
	}
}



.recipe-nutrition .card-block div {
	padding: 6px 5px;
	line-height: 1.5;
}

.recipe-nutrition .card-block img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 6px;
	vertical-align: middle;
}

.pieID.legend {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pieID.legend li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
}

.pieID.legend em {
	font-style: normal;
}



.modern-event-card {
	background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 18px;
	padding: 18px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	position: relative;
	overflow: hidden;
}

.modern-event-card--interactive {
	cursor: pointer;
}

.modern-event-card--interactive:hover,
.modern-event-card--public:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
	border-color: rgba(244, 28, 38, 0.16);
}

.modern-event-card__top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.modern-event-card__icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	border-radius: 16px;
	background: rgba(244, 28, 38, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modern-event-card__icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.modern-event-card__icon--neutral {
	background: rgba(0, 0, 0, 0.05);
	color: #333;
	font-size: 20px;
}

.modern-event-card__heading {
	min-width: 0;
	flex: 1;
}

.modern-event-card__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f41c26;
	margin-bottom: 6px;
}

.modern-event-card__title {
	margin: 0;
	font-size: 21px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f1f1f;
	word-break: break-word;
	text-transform: none;
}

.modern-event-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.modern-event-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #f5f5f6;
	border: 1px solid rgba(0, 0, 0, 0.05);
	color: #4b4b4b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

.modern-event-card__description,
.modern-event-card__location {
	margin: 0;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.modern-event-card__description {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.modern-event-card__footer {
	margin-top: auto;
	padding-top: 4px;
}

.modern-event-card__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #f41c26;
}

.modern-event-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
}

.modern-event-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 14px;
	border-radius: 12px;
	background: #f3f3f4;
	border: 1px solid rgba(0, 0, 0, 0.06);
	color: #333 !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.2s ease;
	cursor: pointer;
}

.modern-event-action:hover {
	background: #ebebed;
	color: #111 !important;
}

.modern-event-action--primary {
	background: #f41c26;
	border-color: #f41c26;
	color: #fff !important;
	box-shadow: 0 10px 20px rgba(244, 28, 38, 0.18);
}

.modern-event-action--primary:hover {
	background: #d91a22;
	border-color: #d91a22;
	color: #fff !important;
}

@media (max-width: 767px) {
	.modern-event-card {
		padding: 16px;
		border-radius: 16px;
	}

	.modern-event-card__title {
		font-size: 18px;
	}

	.modern-event-card__icon {
		width: 46px;
		height: 46px;
		border-radius: 14px;
	}

	.modern-event-card__actions {
		flex-direction: column;
	}

	.modern-event-action {
		width: 100%;
	}
}

/* =========================================================
   PLAYER LOADER / EQUALIZER
   Reparatur für app-player-content Ladeanimation
   ========================================================= */

.player-loading-container {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.loader-equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
    height: 52px;
    width: auto;
}

.loader-equalizer .bar {
    display: block;
    width: 8px;
    height: 45px;
    border-radius: 999px;
    background: #f41c26;
    transform-origin: center bottom;
    animation: equalize 1s ease-in-out infinite;
    will-change: transform, opacity, background-color, box-shadow;
}

.loader-equalizer .bar-1 {
    animation-delay: 0s;
}

.loader-equalizer .bar-2 {
    animation-delay: 0.15s;
}

.loader-equalizer .bar-3 {
    animation-delay: 0.3s;
}

.loader-equalizer .bar-4 {
    animation-delay: 0.45s;
}

.loader-equalizer .bar-5 {
    animation-delay: 0.6s;
}

.loading-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    text-align: center;
}

@keyframes equalize {
    0%, 100% {
        transform: scaleY(0.22);
        opacity: 0.65;
        background-color: #f41c26;
        box-shadow: none;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
        background-color: #ff3355;
        box-shadow: 0 0 12px rgba(255, 51, 85, 0.45);
    }
}


/**** DATING START ****/
/* =========================================================
   DATING PROFILE REDESIGN
   Nur für #dtprofile
   Card-Header bewusst NICHT überschreiben,
   da das bestehende Seiten-Schema weiterverwendet wird
   ========================================================= */

#dtprofile {
	padding-top: 10px;
	color: #333;
}

#dtprofile .row {
	margin-bottom: 22px;
}

#dtprofile .row:last-child {
	margin-bottom: 0;
}

/* Grid-Abstände etwas ruhiger */
#dtprofile [class*="col-"] {
	margin-bottom: 0;
}

/* Basis-Card: kompakt, modern, ohne Glossy */
#dtprofile .card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

/* Dashboard-Karten oben */
#dtprofile .dashboard-elem {
	margin-top: 0;
	height: auto;
	min-height: 0;
}

/* KPI-Zahlenblock unter gemeinsamem Header-Schema */
#dtprofile .dashboard-elem .card-block {
	padding-bottom: 10px;
}

#dtprofile .dashboard-elem-value-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

#dtprofile .dashboard-elem-title {
	margin: 0;
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
	color: #1f1f1f;
	letter-spacing: -0.02em;
}

#dtprofile .dashboard-elem-subtitle {
	font-size: 14px;
	line-height: 1.4;
	color: #666;
}

/* Footer der KPI-Karten */
#dtprofile .dashboard-elem-footer {
	padding: 0 16px 16px;
	margin: 0;
	border: 0;
	background: transparent;
}

#dtprofile .dashboard-elem-footer .stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Besucher-/Chat-Avatare */
#dtprofile .profilepic68.ppprop {
	position: relative;
	width: 62px;
	height: 62px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
	background-size: cover;
	background-position: center;
	border-right: 0 !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#dtprofile .profilepic68.ppprop:hover {
	transform: translateY(-2px);
	border-color: rgba(244, 28, 38, 0.16);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
}

#dtprofile .profilepic68 .ppname {
	position: absolute;
	left: 6px;
	right: 6px;
	bottom: 6px;
	display: block;
	padding: 4px 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	color: #222;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Allgemeine Card-Inhalte */
#dtprofile .card-block {
	padding: 16px 18px;
}

#dtprofile .card-block.padding-10,
#dtprofile .card-block.padding-20 {
	padding: 16px 18px !important;
}

.profilecontent .dtprofile-card-header-with-score {
	flex-wrap: wrap;
	gap: 10px;
	padding-right: 12px;
}

.profilecontent .dtprofile-card-header-with-score .card-header-inline {
	min-width: 0;
}

.profilecontent .dtprofile-match-score {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	margin-right: 12px;
	padding: 7px 12px;
	border: 1px solid rgba(244, 28, 38, 0.14);
	border-radius: 999px;
	background: #f7f7f8;
	color: #1f1f1f;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.profilecontent .dtprofile-match-score span,
.profilecontent .dtprofile-match-score em {
	color: #666;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.profilecontent .dtprofile-match-score strong {
	color: #f41c26;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.profilecontent .dtprofile-match-score.is-excluded {
	border-color: rgba(0, 0, 0, 0.08);
	background: #f2f2f3;
}

.profilecontent .dtprofile-match-score.is-excluded strong {
	color: #333;
	font-size: 13px;
}

@media (max-width: 520px) {
	.profilecontent .dtprofile-card-header-with-score {
		align-items: flex-start;
	}

	.profilecontent .dtprofile-match-score {
		margin: 0 0 0 54px;
	}
}

/* Meine Angaben: aus alten Buttons ruhige Chips machen */
#dtprofile .card-block > .btn, .profilecontent .card-block > .btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	margin: 0 10px 10px 0;
	padding: 8px 14px 8px 10px;
	background: #f7f7f8;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 999px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	vertical-align: top;
	box-shadow: none;
}

/* Icon-Fläche in den Chips */
#dtprofile .dtdatafield, .profilecontent .dtdatafield{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	border-radius: 9px;
	background: rgba(244, 28, 38, 0.08);
	flex: 0 0 28px;
}

#dtprofile .dtdatafield svg,
#dtprofile .dtdatafield img,
.profilecontent .dtdatafield svg,
.profilecontent .dtdatafield img
 {
	width: 16px !important;
	height: 16px !important;
	max-width: 16px;
	max-height: 16px;
	object-fit: contain;
}

#dtprofile .dtdatafield svg *,
.profilecontent .dtdatafield svg * {
	fill: #f41c26;
	stroke: #f41c26;
}

/* Text-Cards */
#dtprofile .dtdesccontent p,
#dtprofile .dtsparetimecontent p,
#dtprofile .dtlikeitcontent p,
#dtprofile .dtdislikecontent p,
#dtprofile .card-block > p {
	font-size: 15px;
	line-height: 1.65;
	color: #4b4b4b;
	white-space: pre-line;
}

/* Edit-Buttons dezenter */
#dtprofile .button.button-black {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 14px;
	padding: 9px 14px;
	border-radius: 12px;
	background: #2f2f32;
	border: 1px solid #2f2f32;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	box-shadow: none;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

#dtprofile .button.button-black:hover {
	background: #f41c26;
	border-color: #f41c26;
	transform: translateY(-1px);
}

/* Textareas/Formulare moderner, aber zurückhaltend */
#dtprofile .inputgroup {
	margin-bottom: 0;
	background: transparent;
}

#dtprofile .inputgroup textarea {
	min-height: 150px;
	padding: 18px 16px 14px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	border-radius: 14px;
	background: #fcfcfc;
	font-size: 15px;
	line-height: 1.55;
	color: #333;
	box-shadow: none;
}

#dtprofile .inputgroup textarea:focus {
	border-color: rgba(244, 28, 38, 0.45);
	box-shadow: 0 0 0 4px rgba(244, 28, 38, 0.08);
	background: #fff;
	outline: none;
}

#dtprofile .inputgroup label {
	left: 14px;
	background: #fff;
	font-size: 14px;
}

/* Abstände zwischen Cards in den beiden Spalten */
#dtprofile .card.mtop30 {
	margin-top: 22px !important;
}

/* Lange Inhalte sollen nicht optisch explodieren */
#dtprofile .dtdesccontent,
#dtprofile .dtsparetimecontent,
#dtprofile .dtlikeitcontent,
#dtprofile .dtdislikecontent,
#dtprofile .dtdescedit,
#dtprofile .dtsparetimeedit,
#dtprofile .dtlikeitedit,
#dtprofile .dtdislikeedit {
	padding-top: 18px !important;
	padding-bottom: 18px !important;
}

/* Mobile */
@media (max-width: 767px) {
	#dtprofile .row {
		margin-bottom: 16px;
	}

	#dtprofile .card {
		border-radius: 16px;
	}

	#dtprofile .dashboard-elem-title {
		font-size: 24px;
	}

	#dtprofile .dashboard-elem-subtitle {
		font-size: 13px;
	}

	#dtprofile .dashboard-elem-footer {
		padding: 0 14px 14px;
	}

	#dtprofile .profilepic68.ppprop {
		width: 58px;
		height: 58px;
		border-radius: 14px;
	}

	#dtprofile .card-block,
	#dtprofile .card-block.padding-10,
	#dtprofile .card-block.padding-20 {
		padding: 14px !important;
	}

	#dtprofile .card-block > .btn {
		width: 100%;
		margin-right: 0;
		justify-content: flex-start;
		border-radius: 14px;
	}

	#dtprofile .inputgroup textarea {
		min-height: 130px;
	}
}
/* DT search/profile suggestions */
#dtsearch {
	padding-top: 10px;
	color: #333;
}

#dtsearch .row {
	margin-bottom: 22px;
}

#dtsearch .row:last-child {
	margin-bottom: 0;
}

#dtsearch .card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

#dtsearch .card-block {
	padding: 18px;
}

#dtsearch .alert-warning {
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid rgba(244, 28, 38, 0.13);
	border-left: 4px solid #f41c26;
	border-radius: 8px;
	background: #fff7f8;
	color: #4b4b4b;
	font-size: 14px;
	line-height: 1.45;
}

#dtsearch .alert-warning img {
	width: 22px;
	height: 22px;
	margin-right: 8px;
	vertical-align: middle;
}

#dtsearch .inputgroup {
	margin-bottom: 0;
}

.dt-partner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	align-items: stretch;
	text-align: center;
}

.dtgrid {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 0;
	padding: 20px 14px 18px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 3px 4px 5px 1px rgba(0,0,0,0.03);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dtgrid:hover {
	transform: translateY(-2px);
	border-color: rgba(244, 28, 38, 0.22);
	box-shadow: 0 8px 18px rgba(244, 28, 38, 0.11);
}

.dtgrid.dtgrid-waiting {
	border-color: rgba(244, 28, 38, 0.16);
}

.dtgrid-visual {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 14px;
}

.dtgrid-pp {
	display: block;
	width: 200px;
	height: 200px;
	max-width: 100%;
	border-radius: 50%;
	object-fit: cover;
	background: #f4f4f5;
	border: 4px solid #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.10);
}

.dtgrid-wait-badge {
	position: absolute;
	left: 50%;
	bottom: 4px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 24px);
	padding: 6px 10px;
	border: 1px solid rgba(244, 28, 38, 0.20);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
	color: #333;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	transform: translateX(-50%);
	white-space: nowrap;
}

.dtgrid-hourglass {
	color: #f41c26;
	font-size: 14px;
	line-height: 1;
}

.dtgrid-wait-badge span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#dtprofile .profilepic68 .dt-slot-kind {
	position: absolute;
	left: 5px;
	top: 5px;
	display: block;
	max-width: calc(100% - 10px);
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.90);
	color: #555;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

#dtprofile .dt-chat-contact .dt-slot-kind {
	color: #f41c26;
}

#dtprofile .profilepic68.ppprop.dt-slot-tile {
	align-items: center;
	background: #fbfbfc;
	background-image: none !important;
	border: 1px dashed rgba(0, 0, 0, 0.24);
	box-shadow: none;
	color: #777;
	display: flex;
	justify-content: center;
}

#dtprofile .profilepic68.ppprop.dt-slot-tile:hover {
	border-color: rgba(0, 0, 0, 0.24);
	box-shadow: none;
	transform: none;
}

#dtprofile .profilepic68.ppprop.dt-slot-empty .ppname {
	background: rgba(255, 255, 255, 0.86);
	color: #777;
}

#dtprofile .profilepic68.ppprop.dt-slot-request-filled {
	background: linear-gradient(135deg, #fff7f7, #f5f5f6);
	border-color: rgba(244, 28, 38, 0.18);
	border-style: solid;
}

#dtprofile .profilepic68.ppprop.dt-slot-request-filled .ppname {
	color: #f41c26;
}

#dtprofile .profilepic68.ppprop.dt-slot-request-filled .dt-slot-kind {
	background: rgba(244, 28, 38, 0.10);
	color: #f41c26;
}

#dtprofile .profilepic68.ppprop.dt-slot-locked {
	background: repeating-linear-gradient(135deg, #fafafa 0, #fafafa 7px, #f0f0f1 7px, #f0f0f1 14px);
	border-color: rgba(0, 0, 0, 0.14);
	opacity: 0.62;
}

.dt-incoming-row {
	margin-top: 22px;
}

.dt-incoming-card .card-header {
	align-items: center;
}

.dt-incoming-count-wrap {
	margin-left: auto;
	padding: 5px 10px;
	border-radius: 999px;
	background: #f5f5f6;
	color: #333;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.dt-incoming-requests {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.dt-incoming-request {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 12px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 8px;
	background: #fff;
	box-shadow: 3px 4px 5px 1px rgba(0,0,0,0.03);
}

.dt-incoming-avatar {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background-color: #f4f4f5;
	background-position: center;
	background-size: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
	cursor: pointer;
}

.dt-incoming-meta {
	min-width: 0;
	text-align: left;
}

.dt-incoming-meta strong,
.dt-incoming-meta span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dt-incoming-meta strong {
	color: #222;
	font-size: 15px;
	font-weight: 800;
}

.dt-incoming-meta span {
	margin-top: 3px;
	color: #777;
	font-size: 12px;
}

.dt-incoming-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	justify-content: flex-end;
}

.dt-incoming-actions .button.button-black {
	margin: 0;
	padding: 7px 11px;
	font-size: 12px;
	white-space: nowrap;
}

.dt-incoming-actions .dt-incoming-decline {
	background-color: #777;
}

.dt-incoming-request.dt-request-busy {
	opacity: 0.55;
	pointer-events: none;
}

@media (max-width: 640px) {
	.dt-incoming-card .card-header {
		gap: 10px;
	}

	.dt-incoming-request {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.dt-incoming-avatar {
		width: 52px;
		height: 52px;
	}

	.dt-incoming-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}
}

.dtgrid-score {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #f7f7f8;
	color: #f41c26;
}

.dtgrid-score strong {
	font-size: 16px;
	line-height: 1;
	font-weight: 800;
}

.dtgrid-score span {
	color: #555;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.dtgrid-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
}

.dtgrid-body h2 {
	margin: 0;
	color: #222;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#dtsearch .button.button-black.dtgrid-action {
	justify-content: center;
	margin: 2px 0 0;
	padding: 7px 13px;
	border-radius: 5px;
	background-color: #333;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	box-shadow: none;
}

#dtsearch .button.button-black.dtgrid-action:hover {
	background-color: #f41c26;
}

#dtsearch .dtgrid-waiting .button.button-black.dtgrid-action,
#dtsearch .dtgrid-waiting .button.button-black.dtgrid-action:hover {
	background-color: #777;
}

.dt-partner-empty {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 28px;
	border: 1px dashed rgba(0, 0, 0, 0.14);
	border-radius: 8px;
	background: #fafafa;
	color: #555;
	text-align: center;
}

.dt-partner-empty img {
	width: 38px;
	height: 38px;
	margin-bottom: 12px;
	opacity: 0.55;
}

.dt-partner-empty strong {
	margin-bottom: 5px;
	color: #222;
	font-size: 16px;
	font-weight: 800;
}

.dt-partner-empty span {
	max-width: 420px;
	font-size: 14px;
	line-height: 1.45;
}

@media (max-width: 767px) {
	#dtsearch .row {
		margin-bottom: 16px;
	}

	#dtsearch .card-block {
		padding: 14px;
	}

	.dt-partner-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.dtgrid {
		min-height: 0;
	}

	.dtgrid-pp {
		width: 180px;
		height: 180px;
	}

	.dtgrid-body h2 {
		font-size: 17px;
	}
}

/* =========================
   DT Gallery Modern
   Gekapselt nur für #dtgallery
   ========================= */

/* =========================
   DT Gallery Modern
   Komplett gekapselt auf #dtgallery
   ========================= */

/* =========================
   Dating Setup
   ========================= */

.dtsetup-shell {
	position: relative;
	min-height: calc(100vh - 120px);
	padding: 26px 14px 38px;
	background:
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.025) 0 1px, transparent 1px 16px),
		#f7f8fb;
	color: #26272b;
}

.dtsetup-shell > .row {
	max-width: 980px;
	margin: 0 auto;
}

.dtsetup-shell [class^="dtsetupstep"],
.dtsetup-shell [class*=" dtsetupstep"] {
	position: relative;
	z-index: 0;
	max-width: 900px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-top: 5px solid #1aa091;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 42px rgba(25, 25, 30, 0.10);
	overflow: hidden;
}

.dtsetup-shell [class^="dtsetupstep"]::before,
.dtsetup-shell [class*=" dtsetupstep"]::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	width: 190px;
	height: 100%;
	background:
		linear-gradient(135deg, transparent 0 42%, rgba(47, 52, 64, 0.035) 42% 58%, transparent 58% 100%),
		repeating-linear-gradient(90deg, transparent 0 16px, rgba(26, 160, 145, 0.055) 16px 17px, transparent 17px 32px);
	pointer-events: none;
}

.dtsetup-shell [class^="dtsetupstep"] > *,
.dtsetup-shell [class*=" dtsetupstep"] > * {
	position: relative;
	z-index: 1;
}

.dtsetup-shell .none {
	display: none;
}

.dtsetup-shell .alert-warning {
	position: relative;
	margin: 0 0 22px;
	padding: 15px 17px;
	border: 1px solid rgba(26, 160, 145, 0.18);
	border-left: 5px solid #1aa091;
	border-radius: 8px;
	background: #f4fbfa;
	color: #374044;
	font-size: 14px;
	line-height: 1.45;
}

.dtsetup-shell h3 {
	position: relative;
	margin: 8px 0 18px;
	color: #15161a;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0;
}

.dtsetup-shell h3::after {
	content: "";
	display: block;
	width: 58px;
	height: 4px;
	margin-top: 12px;
	border-radius: 4px;
	background: linear-gradient(90deg, #1aa091, #e6aa3a);
}

.dtsetup-shell h4 {
	position: relative;
	margin: 26px 0 12px;
	color: #2e3137;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dtsetup-shell p,
.dtsetup-shell .dtsetupstep50 {
	color: #565d66;
	font-size: 14px;
	line-height: 1.6;
}

.dtsetup-shell ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 10px;
	margin: 0 0 10px;
	padding: 0;
}

.dtsetup-shell ul li.radio,
.dtsetup-shell ul li.checkbox {
	position: relative;
	display: block;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	border-radius: 8px;
}

.dtsetup-shell ul li.radio input[type=radio],
.dtsetup-shell ul li.checkbox input[type=checkbox] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.dtsetup-shell ul li.radio label,
.dtsetup-shell ul li.checkbox label {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 48px;
	width: 100%;
	margin: 0;
	padding: 12px 14px 12px 42px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	background: #fff;
	color: #30343a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	box-shadow: 0 4px 12px rgba(25, 25, 30, 0.04);
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
	z-index: 1;
}

.dtsetup-shell ul li.radio label::before,
.dtsetup-shell ul li.checkbox label::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 50%;
	width: 16px;
	height: 16px;
	border: 2px solid #b7bdc7;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
	box-sizing: border-box;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtsetup-shell ul li.checkbox label::before {
	border-radius: 5px;
}

.dtsetup-shell ul li.radio:hover label,
.dtsetup-shell ul li.checkbox:hover label {
	border-color: rgba(26, 160, 145, 0.28);
	box-shadow: 0 10px 22px rgba(25, 25, 30, 0.08);
	transform: translateY(-1px);
	color: #17191d;
}

.dtsetup-shell ul li.radio input:checked + label,
.dtsetup-shell ul li.checkbox input:checked + label {
	border-color: rgba(26, 160, 145, 0.55);
	background: linear-gradient(135deg, #fff, #f4fbfa);
	color: #191b20;
	box-shadow: 0 12px 24px rgba(26, 160, 145, 0.10);
}

.dtsetup-shell ul li.radio input:checked + label::before,
.dtsetup-shell ul li.checkbox input:checked + label::before {
	border-color: #1aa091;
	background: #1aa091;
	box-shadow: inset 0 0 0 4px #fff;
}

.dtsetup-shell ul li.checkbox input:checked + label::before {
	box-shadow: inset 0 0 0 3px #fff;
}

.dtsetup-shell ul li.radio .check,
.dtsetup-shell ul li.checkbox .check {
	display: none;
}

.dtsetup-shell .form-control,
.dtsetup-shell select,
.dtsetup-shell input[type="text"] {
	min-height: 46px;
	width: 100%;
	margin-bottom: 12px;
	padding: 10px 13px;
	border: 1px solid rgba(0, 0, 0, 0.11);
	border-radius: 8px;
	background: #fff;
	color: #2c3036;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(25, 25, 30, 0.04);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dtsetup-shell .form-control:focus,
.dtsetup-shell select:focus,
.dtsetup-shell input[type="text"]:focus {
	border-color: rgba(26, 160, 145, 0.62);
	box-shadow: 0 0 0 4px rgba(26, 160, 145, 0.12);
	background: #fff;
}

.dtsetup-shell .row {
	margin-left: -6px;
	margin-right: -6px;
}

.dtsetup-shell .row [class*="col-"] {
	padding-left: 6px;
	padding-right: 6px;
}

.dtsetup-shell .button.button-black {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 18px 8px 0 0;
	padding: 10px 16px;
	border: 1px solid #25272d;
	border-radius: 8px;
	background: #25272d;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.1;
	box-shadow: 0 8px 18px rgba(25, 25, 30, 0.16);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dtsetup-shell .button.button-black:hover {
	background: #1aa091;
	border-color: #1aa091;
	box-shadow: 0 12px 24px rgba(26, 160, 145, 0.22);
	transform: translateY(-1px);
}

.dtsetup-shell .button.button-black[onclick*="dtsetupprev"] {
	background: #fff;
	border-color: rgba(0, 0, 0, 0.16);
	color: #2c3036;
	box-shadow: none;
}

.dtsetup-shell .button.button-black[onclick*="dtsetupprev"]:hover {
	background: #eef7f6;
	border-color: rgba(26, 160, 145, 0.35);
	color: #173b38;
}

.dtsetup-shell .inputgroup {
	max-width: 430px;
	margin: 18px auto 0;
}

.dtsetup-shell .inputgroup input {
	height: 50px;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(25, 25, 30, 0.08);
}

.dtsetup-shell .inputgroup label {
	left: 14px;
	background: #fff;
}

.dtsetup-shell .dt-body-size-field {
	margin-top: 18px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

@media (max-width: 767px) {
	.dtsetup-shell {
		padding: 14px 8px 28px;
	}

	.dtsetup-shell [class^="dtsetupstep"],
	.dtsetup-shell [class*=" dtsetupstep"] {
		padding: 18px 14px;
	}

	.dtsetup-shell h3 {
		font-size: 22px;
	}

	.dtsetup-shell ul {
		grid-template-columns: 1fr;
	}

	.dtsetup-shell ul li.radio label,
	.dtsetup-shell ul li.checkbox label {
		min-height: 46px;
		padding-right: 12px;
	}

	.dtsetup-shell .button.button-black {
		width: 100%;
		margin-right: 0;
	}

	.dtsetup-shell .row [class*="col-"] {
		margin-bottom: 8px;
	}
}

#dtgallery .card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

#dtgallery .card-header.dtgallery-card-header {
	background: #fff !important;
	color: #333 !important;
	border: none;
	box-shadow: inset 0px -3px 0px 0px #f41c26;
	min-height: 70px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

#dtgallery .card-header.dtgallery-card-header svg {
	width: 28px;
	height: 28px;
	fill: #f41c26;
	flex: 0 0 28px;
}

#dtgallery .card-header.dtgallery-card-header span {
	font-family: "Roboto Slab", serif;
	font-size: 1.15rem;
	font-weight: bold;
	color: #222;
	line-height: 1.2;
}

#dtgallery .card-block.dtgallery-card-block {
	padding: 14px;
	background: #fff;
}

#dtgallery .dtgallery-uploadform {
	margin-bottom: 16px;
}

#dtgallery #dtgallery_ul {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #e3e3e3;
	border-radius: 8px;
	background: #fafafa;
	color: #333;
	box-sizing: border-box;
}

#dtgallery #dtgallery_ul:hover,
#dtgallery #dtgallery_ul:focus {
	border-color: #f41c26;
	background: #fff;
	outline: none;
}

#dtgallery #dtgallery_ul_progress {
	margin-top: 8px;
	font-size: 13px;
	color: #666;
	min-height: 18px;
}

#dtgallery .dtgallery-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

#dtgallery .dtgallery-entry {
	display: flex;
	align-items: stretch;
	gap: 14px;
	width: 100%;
	padding: 12px;
	background: #fcfcfc;
	border: 1px solid #ececec;
	border-radius: 10px;
	box-sizing: border-box;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	min-height: 184px;
}

#dtgallery .dtgallery-entry:hover {
	border-color: rgba(244, 28, 38, 0.28);
	box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

#dtgallery .dtgallery-thumb {
	display: block;
	flex: 0 0 180px;
	width: 180px;
	height: 160px;
	border-radius: 8px;
	background-color: #ececec;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

#dtgallery .dtgallery-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	flex: 1 1 auto;
	min-width: 0;
}

#dtgallery a.dtgallery-action,
#dtgallery .dtgallery-action {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 160px;
	max-width: 220px;
	min-height: 36px;
	padding: 8px 14px;
	border-radius: 7px;
	border: 1px solid #dddddd;
	background: #f7f7f7;
	color: #333 !important;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	cursor: pointer;
	box-sizing: border-box;
	box-shadow: none;
	margin: 0;
}

#dtgallery a.dtgallery-action:hover,
#dtgallery .dtgallery-action:hover {
	background: #efefef;
	border-color: #d4d4d4;
	color: #111 !important;
	transform: none;
}

#dtgallery .dtgallery-action-primary {
	background: #f41c26;
	border-color: #f41c26;
	color: #fff !important;
}

#dtgallery .dtgallery-action-primary:hover {
	background: #dc1822;
	border-color: #dc1822;
	color: #fff !important;
}

#dtgallery .dtgallery-action:before,
#dtgallery .dtgallery-entry:before,
#dtgallery .dtgallery-thumb:before {
	display: none !important;
	content: none !important;
}

@media (min-width: 1600px) {
	#dtgallery .dtgallery-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	#dtgallery .dtgallery-thumb {
		flex: 0 0 170px;
		width: 170px;
		height: 150px;
	}
}

@media (max-width: 1199px) {
	#dtgallery .dtgallery-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#dtgallery .dtgallery-thumb {
		flex: 0 0 160px;
		width: 160px;
		height: 140px;
	}
}

@media (max-width: 767px) {
	#dtgallery .dtgallery-list {
		grid-template-columns: 1fr;
	}

	#dtgallery .dtgallery-entry {
		flex-direction: column;
	}

	#dtgallery .dtgallery-thumb {
		width: 100%;
		flex: 0 0 auto;
		height: 220px;
	}

	#dtgallery .dtgallery-menu {
		width: 100%;
	}

	#dtgallery a.dtgallery-action,
	#dtgallery .dtgallery-action {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
}
/**** DATING END ****/

.calendar-dayview-card {
	border: none;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(145deg, #ffffff 0%, #fbfbfb 100%);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.calendar-dayview-timeline {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.calendar-slot {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.calendar-slot__time {
	position: sticky;
	top: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 10px;
	border-radius: 16px;
	background: linear-gradient(135deg, #f41c26 0%, #ff5b63 100%);
	color: #fff;
	box-shadow: 0 10px 24px rgba(244, 28, 38, 0.22);
	text-align: center;
}

.calendar-slot__time span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.calendar-slot__time small {
	margin-top: 6px;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.92;
}

.calendar-slot__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.calendar-slot__parallel-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(244, 28, 38, 0.08);
	color: #c21d25;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.calendar-slot__events {
	display: grid;
	gap: 12px;
}

.calendar-slot__events.is-single {
	grid-template-columns: 1fr;
}

.calendar-slot__events.is-multi {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.calendar-event-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 18px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.calendar-event-card:hover {
	transform: translateY(-2px);
	border-color: rgba(244, 28, 38, 0.18);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.calendar-event-card__head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.calendar-event-card__times {
	flex: 0 0 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 8px;
	border-radius: 14px;
	background: #f6f6f7;
	border: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.calendar-event-card__times span {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	color: #232323;
}

.calendar-event-card__times small {
	margin-top: 4px;
	font-size: 10px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8b8b8b;
}

.calendar-event-card__titlewrap {
	min-width: 0;
	flex: 1;
	align-self: center;
}

.calendar-event-card__title {
	margin: 0;
	font-size: 19px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f1f1f;
	text-transform: none;
	word-break: break-word;
}

.calendar-event-card__description {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.calendar-event-card__meta,
.calendar-eventdetails-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.calendar-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #f5f5f6;
	border: 1px solid rgba(0, 0, 0, 0.05);
	color: #505050;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
}

.calendar-gap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 2px 0 2px 104px;
}

.calendar-gap__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(244, 28, 38, 0.10) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.calendar-gap__label {
	flex: 0 0 auto;
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff7f7;
	border: 1px dashed rgba(244, 28, 38, 0.20);
	color: #b14b4f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.calendar-eventdetails-description {
	margin-top: 16px;
	padding: 18px;
	border-radius: 18px;
	background: #fafafb;
	border: 1px solid rgba(0, 0, 0, 0.05);
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.7;
}

.calendar-eventdetails-description--empty {
	color: #7a7a7a;
	font-style: italic;
}

@media (max-width: 991px) {
	.calendar-slot {
		grid-template-columns: 1fr;
	}

	.calendar-slot__time {
		position: relative;
		top: auto;
		width: 100%;
		max-width: 180px;
	}

	.calendar-gap {
		padding-left: 0;
		flex-wrap: wrap;
	}

	.calendar-gap__line {
		order: 2;
		width: 100%;
		flex-basis: 100%;
	}
}

@media (max-width: 767px) {
	.calendar-event-card {
		padding: 14px;
		border-radius: 16px;
	}

	.calendar-event-card__head {
		flex-direction: column;
	}

	.calendar-event-card__times {
		flex: none;
		width: 100%;
		align-items: flex-start;
		text-align: left;
		padding: 10px 12px;
	}

	.calendar-event-card__title {
		font-size: 17px;
	}

	.calendar-slot__events.is-multi {
		grid-template-columns: 1fr;
	}

	.calendar-meta-pill,
	.calendar-gap__label {
		font-size: 12px;
	}
}
/* ========================================================= */
/* Digitale Kochbuch-Wochenübersicht                         */
/* ========================================================= */

.mealplanner-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.mealplanner-filter-wrap {
  flex: 1 1 360px;
  min-width: 220px;
}
.mealplanner-filter-wrap label {
  display: block;
  margin: 0 0 7px;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mealplanner-filter-input.datatable-filter-input {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.06);
  color: #222222;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.mealplanner-filter-input.datatable-filter-input:focus {
  border-color: #f41c26;
  box-shadow: 0 0 0 4px rgba(244, 28, 38, 0.10), 0 8px 22px rgba(31, 41, 55, 0.06);
}
.mealplanner-week-badge {
  flex: 0 0 auto;
  min-width: 190px;
  padding: 13px 16px;
  border-radius: 18px;
  background: #232323;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(35, 35, 35, 0.14);
}
.mealplanner-week-badge span,
.mealplanner-week-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.25;
}
.mealplanner-week-badge strong {
  display: block;
  margin: 2px 0;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.15;
}
.mealplanner-table-shell {
  overflow-x: auto;
  border: 1px solid #eceff3;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  -webkit-overflow-scrolling: touch;
}
.mealplanner-table-shell:focus {
  outline: 3px solid rgba(244, 28, 38, 0.18);
  outline-offset: 3px;
}
.mealplanner-table.datatable {
  min-width: 920px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: none;
  background: transparent;
}
.mealplanner-table.datatable thead th {
  position: relative;
  padding: 15px 12px;
  border-bottom: 1px solid #eceff3;
  background: #f7f8fa;
  color: #5f6673;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.mealplanner-table.datatable thead th:first-child,
.mealplanner-table.datatable tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 135px;
  min-width: 135px;
}
.mealplanner-table.datatable thead th:first-child {
  z-index: 3;
  background: #f0f2f5;
}
.mealplanner-table.datatable tbody td:first-child {
  background: #ffffff;
  color: #222222;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 8px 0 18px rgba(31, 41, 55, 0.05);
}
.mealplanner-table.datatable th,
.mealplanner-table.datatable td {
  padding: 12px;
  border-right: 1px solid #f0f1f3;
  border-bottom: 1px solid #f0f1f3;
  text-align: left;
  vertical-align: top;
}
.mealplanner-table.datatable th:last-child,
.mealplanner-table.datatable td:last-child {
  border-right: 0;
}
.mealplanner-table.datatable tbody tr:last-child td {
  border-bottom: 0;
}
.mealplanner-table.datatable tbody tr:hover td {
  background: #fffafa;
}
.mealplanner-cell-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
#mealplanner-table a.mealplanner-entry,
.mealplanner-entry {
  appearance: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  padding: 10px 11px;
  border: 1px solid #e8ebef;
  border-radius: 15px;
  background: #ffffff;
  color: #263238;
  text-decoration: none;
  word-break: normal;
  overflow-wrap: anywhere;
  box-shadow: 0 5px 14px rgba(31, 41, 55, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
#mealplanner-table a.mealplanner-entry:hover,
.mealplanner-entry:hover,
.mealplanner-entry:focus {
  border-color: rgba(244, 28, 38, 0.45);
  background: #fff7f7;
  color: #222222;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(244, 28, 38, 0.10);
  outline: none;
}
.mealplanner-entry__headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.mealplanner-entry__name {
  color: inherit;
  font-weight: 800;
  line-height: 1.25;
}
.mealplanner-entry__type {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(244, 28, 38, 0.10);
  color: #f41c26;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.mealplanner-entry__meta {
  color: #69717f;
  font-size: 0.76rem;
  line-height: 1.35;
}
.mealplanner-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border: 1px dashed #d8dde5;
  border-radius: 14px;
  color: #a0a7b3;
  background: #fafbfc;
  font-size: 0.88rem;
}
.mealplanner-mobile {
  display: none;
}
.mealplanner-empty-state {
  padding: 22px;
  border: 1px dashed #d8dde5;
  border-radius: 18px;
  background: #ffffff;
  color: #69717f;
  text-align: center;
}
@media (max-width: 900px) {
  .mealplanner-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .mealplanner-week-badge {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .card > .mealplanner-card-header {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }
  .mealplanner-card .card-header-inline {
    align-items: flex-start;
  }
  .mealplanner-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.3rem;
  }
  .mealplanner-card .card-header-title {
    font-size: 1.25rem;
  }
  .mealplanner-add-entry {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .mealplanner-add-entry div {
    width: 100%;
  }
  .mealplanner-card-block {
    padding: 14px;
  }
  .mealplanner-table-shell {
    display: none;
  }
  .mealplanner-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mealplanner-day-card {
    overflow: hidden;
    border: 1px solid #eceff3;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.07);
  }
  .mealplanner-day-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #232323 0%, #3a3a3a 100%);
    color: #ffffff;
  }
  .mealplanner-day-card__head h4 {
    margin: 1px 0 0;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.15;
    text-transform: none;
  }
  .mealplanner-day-card__eyebrow {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mealplanner-day-card__count {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
  }
  .mealplanner-day-card__slots {
    display: grid;
    gap: 10px;
    padding: 13px;
  }
  .mealplanner-slot-card {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #f0f1f3;
    border-radius: 16px;
    background: #fbfbfc;
  }
  .mealplanner-slot-card__label {
    color: #5f6673;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .mealplanner-slot-card__content {
    display: grid;
    gap: 8px;
  }
  .mealplanner-empty--mobile {
    min-height: 42px;
  }
}
@media (max-width: 420px) {
  .mealplanner-card-block {
    padding: 10px;
  }
  .mealplanner-filter-input.datatable-filter-input {
    padding: 12px 13px;
    border-radius: 14px;
    font-size: 0.92rem;
  }
  .mealplanner-day-card__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .mealplanner-day-card__count {
    align-self: flex-start;
  }
}
.mealplanner-add-entry > div {
  margin-right: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
}
.mealplanner-add-entry:hover > div {
  background: transparent;
}

/* =========================
   Forum Thread Modernisierung – kompakter Kopfbereich
   Gekapselt fuer group_app_forum_thread.php
   ========================= */
.forum-thread-container,
.forum-compose-container {
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}

.forum-thread-shell {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.forum-thread-hero.card {
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	background: #fff;
	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.forum-thread-toolbar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 10px 12px;
	border-left: 4px solid #f41c26;
}

.forum-thread-heading {
	min-width: 0;
}

.forum-thread-meta-line {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 2px;
}

.forum-thread-meta-line span {
	display: inline-flex;
	align-items: center;
	min-height: 19px;
	padding: 2px 7px;
	border-radius: 999px;
	background: #f3f3f4;
	color: #666;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.forum-thread-title {
	margin: 0;
	color: #222;
	font-size: clamp(18px, 2.1vw, 24px);
	font-weight: 800;
	line-height: 1.2;
	text-align: left;
	text-transform: none;
	word-break: break-word;
}

.forum-thread-hero .button.button-black,
.forum-compose-actions .button.button-black {
	width: auto;
	min-height: 34px;
	margin: 0;
	padding: 6px 12px;
	border: 0;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	box-shadow: none;
}

#forum_abonnement[aria-pressed="true"] {
	box-shadow: inset 0 -2px 0 #f41c26;
}

.forum-thread-posts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#forum .forum-thread-posts > .card {
	margin-bottom: 0 !important;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 10px;
	background: #fff;
	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#forum .forum-thread-posts > .card:hover {
	border-color: rgba(244, 28, 38, 0.18);
	box-shadow: 3px 6px 16px rgba(0, 0, 0, 0.07);
}

#forum .flex-board {
	display: grid;
	grid-template-columns: minmax(190px, 235px) 1fr;
	padding: 0 !important;
	background: #fff;
}

#forum .board-sidebar {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
	padding: 14px;
	background: #f7f7f8;
	border-right: 1px solid rgba(0, 0, 0, 0.06);
}

#forum .board-sidebar .profilepic68 {
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	object-fit: cover;
	background: #fff;
	box-shadow: 0 0 0 3px #fff;
}

#forum .board-sidebar > div {
	min-width: 0;
}

#forum .board-sidebar strong {
	display: block;
	font-size: 14px;
	line-height: 1.25;
	color: #222;
	word-break: break-word;
}

#forum .board-user-details {
	display: block;
	margin-top: 5px;
	color: #777;
	font-size: 12px;
	line-height: 1.45;
}

#forum .board-sidebar .button.button-black {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 9px;
	padding: 5px 9px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

#forum .board-content {
	min-width: 0;
	padding: 16px 18px;
	color: #333;
	font-size: 15px;
	line-height: 1.65;
	word-break: break-word;
	overflow-wrap: anywhere;
}

#forum .board-content a {
	color: #f41c26;
	font-weight: 700;
}

#forum .board-content iframe,
#forum .board-content img {
	max-width: 100%;
	border-radius: 10px;
}

#forum .board-content iframe {
	width: 100%;
	min-height: 260px;
	border: 0;
	background: #f3f3f4;
}

.forum-empty-state {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border: 1px dashed rgba(244, 28, 38, 0.24);
	border-radius: 10px;
	background: #fff;
	color: #555;
}

.forum-empty-state__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(244, 28, 38, 0.08);
	color: #f41c26;
	font-size: 21px;
	font-weight: 900;
	line-height: 1;
	flex-shrink: 0;
}

.forum-empty-state strong,
.forum-empty-state span {
	display: block;
}

.forum-empty-state strong {
	margin-bottom: 2px;
	font-size: 16px;
	color: #222;
}

.forum-empty-state span {
	font-size: 13px;
	line-height: 1.45;
}

.forum-compose-container {
	margin-top: 8px;
}

.forum-compose-card {
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 10px;
	background: #fff;
	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.card > .forum-compose-card-header {
	min-height: 58px;
	padding: 0 14px;
	box-shadow: inset 0px -3px 0px 0px #f41c26;
}

.card-header-inline {
	display: flex;
	align-items: center;
	gap: 10px;
}

.forum-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 7px;
	background: rgba(244, 28, 38, 0.08);
	color: #f41c26;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.card-header-label {
	display: block;
	margin-bottom: 1px;
	color: #777;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.card-header-title {
	color: #222;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.forum-compose-body {
	padding: 15px !important;
}

.forum-compose-hint {
	margin: 0 0 12px 0;
	color: #666;
	font-size: 13px;
	line-height: 1.5;
}

.forum-inputgroup {
	margin-bottom: 12px;
	border-radius: 10px;
}

.forum-inputgroup textarea {
	min-height: 125px;
	border-radius: 10px;
	background: #fcfcfc;
	font-size: 15px;
	line-height: 1.55;
}

.forum-compose-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.forum-compose-actions > span {
	color: #888;
	font-size: 12px;
	font-weight: 600;
}

#forum .button.button-black:before,
.forum-thread-hero .button.button-black:before,
.forum-compose-actions .button.button-black:before {
	display: none !important;
}

#forum .button.button-black[disabled],
.forum-compose-actions .button.button-black[disabled],
#forum .button.button-black[aria-busy="true"],
.forum-compose-actions .button.button-black[aria-busy="true"] {
	cursor: default;
	opacity: 0.68;
}

@media (max-width: 767px) {
	.forum-thread-toolbar {
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 9px;
		padding: 11px;
	}

	.forum-thread-hero .button.button-black,
	.forum-compose-actions .button.button-black {
		width: 100%;
	}

	#forum .flex-board {
		grid-template-columns: 1fr;
	}

	#forum .board-sidebar {
		border-right: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	#forum .board-content {
		padding: 15px;
	}

	.forum-compose-actions {
		align-items: stretch;
		flex-direction: column;
	}
}

.progress-bar[data-socialed-progress="0"] { width: 0%; }
.progress-bar[data-socialed-progress="1"] { width: 1%; }
.progress-bar[data-socialed-progress="2"] { width: 2%; }
.progress-bar[data-socialed-progress="3"] { width: 3%; }
.progress-bar[data-socialed-progress="4"] { width: 4%; }
.progress-bar[data-socialed-progress="5"] { width: 5%; }
.progress-bar[data-socialed-progress="6"] { width: 6%; }
.progress-bar[data-socialed-progress="7"] { width: 7%; }
.progress-bar[data-socialed-progress="8"] { width: 8%; }
.progress-bar[data-socialed-progress="9"] { width: 9%; }
.progress-bar[data-socialed-progress="10"] { width: 10%; }
.progress-bar[data-socialed-progress="11"] { width: 11%; }
.progress-bar[data-socialed-progress="12"] { width: 12%; }
.progress-bar[data-socialed-progress="13"] { width: 13%; }
.progress-bar[data-socialed-progress="14"] { width: 14%; }
.progress-bar[data-socialed-progress="15"] { width: 15%; }
.progress-bar[data-socialed-progress="16"] { width: 16%; }
.progress-bar[data-socialed-progress="17"] { width: 17%; }
.progress-bar[data-socialed-progress="18"] { width: 18%; }
.progress-bar[data-socialed-progress="19"] { width: 19%; }
.progress-bar[data-socialed-progress="20"] { width: 20%; }
.progress-bar[data-socialed-progress="21"] { width: 21%; }
.progress-bar[data-socialed-progress="22"] { width: 22%; }
.progress-bar[data-socialed-progress="23"] { width: 23%; }
.progress-bar[data-socialed-progress="24"] { width: 24%; }
.progress-bar[data-socialed-progress="25"] { width: 25%; }
.progress-bar[data-socialed-progress="26"] { width: 26%; }
.progress-bar[data-socialed-progress="27"] { width: 27%; }
.progress-bar[data-socialed-progress="28"] { width: 28%; }
.progress-bar[data-socialed-progress="29"] { width: 29%; }
.progress-bar[data-socialed-progress="30"] { width: 30%; }
.progress-bar[data-socialed-progress="31"] { width: 31%; }
.progress-bar[data-socialed-progress="32"] { width: 32%; }
.progress-bar[data-socialed-progress="33"] { width: 33%; }
.progress-bar[data-socialed-progress="34"] { width: 34%; }
.progress-bar[data-socialed-progress="35"] { width: 35%; }
.progress-bar[data-socialed-progress="36"] { width: 36%; }
.progress-bar[data-socialed-progress="37"] { width: 37%; }
.progress-bar[data-socialed-progress="38"] { width: 38%; }
.progress-bar[data-socialed-progress="39"] { width: 39%; }
.progress-bar[data-socialed-progress="40"] { width: 40%; }
.progress-bar[data-socialed-progress="41"] { width: 41%; }
.progress-bar[data-socialed-progress="42"] { width: 42%; }
.progress-bar[data-socialed-progress="43"] { width: 43%; }
.progress-bar[data-socialed-progress="44"] { width: 44%; }
.progress-bar[data-socialed-progress="45"] { width: 45%; }
.progress-bar[data-socialed-progress="46"] { width: 46%; }
.progress-bar[data-socialed-progress="47"] { width: 47%; }
.progress-bar[data-socialed-progress="48"] { width: 48%; }
.progress-bar[data-socialed-progress="49"] { width: 49%; }
.progress-bar[data-socialed-progress="50"] { width: 50%; }
.progress-bar[data-socialed-progress="51"] { width: 51%; }
.progress-bar[data-socialed-progress="52"] { width: 52%; }
.progress-bar[data-socialed-progress="53"] { width: 53%; }
.progress-bar[data-socialed-progress="54"] { width: 54%; }
.progress-bar[data-socialed-progress="55"] { width: 55%; }
.progress-bar[data-socialed-progress="56"] { width: 56%; }
.progress-bar[data-socialed-progress="57"] { width: 57%; }
.progress-bar[data-socialed-progress="58"] { width: 58%; }
.progress-bar[data-socialed-progress="59"] { width: 59%; }
.progress-bar[data-socialed-progress="60"] { width: 60%; }
.progress-bar[data-socialed-progress="61"] { width: 61%; }
.progress-bar[data-socialed-progress="62"] { width: 62%; }
.progress-bar[data-socialed-progress="63"] { width: 63%; }
.progress-bar[data-socialed-progress="64"] { width: 64%; }
.progress-bar[data-socialed-progress="65"] { width: 65%; }
.progress-bar[data-socialed-progress="66"] { width: 66%; }
.progress-bar[data-socialed-progress="67"] { width: 67%; }
.progress-bar[data-socialed-progress="68"] { width: 68%; }
.progress-bar[data-socialed-progress="69"] { width: 69%; }
.progress-bar[data-socialed-progress="70"] { width: 70%; }
.progress-bar[data-socialed-progress="71"] { width: 71%; }
.progress-bar[data-socialed-progress="72"] { width: 72%; }
.progress-bar[data-socialed-progress="73"] { width: 73%; }
.progress-bar[data-socialed-progress="74"] { width: 74%; }
.progress-bar[data-socialed-progress="75"] { width: 75%; }
.progress-bar[data-socialed-progress="76"] { width: 76%; }
.progress-bar[data-socialed-progress="77"] { width: 77%; }
.progress-bar[data-socialed-progress="78"] { width: 78%; }
.progress-bar[data-socialed-progress="79"] { width: 79%; }
.progress-bar[data-socialed-progress="80"] { width: 80%; }
.progress-bar[data-socialed-progress="81"] { width: 81%; }
.progress-bar[data-socialed-progress="82"] { width: 82%; }
.progress-bar[data-socialed-progress="83"] { width: 83%; }
.progress-bar[data-socialed-progress="84"] { width: 84%; }
.progress-bar[data-socialed-progress="85"] { width: 85%; }
.progress-bar[data-socialed-progress="86"] { width: 86%; }
.progress-bar[data-socialed-progress="87"] { width: 87%; }
.progress-bar[data-socialed-progress="88"] { width: 88%; }
.progress-bar[data-socialed-progress="89"] { width: 89%; }
.progress-bar[data-socialed-progress="90"] { width: 90%; }
.progress-bar[data-socialed-progress="91"] { width: 91%; }
.progress-bar[data-socialed-progress="92"] { width: 92%; }
.progress-bar[data-socialed-progress="93"] { width: 93%; }
.progress-bar[data-socialed-progress="94"] { width: 94%; }
.progress-bar[data-socialed-progress="95"] { width: 95%; }
.progress-bar[data-socialed-progress="96"] { width: 96%; }
.progress-bar[data-socialed-progress="97"] { width: 97%; }
.progress-bar[data-socialed-progress="98"] { width: 98%; }
.progress-bar[data-socialed-progress="99"] { width: 99%; }
.progress-bar[data-socialed-progress="100"] { width: 100%; }
