* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #e91e8c;
	--primary-dark: #c01770;
	--secondary: #6c2bd9;
	--background: #0a0a14;
	--surface: #1a1a2e;
	--surface-light: #252538;
	--text: #ffffff;
	--text-secondary: #a0a0b8;
	--border: #2a2a3e;
	--success: #10b981;
	--warning: #f59e0b;
	--purple-gradient: linear-gradient(135deg, #6c2bd9 0%, #9d4edd 100%);
	--orange-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
	--green-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: var(--background);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 240px;
	height: 100vh;
	background: var(--surface);
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar-header {
	padding: 24px 20px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-text {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
}

.logo-auf {
	color: var(--primary);
}

.sidebar-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.sidebar-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	margin: 4px 0;
	transition: 0.3s;
}

.sidebar-nav {
	flex: 1;
	padding: 20px 0;
	overflow-y: auto;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.2s;
	font-size: 15px;
	position: relative;
	overflow: hidden;
}

.nav-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50" preserveAspectRatio="none"><defs><radialGradient id="menuGradient" cx="0%" cy="50%" r="100%" fx="0%" fy="50%"><stop offset="0%" style="stop-color:rgb(233,30,140);stop-opacity:0.5" /><stop offset="30%" style="stop-color:rgb(157,78,221);stop-opacity:0.3" /><stop offset="60%" style="stop-color:rgb(108,43,217);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(108,43,217);stop-opacity:0" /></radialGradient></defs><rect width="200" height="50" fill="url(%23menuGradient)" /></svg>');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.nav-item:hover::before {
	opacity: 1;
}

.nav-item:hover {
	color: var(--text);
}

.nav-item.active::before {
	opacity: 1;
}

.nav-item.active {
	color: var(--primary);
	border-left: 3px solid var(--primary);
}

.nav-item svg {
	flex-shrink: 0;
}

.sidebar-promo {
	margin: 20px;
	padding: 20px;
	background: linear-gradient(
		135deg,
		rgba(233, 30, 140, 0.1) 0%,
		rgba(108, 43, 217, 0.1) 100%
	);
	border: 1px solid rgba(233, 30, 140, 0.3);
	border-radius: 12px;
}

.promo-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--primary);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
}

.promo-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.promo-button {
	display: block;
	width: 100%;
	padding: 10px;
	background: linear-gradient(135deg, #e91e8c 0%, #c01770 50%, #9d4edd 100%);
	color: var(--text);
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
	position: relative;
	overflow: hidden;
}

.promo-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50" preserveAspectRatio="none"><defs><radialGradient id="btnGradient" cx="50%" cy="50%" r="70%"><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0.3" /><stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:0" /></radialGradient></defs><rect width="200" height="50" fill="url(%23btnGradient)" /></svg>');
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.promo-button:hover::before {
	opacity: 1;
}

.promo-button:hover {
	background: linear-gradient(135deg, #ff2d9a 0%, #d01f7e 50%, #b05ef5 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 30, 140, 0.5);
}

.main-content {
	margin-left: 240px;
	min-height: 100vh;
}

.top-bar {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 999;
}

.mobile-menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: 0.3s;
}

.logo-mobile {
	flex: 1;
	text-align: center;
}

.auth-buttons {
	display: flex;
	gap: 8px;
}
@media (max-width: 440px) {
	.auth-buttons {
		display: none;
	}
	.logo-mobile {
		flex: unset;
		margin-right: auto;
	}
	.top-bar {
		flex-direction: row-reverse;
	}
}

.btn-login {
	padding: 8px 16px;
	color: var(--text);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.2s;
	font-size: 14px;
}

.btn-login:hover {
	background: linear-gradient(
		135deg,
		rgba(233, 30, 140, 0.1) 0%,
		rgba(108, 43, 217, 0.1) 100%
	);
}

.btn-register {
	padding: 8px 16px;
	background: linear-gradient(135deg, #e91e8c 0%, #c01770 50%, #9d4edd 100%);
	color: var(--text);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(233, 30, 140, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-register::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50" preserveAspectRatio="none"><defs><radialGradient id="btnGradient2" cx="50%" cy="50%" r="70%"><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0.3" /><stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:0" /></radialGradient></defs><rect width="200" height="50" fill="url(%23btnGradient2)" /></svg>');
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-register:hover::before {
	opacity: 1;
}

.btn-register:hover {
	background: linear-gradient(135deg, #ff2d9a 0%, #d01f7e 50%, #b05ef5 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(233, 30, 140, 0.5);
}

.hero-carousel {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1a0b2e 0%, #16213e 100%);
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 500px;
}

.carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease;
}

.carousel-slide {
	min-width: 100%;
	height: 100%;
	display: none;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.8s ease-in-out;
	opacity: 0;
}

.carousel-slide.active {
	display: block;
	opacity: 1;
}

.carousel-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(26, 11, 46, 0.55) 0%,
		rgba(22, 33, 62, 0.45) 100%
	);
	z-index: 1;
}

.slide-content {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 40px;
	height: 100%;
	position: relative;
	z-index: 2;
}

.slide-text {
	flex: 1;
}

.slide-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #e91e8c 0%, #9d4edd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.slide-subtitle {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}

.highlight {
	color: var(--primary);
}

.slide-info {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.payment-methods {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.payment-methods img {
	height: 24px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.payment-methods img:hover {
	opacity: 1;
}

.btn-primary {
	display: inline-block;
	padding: 16px 48px;
	background: linear-gradient(135deg, #e91e8c 0%, #c01770 50%, #9d4edd 100%);
	color: var(--text);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 18px;
	transition: all 0.3s;
	box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50" preserveAspectRatio="none"><defs><radialGradient id="btnGradient3" cx="50%" cy="50%" r="70%"><stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0.3" /><stop offset="100%" style="stop-color:rgb(255,255,255);stop-opacity:0" /></radialGradient></defs><rect width="200" height="50" fill="url(%23btnGradient3)" /></svg>');
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
	opacity: 1;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #ff2d9a 0%, #d01f7e 50%, #b05ef5 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(233, 30, 140, 0.6);
}

.slide-image {
	display: none;
}

.carousel-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
}

.dot {
	width: 40px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.3s;
}

.dot.active {
	background: var(--primary);
}

.promo-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	padding: 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.promo-card {
	position: relative;
	border-radius: 16px;
	padding: 32px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 200px;
	transition: transform 0.2s;
}

.promo-card:hover {
	transform: translateY(-4px);
}

.promo-card.purple {
	background: var(--purple-gradient);
}

.promo-card.orange {
	background: var(--orange-gradient);
}

.promo-card.green {
	background: var(--green-gradient);
}

.promo-card-content {
	flex: 1;
	z-index: 2;
}

.promo-card-label {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	opacity: 0.9;
}

.promo-card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.3;
}

.promo-card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: var(--text);
	text-decoration: none;
	transition: background 0.2s;
}

.promo-card-link:hover {
	background: rgba(255, 255, 255, 0.3);
}

.promo-card-image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.3;
}

.promo-card-image img {
	max-width: 100%;
	height: auto;
}

.games-section {
	padding: 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
}

.show-all {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s;
}

.show-all:hover {
	opacity: 0.8;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.game-card {
	position: relative;
	background: var(--surface);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s;
}

.game-card:hover {
	transform: translateY(-4px);
}

.game-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.game-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 12px;
	background: var(--primary);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: lowercase;
}

.game-info {
	padding: 16px;
}

.game-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.game-provider {
	font-size: 14px;
	color: var(--text-secondary);
}

.providers-section {
	padding: 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(130px, 100%), 1fr));
	gap: 20px;
}

.provider-card {
	background: var(--surface);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s;
	border: 1px solid var(--border);
}

.provider-card:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
}

.provider-card img {
	max-width: 100%;
	height: auto;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.provider-card:hover img {
	opacity: 1;
}

.footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 60px 40px 20px;
	margin-top: 60px;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
	font-size: 15px;
}

.footer-link:hover {
	color: var(--primary);
}

.footer-disclaimer {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 0;
	border-top: 1px solid var(--border);
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 20px;
	text-align: center;
	color: var(--text-secondary);
	font-size: 14px;
}

@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.sidebar-toggle {
		display: block;
	}

	.main-content {
		margin-left: 0;
	}

	.top-bar {
		display: flex;
	}

	.slide-content {
		flex-direction: column;
		text-align: center;
		padding: 40px 20px;
		justify-content: center;
	}

	.slide-text {
		max-width: 100%;
	}

	.slide-title {
		font-size: 36px;
	}

	.slide-subtitle {
		font-size: 24px;
	}

	.payment-methods {
		justify-content: center;
	}

	.promo-cards {
		padding: 20px;
		gap: 16px;
	}

	.games-section {
		padding: 20px;
	}

	.games-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
	}

	.providers-section {
		padding: 20px;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 12px;
	}

	.footer {
		padding: 40px 20px 20px;
	}

	.footer-content {
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.carousel-container {
		height: auto;
		min-height: 400px;
	}

	.slide-title {
		font-size: 28px;
	}

	.slide-subtitle {
		font-size: 20px;
	}

	.btn-primary {
		padding: 12px 32px;
		font-size: 16px;
	}

	.promo-cards {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 24px;
	}

	.games-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.auth-buttons {
		gap: 4px;
	}

	.btn-login,
	.btn-register {
		padding: 6px 12px;
		font-size: 13px;
	}
}
.text-wrapper {
	padding: 40px;
	max-width: 1400px;
	margin: 0 auto;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}
@media (max-width: 1024px) {
	.text-wrapper {
		padding: 20px;
	}
}
.text-wrapper .two-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
	gap: 20px;
}
.text-wrapper :is(.danger, .success) {
	width: 100%;
	padding: 1rem;
}
.text-wrapper .danger {
	background-color: #fd000086;
}
.text-wrapper .success {
	background-color: #0b815ca1;
}
.text-wrapper :is(.danger, .success) :first-child {
	margin-top: 0 !important;
}
.text-wrapper :is(.danger, .success) :last-child {
	margin-bottom: 0 !important;
}
.text-wrapper p {
	margin: 0 0 1.2em;
	line-height: 1.6;
}

.text-wrapper strong,
.text-wrapper b {
	font-weight: 600;
}

.text-wrapper em,
.text-wrapper i {
	font-style: italic;
}

.text-wrapper mark {
	background: #fffb91;
	padding: 0 2px;
}

.text-wrapper del {
	text-decoration: line-through;
}

.text-wrapper sup {
	font-size: 0.8em;
	vertical-align: super;
}

.text-wrapper sub {
	font-size: 0.8em;
	vertical-align: sub;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 2em 0 1em;
	line-height: 1.3;
}

.text-wrapper ul,
.text-wrapper ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}

.text-wrapper li {
	margin-bottom: 0.4em;
	list-style-position: outside;
}

.text-wrapper dl {
	margin: 1.5em 0;
}

.text-wrapper dt {
	font-weight: 600;
}

.text-wrapper dd {
	margin: 0 0 1em 1.5em;
}

.text-wrapper a {
	text-decoration: underline;
	transition: all 0.2s;
}

.text-wrapper a:hover {
	font-weight: 600;
}

.text-wrapper code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.9em;
}

.text-wrapper pre {
	background: #272822;
	color: #f8f8f2;
	padding: 1em;
	overflow-x: auto;
	border-radius: 6px;
	margin: 1.5em 0;
}

.text-wrapper pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.text-wrapper hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid #ddd;
}

.text-wrapper img,
.text-wrapper video,
.text-wrapper iframe {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
	display: block;
	border-radius: 6px;
}

.text-wrapper figure {
	margin: 2em 0;
	text-align: center;
}

.text-wrapper figcaption {
	margin-top: 0.5em;
	font-style: italic;
	opacity: 0.8;
}

.text-wrapper blockquote {
	margin: 2em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #ccc;
	background: #f9f9f9;
	border-radius: 4px;
}

.text-wrapper blockquote p:last-child {
	margin-bottom: 0;
}

.text-wrapper > *:last-child {
	margin-bottom: 0;
}

.text-wrapper table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
	display: inline-block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.text-wrapper th {
	font-weight: 600;
}

@media (max-width: 991px) {
	.text-wrapper table {
		white-space: nowrap;
	}
}
@media (max-width: 768px) {
	.text-wrapper {
		margin: 60px 0;
	}

	.text-wrapper li {
		list-style-position: inside;
	}

	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

@media (max-width: 480px) {
	.text-wrapper {
		margin: 40px 0;
	}
}
.accordion-item {
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	color: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: border-color 0.3s ease;
	background-color: var(--surface-light);
}

.accordion-header:hover {
	background-color: var(--secondary);
}

.accordion-header.active {
	background-color: var(--secondary);
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 2000px;
}

.accordion-body {
	padding: 16px 20px;
	color: inherit;
	line-height: 1.6;
	border-top: 1px solid #d0d0d0;
}
