body {
	--Primary-400: #6a571d;
	--Primary-300: #8d7426;
	--Primary-200: #332900;
	--Primary-100: #f3cf67;
	--Primary-50: #fce9b2;
	--Neutral-400: #f3f1ec;
	--Neutral-300: #e5e0d5;
	--neutral-30080: rgba(229, 224, 213, 0.75);
	--neutral-30060: rgba(229, 224, 213, 0.2);
	--Neutral-200: #d2c8b7;
	--Neutral-100: #7c7265;
	--Neutral-50: #ffffff;
	--Accent-600: #fff8e6;
	--Accent-500: #d69d1f;
	--Accent-400: #edb739;
	--Accent-300: #f6cc63;
	--Accent-200: #fbe3a8;
	--Accent-100: #fffbef;
	--Text-400: #6c6256;
	--Text-300: #4f473e;
	--Text-200: #322c26;
	--Text-100: #181511;
	--Text-00: #ffffff;
	--Green-400: #4d8f54;
	--Green-300: #6cb975;
	--Green-200: #a7dbae;
	--Green-100: #eef9ef;
	--Yellow-400: #b98a1a;
	--Yellow-300: #d7a52f;
	--Yellow-200: #efcb72;
	--Yellow-100: #fbf2d2;
	--Red-400: #a2644c;
	--Red-300: #c98367;
	--Red-200: #e2b7a7;
	--Red-100: #f8ece6;
}

* {
	box-sizing: border-box;
	outline: none;
	font-family:
		'Chivo',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		'Helvetica Neue',
		Arial,
		sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: none;
	text-decoration: none;
	border: none;
}

h1,
h2,
h3,
h4 {
	font-weight: 700;
	overflow-wrap: break-word;
	color: var(--Text-100);
}

h1 {
	font-size: 48px;
	line-height: 60px;
	letter-spacing: 0.2px;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	text-transform: capitalize;
}

@media screen and (min-width: 1200px) {
	h2 {
		font-size: 40px;
		line-height: 48px;
	}
}

h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
}

@media screen and (min-width: 1200px) {
	h3 {
		font-size: 32px;
		line-height: 40px;
	}
}

h4 {
	font-size: 24px;
	line-height: 32px;
}

p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	overflow-wrap: break-word;
}

s {
	text-decoration: line-through;
}

a {
	color: var(--Primary-100);
}

html {
	scroll-behavior: smooth;
}

html:has(.p26eab84-bonus-popup:not([hidden])) {
	overflow: hidden;
}

@media (max-width: 767px) {
	html:has(.p26eab84-chatbot-window[aria-hidden='false']),
	html:has(header.mobile-menu) {
		overflow: hidden;
	}
}

[id] {
	scroll-margin-top: 72px;
}

body {
	margin-top: 128px;
	font-size: 16px;
	line-height: 24px;
	background-color: var(--Neutral-400);
	color: var(--Text-200);
}

@media screen and (min-width: 768px) {
	body {
		margin-top: 72px;
	}
}

main {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	gap: 48px;
}

@media (min-width: 768px) {
	main {
		gap: 80px;
	}
}

.container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

@media screen and (min-width: 768px) {
	.container {
		max-width: 752px;
	}
}

@media screen and (min-width: 1200px) {
	.container {
		padding: 0 16px;
		max-width: 1248px;
	}
}

.no-scroll {
	overflow: hidden;
}

.skeleton img {
	background: var(--Neutral-300);
}

.p26eab84-btn {
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	line-height: 20px;
	padding: 9px 15px;
	color: var(--Text-00);
	border-radius: var(--S);
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
}

.p26eab84-btn--primary {
	border: 1px solid var(--Primary-200);
	background: var(--Primary-200);
}

.p26eab84-btn--primary:hover {
	background: var(--Primary-400);
}

.p26eab84-btn--outline {
	border: 1px solid var(--Primary-200);
	background: var(--neutral-30060);
	color: var(--Text-100);
}

.p26eab84-btn--outline:hover {
	background: var(--Primary-200);
}

.p26eab84-btn--fz-12 {
	font-size: 12px;
	line-height: 18px;
}

.p26eab84-btn--w-full {
	width: 100%;
}

.p26eab84-btn--p-xs {
	padding: 6px 16px;
}

.p26eab84-btn--p-sm {
	padding: 10px 16px;
}

.p26eab84-btn--shadow {
	box-shadow:
		0 1px 33px 0 rgba(var(--Primary-200-rgb), 0.2),
		0 1px 22px 0 rgba(var(--Primary-200-rgb), 0.3);
}

.p26eab84-btn--hidden {
	display: none;
}

.p26eab84-carousel {
	position: relative;
	width: 100%;
	margin: 0 auto;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.p26eab84-carousel__viewport {
	overflow: hidden;
	width: 100%;
	margin-top: 20px;
}

.p26eab84-carousel__track {
	display: flex;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scroll-behavior: smooth;
	cursor: grab;
	padding-bottom: 20px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.p26eab84-carousel__track--scroll {
	cursor: grab;
}

.p26eab84-carousel__track::-webkit-scrollbar {
	display: none;
}

.p26eab84-carousel__slide {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	scroll-snap-align: start;
}

.p26eab84-carousel__logo {
	display: block;
	width: 100%;
	object-fit: contain;
	height: 40px;
	pointer-events: none;
}

.p26eab84-carousel__name {
	text-align: center;
	font-size: 14px;
	padding: 10px 0;
}

.p26eab84-carousel__dots {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	visibility: hidden;
}

.p26eab84-carousel__dots--show {
	visibility: visible;
}

.p26eab84-carousel__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: var(--Text-400);
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s ease;
}

.p26eab84-carousel__dot--active {
	background-color: var(--Primary-200);
	width: 16px;
}

.p26eab84-bonus-popup:not([hidden]) {
	position: fixed;
	background: var(--neutral-30060);
	backdrop-filter: blur(16px);
	inset: 0;
	z-index: 1100;
	padding: 16px;
	isolation: isolate;
	display: flex;
	justify-content: center;
	align-items: center;
}

.p26eab84-bonus-popup__close {
	cursor: pointer;
	display: block;
	border: none;
	width: 22px;
	height: 22px;
	background-color: var(--Neutral-50);
	-webkit-mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 1L1 21M1 1L21 21' stroke='%23F0E1DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		no-repeat center;
	mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 1L1 21M1 1L21 21' stroke='%23F0E1DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 1;
}

.p26eab84-bonus-popup__content {
	border-radius: var(--M);
	background: var(--Neutral-400);
	padding: 80px 24px 40px;
	position: relative;
	text-align: center;
	overflow: hidden;
	width: 100%;
	max-width: 600px;
}

.p26eab84-bonus-popup__content::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: radial-gradient(
		86.67% 100% at 50% 100%,
		var(--Neutral-400) 44.8%,
		rgba(43, 11, 8, 0) 100%
	);
	z-index: 1;
}

.p26eab84-bonus-popup__inner {
	position: relative;
	z-index: 1;
}

.p26eab84-bonus-popup__label {
	color: var(--Text-100);
	font-size: 20px;
	line-height: 38px;
	font-weight: 700;
	text-transform: capitalize;
}

.p26eab84-bonus-popup__title {
	color: var(--Text-100);
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
	text-transform: capitalize;
	margin: 4px 0;
	overflow-wrap: break-word;
}

.p26eab84-bonus-popup__title--long {
	font-size: 20px;
	line-height: 28px;
}

.p26eab84-bonus-popup__text {
	color: var(--Text-200);
	font-size: 16px;
	line-height: 24px;
}

.p26eab84-bonus-popup__cta {
	border-radius: var(--S);
	background: var(--Primary-200);
	color: var(--Text-00);
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	padding: 15px 16px;
	align-content: center;
	display: block;
	width: 100%;
	margin-top: 24px;
	cursor: pointer;
	text-transform: capitalize;
	transition: 0.3s;
}

.p26eab84-bonus-popup__cta:hover {
	background: var(--Primary-400);
}

.p26eab84-bonus-popup__cta svg {
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
	pointer-events: none;
	touch-action: none;
}

.p26eab84-bonus-popup img {
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	object-fit: cover;
	pointer-events: none;
	touch-action: none;
	z-index: 0;
}

@media screen and (min-width: 768px) {
	.p26eab84-bonus-popup__content {
		max-width: 600px;
		padding: 200px 64px 64px;
	}

	.p26eab84-bonus-popup__label {
		font-size: 24px;
		line-height: 32px;
	}

	.p26eab84-bonus-popup__title {
		font-size: 40px;
		line-height: 48px;
	}

	.p26eab84-bonus-popup__title--long {
		font-size: 32px;
		line-height: 40px;
	}
}

.p26eab84-chatbot-signin__card,
.p26eab84-chatbot-welcome__card {
	border-radius: var(--M);
	border: 1px solid var(--Neutral-200);
	background: var(--Neutral-300);
	box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.1);
	padding: 16px 14px;
}

.p26eab84-chatbot-message.p26eab84-chatbot-message--bot::before,
.p26eab84-chatbot-welcome__card::before,
.p26eab84-chatbot-window__header-user::before {
	display: block;
	aspect-ratio: 1/1;
	background: no-repeat center/contain rgba(0, 0, 0, 0)
		url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='31' height='31' rx='15.5' fill='%23FFF4D0'/%3E%3Cpath d='M15.5429 14.5684C15.5602 14.5684 15.5776 14.5695 15.5949 14.5697C17.7925 14.5431 19.5717 12.8862 19.5717 10.8511C19.5717 8.79915 17.764 7.13 15.5417 7.13C13.3194 7.13 11.5117 8.79915 11.5117 10.8511C11.5117 12.8865 13.2915 14.5437 15.4894 14.57C15.5073 14.57 15.525 14.5686 15.5432 14.5686L15.5429 14.5684Z' fill='%23FFC421'/%3E%3Cpath d='M15.5972 15.1903C15.5801 15.1903 15.5632 15.193 15.5461 15.193C15.5289 15.193 15.5126 15.1906 15.4955 15.1903C11.3348 15.22 7.94056 18.7962 7.79297 23.25H23.293C23.1454 18.7956 19.7542 15.2191 15.5972 15.1903Z' fill='%23FFC421'/%3E%3Ccircle cx='5.5' cy='5.5' r='3' fill='%23179163' stroke='%23FFF4D0'/%3E%3C/svg%3E%0A");
}

.p26eab84-chatbot-messages__form [type='submit'] *,
.p26eab84-chatbot-window__header button * {
	pointer-events: none;
	touch-action: none;
}

@media screen and (max-width: 767px) {
	body:has(.p26eab84-chatbot-window[aria-hidden='false']) .p26eab84-header {
		display: none;
	}
}

.p26eab84-chatbot {
	position: fixed;
	right: 20px;
	bottom: 8px;
	z-index: 992;
	color: var(--Neutral-50);
}

@media (min-width: 768px) {
	.p26eab84-chatbot {
		bottom: 22px;
	}
}

body:has(header nav.open) .p26eab84-chatbot {
	display: none;
}

@media (max-width: 767px) {
	body:has(.p26eab84-floating-bar-wrapper) .p26eab84-chatbot {
		bottom: calc(var(--floating-bar-height) + 8px);
	}
}

@media (max-width: 767px) {
	body:has(.p26eab84-floating-bar-wrapper.static) .p26eab84-chatbot {
		bottom: 8px;
	}
}

.p26eab84-chatbot input {
	font-family: inherit;
}

.p26eab84-chatbot__trigger {
	width: 80px;
	height: 80px;
	cursor: pointer;
	border: 1px solid var(--Primary-100);
	background: no-repeat center/40px var(--Primary-200)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M31.5841 3.33364H8.41644C5.58276 3.33364 3.3335 5.69796 3.3335 8.57769V23.279C3.3335 26.1588 5.62517 28.5231 8.41644 28.5231L10.8335 28.5247L10.1254 34.6285C9.8748 36.2187 11.5838 37.2515 12.8338 36.3044L20.5422 28.4811H31.5839C34.4176 28.4811 36.6668 26.1167 36.6668 23.237V8.57739C36.6668 5.65557 34.3753 3.33364 31.5841 3.33364ZM11.1248 18.5087C9.74944 18.5087 8.62477 17.3484 8.62477 15.9294C8.62477 14.5105 9.74944 13.3502 11.1248 13.3502C12.5001 13.3502 13.6671 14.5105 13.6671 15.9294C13.6671 17.3484 12.5001 18.5087 11.1248 18.5087ZM20.0002 18.5087C18.6249 18.5087 17.5002 17.3484 17.5002 15.9294C17.5002 14.5105 18.6249 13.3502 20.0002 13.3502C21.3756 13.3502 22.5426 14.5105 22.5426 15.9294C22.5003 17.3484 21.3756 18.5087 20.0002 18.5087ZM28.8757 18.5087C27.5004 18.5087 26.3757 17.3484 26.3757 15.9294C26.3757 14.5105 27.5004 13.3502 28.8757 13.3502C30.251 13.3502 31.4181 14.5105 31.4181 15.9294C31.3757 17.3484 30.251 18.5087 28.8757 18.5087Z' fill='%23F7F7F7'/%3E%3C/svg%3E");
	border-radius: 50%;
}

@media screen and (max-width: 767px) {
	body:has(.p26eab84-chatbot-window[aria-hidden='false'])
		.p26eab84-chatbot__trigger {
		display: none;
	}
}

.p26eab84-chatbot-window {
	position: fixed;
	inset: 0;
	z-index: 101;
	background: var(--Neutral-400);
	box-shadow: 0 12px 24px 0 rgba(109, 109, 109, 0.15);
	overscroll-behavior: contain;
	overflow: auto;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

@media screen and (min-width: 768px) {
	.p26eab84-chatbot-window {
		inset: auto 24px 24px auto;
		width: 448px;
		height: 600px;
		border-radius: var(--M);
		border: 1px solid var(--Neutral-200);
		box-shadow: 0 12px 24px 0 rgba(191, 191, 191, 0.16);
	}
}

.p26eab84-chatbot-window[aria-hidden='true'] {
	display: none;
}

.p26eab84-chatbot-window__header {
	border-bottom: 1px solid var(--Neutral-200);
	background: var(--Neutral-300);
	color: var(--Text-300);
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0;
}

@media (min-width: 768px) {
	.p26eab84-chatbot-window__header {
		padding: 14px 16px;
	}
}

.p26eab84-chatbot[data-active-screen='2'] .p26eab84-chatbot-window__header,
.p26eab84-chatbot[data-active-screen='3'] .p26eab84-chatbot-window__header {
	box-shadow: 0 12px 24px 0 rgba(109, 109, 109, 0.15);
}

.p26eab84-chatbot-window__header button {
	border: none;
	background: none;
	cursor: pointer;
	align-content: center;
	color: var(--Neutral-50);
}

.p26eab84-chatbot-window__header button:first-child {
	align-content: end;
}

.p26eab84-chatbot-window__header button:first-of-type {
	display: none;
}

.p26eab84-chatbot[data-active-screen='2']
	.p26eab84-chatbot-window__header
	button:first-of-type,
.p26eab84-chatbot[data-active-screen='3']
	.p26eab84-chatbot-window__header
	button:first-of-type {
	display: initial;
	width: 44px;
	height: 16px;
}

.p26eab84-chatbot-window__header button:first-of-type svg {
	width: 30px;
	height: 30px;
}

.p26eab84-chatbot-window__header button:last-child svg {
	width: 38px;
	height: 38px;
}

.p26eab84-chatbot-window__header-user {
	flex: 1 1;
	align-content: center;
	display: flex;
	align-items: center;
	gap: 10px;
	font-feature-settings: 'liga' off;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	opacity: 0;
	visibility: hidden;
}

.p26eab84-chatbot-window__header-user::before {
	content: '';
	width: 48px;
}

.p26eab84-chatbot[data-active-screen='2'] .p26eab84-chatbot-window__header-user,
.p26eab84-chatbot[data-active-screen='3']
	.p26eab84-chatbot-window__header-user {
	opacity: 1;
	visibility: visible;
}

.p26eab84-chatbot-window__screens {
	flex: 1 1;
}

.p26eab84-chatbot-window__screens::before {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.9;
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-200) 0%,
		var(--Neutral-400) 100%
	);
	filter: blur(76px);
	position: absolute;
	right: -206px;
	top: -425px;
	z-index: -1;
}

@media (min-width: 768px) {
	.p26eab84-chatbot-window__screens::before {
		right: -157px;
		top: -283px;
	}
}

.p26eab84-chatbot-window__screen {
	display: none;
	padding: 64px 16px 16px;
}

@media screen and (min-width: 768px) {
	.p26eab84-chatbot-window__screen {
		padding: 24px;
	}
}

.p26eab84-chatbot[data-active-screen='1'] .p26eab84-chatbot-welcome {
	display: block;
}

.p26eab84-chatbot-welcome__title {
	color: var(--Text-100);
	font-feature-settings: 'liga' off;
	font-weight: 700;
	margin-bottom: 24px;
	font-size: 40px;
	line-height: 48px;
	text-transform: capitalize;
}

@media screen and (min-width: 768px) {
	.p26eab84-chatbot-welcome__title {
		margin-top: 41px;
		font-size: 48px;
		line-height: 56px;
	}
}

.p26eab84-chatbot-welcome__card {
	display: grid;
	grid-template-columns: 50px 1fr;
	grid-template-areas: 'avatar name' 'button button';
	row-gap: 16px;
	column-gap: 12px;
	padding: 10px 14px;
}

.p26eab84-chatbot-welcome__card::before {
	content: '';
	grid-area: avatar;
	width: 50px;
	height: 50px;
	align-self: center;
}

.p26eab84-chatbot-welcome__card-head span {
	color: var(--Text-300);
	font-feature-settings:
		'liga' off,
		'clig' off;
	font-size: 12px;
	line-height: 16px;
}

.p26eab84-chatbot-welcome__card-head p {
	color: var(--Text-100);
}

.p26eab84-chatbot-welcome__card .glow-btn {
	grid-area: button;
}

.p26eab84-chatbot-welcome__card .glow-btn::after {
	content: '';
	display: inline-block;
	vertical-align: sub;
	margin-left: 8px;
	width: 20px;
	height: 20px;
	background: no-repeat center/contain rgba(0, 0, 0, 0)
		url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.66602 10H16.3327' stroke='%23F0F0F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.334 15L16.334 10' stroke='%23F0F0F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.334 5L16.334 10' stroke='%23F0F0F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.p26eab84-chatbot[data-active-screen='2'] .p26eab84-chatbot-signin {
	display: block;
}

.p26eab84-chatbot-signin__title {
	color: var(--Text-100);
	font-feature-settings: 'liga' off;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.p26eab84-chatbot-signin__title {
		margin-top: 40px;
	}
}

.p26eab84-chatbot-signin__card label,
.p26eab84-chatbot-signin__card input {
	display: block;
	width: 100%;
}

.p26eab84-chatbot-signin__card label {
	margin-bottom: 16px;
	color: var(--Text-100);
	font-size: 14px;
	line-height: 20px;
}

.p26eab84-chatbot-signin__card label.is-invalid input {
	border: 1px solid var(--Accent-100);
	padding: 16px;
}

.p26eab84-chatbot-signin__card label.is-invalid::after {
	content: attr(data-error);
	display: block;
	color: var(--Accent-100);
	font-feature-settings:
		'liga' off,
		'clig' off;
	font-size: 12px;
	line-height: 16px;
	margin-top: 4px;
}

.p26eab84-chatbot-signin__card input {
	color: var(--Text-100);
	border-radius: var(--S);
	background: var(--Neutral-400);
	font-feature-settings: 'liga' off;
	font-size: 16px;
	line-height: 24px;
	padding: 17px 16px;
	margin-top: 4px;
}

.p26eab84-chatbot-signin__card input::placeholder {
	color: var(--Text-400);
}

.p26eab84-chatbot-messages {
	padding: 0;
	min-height: 100%;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

.p26eab84-chatbot[data-active-screen='3'] .p26eab84-chatbot-messages {
	display: flex;
}

.p26eab84-chatbot-messages ol {
	list-style: none;
	padding: 16px;
	overflow: auto;
	overscroll-behavior: contain;
	height: calc(100vh - 170px);
}

@media screen and (min-width: 768px) {
	.p26eab84-chatbot-messages ol {
		height: 420px;
		padding: 24px;
	}
}

.p26eab84-chatbot-messages ol a {
	cursor: pointer;
	color: var(--Primary-100);
}

.p26eab84-chatbot-messages__form {
	flex: 0 0;
	position: relative;
	padding: 0 16px 16px;
}

@media screen and (min-width: 768px) {
	.p26eab84-chatbot-messages__form {
		padding: 0 24px 24px;
	}
}

.p26eab84-chatbot-messages__form input {
	display: block;
	width: 100%;
	padding: 16px 44px 16px 16px;
	border-radius: var(--M);
	background: var(--Neutral-300);
	color: var(--Text-100);
	font-size: 16px;
	line-height: 24px;
}

.p26eab84-chatbot-messages__form input::placeholder {
	color: var(--Text-400);
}

.p26eab84-chatbot-messages__form [type='submit'] {
	border: none;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 32px;
	width: 22px;
	height: 22px;
}

.p26eab84-chatbot-messages__form [type='submit']:disabled {
	opacity: 0.5;
}

.p26eab84-chatbot-messages__form [type='submit'] svg {
	color: var(--Neutral-50);
}

@media screen and (min-width: 768px) {
	.p26eab84-chatbot-messages__form [type='submit'] {
		right: 40px;
	}
}

.p26eab84-chatbot-message {
	margin-bottom: 16px;
	color: var(--Primary-100);
}

.p26eab84-chatbot-message.p26eab84-chatbot-message--bot {
	display: grid;
	grid-template-columns: 31px 1fr;
	gap: 12px;
	color: var(--Text-100);
	align-items: flex-end;
}

.p26eab84-chatbot-message.p26eab84-chatbot-message--bot::before {
	content: '';
	width: 31px;
}

.p26eab84-chatbot-message.p26eab84-chatbot-message--bot p {
	border-radius: var(--M);
	border: 1px solid var(--Neutral-300);
	background: var(--neutral-30060, rgba(43, 43, 43, 0.6));
}

.p26eab84-chatbot-message.p26eab84-chatbot-message--user p {
	box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.1);
}

.p26eab84-chatbot-message p {
	padding: 15px 14px;
	border-radius: var(--M);
	border: 1px solid var(--Neutral-200);
	background: var(--neutral-30060, rgba(43, 43, 43, 0.6));
}

.p26eab84-chatbot .glow-btn {
	border-radius: var(--S);
	background: var(--Primary-200);
	text-align: center;
	padding: 9px;
	color: var(--Text-00);
	font-feature-settings: 'liga' off;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	width: 100%;
	cursor: pointer;
}

.p26eab84-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	width: 100%;
}

@media (min-width: 768px) {
	.p26eab84-header {
		padding: 16px 0;
		background: var(--Neutral-400);
	}
}

.p26eab84-header .container {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 767px) {
	.p26eab84-header .container {
		padding: 16px;
		background: var(--Neutral-400);
		min-height: 72px;
	}
}

.p26eab84-header__logo {
	display: block;
	width: 100%;
	max-width: 128px;
	height: 32px;
	object-fit: contain;
	object-position: left center;
}

@media (min-width: 1200px) {
	.p26eab84-header__logo {
		max-width: 160px;
		height: 40px;
	}
}

.p26eab84-header__logo picture,
.p26eab84-header__logo img {
	display: block;
	width: 100%;
	height: 100%;
}

.p26eab84-header__logo img {
	object-fit: contain;
	object-position: left center;
}

.p26eab84-header__nav {
	margin-right: auto;
	margin-left: 32px;
}

@media (max-width: 1199px) {
	.p26eab84-header__nav {
		position: fixed;
		right: 0;
		width: 100%;
		padding: 8px 40px 8px 16px;
		transition: transform 0.3s ease;
		transform: translateX(100%);
		background: var(--Neutral-400);
		box-shadow: 0 12px 24px 0 rgba(109, 109, 109, 0.15);
	}
}

@media screen and (max-width: 1199px) and (min-width: 768px) and (max-width: 1199px) {
	.p26eab84-header__nav {
		top: 72px;
		max-width: 400px;
		height: calc(100% - 72px);
		overflow-y: auto;
	}
}

@media (max-width: 1199px) and (max-width: 767px) {
	.p26eab84-header__nav {
		top: 128px;
		height: calc(100% - 128px);
		overflow-y: auto;
		overscroll-behavior: contain;
	}
}

@media (max-width: 1199px) {
	.p26eab84-header__nav ul {
		overflow-y: auto;
	}

	.p26eab84-header__nav ul + .p26eab84-header__lang-nav {
		margin-top: 24px;
	}

	.p26eab84-header.mobile-menu .p26eab84-header__nav {
		transform: translateX(0);
	}
}

@media (max-width: 767px) {
	.p26eab84-header__nav {
		padding: 8px 16px;
	}
}

.p26eab84-header__content-right,
.p26eab84-header__account {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 8px;
}

@media (min-width: 767px) {
	.p26eab84-header__content-right,
	.p26eab84-header__account {
		gap: 12px;
	}
}

@media (max-width: 767px) {
	.p26eab84-header__account {
		display: none;
	}
}

.p26eab84-header__account-mob {
	display: flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(
		0deg,
		rgba(43, 11, 8, 0) 0%,
		var(--Neutral-400) 70%
	);
	padding: 0 16px 16px;
}

.mobile-menu .p26eab84-header__account-mob {
	background: var(--Neutral-400);
}

.p26eab84-header__account-mob button {
	flex: 1 1;
	padding: 9px 12px;
	line-height: 20px;
}

.p26eab84-header__account-mob button.p26eab84-btn--outline {
	backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
	.p26eab84-header__account-mob {
		display: none;
	}
}

.p26eab84-header__menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.p26eab84-header__menu-toggle svg {
	display: block;
	pointer-events: none;
	touch-action: none;
	user-select: none;
}

.p26eab84-header__menu-toggle svg:last-child {
	display: none;
}

.p26eab84-header__menu-toggle svg path {
	stroke: var(--Text-100);
}

@media (min-width: 1200px) {
	.p26eab84-header__menu-toggle {
		display: none;
	}
}

.p26eab84-header__menu-icon {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
	object-position: center;
	cursor: pointer;
	color: var(--Text-100);
	pointer-events: none;
	touch-action: none;
}

.p26eab84-header.mobile-menu .p26eab84-header__menu-icon:first-child {
	display: none;
}

.p26eab84-header.mobile-menu .p26eab84-header__menu-icon:last-child {
	display: block;
}

.p26eab84-header__menu-icon:last-child {
	display: none;
}

@media (min-width: 1200px) {
	.p26eab84-header__menu-icon {
		display: none;
	}
}

.p26eab84-header__lang-switcher {
	display: none;
}

@media (min-width: 1200px) {
	.p26eab84-header__lang-switcher {
		display: block;
		padding: 10px 16px 6px;
		max-width: 160px;
		position: relative;
	}

	.p26eab84-header__lang-switcher:hover ul {
		visibility: visible;
		opacity: 1;
	}

	.p26eab84-header__lang-switcher:hover ul::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}

	.p26eab84-header__lang-switcher:hover ul::-webkit-scrollbar-thumb {
		border-radius: var(--S);
		background: var(--Neutral-100);
	}

	.p26eab84-header__lang-switcher:hover ul::-webkit-scrollbar-track {
		background: rgba(0, 0, 0, 0);
	}

	.p26eab84-header__lang-switcher:hover .p26eab84-header__lang-menu-arrow svg {
		transform: rotate(180deg);
	}
}

@media (min-width: 1200px) {
	.p26eab84-header__lang-switcher ul {
		width: 160px;
		max-height: 350px;
		overflow-y: auto;
		list-style: none;
	}
}

.p26eab84-header__lang-switcher .current {
	display: flex;
	gap: 8px;
	align-items: center;
}

.p26eab84-header__lang-item {
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	width: 100%;
}

.p26eab84-header__lang-item > * {
	min-width: 0;
}

.p26eab84-header__lang-item span {
	display: block;
	flex: 1 1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.p26eab84-header__lang-item img {
	flex: 0 0 24px;
	display: block;
	width: 24px;
	height: 24px;
	border: 1px solid var(--Neutral-200);
	border-radius: 8px;
}

.p26eab84-header__lang-item:not(:last-child) {
	margin-bottom: 2px;
}

@media (min-width: 1200px) {
	.p26eab84-header__lang-item:not(:last-child) {
		margin-bottom: 0;
	}
}

.p26eab84-header__lang-link {
	display: flex;
	gap: 8px;
	align-items: center;
	width: 100%;
	padding: 4px 9px;
	transition: background-color 0.3s;
	color: var(--Text-100);
	border-radius: 8px;
}

.p26eab84-header__lang-link > * {
	min-width: 0;
}

.p26eab84-header__lang-link:hover {
	background-color: var(--Neutral-300);
}

.p26eab84-header__lang-link.current::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2 12.875L8.08696 19L22 5' stroke='%2309C77A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: var(--Green-200);
}

.p26eab84-header__lang-link span {
	display: block;
	flex: 1 1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.p26eab84-header__lang-link img {
	flex: 0 0 24px;
	display: block;
	width: 24px;
	height: 24px;
	border: 1px solid var(--Neutral-200);
	border-radius: 8px;
}

.p26eab84-header__lang-menu-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.p26eab84-header__lang-menu-arrow svg {
	transition: 0.3s;
	width: 13px;
	height: 13px;
}

.p26eab84-header__lang-menu {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	visibility: hidden;
	align-items: flex-start;
	flex-direction: column;
	width: auto;
	max-height: 0;
	transition: max-height 0.3s;
	opacity: 0;
	background: unset;
	gap: 0;
}

@media (min-width: 1200px) {
	.p26eab84-header__lang-menu {
		position: absolute;
		top: 40px;
		left: 0;
		width: 112px;
		padding: 8px;
		border-radius: 8px;
		background: var(--Neutral-400);
		box-shadow: 0 12px 24px 0 rgba(191, 191, 191, 0.2);
		gap: 2px;
	}
}

.p26eab84-header__lang-nav {
	width: 100%;
	margin-top: 24px;
}

@media (min-width: 1200px) {
	.p26eab84-header__lang-nav {
		display: none;
	}
}

.p26eab84-header__lang-nav-heading {
	margin-bottom: 8px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--Neutral-300);
}

.p26eab84-header__lang-nav-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	text-transform: capitalize;
	color: var(--Text-100);
}

.menu {
	list-style: none;
}

@media (min-width: 1200px) {
	.menu {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.menu .menu-item__heading [data-ref-el],
	.menu .menu-item__heading span,
	.menu .menu-item__heading a {
		white-space: nowrap;
	}
}

.menu-item {
	width: 100%;
	transition: 0.3s;
	color: var(--Text-100);
	position: relative;
}

@media (max-width: 1199px) {
	.menu-item.mobile-active > .menu-item__heading {
		background: var(--Neutral-300);
	}
}

@media (min-width: 1200px) {
	.menu-item.has-children:hover > .sub-menu[data-depth='1'] {
		height: auto;
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 1199px) {
	.menu-item.mobile-active > .sub-menu {
		height: auto;
	}

	.menu-item.mobile-active > div > .menu-toggle {
		transform: rotate(180deg);
	}
}

.menu-item [data-ref-el] {
	background: none;
	border: none;
	cursor: pointer;
}

.menu-item [data-ref-el],
.menu-item span {
	cursor: pointer;
}

.menu-item [data-ref-el],
.menu-item span,
.menu-item a {
	font-size: 18px;
	font-weight: 700;
	line-height: 46px;
	color: var(--Text-100);
	text-align: left;
	flex: 1 1;
}

@media (min-width: 768px) {
	.menu-item [data-ref-el],
	.menu-item span,
	.menu-item a {
		font-size: 18px;
		line-height: 38px;
	}
}

@media (min-width: 1200px) {
	.menu-item [data-ref-el],
	.menu-item span,
	.menu-item a {
		font-size: 14px;
		line-height: 20px;
		width: 100%;
	}
}

.sub-menu {
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
	padding-left: 24px;
	list-style: none;
	box-sizing: border-box;
}

.sub-menu::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

.sub-menu::-webkit-scrollbar-thumb {
	border-radius: var(--S);
	background: var(--Neutral-200);
}

.sub-menu::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0);
}

@media (min-width: 1200px) {
	.sub-menu {
		width: 300px;
		position: absolute;
		z-index: 1001;
		border-radius: 0 0 var(--M) var(--M);
		background: var(--Neutral-400);
		box-shadow: 0 12px 24px 0 rgba(191, 191, 191, 0.2);
		padding: 8px;
		opacity: 0;
		visibility: hidden;
		max-height: 290px;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.sub-menu:has(> .menu-item.active) {
		height: auto;
		visibility: visible;
		opacity: 1;
	}

	.sub-menu .sub-menu {
		padding: 0;
	}

	.sub-menu .menu-item:hover > .menu-item__heading {
		background: var(--Neutral-300);
	}

	.sub-menu .menu-toggle {
		rotate: -90deg;
	}
}

.menu-item__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 8px;
	border-radius: var(--S);
}

@media (min-width: 1200px) {
	.menu-item__heading {
		padding: 8px;
	}

	.menu-item.active > .menu-item__heading {
		background: var(--Neutral-300);
	}
}

.menu-toggle {
	width: 24px;
	height: 24px;
	border: none;
	cursor: pointer;
	mask-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.21967 0.21967C0.512563 -0.0732233 0.987437 -0.0732233 1.28033 0.21967L5.25 4.18934L9.21967 0.21967C9.51256 -0.0732233 9.98744 -0.0732233 10.2803 0.21967C10.5732 0.512563 10.5732 0.987437 10.2803 1.28033L5.78033 5.78033C5.48744 6.07322 5.01256 6.07322 4.71967 5.78033L0.21967 1.28033C-0.0732233 0.987437 -0.0732233 0.512563 0.21967 0.21967Z' fill='%23F0F0F0'/%3E%3C/svg%3E%0A");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 10px;
	transition: rotate 0.3s ease;
	background-color: var(--Text-100);
}

@media (min-width: 1200px) {
	.menu-toggle {
		cursor: default;
	}
}

.extra-menu {
	position: fixed;
	z-index: 1001;
	top: 80px;
	left: 100px;
	visibility: visible;
	opacity: 1;
	max-height: 290px;
	height: auto;
}

.p26eab84-footer {
	padding: 24px 0;
	border-top: 1px solid var(--Neutral-300);
	gap: 32px;
}

@media screen and (min-width: 768px) {
	.p26eab84-footer {
		padding: 40px 4px;
	}
}

.p26eab84-footer__top {
	margin-bottom: 30px;
}

@media screen and (min-width: 1200px) {
	.p26eab84-footer__top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0;
	}
}

.p26eab84-footer__nav {
	margin-bottom: 32px;
}

@media (min-width: 1200px) {
	.p26eab84-footer__nav {
		margin-right: 32px;
		margin-bottom: 20px;
	}
}

.p26eab84-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 8px;
}

.p26eab84-footer__nav [data-ref-el] {
	background: none;
	border: none;
	cursor: pointer;
	font: inherit;
}

.p26eab84-footer__nav [data-ref-el],
.p26eab84-footer__nav span,
.p26eab84-footer__nav a {
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	display: block;
	padding: 4px 8px;
	color: var(--Text-100);
}

.p26eab84-footer__payments {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 340px;
	margin-bottom: 32px;
	flex-shrink: 0;
}

@media (min-width: 1200px) {
	.p26eab84-footer__payments {
		margin-bottom: 12px;
	}
}

.p26eab84-footer__payments-item {
	width: 32px;
	height: 32px;
	margin-right: 12px;
	overflow: hidden;
}

.p26eab84-footer__payments-item picture,
.p26eab84-footer__payments-item img {
	display: block;
	width: 100%;
	height: 100%;
}

.p26eab84-footer__payments-item img {
	object-fit: contain;
	object-position: center;
}

@media screen and (min-width: 1200px) {
	.p26eab84-footer__payments-item:last-child {
		margin-right: 0;
	}
}

.p26eab84-footer__payments-show-more {
	line-height: 19px;
	margin-top: -4px;
	position: relative;
	color: var(--Primary-100);
	border-bottom: 1px solid var(--Primary-100);
}

.p26eab84-footer__payments:hover .p26eab84-footer__tooltype {
	visibility: visible;
	opacity: 1;
}

.p26eab84-footer__tooltype {
	position: absolute;
	right: -13px;
	bottom: 30px;
	visibility: hidden;
	max-width: 240px;
	padding: 16px;
	transition: 0.3s;
	opacity: 0;
	border: 1px solid var(--Neutral-200);
	border-radius: 8px;
	background-color: var(--Neutral-300);
	box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.14);
}

.p26eab84-footer__tooltype-grid {
	display: grid;
	margin: -6px;
	grid-template-columns: repeat(5, 1fr);
	max-height: 240px;
	overflow-y: auto;
	overflow-x: hidden;
}

.p26eab84-footer__tooltype-item {
	display: flex;
	margin: 6px;
}

.p26eab84-footer__tooltype-item img {
	object-fit: contain;
	max-width: 32px;
}

.p26eab84-footer__tooltype::after {
	position: absolute;
	right: 18px;
	bottom: -8px;
	width: 0;
	height: 0;
	content: '';
	border-top: 8px solid var(--Neutral-300);
	border-right: 8px solid rgba(0, 0, 0, 0);
	border-left: 8px solid rgba(0, 0, 0, 0);
}

.p26eab84-footer__tooltype::before {
	position: absolute;
	right: 16px;
	bottom: -10px;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid var(--Neutral-200);
	border-right: 10px solid rgba(0, 0, 0, 0);
	border-left: 10px solid rgba(0, 0, 0, 0);
}

.p26eab84-footer__bottom {
	display: flex;
	flex-direction: column;
	width: 100%;
}

@media (min-width: 1200px) {
	.p26eab84-footer__bottom {
		align-items: flex-end;
		flex-direction: row;
		justify-content: space-between;
	}
}

.p26eab84-footer__copy {
	font-size: 14px;
	line-height: 20px;
	color: var(--Text-400);
}

@media (min-width: 1200px) {
	.p26eab84-footer__copy {
		margin-right: 32px;
	}
}

.p26eab84-footer__email {
	width: 100%;
	max-width: 340px;
	margin-top: 10px;
	text-align: left;
	flex-shrink: 0;
}

@media (min-width: 1200px) {
	.p26eab84-footer__email {
		margin-top: 0;
		width: 340px;
	}
}

.p26eab84-footer__email a {
	line-height: 19px;
	color: var(--Primary-100);
	border-bottom: 1px solid var(--Primary-100);
}

.p26eab84-footer__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.p26eab84-floating-bar {
	position: fixed;
	padding: 11px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	z-index: 992;
	display: grid;
	grid-template-columns: 56px 1fr min-content;
	grid-template-areas: 'logo content btn';
	align-items: center;
	column-gap: 8px;
	overflow: hidden;
	isolation: isolate;
	color: var(--Text-100);
	border-radius: var(--M);
	border: 1px solid var(--Primary-300);
	background: var(
		--Casino-Gradient-Main-2,
		linear-gradient(93deg, var(--Primary-400) 35.14%, var(--Primary-200) 99.52%)
	);
	box-shadow: 0 4px 8px 0 rgba(67, 67, 67, 0.16);
	backdrop-filter: blur(8px);
}

@media screen and (max-width: 767px) {
	.p26eab84-floating-bar--game {
		grid-template-columns: 56px 1fr;
		grid-template-rows: min-content min-content;
		grid-template-areas: 'logo content' 'btn btn';
		row-gap: 8px;
	}
}

.p26eab84-floating-bar-wrapper {
	min-height: var(--floating-bar-height);
	padding-bottom: 24px;
}

.p26eab84-floating-bar-wrapper::before {
	content: '';
	display: block;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		180deg,
		rgba(43, 11, 8, 0) 0%,
		var(--Neutral-400) 70%
	);
	z-index: 991;
	height: calc(var(--floating-bar-height) + 16px);
	pointer-events: none;
	touch-action: none;
}

@media (min-width: 768px) {
	.p26eab84-floating-bar-wrapper::before {
		height: calc(var(--floating-bar-height) + 48px);
	}
}

.p26eab84-floating-bar-wrapper.static::before {
	display: none;
}

.p26eab84-floating-bar-wrapper.static .p26eab84-floating-bar {
	position: relative;
	transform: none;
	margin-right: auto;
	margin-left: auto;
	inset: initial;
}

@media (min-width: 768px) {
	.p26eab84-floating-bar {
		right: 24px;
		bottom: 24px;
		left: 24px;
		padding: 15px;
		column-gap: 16px;
	}

	body:has(.p26eab84-chatbot) .p26eab84-floating-bar {
		right: 128px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-floating-bar {
		width: 600px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
}

.p26eab84-floating-bar::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	translate: -50% -50%;
	border-radius: 271px;
	opacity: 0.9;
	width: 271px;
	height: 120px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-200) 0%,
		var(--neutral-30060) 100%
	);
	z-index: -1;
	pointer-events: none;
	touch-action: none;
}

@media (min-width: 768px) {
	.p26eab84-floating-bar::before {
		width: 467px;
		height: 176px;
	}
}

.p26eab84-floating-bar__logo {
	display: block;
	aspect-ratio: 1/1;
	overflow: hidden;
	grid-area: logo;
}

.p26eab84-floating-bar__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.p26eab84-floating-bar__content {
	grid-area: content;
}

.p26eab84-floating-bar__details {
	display: flex;
	gap: 8px;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}

.p26eab84-floating-bar__details > * {
	flex: 1 1;
	min-width: 64px;
}

.p26eab84-floating-bar__detail span {
	display: block;
	font-weight: 700;
}

.p26eab84-floating-bar__title {
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	text-transform: capitalize;
}

@media (min-width: 768px) {
	.p26eab84-floating-bar__title {
		font-size: 20px;
		line-height: 28px;
	}

	.p26eab84-floating-bar--bonus .p26eab84-floating-bar__title {
		font-size: 24px;
		line-height: 32px;
	}
}

.p26eab84-floating-bar__btn {
	border-radius: var(--S);
	background: var(--Primary-200);
	width: 100%;
	padding: 15px;
	grid-area: btn;
	color: var(--Text-00);
	text-align: center;
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	white-space: nowrap;
	align-content: center;
	cursor: pointer;
	height: 54px;
}

@media (max-width: 767px) {
	.p26eab84-floating-bar--game .p26eab84-floating-bar__btn {
		font-size: 14px;
		line-height: 20px;
		padding: 9px;
		height: auto;
	}

	.p26eab84-floating-bar--game .p26eab84-floating-bar__btn span {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.p26eab84-floating-bar__btn {
		min-width: 54px;
	}
}

.p26eab84-floating-bar__btn::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 14px;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	background-color: var(--Text-00);
	mask-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2931 1.70711C13.9026 1.31658 13.9026 0.683417 14.2931 0.292893C14.6837 -0.0976311 15.3168 -0.0976311 15.7074 0.292893L21.7073 6.29289C22.0979 6.68342 22.0979 7.31658 21.7073 7.70711L15.7074 13.7071C15.3168 14.0976 14.6837 14.0976 14.2931 13.7071C13.9026 13.3166 13.9026 12.6834 14.2931 12.2929L18.586 7.99998H1.01103C0.452653 7.99998 0 7.55227 0 6.99998C0 6.4477 0.452653 5.99998 1.01103 5.99998H18.586L14.2931 1.70711Z' fill='white'/%3E%3C/svg%3E%0A");
}

.p26eab84-floating-bar__btn span {
	display: none;
}

@media (min-width: 768px) {
	.p26eab84-floating-bar__btn span {
		display: inline-block;
	}
}

.p26eab84-bonus__section {
	position: relative;
	min-height: 270px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-300) 0%,
		var(--Neutral-400) 100%
	);
	background-repeat: no-repeat;
	background-position: 0 -163px;
}

.p26eab84-bonus__section + .p26eab84-bonus-labeled__section,
.p26eab84-bonus__section + .p26eab84-bonus__section {
	margin-top: 24px;
}

@media screen and (min-width: 1200px) {
	.p26eab84-bonus__section {
		min-height: 508px;
	}
}

@media screen and (min-width: 1200px) {
	.p26eab84-bonus {
		margin-right: 32px;
	}
}

.p26eab84-bonus__container {
	position: relative;
	z-index: 1;
	padding: 24px 24px 16px 24px;
}

@media (min-width: 768px) {
	.p26eab84-bonus__container {
		padding: 68px 16px 40px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus__container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus__container picture {
		flex: 0 0 600px;
		display: block;
	}
}

.p26eab84-bonus__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	text-transform: capitalize;
	margin-bottom: 8px;
	letter-spacing: 0.4px;
	color: var(--Text-200);
	overflow-wrap: break-word;
}

@media (min-width: 768px) {
	.p26eab84-bonus__title {
		font-size: 48px;
		line-height: 56px;
	}
}

.p26eab84-bonus__text {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	text-transform: capitalize;
	margin-bottom: 24px;
	letter-spacing: 0.2px;
	color: var(--Text-100);
	overflow-wrap: break-word;
}

@media (min-width: 768px) {
	.p26eab84-bonus__text {
		font-size: 24px;
		line-height: 32px;
	}
}

.p26eab84-bonus__link {
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 24px;
	width: 240px;
	transition: 0.3s;
	color: var(--Text-00);
	border-radius: var(--S);
	border: none;
	background: var(--Primary-200);
	gap: 8px;
	cursor: pointer;
	text-align: center;
	margin-bottom: 32px;
}

@media (min-width: 1200px) {
	.p26eab84-bonus__link {
		margin-bottom: 0;
	}
}

.p26eab84-bonus__link:hover {
	background: var(--Primary-400);
}

.p26eab84-bonus__img {
	border-radius: 24px;
	box-shadow: 0 4px 12px 0 rgba(67, 67, 67, 0.1);
	border: 4px solid var(--neutral-30060);
	max-width: 100%;
	height: 218px;
	width: 100%;
	display: block;
	overflow: hidden;
}

@media (min-width: 768px) {
	.p26eab84-bonus__img {
		height: 480px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus__img {
		height: 400px;
		width: 600px;
		flex: 0 0 600px;
	}
}

.p26eab84-bonus__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p26eab84-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.p26eab84-content h1,
.p26eab84-content h2,
.p26eab84-content h3,
.p26eab84-content h4 {
	margin-bottom: 6px;
}

.p26eab84-content h1:not(:first-child),
.p26eab84-content h2:not(:first-child),
.p26eab84-content h3:not(:first-child),
.p26eab84-content h4:not(:first-child) {
	margin-top: 16px;
}

.p26eab84-content h1,
.p26eab84-content h1 > * {
	font-size: 32px;
	line-height: 40px;
}

@media (min-width: 768px) {
	.p26eab84-content h1,
	.p26eab84-content h1 > * {
		font-size: 48px;
		line-height: 60px;
	}
}

.p26eab84-content h2,
.p26eab84-content h2 > * {
	font-size: 28px;
	line-height: 36px;
}

@media (min-width: 768px) {
	.p26eab84-content h2,
	.p26eab84-content h2 > * {
		font-size: 40px;
		line-height: 48px;
	}
}

.p26eab84-content h3,
.p26eab84-content h3 > * {
	font-size: 24px;
	line-height: 32px;
}

@media (min-width: 768px) {
	.p26eab84-content h3,
	.p26eab84-content h3 > * {
		font-size: 32px;
		line-height: 40px;
	}
}

.p26eab84-content h4,
.p26eab84-content h4 > * {
	font-size: 24px;
	line-height: 32px;
}

.p26eab84-content ul {
	font-size: 16px;
	margin: 6px 0 14px;
	padding: 0;
	padding-left: 8px;
	list-style: none;
}

.p26eab84-content ul li {
	position: relative;
	margin-bottom: 8px;
	padding-left: 16px;
	list-style-type: none;
}

.p26eab84-content ul li::before {
	position: absolute;
	top: 11px;
	left: 0;
	box-sizing: border-box;
	width: 6px;
	height: 6px;
	content: '';
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--Text-300);
}

.p26eab84-content ul ul {
	margin-bottom: 8px;
}

.p26eab84-content ul ul > li {
	margin-top: 16px;
	padding-left: 33px;
}

.p26eab84-content ul ul > li::before {
	left: 16px;
	border: 1px solid var(--Text-300);
	background: rgba(0, 0, 0, 0);
}

.p26eab84-content ol {
	font-size: 16px;
	margin: 6px 0 14px;
	padding-left: 24px;
	list-style: decimal;
}

.p26eab84-content ol li {
	margin-bottom: 8px;
	padding-left: 6px;
}

.p26eab84-content ol ol {
	margin-bottom: 8px;
}

.p26eab84-content ol ol > li {
	margin-top: 16px;
	padding-left: 0;
}

.p26eab84-content ol ul li {
	padding-left: 16px;
}

.p26eab84-content table {
	display: block;
	overflow-x: auto;
	width: 100%;
	margin-top: 16px;
	padding-bottom: 22px;
	border-spacing: 0 4px;
	overflow-wrap: break-word;
	font-size: 16px;
	position: relative;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	-webkit-mask-image: none;
	mask-image: none;
}

.p26eab84-content table.table-shadow {
	-webkit-mask-image: linear-gradient(to right, black 90%, transparent);
	mask-image: linear-gradient(to right, black 90%, transparent);
	transition:
		-webkit-mask-image 0.3s,
		mask-image 0.3s;
}

.p26eab84-content table.table-shadow.hide-shadow {
	-webkit-mask-image: linear-gradient(to right, black 100%, black 100%);
	mask-image: linear-gradient(to right, black 100%, black 100%);
}

@media (min-width: 1200px) {
	.p26eab84-content table {
		display: table;
	}
}

.p26eab84-content table thead th {
	font-weight: 700;
	padding: 12px 18px;
	text-align: left;
	white-space: nowrap;
	background-color: var(--Neutral-200);
}

.p26eab84-content table thead th:first-child {
	border-top-left-radius: var(--S);
	border-bottom-left-radius: var(--S);
}

.p26eab84-content table thead th:last-child {
	border-top-right-radius: var(--S);
	border-bottom-right-radius: var(--S);
}

.p26eab84-content table tbody td {
	background-color: var(--Neutral-300);
	border-top: 1px solid var(--Neutral-200);
	border-bottom: 1px solid var(--Neutral-200);
	width: 150px;
	padding: 11px 18px;
	white-space: nowrap;
}

@media (min-width: 1200px) {
	.p26eab84-content table tbody td {
		width: auto;
		white-space: wrap;
	}
}

.p26eab84-content table tbody td:first-child {
	border-left: 1px solid var(--Neutral-200);
	border-top-left-radius: var(--S);
	border-bottom-left-radius: var(--S);
}

.p26eab84-content table tbody td:last-child {
	border-right: 1px solid var(--Neutral-200);
	border-top-right-radius: var(--S);
	border-bottom-right-radius: var(--S);
}

.p26eab84-content table tbody td img {
	max-width: 24px;
	max-height: 24px;
	margin-right: 14px;
	vertical-align: middle;
}

.p26eab84-content img {
	max-width: 100%;
	height: auto;
}

.p26eab84-content img[data-ref-el='rte-image'] {
	display: block;
}

.p26eab84-content figure.image {
	max-width: 100%;
}

.p26eab84-content picture.p26eab84-rte-img--center,
.p26eab84-content figure.image.align-center {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}

.p26eab84-content img.p26eab84-rte-img--center {
	display: block;
	max-width: 100%;
	margin-inline: auto;
}

.p26eab84-content picture.p26eab84-rte-img--left,
.p26eab84-content img.p26eab84-rte-img--left,
.p26eab84-content figure.image.align-left {
	float: left;
	max-width: 100%;
	margin: 0 16px 16px 0;
}

.p26eab84-content picture.p26eab84-rte-img--right,
.p26eab84-content img.p26eab84-rte-img--right,
.p26eab84-content figure.image.align-right {
	float: right;
	max-width: 100%;
	margin: 0 0 16px 16px;
}

.p26eab84-games__section + .p26eab84-games__section {
	margin-top: -16px;
}

@media (min-width: 768px) {
	.p26eab84-games__section + .p26eab84-games__section {
		margin-top: -48px;
	}
}

.p26eab84-games__heading {
	color: var(--Text-100);
	display: flex;
	gap: 12px;
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.p26eab84-games__heading {
		font-size: 40px;
		line-height: 48px;
		max-width: 62%;
	}
}

.p26eab84-games__heading > * {
	margin: 0 !important;
}

.p26eab84-games__heading img,
.p26eab84-games__heading-icon-wrapper {
	box-sizing: content-box;
	border-radius: var(--S);
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-200) 0%,
		var(--Neutral-200) 100%
	);
	padding: 8px;
	width: 24px;
	height: 24px;
}

@media screen and (min-width: 768px) {
	.p26eab84-games__heading img,
	.p26eab84-games__heading-icon-wrapper {
		width: 48px;
		height: 48px;
		max-width: 32px;
		max-height: 32px;
	}
}

.p26eab84-games__heading-icon {
	display: flex;
	width: 24px;
	height: 24px;
	background: var(--Primary-100);
	vertical-align: middle;
}

@media (min-width: 1200px) {
	.p26eab84-games__heading-icon {
		width: 32px;
		height: 32px;
	}
}

.p26eab84-games__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.p26eab84-games__top .p26eab84-btn--show-all {
	flex-shrink: 0;
}

.p26eab84-games__top .p26eab84-btn--open svg {
	display: none;
}

.p26eab84-games__list {
	display: grid;
	transition: max-height 0.3s ease-in-out;
	column-gap: 16px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.p26eab84-games__list {
		grid-template-columns: 374px 1fr;
	}
}

@media (min-width: 1200px) {
	.p26eab84-games__list {
		grid-template-columns: 1fr 270px 1fr 270px;
	}
}

.p26eab84-games__list[data-games-type='Live Shows'] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.p26eab84-games__list[data-games-type='Live Shows'] {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.p26eab84-games__list[data-games-type='Live Shows'] {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.p26eab84-games__list.expanded + .p26eab84-btn--show-all svg {
	transform: rotate(180deg);
}

.p26eab84-games__group {
	display: grid;
	align-items: flex-start;
	column-gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	height: max-content;
}

@media (min-width: 768px) {
	.p26eab84-games__group {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.p26eab84-games__group {
		max-width: 270px;
	}
}

.p26eab84-games__group .p26eab84-games__list-item-top button {
	max-width: 60px;
}

@media (min-width: 768px) {
	.p26eab84-games__group .p26eab84-games__list-item-top button {
		max-width: 83px;
	}
}

.p26eab84-games__list-item {
	height: calc(100% - 16px);
	width: 100%;
	transition: 0.3s;
	overflow-wrap: break-word;
	display: flex;
	padding: 7px;
	flex-direction: column;
	gap: 4px;
	border-radius: var(--M, 24px);
	border: 1px solid var(--Neutral-200);
	background: var(--Neutral-300);
	margin-bottom: 16px;
}

.p26eab84-games__list-item--hidden {
	display: none;
	opacity: 0;
}

.p26eab84-games__list-item-logo {
	width: 100%;
	height: 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.p26eab84-games__list-item-logo[data-game-type='Live Shows'] {
		width: 152px;
		height: 152px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-games__list-item-logo[data-game-type='Live Shows'] {
		width: 173px;
		height: 173px;
	}
}

.p26eab84-games__list-item-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
	border-radius: var(--S);
}

.p26eab84-games__list-item-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: var(--Text-400);
	gap: 4px;
	position: relative;
}

.p26eab84-games__list-item-top button {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

@media (min-width: 768px) {
	.p26eab84-games__list-item[data-game-type='Live Shows']
		.p26eab84-games__list-item-top
		button {
		max-width: 124px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-games__list-item[data-game-type='Live Shows']
		.p26eab84-games__list-item-top
		button {
		max-width: 145px;
	}
}

.p26eab84-games__list-item--large:first-child
	.p26eab84-games__list-item-top
	button {
	max-width: 270px;
}

.p26eab84-games__list-item-name {
	position: relative;
	overflow-wrap: break-word;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	cursor: pointer;
	text-align: left;
	color: var(--Text-100);
	background: rgba(0, 0, 0, 0);
	width: 100%;
}

.p26eab84-games__list-item picture {
	width: 100%;
}

.p26eab84-games__list-item--hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--Neutral-30060);
	backdrop-filter: blur(8px);
	border-radius: var(--S);
	overflow: hidden;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
}

.p26eab84-games__list-item--hover svg {
	outline: 10px solid var(--Primary-200);
	border-radius: var(--S, 4px);
	background: var(--Primary-200);
}

.p26eab84-games__list-item:hover .p26eab84-games__list-item--hover {
	display: flex;
}

.p26eab84-games__list-item-providers {
	font-size: 12px;
	line-height: 16px;
	color: var(--Text-400);
}

.p26eab84-games__list-item-info {
	display: flex;
}

.p26eab84-games__list-item-info:hover .p26eab84-games__tooltip,
.p26eab84-games__list-item-info .active .p26eab84-games__tooltip {
	display: flex;
}

.p26eab84-games__list-item-info svg {
	flex-shrink: 0;
}

.p26eab84-games__tooltip {
	display: none;
	padding: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	border-radius: var(--M);
	border: 1px solid var(--Neutral-200);
	background: var(--Neutral-300);
	position: absolute;
	z-index: 2;
	top: 34px;
	right: -20px;
	width: 130px;
}

@media (min-width: 768px) {
	.p26eab84-games__tooltip {
		width: 174px;
		right: -28px;
		padding: 12px;
	}
}

.p26eab84-games__tooltip:hover {
	display: flex;
}

.p26eab84-games__tooltip svg {
	color: var(--Neutral-300);
	position: absolute;
	right: 19px;
	top: -11px;
}

.p26eab84-games__tooltip-row {
	display: flex;
	justify-content: space-between;
	gap: 4px;
	color: var(--Text-100);
	line-height: 16px;
	width: 100%;
	font-size: 10px;
}

@media (min-width: 768px) {
	.p26eab84-games__tooltip-row {
		font-size: 12px;
	}
}

.p26eab84-games__tooltip-value,
.p26eab84-games__tooltip-label {
	width: 50%;
	flex-shrink: 0;
}

.p26eab84-games__tooltip-value {
	font-weight: 700;
}

@media (min-width: 768px) {
	.p26eab84-games__section--with-ratings .p26eab84-games__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.p26eab84-games__section--with-ratings .p26eab84-games__list {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.p26eab84-games__section--with-ratings
	.p26eab84-games__list-item-name:has(img) {
	max-height: initial !important;
	aspect-ratio: 1/1;
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-logo {
	height: 100% !important;
	border-radius: var(--S);
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-top {
	gap: 4px;
	align-items: center;
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-top button {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-top svg {
	display: block;
	aspect-ratio: 1/1;
	flex: 0 0 16px;
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-rating,
.p26eab84-games__section--with-ratings .p26eab84-games__list-item-rating-bar {
	margin-left: -1px;
	height: 12px;
	max-width: 100%;
	mask-repeat: repeat;
	mask-position: left center;
	mask-size: 16px 12px;
	mask-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.70312 4.98633L9.82031 5.22168L10.0801 5.25977L14.335 5.87695L11.2559 8.87891L11.0674 9.0625L11.1123 9.32129L11.8389 13.5586L8.0332 11.5586L7.80078 11.4365L7.56836 11.5586L3.76172 13.5586L4.48926 9.32129L4.53418 9.0625L4.3457 8.87891L1.26562 5.87695L5.52148 5.25977L5.78125 5.22168L5.89844 4.98633L7.80078 1.13086L9.70312 4.98633Z' fill='%23FFBB00' stroke='%23FFBB00'/%3E%3C/svg%3E%0A");
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-rating {
	background-color: hsl(from var(--Neutral-50) h s l/30%);
	width: 81px;
}

.p26eab84-games__section--with-ratings .p26eab84-games__list-item-rating-bar {
	display: block;
	background-color: var(--Accent-Yellow-300, #fb0);
}

.p26eab84-providers__heading {
	color: var(--Text-100);
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 12px;
}

@media screen and (min-width: 768px) {
	.p26eab84-providers__heading {
		font-size: 40px;
		line-height: 48px;
		max-width: 62%;
	}
}

.p26eab84-providers__heading > * {
	margin: 0 !important;
}

.p26eab84-providers__heading img {
	box-sizing: content-box;
	border-radius: var(--S);
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-200) 0%,
		var(--Neutral-200) 100%
	);
	padding: 8px;
	width: 24px;
	height: 24px;
}

@media screen and (min-width: 768px) {
	.p26eab84-providers__heading img {
		width: 48px;
		height: 48px;
		max-width: 32px;
		max-height: 32px;
	}
}

.p26eab84-providers__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.p26eab84-providers__top .p26eab84-btn--show-all {
	flex-shrink: 0;
}

.p26eab84-providers__top .p26eab84-btn--open svg {
	display: none;
}

.p26eab84-providers__list {
	display: grid;
	margin: 13px 0 16px;
	gap: 16px;
	transition: max-height 0.3s ease-in-out;
}

@media (min-width: 768px) {
	.p26eab84-providers__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.p26eab84-providers__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.p26eab84-providers__list.expanded + .p26eab84-btn--show-all svg {
	transform: rotate(180deg);
}

.p26eab84-providers__list-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 16px;
	border-radius: var(--M);
	border: 1px solid var(--Neutral-200);
	background: var(--Neutral-300);
	box-shadow: 0 4px 12px 0 rgba(67, 67, 67, 0.1);
	transition: 0.3s;
}

.p26eab84-providers__list-item--hidden {
	display: none;
	opacity: 0;
}

.p26eab84-providers__list-item picture {
	height: 100%;
	display: flex;
}

.p26eab84-providers__list-item-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	width: 100%;
}

.p26eab84-providers__list-item-top img {
	width: 100%;
	max-width: 80px;
	height: 40px;
	object-fit: contain;
}

.p26eab84-providers__list-item-top .p26eab84-btn {
	padding: 6px 11px;
}

.p26eab84-providers__list-item-games {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.p26eab84-providers__list-item-game {
	display: flex;
}

.p26eab84-providers__list-item-game img {
	width: 100%;
	height: 100%;
	border-radius: var(--M);
	aspect-ratio: 1/1;
	object-fit: cover;
	max-width: 74px;
	max-height: 74px;
}

@media (min-width: 1200px) {
	.p26eab84-providers__list-item-game img {
		max-width: 84px;
		max-height: 84px;
	}
}

.p26eab84-faq__heading {
	color: var(--Text-100);
	font-feature-settings: 'liga' off;
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
	.p26eab84-faq__heading {
		font-size: 40px;
		line-height: 48px;
	}
}

.p26eab84-faq__heading img {
	box-sizing: content-box;
	border-radius: var(--S);
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-200) 0%,
		var(--Neutral-200) 100%
	);
	padding: 8px;
	width: 48px;
	height: 48px;
}

@media screen and (min-width: 768px) {
	.p26eab84-faq__heading img {
		max-width: 32px;
		max-height: 32px;
	}
}

.p26eab84-faq__text {
	color: var(--Text-200);
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 16px;
}

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

.p26eab84-accordion__list-item {
	padding: 14px 15px 14px;
	transition: 0.3s;
	border: 2px solid var(--Neutral-200);
	border-radius: var(--M);
	background-color: var(--Neutral-300);
}

.p26eab84-accordion__list-item.active {
	border-color: var(--Primary-100);
	box-shadow:
		0 1px 33px 0 rgba(var(--Primary-200-rgb), 0.2),
		0 1px 22px 0 rgba(var(--Primary-200-rgb), 0.3);
}

.p26eab84-accordion__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	color: var(--Text-100);
}

@media screen and (min-width: 768px) {
	.p26eab84-accordion__title {
		font-size: 20px;
		line-height: 28px;
	}
}

.p26eab84-accordion__title-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 4px;
	transition: 0.3s;
	color: var(--Neutral-100);
}

.p26eab84-accordion__panel {
	visibility: hidden;
	overflow: hidden;
	max-height: 0;
	transition: 0.3s ease;
	opacity: 0;
	color: var(--Text-200);
}

.p26eab84-accordion__content {
	font-size: 16px;
	line-height: 24px;
	padding: 12px 0 0;
}

.p26eab84-accordion__content ol,
.p26eab84-accordion__content ul {
	padding-left: 1.3em;
}

.p26eab84-accordion__list-item.active .p26eab84-accordion__panel {
	visibility: visible;
	max-height: 1000px;
	opacity: 1;
}

.p26eab84-accordion__list-item.active .p26eab84-accordion__title-icon {
	transform: rotate(180deg);
	color: var(--Primary-100);
}

.p26eab84-auditors__heading {
	color: var(--Text-100);
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	margin-bottom: 16px;
	gap: 12px;
}

@media screen and (min-width: 768px) {
	.p26eab84-auditors__heading {
		align-items: center;
		font-size: 40px;
		line-height: 48px;
	}
}

.p26eab84-auditors__heading > * {
	margin: 0 !important;
}

.p26eab84-auditors__heading img {
	box-sizing: content-box;
	border-radius: var(--S);
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--Primary-200) 0%,
		var(--Neutral-200) 100%
	);
	padding: 8px;
	width: 24px;
	height: 24px;
}

@media screen and (min-width: 768px) {
	.p26eab84-auditors__heading img {
		width: 48px;
		height: 48px;
		max-width: 32px;
		max-height: 32px;
	}
}

.p26eab84-auditors__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

@media (min-width: 768px) {
	.p26eab84-auditors__list {
		gap: 16px;
	}
}

.p26eab84-auditors__card {
	display: block;
	padding: 7px 15px;
	align-content: center;
	gap: 8px;
	border-radius: var(--M);
	border: 1px solid var(--Neutral-200);
	background: var(--Neutral-300);
	box-shadow: 0 4px 12px 0 rgba(67, 67, 67, 0.1);
}

.p26eab84-auditors__card img {
	display: block;
	height: 40px;
	width: auto;
}

@media (min-width: 768px) {
	.p26eab84-search__section {
		margin: -40px 0;
	}
}

.p26eab84-search__section:first-of-type {
	margin-top: 40px;
}

.p26eab84-search__form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	margin-bottom: 12px;
}

@media (min-width: 768px) {
	.p26eab84-search__form {
		flex-direction: row;
	}
}

.p26eab84-search__input {
	padding: 12px 12px 12px 50px;
	border-radius: var(--S);
	background:
		url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI1IDI1IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTguMzk5OSAxNy42TDIzLjk5OTkgMjMuMiIgc3Ryb2tlPSIjOTk5OTk5IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgogIDxjaXJjbGUgY3g9IjExLjIiIGN5PSIxMS4yIiByPSI5LjQiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+')
			no-repeat 16px center,
		var(--Neutral-300);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	position: relative;
	color: var(--Text-400);
}

@media (min-width: 768px) {
	.p26eab84-search__input {
		flex: 1;
	}
}

.p26eab84-search__input::placeholder {
	color: var(--Text-400);
}

.p26eab84-search__button {
	padding: 10px 15px;
	border-radius: var(--S);
	border: 1px solid var(--Primary-200);
	background: var(--neutral-30060);
	backdrop-filter: blur(8px);
	display: flex;
	justify-content: center;
	gap: 8px;
	color: var(--Text-100);
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
}

.p26eab84-search__categories {
	display: flex;
	margin: -4px;
	overflow-x: auto;
	scrollbar-width: none;
}

.p26eab84-search__categories::-webkit-scrollbar {
	display: none;
}

.p26eab84-search__category {
	border-radius: var(--S);
	background-color: var(--neutral-30060);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--Text-100);
	margin: 4px;
	text-align: center;
	padding: 7px 15.5px;
	border: 1px solid var(--Primary-200);
	flex-shrink: 0;
	cursor: pointer;
}

.p26eab84-search__category svg {
	margin-right: 8px;
}

.p26eab84-search__category--active {
	background: var(--Primary-200);
}

.p26eab84-search__category--active svg path {
	fill: currentColor;
}

.p26eab84-search__category span {
	display: block;
	width: 20px;
	height: 20px;
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: center;
	background: currentColor;
	margin-right: 8px;
}

.p26eab84-search__section + .p26eab84-cta-button__wrapper {
	margin-top: 0;
}

@media (min-width: 768px) {
	.p26eab84-search__section + .p26eab84-cta-button__wrapper {
		margin-top: -16px;
	}
}

.autocomplete-list {
	border-radius: 4px;
	overflow-y: auto;
	position: absolute;
	background-color: var(--Neutral-300);
	width: 100%;
	z-index: 990;
	top: 54px;
}

.autocomplete-list > * {
	padding: 12px;
	color: var(--Text-200);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	cursor: pointer;
}

.autocomplete-list > *:hover {
	box-shadow: inset 0px 0px 3px var(--Text-300);
	background-color: var(--Neutral-100);
}

.p26eab84-apps {
	border-radius: var(--M);
	border: 1px solid var(--Primary-100);
	background: linear-gradient(
		93deg,
		var(--Primary-400) 35.14%,
		var(--Primary-200) 99.52%
	);
	padding: 15px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.p26eab84-apps__title {
	color: var(--Text-100);
	font-feature-settings: 'liga' off;
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 12px;
}

.p26eab84-apps__text {
	color: var(--Text-200);
	font-feature-settings: 'liga' off;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

.p26eab84-apps__buttons {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.p26eab84-apps__icons {
	position: absolute;
	top: 0;
	right: -25px;
	pointer-events: none;
	touch-action: none;
	z-index: -1;
	width: auto;
	height: 170px;
}

.p26eab84-apps button {
	border-radius: var(--S);
	background: var(--Text-00);
	padding: 10px 15px;
	color: var(--Primary-200);
	text-align: center;
	font-feature-settings: 'liga' off;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	cursor: pointer;
	flex: 1;
}

.p26eab84-apps button svg {
	pointer-events: none;
	touch-action: none;
	display: inline-block;
	vertical-align: sub;
	margin-right: 6px;
	width: 20px;
	height: 20px;
	object-position: center;
	object-fit: contain;
}

@media screen and (min-width: 768px) {
	.p26eab84-apps {
		padding: 39px 179px 39px 39px;
	}

	.p26eab84-apps__title {
		font-size: 40px;
		line-height: 48px;
	}

	.p26eab84-apps__icons {
		height: 348px;
	}

	.p26eab84-apps button {
		font-size: 18px;
		line-height: 26px;
		flex: 0 0 auto;
		padding: 16px 24px;
	}

	.p26eab84-apps button svg {
		width: 24px;
		height: 24px;
	}
}

@media screen and (min-width: 1200px) {
	.p26eab84-apps {
		padding: 63px;
	}
}

.p26eab84-toc {
	display: flex;
	align-items: center;
	padding: 8px 0;
}

@media (min-width: 768px) {
	.p26eab84-toc {
		padding: 16px 0;
	}
}

.p26eab84-toc__title {
	font-size: 14px;
	color: var(--Text-100);
	white-space: nowrap;
}

.p26eab84-toc__links {
	margin-left: 16px;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
	user-select: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
	touch-action: pan-x;
}

.p26eab84-toc__links::-webkit-scrollbar {
	display: none;
}

.p26eab84-toc__links a {
	background-color: var(--Neutral-300);
	color: var(--Text-300);
	padding: 8px 16px;
	flex-shrink: 0;
	display: flex;
	white-space: nowrap;
	font-weight: 700;
	font-size: 16px;
	margin-right: 8px;
	border-radius: var(--M, 8px);
}

.p26eab84-toc__links a:hover {
	background-color: var(--Neutral-200);
	color: var(--Text-100);
}

:root {
	--S: 16px;
	--M: 24px;
	--Primary-400: #00331f;
	--Primary-300: #15523a;
	--Primary-200: #179163;
	--Primary-100: #56d2a0;
	--Primary-50: #a8fbd9;
	--Neutral-400: #181818;
	--Neutral-300: #2b2b2b;
	--neutral-30060: hsl(from var(--Neutral-300) h s l / 0.6);
	--neutral-30080: hsl(from var(--Neutral-300) h s l / 0.8);
	--Neutral-200: #525252;
	--Neutral-100: #868686;
	--Neutral-50: #f0f0f0;
	--Text-00: #f7f7f7;
	--Text-400: #999999;
	--Text-300: #bfbfbf;
	--Text-200: #dbdbdb;
	--Text-100: #f0f0f0;
	--Accent-600: #cbe2f9;
	--Accent-500: #d3ccff;
	--Accent-400: #ff81ff;
	--Accent-300: #ffd2cb;
	--Accent-200: #bbeff3;
	--Accent-100: #ff4d61;
	--Green-400: #018b53;
	--Green-300: #04aa67;
	--Green-200: #09c77a;
	--Green-100: #6af8bf;
	--Yellow-400: #daba04;
	--Yellow-300: #eed129;
	--Yellow-200: #ffe553;
	--Yellow-100: #ffef95;
	--Red-400: #da0408;
	--Red-300: #ee292d;
	--Red-200: #ff5356;
	--Red-100: #ff9597;
}

@font-face {
	font-family: 'Chivo';
	src: url('/assets/fonts/Chivo-Regular-719785991df5b88ca9bff0a48cb6335d.woff2')
		format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Chivo';
	src: url('/assets/fonts/Chivo-Bold-4c986d03d48cb118f81c0f09aa9d737f.woff2')
		format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

.p26eab84-bonus-labeled-auto__section {
	position: relative;
}

.p26eab84-bonus-labeled-auto__section--inner {
	margin: 40px -16px;
}

.p26eab84-bonus-labeled-auto__section + .p26eab84-bonus-labeled__section,
.p26eab84-bonus-labeled-auto__section + .p26eab84-bonus__section {
	margin-top: 24px;
}

.p26eab84-bonus-labeled-auto__content {
	background: linear-gradient(
		93.26deg,
		var(--Primary-400) 35.14%,
		var(--Primary-200) 99.52%
	);
	border: 1px solid var(--Neutral-200);
	padding: 16px;
	border-radius: var(--M);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto__content {
		padding: 24px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus-labeled-auto__content {
		padding: 32px 32px 32px 48px;
		min-height: 270px;
	}

	.p26eab84-bonus-labeled-auto__content:has(
		.p26eab84-bonus-labeled-auto__img-wrapper
	) {
		display: grid;
		column-gap: 32px;
		row-gap: 24px;
		grid-template-columns: 1fr 480px;
		grid-template-rows: min-content 1fr;
		grid-template-areas: 'text img' 'btns img';
		align-items: start;
	}
}

.p26eab84-bonus-labeled-auto {
	position: relative;
	z-index: 1;
	width: 100%;
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto {
		order: 0;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus-labeled-auto {
		grid-area: text;
	}
}

.p26eab84-bonus-labeled-auto__label {
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	display: inline-block;
	color: var(--Text-100);
	border-radius: 24px;
	border: 1px solid var(--Primary-200);
	background: var(--Primary-400);
	padding: 8px 8px;
	box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.14);
	margin-bottom: 24px;
}

@media (min-width: 1200px) {
	.p26eab84-bonus-labeled-auto__label {
		margin-bottom: 0;
	}
}

.p26eab84-bonus-labeled-auto__title {
	font-weight: 700;
	margin-bottom: 9px;
	overflow-wrap: break-word;
	color: var(--Text-200);
	font-size: 24px;
	line-height: 32px;
	text-transform: capitalize;
}

@media (min-width: 1200px) {
	.p26eab84-bonus-labeled-auto__title {
		font-size: 24px;
		line-height: 32px;
	}
}

.p26eab84-bonus-labeled-auto__text {
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	color: var(--Text-100);
	text-transform: capitalize;
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto__text {
		font-size: 48px;
		line-height: 56px;
	}
}

.p26eab84-bonus-labeled-auto__btns {
	display: flex;
	gap: 8px;
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto__btns {
		order: 1;
	}
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto__btns {
		width: 400px;
		grid-area: btns;
	}
}

.p26eab84-bonus-labeled-auto__img-wrapper {
	width: 100%;
	flex-shrink: 0;
	max-width: 100%;
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto__img-wrapper {
		order: 2;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus-labeled-auto__img-wrapper {
		max-width: 480px;
		grid-area: img;
	}
}

.p26eab84-bonus-labeled-auto__img {
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 4px 12px 0 rgba(67, 67, 67, 0.1);
	border: 4px solid var(--neutral-30060);
	max-width: 100%;
	height: 156px;
	width: 100%;
	max-height: 100%;
	overflow: hidden;
	display: block;
}

@media (min-width: 768px) {
	.p26eab84-bonus-labeled-auto__img {
		height: 344px;
	}
}

@media (min-width: 1200px) {
	.p26eab84-bonus-labeled-auto__img {
		aspect-ratio: 2/1;
		height: unset;
	}
}

.p26eab84-bonus-labeled-auto__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p26eab84-cta-button__wrapper {
	margin: 24px auto 40px;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 16px;
}

.p26eab84-cta-button {
	border-radius: var(--S);
	background: var(--Primary-200);
	padding: 15px 24px;
	color: var(--Text-00);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px;
}

@media (min-width: 768px) {
	.p26eab84-cta-button {
		padding: 15px 48px;
	}
}

main > .p26eab84-cta-button__wrapper {
	margin: -14px auto 0;
}

@media (min-width: 768px) {
	main > .p26eab84-cta-button__wrapper {
		margin-top: -54px;
	}
}

.responsible-gaming-square {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.logos-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.logo-item {
	background: linear-gradient(180deg, #227447 0%, #154d2e 100%);
	border: 2px solid #5fd28c;
	border-radius: 8px;
	padding: 14px 20px;
	width: 160px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 6px 16px rgba(0, 0, 0, 0.24);
}

.logo-item:hover {
	background: linear-gradient(180deg, #2a8a54 0%, #1b6039 100%);
	border-color: #8aebb0;
	transform: translateY(-3px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.16),
		0 8px 18px rgba(0, 0, 0, 0.3);
}

.logo-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.logo-item img,
.logo-item svg {
	height: 40px;
	width: auto;
	max-width: 100%;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}
.header__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	list-style: none;
}
.header__list a {
	color: #332900;
}

.header__list a:hover {
	color: #4c3e05;
}
