﻿/* Consolidated account styles extracted from account pages. */

body.account-home {
	background: #fff;
	color: #2a2a2a;
}
.account-home-wrap {
	width: min(1360px, 94vw);
	margin: 118px auto 56px;
	display: grid;
	gap: 18px;
	padding: 40px 0 128px;
}
.account-home-hero {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
	background: #fff;
	border-radius: 64px;
	padding: 12px 24px 12px 20px;
	position: fixed;
	top: 24px;
	width: min(1360px, 94vw);
	z-index: 99999;
    box-shadow: 0 10px 24px rgba(10, 28, 44, 0.07);

}
.account-home-identity {
	display: flex;
	align-items: center;
	gap: 14px;
}
.account-home-identity img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px solid #fff;
	object-fit: cover;
	background: rgba(0, 191, 255, 0.12);
}
.account-home-avatar-trigger {
	position: relative;
	width: 72px;
	height: 72px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
    margin-right: 32px;
}
.account-home-avatar-trigger::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #fff;
	background: rgba(255,255,255,.85) url("/assets/icons/2a2a2a/edit.svg") no-repeat center center;
	background-size: 13px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	pointer-events: none;
}
.account-home-avatar-trigger:hover img,
.account-home-avatar-trigger:focus-visible img {
	border-color: #00e1ff;
	box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.22);
}
.account-home-avatar-message {
	margin: 6px 0 0;
	color: #fff;
	font-size: 12px;
	line-height: 1.35;
	min-height: 16px;
}
.account-avatar-crop-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	background: rgba(10, 21, 35, 0.76);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.account-avatar-crop-modal.is-open {
	display: flex;
}
.account-avatar-crop-content {
	width: min(540px, 100%);
	background: #fff;
	border-radius: 18px;
	border: 1px solid rgba(0, 191, 255, 0.18);
	box-shadow: 0 22px 44px rgba(9, 31, 51, 0.35);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	max-height: min(92vh, 760px);
}
.account-avatar-crop-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid #e4f1fb;
	background: rgba(0, 191, 255, 0.08);
}
.account-avatar-crop-header h3 {
	margin: 0;
	font-size: 1.06rem;
	color: #2a2a2a;
}
.account-avatar-crop-close {
	border: 1px solid #d7eafb;
	background: #fff;
	color: #5d7389;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.account-avatar-crop-close:hover {
	border-color: #00bfff;
	color: #00bfff;
}
.account-avatar-crop-info {
	margin: 0;
	padding: 10px 16px 0;
	color: #4f657b;
	font-size: 13px;
}
.account-avatar-crop-container {
	padding: 14px 16px 4px;
	min-height: 392px;
	max-height: 62vh;
	display: block;
	overflow: hidden;
	position: relative;
}
.account-avatar-crop-container .croppie-container {
	width: 100%;
	height: 100%;
}
.account-avatar-crop-container .croppie-container .cr-boundary {
	margin: 0 auto;
}
.account-avatar-crop-container .croppie-container .cr-slider-wrap {
	width: min(340px, 100%);
	margin: 14px auto 0;
}
.account-avatar-crop-controls {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
	padding: 10px 16px 16px;
	border-top: 1px solid #eaf4fc;
	background: #fff;
}
.account-avatar-crop-btn {
	min-height: 40px;
	min-width: 128px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid #00bfff;
	background: #00bfff;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
.account-avatar-crop-btn:hover {
	background: #01a9e2;
	border-color: #01a9e2;
}
.account-avatar-crop-btn-cancel {
	background: #fff;
	color: #516c83;
	border-color: #d6e9f8;
}
.account-avatar-crop-btn-cancel:hover {
	background: #f3f9fe;
	color: #2a2a2a;
	border-color: #b8d7ee;
}

@media (max-width: 640px) {
	.account-avatar-crop-modal {
		padding: 12px;
	}
	.account-avatar-crop-content {
		width: 100%;
		max-height: 94vh;
	}
	.account-avatar-crop-container {
		min-height: 300px;
		max-height: 56vh;
		padding: 10px 10px 2px;
	}
	.account-avatar-crop-controls {
		justify-content: stretch;
		padding: 10px;
	}
	.account-avatar-crop-btn {
		flex: 1 1 100%;
		width: 100%;
	}
}
.account-home-identity h1 {
	margin: 0;
	color: #2a2a2a;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	font-weight: 300;
	line-height: 1.2;
}
h2 {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
}
html body .account-hero-nav-menu a:hover {
  background: #00bfff;
  color: #fff!important;
}

html body .account-hero-nav-menu a:hover span {
  color: #fff!important;
}
.account-home-identity p {
  margin: 0;
  color: #00d200;
  font-size: 13px;
  position: absolute;
  bottom: 0;
}
.account-home-ticker {
	margin-top: 8px;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: #2a2a2a;
	line-height: 1.3;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.account-home-ticker__time {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 1rem;
	color: #00bfff;
}
.account-home-ticker__zone {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 1rem;
	color: #2a2a2a;
}
.account-home-ticker__refresh {
	width: 32px;
	height: 32px;
	border: 1px solid #00bfff;
	background: #fff url('/assets/icons/00bfff/bsl-refresh.svg') no-repeat center center;
	background-size: 15px;
	color: transparent;
	border-radius: 50%;
	padding: 0;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.account-home-ticker__refresh:hover {
	background: #fff url('/assets/icons/00bfff/bsl-refresh.svg') no-repeat center center;
	background-size: 15px;
	transform: rotate(180deg);
}
.account-home-balance {
  display: block;
  position: absolute;
  z-index: 9;
  color: #2a2a2a;
  margin-right: 0;
  background: #fff;
  padding: 0 134px 0 24px;
  height: 80px;
  right: 0;
  border-bottom-right-radius: 48px;
  border-top-right-radius: 28px;
}
.account-home-balance span {
	display: block;
	color: #2a2a2a;
	text-transform: uppercase;
}
.account-home-balance strong {
font-size: clamp(1.1rem, 2.6vw, 30px);
  color: #00bfff;
  font-weight: 400;
}
.account-home-balance-link {
	color: #00bfff;
	text-decoration: none;
}
.account-home-balance-link:hover {
	color: #00bfff;
}
.account-hero-actions {
	display: flex;
	align-items: flex-start;
	gap: 0;
}
.account-hero-nav {
	position: relative;
}
.account-hero-nav-toggle {
  margin: 0;
  border: 2px solid #00bfff;
  border-radius: 999px;
  background: #fff url("/assets/icons/mix/menu.svg") no-repeat center center;
  background-size: 24px;
  color: #00bfff;
  height: 64px;
  width: 64px;
  padding: 0;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  z-index: 999999;
}
.account-hero-nav-toggle-icon {
	display: none;
}
.account-hero-nav-menu {
  position: absolute;
  right: -24px;
  top: 0;
  min-width: 340px;
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  box-shadow: 0 36px 26px rgba(10, 28, 44, 0.07);
  padding: 82px 24px 24px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0s linear 0.26s;
  z-index: 1;
  border-radius: 0 0 42px 42px;
  
}
.account-hero-nav.open .account-hero-nav-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition: opacity 0.26s ease, transform 0.26s ease, visibility 0s linear 0s;
}
.account-hero-nav-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	color: #000;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	background-color: #f0f8ff;
    margin-bottom: 12px;
    border-radius: 32px;
	transition: all 0.3s ease;
}
.account-hero-nav-menu a:hover {
	color: #00bfff;
	text-decoration: none;
}

.account-hero-nav-menu a.is-active {
	background: #00bfff;
	color: #fff;
}

/* ── Nav group (collapsible) ───────────────────────────── */
.nav-group {
    margin-bottom: 12px;
}
.nav-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 32px;
  background-color: #f0f8ff;
  text-align: left;
  cursor: pointer;
  gap: 8px;
  min-height: 46px;
  padding-left: 48px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-group-toggle:hover {
    color: #00bfff;
}
.nav-group-label {
    flex: 1;
}
.nav-group-icon {
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #00bfff;
    width: 24px;
    text-align: center;
    display: inline-block;
		transition: all 0.3s ease;
}

.nav-group-icon.open {
  color: #2a2a2a;
}

#nav-group-messages-btn:hover .nav-group-icon,
#nav-group-depot-btn:hover .nav-group-icon,
#nav-group-tickets-btn:hover .nav-group-icon {
    color: #2a2a2a;
}

/* Nav count badges */
.nav-badge {
    display: none;
    flex-shrink: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(0, 191, 255, 0.15);
    color: #00bfff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    margin-left: 6px;
    letter-spacing: 0;
    vertical-align: middle;
}
.nav-badge--unread {
    background: rgba(255, 80, 80, 0.12);
    color: #e03030;
}
.nav-group-items {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding-top 0.22s ease;
}
.nav-group-items.open {
    max-height: 600px;
    opacity: 1;
    padding-top: 12px;
    transition: max-height 0.32s ease, opacity 0.26s ease, padding-top 0.22s ease;
}

#nav-group-tickets, #nav-group-depot, #nav-group-messages {
	position: relative;
}

body #nav-group-tickets:before, 
body #nav-group-depot:before, 
body #nav-group-messages:before, 
.bsl-menu-icon-account-my-products.nav-link-settings:before,
.bsl-menu-icon-account-my-products.nav-link-verification:before,
.bsl-menu-icon-account-my-products.nav-link-investments:before,
.bsl-menu-icon-account-my-products.nav-link-my-donations:before,
.bsl-menu-icon-account-my-products.nav-link-my-charity:before,
.bsl-menu-icon-account-my-products.nav-link-my-products:before,
.bsl-menu-icon-account-my-products.nav-link-freeticket:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 22px;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px;
    box-shadow: 0 2px 6px rgba(8, 31, 51, 0.12);
}

body #nav-group-tickets:before {
    background-image: url("/assets/icons/mix/backend-ticket2.svg");
}

body #nav-group-depot:before {
    background-image: url("/assets/icons/dark/backend-depot.svg");
}

body #nav-group-messages:before {
    background-image: url("/assets/icons/dark/backend-message.svg");
}

.bsl-menu-icon-account-my-products.nav-link-settings:before {
	background-image: url("/assets/icons/mix/backend-setup2.svg");
}

.bsl-menu-icon-account-my-products.nav-link-verification:before {
	background-image: url("/assets/icons/mix/account_verification.svg");
}

.bsl-menu-icon-account-my-products.nav-link-investment:before {
	background-image: url("/assets/icons/dark/backend-smallinvest.svg");
}

.bsl-menu-icon-account-my-products.nav-link-my-donations:before {
	background-image: url("/assets/icons/mix/donations.svg");
}

.bsl-menu-icon-account-my-products.nav-link-my-charity:before {
	background-image: url("/assets/icons/dark/backend-charity.svg");
}

.bsl-menu-icon-account-my-products.nav-link-my-products:before {
	background-image: url("/assets/icons/mix/backend-offer2.svg");
}


.bsl-menu-icon-account-my-products.nav-link-my-tickets:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00d200;
  position: absolute;
  left: 17px;
  top: 17px;
}

.bsl-menu-icon-account-my-products.nav-link-my-soldout:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8a2be2;
  position: absolute;
  left: 17px;
  top: 17px;
}

.bsl-menu-icon-account-my-products.nav-link-my-finished:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00bfff;
  position: absolute;
  left: 17px;
  top: 17px;
}

.bsl-menu-icon-account-my-products.nav-link-my-canceled:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff0000;
  position: absolute;
  left: 17px;
  top: 17px;
}

.bsl-menu-icon-account-my-products.nav-link-my-canceled-refunded:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: deeppink;
  position: absolute;
  left: 17px;
  top: 17px;
}

.bsl-menu-icon-account-my-products.nav-link-my-firstfast:after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('/assets/icons/mix2/backend-freeticket.svg');
  background-size: 24px;
  position: absolute;
  left: 8px;
  top: 8px;
  background-repeat: no-repeat;
  background-position: center center;
}

.bsl-menu-icon-account-my-products.nav-link-my-firstfast.is-active:after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('/assets/icons/mix2/backend-freeticket-active.svg');
  background-size: 24px;
  position: absolute;
  left: 8px;
  top: 8px;
  background-repeat: no-repeat;
  background-position: center center;
}

.bsl-menu-icon-account-my-products.nav-link-my-freetickets:after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('/assets/icons/mix/backend-freeticket.svg');
  background-size: 24px;
  position: absolute;
  left: 8px;
  top: 8px;
  background-repeat: no-repeat;
  background-position: center center;
}

.bsl-menu-icon-account-my-products.nav-link-freeticket:after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('/assets/icons/mix/backend-freeticket.svg');
  background-size: 24px;
  position: absolute;
  left: 8px;
  top: 8px;
  background-repeat: no-repeat;
  background-position: center center;
}

.bsl-menu-icon-account-my-products.nav-link-my-freetickets.is-active:after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('/assets/icons/mix/backend-freeticket-active.svg');
  background-size: 24px;
  position: absolute;
  left: 8px;
  top: 8px;
  background-repeat: no-repeat;
  background-position: center center;
}



.nav-group-items a {
    margin-bottom: 8px;
    font-size: 14px;
}
.account-home-actions {
	display: block;
	padding: 0 36px;
}
.account-inline-breadcrumb {
	margin: 0 36px 8px;
	width: fit-content;
	color: #2a2a2a;
	text-transform: uppercase;
}
.account-inline-breadcrumb a {
	color: #00bfff;
	text-decoration: none;
	font-weight: 500;
}
.account-inline-breadcrumb a:hover {
	color: #00aaff;
}
.account-inline-breadcrumb .sep {
	color: #9bb4c9;
	margin: 0 6px;
}
.account-breadcrumb-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 36px;
	margin: 0 0 8px;
}
.account-breadcrumb-row .account-inline-breadcrumb {
	margin: 0;
}
.account-breadcrumb-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.account-breadcrumb-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.bsl777-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-height: 24px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
}
.bsl777-status-badge::before {
	content: "";
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: currentColor;
}
.bsl777-status-live {
	color: #2a2a2a;
}
.bsl777-status-live::before {
	animation: pulse2 1.5s infinite;
}
.bsl777-status-drawing {
	color: #8a2be2;
}
.bsl777-status-finished {
	color: #00bfff;
}
.bsl777-status-canceled {
	color: #ff0000;
}
.bsl777-status-refunded {
	color: deeppink;
}
.bsl777-status-draft {
	color: #919eab;
}
@keyframes pulse2 {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 210, 0, 0.8);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(0, 210, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0, 210, 0, 0);
	}
}
.account-verification-warning {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,.5);
  padding: 8px;
  z-index: 99;
}

.account-hero-nav-menu .is-active span {
  color: #fff;
}


.check-info-cards-grid.full-width-grid {
	display: grid;
	grid-template-columns: 4fr 4fr 5fr;
	gap: 32px;
	margin: 0 0 1rem 0;
}
a.check-info-tour {
	max-height: 420px;
	overflow: hidden;
	background-image: url('/assets/icons/tour/tour-cta.svg');
}

html body a.check-info-tour > div {
	display: none;
}

a.check-info-topup {
	padding-top: 152px;
	max-height: 420px;
	overflow: hidden;
	background-image: url('/assets/icons/mix/depot-payin-info.svg');
}
.check-info-card h4 {
	margin: 0 0 1rem;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	font-weight: 300;
	line-height: 1.2;
	color: #2a2a2a;
}
.check-info-card p {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1rem);
	color: #2a2a2a;
	line-height: 1.45;
    
  height: 96px;
}
.check-info.investment {
	max-height: 420px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
	background: #fff url('/assets/icons/mix/smallinveststartseite.svg') no-repeat center top 34px;
	background-size: 96px;
	padding-top: 152px;
}
.check-info.investment > a:not(.basic-submit) {
	color: #2a2a2a;
	font-weight: 700;
	text-decoration: none;
	margin-top: 1rem;
}
.check-info.investment h3 {
	color: #2a2a2a;
	font-size: 12px;
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02rem;
}
.current_investment {
	margin: 0;
	color: #00d200;
	font-weight: 400;
	font-size: 32px;
	line-height: 1.2;
	text-transform: uppercase;
}
.current_investment.green {
	color: #00d200;
}
.check-info-investment-inside {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	background: #f4f9fc;
	border: 1px solid rgba(0, 191, 255, 0.18);
	border-radius: 18px;
	padding: 14px;
	margin: 1rem 0 1.5rem;
}
.investment-status-note {
	color: #00d200;
	font-size: 13px;
	margin-top: 0.5rem;
}
.account-home-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	padding: 0 32px;
}
.account-panel {
	background: #fff;
	border: 1px solid rgba(0, 191, 255, 0.18);
	border-radius: 32px;
	overflow: hidden;
}
.account-panel-head {
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.account-panel-head h3 {
  height: 54px;
  margin: 0;
  color: #00bfff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f8ff;
  border-radius: 32px;
  padding: 0 26px 0 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.account-panel-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 50%;
  box-sizing: content-box;
  margin: 6px;
  box-shadow: 0 2px 6px rgba(8, 31, 51, 0.12);
}
.account-panel-icon--tickets {
	background-image: url('/assets/icons/mix/backend-ticket.svg');
}
.account-panel-icon--freetickets {
	background-image: url('/assets/icons/mix/backend-freeticket.svg');
}
.account-panel-icon--offers {
	background-image: url('/assets/icons/mix/backend-offer.svg');
}
.account-panel-icon--charity {
	background-image: url('/assets/icons/mix/backend-charity.svg');
}
.account-panel-icon--depot {
	background-image: url('/assets/icons/mix/backend-depot.svg');
}
.account-panel-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
    height: 40px;
    line-height: 40px;
    padding: 0 24px;
	border-radius: 999px;
	border: 1px solid #00bfff;
	background: #00bfff;
	color: #fff;
	text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02rem;
	white-space: nowrap;
    animation: buyButton 1.5s infinite;
}
.account-panel-cta:hover {
	color: #fff;
	background: #00bfff;
	box-shadow: 0 6px 14px rgba(0, 166, 230, 0.2);
}
.account-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 1fr;
}
.account-list li {
	padding: 12px 16px;
	border-top: 1px solid #eef5fb;
	display: grid;
	gap: 5px;
}
.account-list li:first-child {
	border-top: 0;
}
.account-list-title {
	font-weight: 700;
	font-size: 0.9rem;
	color: #2a2a2a;
	margin: 0;
	word-break: break-word;
}
.account-list-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
	border-radius: 6px;
}
.account-list-link:hover {
	border-color: #b2d7f5;
}
.account-list-link:hover .account-list-title {
	color: #00bfff;
}
.account-list-banner {
	width: 100%;
	aspect-ratio: 21 / 9;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e1edf7;
}
.account-list-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.account-list-meta {
	font-size: 0.8rem;
	color: #6f8399;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.account-empty {
	padding: 16px;
	margin: 0;
	color: #6e8398;
	font-size: 0.88rem;
}

/* Depot placeholder pages */
body.page-depot-placeholder {
	background: rgba(0, 191, 255, 0.08);
}
body.page-depot-placeholder .depot-page {
	width: min(860px, 94vw);
	margin: 110px auto 40px;
	background: #fff;
	border: 1px solid rgba(0, 191, 255, 0.18);
	border-radius: 16px;
	padding: 22px;
}
body.page-depot-placeholder .depot-page a {
	color: #00bfff;
	font-weight: 700;
	text-decoration: none;
}
body.page-depot-placeholder .depot-page a:hover {
	text-decoration: underline;
}

/* Depot topup-specific */
body.page-depot-topup .depot-topup-card {
	background: #fff;
	display: grid;
	gap: 16px;
}
body.page-depot-topup .depot-topup-card h2 {
	margin: 0;
	font-size: clamp(1.2rem, 2.5vw, 1.9rem);
	color: #2a2a2a;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
body.page-depot-topup .depot-topup-balance {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 191, 255, 0.08);
	border: 1px solid rgba(0, 191, 255, 0.18);
	border-radius: 999px;
	padding: 8px 14px;
	font-weight: 700;
	width: fit-content;
}
body.page-depot-topup .depot-topup-form {
	display: grid;
	gap: 12px;
}
body.page-depot-topup .depot-topup-form label {
	font-weight: 700;
	color: #2a2a2a;
}
body.page-depot-topup .depot-topup-form input[type="number"] {
	width: 100%;
	border: 1px solid rgba(0, 191, 255, 0.22);
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 1rem;
	color: #2a2a2a;
	background: #fff;
}
body.page-depot-topup .depot-topup-form button {
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #00bfff;
    border: solid 1px #00bfff;
	min-height: 42px;
	padding: 8px 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.page-depot-topup .depot-topup-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 2px 0 4px;
}
body.page-depot-topup .depot-topup-suggestion {
	border: 1px solid rgba(0, 191, 255, 0.22);
	background: rgba(0, 191, 255, 0.06);
	color: #2a2a2a;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
body.page-depot-topup .depot-topup-suggestion.is-active {
	border-color: #00bfff;
	background: #00bfff;
	color: #fff;
}
body.page-depot-topup .depot-topup-alert {
	margin: 0;
	border-radius: 12px;
	padding: 10px 12px;
	font-size: 0.92rem;
}
body.page-depot-topup .depot-topup-alert--ok {
	color: #00d200;
	background: #ecfdf3;
	border: 1px solid #bceccf;
}
body.page-depot-topup .depot-topup-alert--err {
	color: #ff0000;
	background: #fff1f1;
	border: 1px solid #f2c2c2;
}
body.page-depot-topup .depot-topup-back {
	text-decoration: none;
	width: fit-content;
}

body.page-depot-transfer .depot-layout-grid,
body.page-depot-payout .depot-layout-grid,
body.page-freeticket-redeem .depot-layout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
	gap: 22px;
}

body.page-depot-transfer .depot-panel,
body.page-depot-payout .depot-panel,
body.page-depot-transactions .depot-panel,
body.page-freeticket-redeem .depot-panel {
	background: #fff;
	display: grid;
	gap: 18px;
}

body.page-depot-transactions .depot-panel--wide {
	gap: 22px;
}

.depot-panel-head {
	display: grid;
	gap: 8px;
}

.depot-panel-head h2,
.depot-panel-head h3,
.depot-side-note h4 {
	margin: 0;
	color: #2a2a2a;
}

.depot-panel-head p,
.depot-side-note p {
	margin: 0;
	color: #5d7389;
	line-height: 1.55;
}

.depot-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.depot-form-field {
	display: grid;
	gap: 8px;
	color: #2a2a2a;
	font-weight: 700;
}

.depot-form-field small {
	font-weight: 400;
	color: #70869b;
}

.depot-form-field input,
.depot-form-field textarea {
	width: 100%;
	border: 1px solid rgba(0, 191, 255, 0.22);
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 1rem;
	color: #2a2a2a;
	background: #fff;
	font-family: inherit;
}

.depot-form-field textarea {
	resize: vertical;
	min-height: 108px;
}

.depot-form-field--wide,
.depot-form-actions,
.depot-method-grid {
	grid-column: 1 / -1;
}

.depot-form-actions {
	display: flex;
	justify-content: flex-start;
}

.depot-receiver-preview {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 14px;
	align-items: center;
	padding: 16px;
	border: 1px dashed rgba(0, 191, 255, 0.24);
	border-radius: 16px;
	background: rgba(0, 191, 255, 0.08);
}

.depot-receiver-preview img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 50%;
	background: rgba(0, 191, 255, 0.12);
}

.depot-receiver-preview strong,
.depot-receiver-preview span,
.depot-receiver-preview p {
	margin: 0;
	display: block;
}

.depot-receiver-preview span {
	color: #00bfff;
	font-weight: 700;
	margin-top: 4px;
}

.depot-receiver-preview p {
	margin-top: 6px;
	color: #70869b;
	font-size: 0.92rem;
}

.depot-receiver-preview.is-ready {
	border-style: solid;
	background: rgba(0, 191, 255, 0.10);
}

.depot-side-note {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: 16px;
	background: rgba(0, 191, 255, 0.08);
	border: 1px solid rgba(0, 191, 255, 0.16);
}

.depot-method-grid {
	margin: 0;
	padding: 0;
	border: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.depot-method-grid legend {
	padding: 0;
	margin-bottom: 6px;
	font-weight: 700;
	color: #2a2a2a;
}

.depot-method-card {
	display: grid;
	gap: 6px;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(0, 191, 255, 0.22);
	background: rgba(0, 191, 255, 0.08);
	cursor: pointer;
}

.depot-method-card input {
	margin: 0;
	accent-color: #00bfff;
}

.depot-method-card strong {
	color: #2a2a2a;
}

.depot-method-card span {
	color: #70869b;
	word-break: break-word;
}

.depot-method-card.is-selected {
	border-color: #00bfff;
	background: rgba(0, 191, 255, 0.10);
	box-shadow: inset 0 0 0 1px rgba(0, 191, 255, 0.18);
}

.depot-method-card.is-disabled {
	opacity: 0.62;
	cursor: not-allowed;
}

body.page-depot-transactions .depot-transactions-wrap {
	display: block;
}

.depot-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.depot-summary-card {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: 16px;
	background: rgba(0, 191, 255, 0.08);
	border: 1px solid rgba(0, 191, 255, 0.16);
}

.depot-summary-card span {
	color: #70869b;
	text-transform: uppercase;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
}

.depot-summary-card strong {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2a2a2a;
}

.depot-summary-card.is-positive strong {
	color: #00d200;
}

.depot-summary-card.is-negative strong {
	color: #ff0000;
}

.depot-transactions-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.depot-filter-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(0, 191, 255, 0.22);
	background: rgba(0, 191, 255, 0.08);
	color: #2a2a2a;
	text-decoration: none;
	font-weight: 700;
}

.depot-filter-tab.is-active {
	background: #00bfff;
	border-color: #00bfff;
	color: #fff;
}

.depot-transactions-list {
	display: grid;
	gap: 14px;
}

.depot-transaction-item {
	border: 1px solid rgba(0, 191, 255, 0.18);
	border-radius: 18px;
	padding: 18px;
	background: #fff;
	display: grid;
	gap: 14px;
}

.depot-transaction-head {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: flex-start;
}

.depot-transaction-head h3,
.depot-transaction-id,
.depot-transaction-note {
	margin: 0;
}

.depot-transaction-id {
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #7d93a8;
	margin-bottom: 4px;
}

.depot-status-pill {
	white-space: nowrap;
}

.depot-transaction-meta-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.depot-transactions-overview {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	padding: 0 24px 24px;
}

.depot-transactions-overview-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding: 8px 24px;
  text-transform: uppercase;
}

.depot-transactions-overview div {
  padding: 8px 0;
  border-top: solid 1px #ccc;
}

.depot-transaction-meta-grid strong {
	color: #2a2a2a;
	word-break: break-word;
}

.depot-amount.is-positive {
	color: #00d200;
}

.depot-amount.is-negative {
	color: #ff0000;
}

.depot-transaction-note {
	color: #2a2a2a;
	line-height: 1.5;
}

.depot-transaction-note span {
	font-weight: 700;
	color: #2a2a2a;
}

.depot-empty-state {
	padding: 24px;
	border-radius: 18px;
	background: rgba(0, 191, 255, 0.08);
	border: 1px dashed rgba(0, 191, 255, 0.22);
}

.depot-empty-state h3,
.depot-empty-state p {
	margin: 0;
}

.depot-empty-state p {
	margin-top: 8px;
	color: #70869b;
}

.depot-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 4px;
}

.depot-pagination a,
.depot-pagination span {
	color: #2a2a2a;
	font-weight: 700;
	text-decoration: none;
}

.depot-pagination a {
	color: #00bfff;
}

@media (max-width: 1120px) {
	body.page-depot-transfer .depot-layout-grid,
	body.page-depot-payout .depot-layout-grid,
	body.page-freeticket-redeem .depot-layout-grid {
		grid-template-columns: 1fr;
	}

	.depot-summary-grid,
	.depot-transaction-meta-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.depot-form-grid,
	.depot-method-grid,
	.depot-summary-grid,
	.depot-transaction-meta-grid {
		grid-template-columns: 1fr;
	}

	.depot-transaction-head,
	.depot-pagination {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Product mask-specific */
body.page-product-mask {
	margin: 0;
}
body.page-product-mask .mask-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	text-decoration: none;
	color: #00bfff;
	border: 1px solid rgba(0, 191, 255, 0.18);
	background: #fff;
	font-weight: 700;
}
body.page-product-mask .mask-back:hover {
	color: #fff;
	background: #00bfff;
	border-color: #00bfff;
}
body.page-product-mask .mask-grid {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 2rem;
}
body.page-product-mask .mask-card {
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(168, 186, 201, 0.5);
	border-radius: 24px;
	box-shadow: 0 22px 45px rgba(21, 45, 68, 0.08);
	padding: 2rem;
}
body.page-product-mask .mask-card h2 {
	margin: 0 0 2rem;
	font-size: 1.5rem;
}
body.page-product-mask .mask-card p {
	margin: 0 0 18px;
	color: #61768a;
	font-size: 0.95rem;
}
body.page-product-mask .mask-form {
	display: grid;
	gap: 18px;
}
body.page-product-mask .mask-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 4px;
	align-items: center;
}
body.page-product-mask .mask-tab-btn {
font-size: 14px;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  --ticket-tab-accent: #919eab;
  min-height: 52px;
  border-radius: 32px;
  border: 1px solid rgba(18, 32, 51, 0.08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 16px;
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  white-space: nowrap;
  text-transform: uppercase;
}
body.page-product-mask .mask-tab-btn:hover {
  border-color: #00bfff;
}
body.page-product-mask .mask-tab-btn.active {
    border-color: #00bfff;
	background: #00bfff;
	color: #fff;
}
body.page-product-mask .mask-step {
	display: none;
	border: 1px solid #d5e3ec;
	border-radius: 16px;
	padding: 2rem;
	background: #fbfdff;
}
body.page-product-mask .mask-step.active {
	display: grid;
	gap: 2rem;
}
body.page-product-mask .mask-two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}
body.page-product-mask .mask-one {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
body.page-product-mask .mask-three {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}
body.page-product-mask .mask-field {
	display: grid;
	gap: .5rem 2rem;
}
body.page-product-mask .mask-category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 2rem;
}
body.page-product-mask .mask-category-grid input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
body.page-product-mask .mask-category-option {
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 7px;
	min-height: 96px;
	border: 1px solid #c6d4dd;
	border-radius: 12px;
	background: #fff;
	color: #244053;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	padding: 8px 6px;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
body.page-product-mask .mask-category-option:hover {
	background: #f0f8ff;
}
body.page-product-mask .mask-category-option img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}
body.page-product-mask .mask-category-grid input[type="radio"]:checked + .mask-category-option {
	border-color: #00bfff;
	color: #2a2a2a;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.16);
}
body.page-product-mask .mask-field input,
body.page-product-mask .mask-field select,
body.page-product-mask .mask-field textarea {
	width: 100%;
	border: 1px solid #c8d5e0;
	border-radius: 14px;
	padding: 12px 14px;
	font: inherit;
	color: #2a2a2a;
	background: #fff;
	box-sizing: border-box;
}
body.page-product-mask .mask-field textarea {
	min-height: 120px;
	resize: vertical;
}
body.page-product-mask .mask-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 6px;
}
body.page-product-mask .mask-btn {
	appearance: none;
	border: 0;
	border-radius: 999px;
	min-height: 48px;
	padding: 0 20px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.18s ease, box-shadow 0.18s ease, translate 0.18s ease;
}
body.page-product-mask .mask-btn-primary {
	background: #00bfff;
	border: 1px solid #00bfff;
	color: #fff;
}
body.page-product-mask .mask-btn-secondary {
	background: #fff;
	border: 1px solid #2a2a2a;
	color: #2a2a2a;
}
body.page-product-mask .mask-status,
body.page-product-mask .mask-note {
	border-radius: 16px;
	padding: 1rem;
	background: #f0f8ff;
}
body.page-product-mask .mask-status.error {
	background: #fff;
	color: #ff0000;
}
body.page-product-mask .mask-meta {
	display: grid;
	gap: 1rem;
}
body.page-product-mask .mask-meta strong {
	display: block;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.account-panel--full {
	grid-column: 1 / -1;
}
.account-avatar-form-hidden {
	display: none;
}
.math-feedback-success {
	color: #00d200;
}

@media (max-width: 980px) {
	.check-info-cards-grid.full-width-grid,
	.account-home-grid {
		grid-template-columns: 1fr;
	}
	.account-home-hero {
		grid-template-columns: 1fr;
		justify-items: start;
	}
	.account-home-balance {
		justify-items: start;
	}
	.account-home-avatar-message {
		max-width: 100%;
	}
	.account-hero-actions {
		width: 100%;
		justify-content: space-between;
		align-items: flex-start;
	}
	.check-info-investment-inside {
		grid-template-columns: 1fr;
	}
	.account-inline-breadcrumb {
		margin: 0 0 8px;
		max-width: 100%;
	}
	.account-breadcrumb-row {
		padding: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
	.account-breadcrumb-actions {
		justify-content: stretch;
	}
	.account-breadcrumb-cta {
		width: 100%;
	}
	.account-verification-warning {
		margin: 0 0 8px;
	}
	body.page-depot-topup .account-home-wrap {
		margin-top: 84px;
		padding-top: 24px;
	}
	body.page-depot-topup .account-home-actions {
		padding: 0;
	}
	body.page-product-mask .mask-grid,
	body.page-product-mask .mask-two,
	body.page-product-mask .mask-three {
		grid-template-columns: 1fr;
	}
	body.page-product-mask .mask-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	body.page-product-mask .mask-wrap.account-home-wrap {
		margin-top: 84px;
		padding-top: 24px;
	}
	body.page-product-mask .account-home-actions {
		padding: 0;
	}
}

@media (max-width: 640px) {
	body.page-product-mask .mask-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Charity form — mirrors product mask layout */
body.page-charity-form {
	margin: 0;
	color: #183247;
}
body.page-charity-form .mask-wrap.account-home-wrap {
	margin: 110px auto 56px;
	padding: 64px 0 128px;
}
body.page-charity-form .mask-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 22px;
}
body.page-charity-form .mask-card {
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(168, 186, 201, 0.5);
	border-radius: 24px;
	box-shadow: 0 22px 45px rgba(21, 45, 68, 0.08);
	padding: 24px;
}
body.page-charity-form .mask-card h2 {
	margin: 0 0 6px;
	font-size: 1.15rem;
}
body.page-charity-form .mask-card p {
	margin: 0 0 18px;
	color: #61768a;
	font-size: 0.95rem;
}
body.page-charity-form .mask-form {
	display: grid;
	gap: 18px;
}
body.page-charity-form .mask-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 4px;
	align-items: center;
}
body.page-charity-form .mask-tab-btn {
	border: 1px solid #b9c9d3;
	background: #fff;
	color: #204155;
	border-radius: 999px;
	min-height: 40px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
body.page-charity-form .mask-tab-btn:hover {
	background: #eef7fc;
	border-color: #95b8cb;
	box-shadow: 0 4px 12px rgba(19, 49, 67, 0.12);
}
body.page-charity-form .mask-tab-btn.active {
	border-color: #00bfff;
	box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.16);
}
body.page-charity-form .mask-step {
	display: none;
	border: 1px solid #d5e3ec;
	border-radius: 16px;
	padding: 16px;
	background: #fbfdff;
}
body.page-charity-form .mask-step.active {
	display: grid;
	gap: 16px;
}
body.page-charity-form .mask-two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
body.page-charity-form .mask-three {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
body.page-charity-form .mask-field {
	display: grid;
	gap: 8px;
}
body.page-charity-form .mask-field label {
	font-size: 0.9rem;
	font-weight: 700;
}
body.page-charity-form .mask-field input,
body.page-charity-form .mask-field select,
body.page-charity-form .mask-field textarea {
	width: 100%;
	border: 1px solid #c8d5e0;
	border-radius: 14px;
	padding: 12px 14px;
	font: inherit;
	color: #183247;
	background: #fff;
	box-sizing: border-box;
}
body.page-charity-form .mask-field textarea {
	min-height: 120px;
	resize: vertical;
}
body.page-charity-form .mask-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 6px;
}
body.page-charity-form .mask-btn {
	appearance: none;
	border: 0;
	border-radius: 999px;
	min-height: 48px;
	padding: 0 20px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.18s ease, box-shadow 0.18s ease, translate 0.18s ease;
}
body.page-charity-form .mask-btn:hover {
	translate: 0 -1px;
	box-shadow: 0 14px 24px rgba(14, 39, 66, 0.12);
}
body.page-charity-form .mask-btn-primary {
	background: #00bfff;
	border: 1px solid #00bfff;
	color: #fff;
}
body.page-charity-form .mask-btn-secondary {
	background: #fff;
	border: 1px solid #2a2a2a;
	color: #183247;
}
body.page-charity-form .mask-status,
body.page-charity-form .mask-note {
	border-radius: 16px;
	padding: 16px 18px;
	background: #f4f8fb;
	color: #567086;
}
body.page-charity-form .mask-status.error {
	background: #fff1f1;
	color: #8f2f39;
}
body.page-charity-form .mask-meta {
	display: grid;
	gap: 14px;
}
body.page-charity-form .mask-meta strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #42627d;
}
body.page-charity-form .charity-form-preview {
	margin-top: 12px;
	border-radius: 18px;
	overflow: hidden;
	background: #eef8ff;
	aspect-ratio: 21 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.page-charity-form .charity-form-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.page-charity-form .charity-form-preview span {
	color: #607385;
	padding: 0 16px;
	text-align: center;
}

@media (max-width: 980px) {
	body.page-charity-form .mask-grid,
	body.page-charity-form .mask-two,
	body.page-charity-form .mask-three {
		grid-template-columns: 1fr;
	}
	body.page-charity-form .mask-wrap.account-home-wrap {
		margin-top: 84px;
		padding-top: 24px;
	}
	body.page-charity-form .account-home-actions {
		padding: 0;
	}
}

.investment-card.soFunktionierts span {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
  color: #2a2a2a;
}