body {
	--Primary-400: #070707;
	--Primary-200: #c09f05;
	--Primary-600-rgb: #070707;
	--Primary-100: #ffdc00;
	--Text-200: #070707;
	--Text-400: #2b2b2b;
	--Text-300: #525252;
	--Neutral-600: #5e5e5e;
	--Neutral-500: #666666;
	--Text-200: #868686;
	--Text-400: #999999;
	--Text-300: #bfbfbf;
	--Text-200: #dbdbdb;
	--Text-100: #f0f0f0;
	--Accent-600: #ff4d61;
	--Accent-500: #bbeff3;
	--Accent-400: #ffd2cb;
	--Accent-300: #ff81ff;
	--Accent-200: #d3ccff;
	--Accent-100: #b80e31;
}
* {
	box-sizing: border-box;
	outline: none;
	font-family:
		'Inter',
		-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: 32px;
	line-height: 40px;
	letter-spacing: 0.2px;
}

@media screen and (min-width: 768px) {
	h1 {
		font-size: 48px;
		line-height: 60px;
	}
}

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

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

@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;
}

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

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

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

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

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

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

.no-scroll {
	overflow: hidden;
}

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

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

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

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

.p66b1aa9-btn--primary {
	border: none;
	background: var(--Primary-200);
}

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

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

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

.p66b1aa9-btn--fz-12 {
	font-size: 12px;
}

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

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

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

.p66b1aa9-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);
}

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

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

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

.p66b1aa9-carousel__track {
	display: flex;
	overflow-x: scroll;
	padding-bottom: 20px;
}

.p66b1aa9-carousel__track {
	scrollbar-width: auto !important;
}

.p66b1aa9-carousel__track::-webkit-scrollbar {
	height: 8px;
}

.p66b1aa9-carousel__track::-webkit-scrollbar-thumb {
	background: #999;
}

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

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

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

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

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

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

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

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

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

.p66b1aa9-bonus-popup:not([hidden]) {
	position: fixed;
	background: rgba(36, 46, 42, 0.4);
	backdrop-filter: blur(12.5px);
	inset: 0;
	z-index: 1100;
	padding: 16px;
	isolation: isolate;
	display: flex;
	justify-content: center;
	align-items: center;
}

.p66b1aa9-bonus-popup__close {
	cursor: pointer;
	display: block;
	border: none;
	width: 32px;
	height: 32px;
	background-color: var(--Neutral-50);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 6.5L6 18.5'/><path d='M6 6.5L18 18.5'/></svg>")
		no-repeat center;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 6.5L6 18.5'/><path d='M6 6.5L18 18.5'/></svg>")
		no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
}

.p66b1aa9-bonus-popup__content {
	border-radius: 8px;
	border: 1px solid var(--Primary-300);
	background: var(--Neutral-300);
	padding: 32px 27px;
	position: relative;
	text-align: center;
	overflow: hidden;
}

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

.p66b1aa9-bonus-popup__label {
	color: var(--Text-100);
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

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

.p66b1aa9-bonus-popup__text {
	color: var(--Text-200);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.p66b1aa9-bonus-popup__cta {
	border-radius: 4px;
	border: 1px solid var(--Primary-300);
	background: var(--Primary-200);
	color: var(--Text-00);
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	padding: 10px 16px;
	align-content: center;
	display: block;
	min-width: 255px;
	margin: 18px auto 0;
	cursor: pointer;
}

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

.p66b1aa9-bonus-popup img {
	display: block;
	position: absolute;
	pointer-events: none;
	touch-action: none;
	z-index: 0;
}

.p66b1aa9-bonus-popup img.p66b1aa9-bonus-popup__top-img {
	top: -16px;
	left: -16px;
	width: 106px;
	height: 86px;
	object-fit: contain;
}

.p66b1aa9-bonus-popup img.p66b1aa9-bonus-popup__bottom-img {
	bottom: 9px;
	right: 0;
	width: 67px;
	height: 35px;
	object-fit: contain;
}

@media screen and (min-width: 768px) {
	.p66b1aa9-bonus-popup__close {
		top: 16px;
		right: 16px;
	}

	.p66b1aa9-bonus-popup__content {
		max-width: 602px;
		padding: 64px;
	}

	.p66b1aa9-bonus-popup__label {
		font-size: 24px;
		line-height: 32px;
		font-weight: 700;
	}

	.p66b1aa9-bonus-popup__title {
		font-size: 50px;
		line-height: 56px;
		margin: 12px 0;
	}

	.p66b1aa9-bonus-popup__text {
		font-size: 18px;
		line-height: 26px;
		font-weight: 700;
		max-width: 430px;
		margin-right: auto;
		margin-left: auto;
	}

	.p66b1aa9-bonus-popup__cta {
		margin-top: 32px;
	}

	.p66b1aa9-bonus-popup img {
		display: block;
		position: absolute;
		pointer-events: none;
		touch-action: none;
		z-index: 0;
	}

	.p66b1aa9-bonus-popup img.p66b1aa9-bonus-popup__top-img {
		top: 20px;
		left: 0;
		width: 112px;
		height: 114px;
	}

	.p66b1aa9-bonus-popup img.p66b1aa9-bonus-popup__bottom-img {
		bottom: 7px;
		width: 140px;
		height: 73px;
	}
}

.p66b1aa9-chatbot-signin__card,
.p66b1aa9-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;
}

.p66b1aa9-chatbot-message.p66b1aa9-chatbot-message--bot::before,
.p66b1aa9-chatbot-welcome__card::before,
.p66b1aa9-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");
}

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

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

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

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

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

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

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

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

.p66b1aa9-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(.p66b1aa9-chatbot-window[aria-hidden='false'])
		.p66b1aa9-chatbot__trigger {
		display: none;
	}
}

.p66b1aa9-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;
}

@media screen and (min-width: 992px) {
	.p66b1aa9-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);
	}
}

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

.p66b1aa9-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;
}

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

.p66b1aa9-chatbot-window__header button {
	border: none;
	background: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	padding: 8px;
	align-content: center;
	color: var(--Neutral-50);
}

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

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

.p66b1aa9-chatbot[data-active-screen='2']
	.p66b1aa9-chatbot-window__header
	button:first-of-type,
.p66b1aa9-chatbot[data-active-screen='3']
	.p66b1aa9-chatbot-window__header
	button:first-of-type {
	display: initial;
}

.p66b1aa9-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;
}

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

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

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

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

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

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

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

@media screen and (min-width: 992px) {
	.p66b1aa9-chatbot-welcome__title {
		font-size: 48px;
		line-height: 56px;
	}
}

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

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

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

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

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

.p66b1aa9-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");
}

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

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

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

.p66b1aa9-chatbot-signin__card label {
	margin-bottom: 16px;
	color: var(--Text-100);
}

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

.p66b1aa9-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;
}

.p66b1aa9-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;
}

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

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

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

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

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

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

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

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

.p66b1aa9-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;
}

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

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

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

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

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

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

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

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

.p66b1aa9-chatbot-message p {
	padding: 16px;
	border-radius: var(--M);
	border: 1px solid var(--Neutral-200);
	background: var(--neutral-30060, rgba(43, 43, 43, 0.6));
	box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.1);
}

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

@media (max-width: 767px) {
	body:has(header.mobile-menu) {
		overflow: hidden;
	}
}

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
	.p66b1aa9-header__nav {
		position: fixed;
		right: 0;
		width: 100%;
		padding: 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);
	}

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

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

@media (max-width: 767px) {
	.p66b1aa9-header__nav {
		padding: 8px 16px;
		top: 128px;
		height: calc(100% - 128px);
		overflow-y: auto;
		overscroll-behavior: contain;
	}
}

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

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

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

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

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

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

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

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

.p66b1aa9-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;
}

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

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

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

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

.p66b1aa9-header__lang-switcher {
	position: relative;
	display: none;
	padding: 10px 8px 6px;
}

@media (min-width: 1200px) {
	.p66b1aa9-header__lang-switcher {
		display: flex;
	}
}

.p66b1aa9-header__lang-switcher ul {
	max-height: 350px;
	overflow-y: auto;
}

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

.p66b1aa9-header__lang-switcher:hover ul::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

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

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

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

.p66b1aa9-header__lang-item {
	font-size: 14px;
	font-weight: 700;
	display: flex;
	width: 100%;
}

.p66b1aa9-header__lang-item--current {
	padding: 0 8px;
}

.p66b1aa9-header__lang-link {
	display: flex;
	width: 100%;
	padding: 5px 9px;
	transition: 0.3s;
	color: var(--Text-100);
	border-radius: 8px;
}

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

@media (min-width: 1200px) {
	.p66b1aa9-header__lang-link {
		padding: 4px 8px;
	}
}

.p66b1aa9-header__lang-flag {
	display: flex;
}

.p66b1aa9-header__lang-flag img {
	width: 24px;
	height: 24px;
	margin-right: 8px;
	border: 1px solid var(--Neutral-200);
	border-radius: 8px;
}

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

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

.p66b1aa9-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) {
	.p66b1aa9-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(109, 109, 109, 0.15);
		gap: 2px;
	}
}

.p66b1aa9-header__lang-nav {
	width: 100%;
}

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

.p66b1aa9-header__lang-nav-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--Neutral-300);
}

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

.p66b1aa9-header__lang-nav-item--current {
	display: flex;
}

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

.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 {
		font-weight: 400;
	}

	.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;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1200px) {
	.p66b1aa9-footer__payments {
		padding-top: 18px;
	}
}

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

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

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

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

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

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

.p66b1aa9-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);
}

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

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

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

.p66b1aa9-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);
}

.p66b1aa9-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);
}

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

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

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

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

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

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

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

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

.p66b1aa9-bonus__section {
	position: relative;
	min-height: 270px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

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

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

.p66b1aa9-bonus__section::after {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: linear-gradient(
		90deg,
		var(--Neutral-400) 0%,
		var(--neutral-30060) 100%
	);
}

.p66b1aa9-bonus {
	padding-top: 96px;
	padding-bottom: 32px;
}

@media screen and (min-width: 1200px) {
	.p66b1aa9-bonus {
		padding-top: 200px;
	}
}

.p66b1aa9-bonus__container {
	position: relative;
	z-index: 1;
}

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

@media screen and (min-width: 768px) {
	.p66b1aa9-bonus__title {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-bonus__title {
		font-size: 40px;
		line-height: 48px;
		margin-bottom: 12px;
	}
}

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

@media screen and (min-width: 768px) {
	.p66b1aa9-bonus__text {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-bonus__text {
		font-size: 72px;
		line-height: 88px;
		margin-bottom: 16px;
	}
}

.p66b1aa9-bonus__link {
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
	width: max-content;
	padding: 14px 23px;
	transition: 0.3s;
	color: var(--Text-00);
	border-radius: var(--S);
	border: none;
	background: var(--Primary-200);
	gap: 8px;
	cursor: pointer;
}

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

.p66b1aa9-bonus__img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
}

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

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

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

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

.p66b1aa9-content h1,
.p66b1aa9-content h1 > * {
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0.2px;
}

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

.p66b1aa9-content h2,
.p66b1aa9-content h2 > * {
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: -0.8px;
}

@media screen and (min-width: 768px) {
	.p66b1aa9-content h2,
	.p66b1aa9-content h2 > * {
		font-size: 36px;
		line-height: 45px;
	}
}

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

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

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

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

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

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

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

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

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

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

.p66b1aa9-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);
}

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

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

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

.p66b1aa9-content .table-responsive {
	overflow-x: auto;
}

.p66b1aa9-content table {
	display: block;
	overflow-x: auto;
	width: 100%;
	margin-top: 16px;
	padding-bottom: 22px;
	border-collapse: collapse;
	overflow-wrap: break-word;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

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

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

.p66b1aa9-content table thead th:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.p66b1aa9-content table thead th:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.p66b1aa9-content table tbody tr:first-child td {
	padding-top: 16px;
}

.p66b1aa9-content table tbody tr:not(:last-child) {
	border-bottom: 1px solid var(--Neutral-300);
}

.p66b1aa9-content table tbody td {
	width: 150px;
	padding: 12px 18px;
	white-space: nowrap;
}

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

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

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

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

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

.p66b1aa9-games__heading {
	color: var(--Text-100);
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	gap: 12px;
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
}

@media screen and (min-width: 768px) {
	.p66b1aa9-games__heading {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-games__heading {
		font-size: 40px;
		line-height: 48px;
	}
}

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

.p66b1aa9-games__heading img {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
	object-position: center;
}

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

.p66b1aa9-games__heading-icon-wrapper {
	display: inline-block;
}

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

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

.p66b1aa9-games__list {
	display: grid;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.p66b1aa9-games__list {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-games__list {
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}
}

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

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

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

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

.p66b1aa9-games__list-item {
	display: flex;
	flex-direction: column;
	max-height: 300px;
	transition: 0.3s;
	gap: 4px;
	overflow-wrap: break-word;
}

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

.p66b1aa9-games__list-item-logo {
	display: block;
	width: 100%;
	height: 100px;
}

.p66b1aa9-games__list-item-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 4px;
}

.p66b1aa9-games__list-item[data-game-type='Slots']
	.p66b1aa9-games__list-item-logo {
	height: 104px;
}

@media (min-width: 768px) {
	.p66b1aa9-games__list-item[data-game-type='Slots']
		.p66b1aa9-games__list-item-logo {
		height: 125px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-games__list-item[data-game-type='Slots']
		.p66b1aa9-games__list-item-logo {
		height: 138px;
	}
}

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

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

.p66b1aa9-games__list-item[data-game-type='Slots']
	.p66b1aa9-games__list-item-name {
	max-height: 104px;
}

@media (min-width: 768px) {
	.p66b1aa9-games__list-item[data-game-type='Slots']
		.p66b1aa9-games__list-item-name {
		max-height: 125px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-games__list-item[data-game-type='Slots']
		.p66b1aa9-games__list-item-name {
		max-height: 138px;
	}
}

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

.p66b1aa9-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: 4px;
	overflow: hidden;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
}

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

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

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

.p66b1aa9-games .p66b1aa9-btn {
	margin-top: 16px;
}

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

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

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

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

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

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

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

.p66b1aa9-games__section--with-ratings .p66b1aa9-btn {
	padding-top: 7px;
	padding-bottom: 7px;
	line-height: 16px;
}

.p66b1aa9-games__section--with-ratings .p66b1aa9-games__list-item-rating,
.p66b1aa9-games__section--with-ratings .p66b1aa9-games__list-item-rating-bar {
	height: 16px;
	max-width: 100%;
	mask-repeat: repeat;
	mask-position: left center;
	mask-size: 20px 16px;
	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");
}

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

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

.p66b1aa9-providers__heading {
	color: var(--Text-100);
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
	.p66b1aa9-providers__heading {
		font-size: 32px;
		line-height: 40px;
	}
}

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

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

.p66b1aa9-providers__heading img {
	max-width: 24px;
	max-height: 24px;
	vertical-align: middle;
	object-fit: contain;
	object-position: center;
}

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

.p66b1aa9-providers__list {
	display: grid;
	overflow: hidden;
	margin: 13px 0 16px;
	gap: 16px;
	grid-template-columns: repeat(2, 1fr);
}

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

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

.p66b1aa9-providers__list-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	padding: 16px;
	text-align: center;
	border-radius: 4px;
	background: var(--Neutral-300);
	transition: 0.3s;
}

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

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

.p66b1aa9-providers__list-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

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

.p66b1aa9-faq__heading img {
	max-width: 24px;
	max-height: 24px;
	object-fit: contain;
	object-position: center;
}

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

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

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

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

.p66b1aa9-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);
}

.p66b1aa9-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) {
	.p66b1aa9-accordion__title {
		font-size: 20px;
		line-height: 28px;
	}
}

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

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

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

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

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

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

.p66b1aa9-auditors__heading {
	color: var(--Text-100);
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	gap: 12px;
}

@media screen and (min-width: 768px) {
	.p66b1aa9-auditors__heading {
		font-size: 32px;
		line-height: 40px;
	}
}

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

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

.p66b1aa9-auditors__heading img {
	max-width: 24px;
	max-height: 24px;
	vertical-align: middle;
	object-fit: contain;
	object-position: center;
}

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

.p66b1aa9-auditors__section .p66b1aa9-carousel {
	padding: 6px 0;
}

@media (min-width: 768px) {
	.p66b1aa9-auditors__section .p66b1aa9-carousel {
		padding: 0 24px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-auditors__section .p66b1aa9-carousel {
		padding: 0 24px 5px;
	}
}

.p66b1aa9-auditors__section .p66b1aa9-carousel__viewport {
	height: 40px;
}

.p66b1aa9-auditors__section .p66b1aa9-carousel__slide {
	flex: 0 0 33.3333333333%;
	height: 40px;
	padding: 0 8px;
}

@media (min-width: 768px) {
	.p66b1aa9-auditors__section .p66b1aa9-carousel__slide {
		flex: 0 0 20%;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-auditors__section .p66b1aa9-carousel__slide {
		flex: 0 0 12.5%;
	}
}

.p66b1aa9-auditors__section .p66b1aa9-carousel__slide picture {
	width: auto;
	height: 100%;
	display: block;
}

.p66b1aa9-auditors__section .p66b1aa9-carousel__slide picture img {
	display: block;
	width: auto;
	height: 100%;
}

.p66b1aa9-auditors__section .p66b1aa9-carousel__dots {
	margin-top: 20px;
}

@media (min-width: 1200px) {
	.p66b1aa9-auditors__section .p66b1aa9-carousel__dots {
		margin-top: 30px;
	}
}

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

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

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

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

.p66b1aa9-search__input {
	padding: 12px 12px 12px 50px;
	border-radius: 4px;
	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-200);
}

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

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

.p66b1aa9-search__button {
	padding: 12px 20px;
	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: 16px;
	font-style: normal;
	font-weight: 700;
}

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

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

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

.p66b1aa9-search__category img,
.p66b1aa9-search__category svg {
	margin-right: 8px;
}

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

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

@media (min-width: 768px) {
	.p66b1aa9-search__section + .p66b1aa9-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);
}

.p66b1aa9-reviews__heading {
	color: var(--Text-100);
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

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

.p66b1aa9-reviews__heading > * {
	margin: 0 !important;
}

.p66b1aa9-reviews__heading img {
	max-width: 24px;
	max-height: 24px;
	vertical-align: middle;
	object-fit: contain;
	object-position: center;
}

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

.p66b1aa9-reviews__list {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	list-style: none;
	padding-bottom: 10px;
}

.p66b1aa9-reviews__list::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

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

.p66b1aa9-reviews__list::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0);
}

.p66b1aa9-reviews li {
	flex: 0 0 auto;
	width: 304px;
}

@media (min-width: 768px) {
	.p66b1aa9-reviews li {
		width: 400px;
	}
}

@media (min-width: 1200px) {
	.p66b1aa9-reviews li {
		width: calc(33.3333% - 16px);
	}
}

.p66b1aa9-review-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	border-radius: var(--M);
	padding: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	min-width: 304px;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	.p66b1aa9-review-card {
		padding: 20px 24px;
	}
}

.p66b1aa9-review-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.p66b1aa9-review-card__user {
	display: flex;
	flex: 1;
}

.p66b1aa9-review-card__user--trustpilot {
	padding-bottom: 16px;
	border-bottom: 1px solid #ebebeb;
}

.p66b1aa9-review-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: var(--M);
	flex-shrink: 0;
	margin-right: 16px;
}

.p66b1aa9-review-card__avatar img {
	border-radius: var(--M);
	aspect-ratio: 1/1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p66b1aa9-review-card__avatar--placeholder {
	background: var(--Primary-200);
	color: var(--Text-00);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 600;
}

.p66b1aa9-review-card__user-info {
	flex: 1;
	min-width: 0;
}

.p66b1aa9-review-card__name {
	color: #171717;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	text-transform: capitalize;
}

.p66b1aa9-review-card__meta {
	color: #484848;
	font-size: 16px;
	line-height: 24px;
}

.p66b1aa9-review-card__rating-date {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-top: 16px;
	margin-bottom: 16px;
}

.p66b1aa9-review-card__rating {
	height: 16px;
	mask-repeat: repeat;
	mask-position: left center;
	mask-size: 20px 16px;
	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");
}

.p66b1aa9-review-card__rating {
	background-color: hsl(from var(--Neutral-50) h s l/30%);
	width: 98px;
}

.p66b1aa9-review-card__rating-bar {
	display: block;
	background-color: var(--Accent-Yellow-300, #fb0);
	height: 16px;
	mask-repeat: repeat;
	mask-position: left center;
	mask-size: 20px 16px;
	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");
}

.p66b1aa9-review-card__rating-trust {
	position: relative;
	width: 128px;
	height: 24px;
	background: repeating-linear-gradient(
		to right,
		#dcdce6 0 24px,
		transparent 24px 26px
	);
	--rating-color: hsla(160, 100%, 36%, 1);
}

.p66b1aa9-review-card__rating-trust[data-rating^='4.'][data-rating$='5'],
.p66b1aa9-review-card__rating-trust[data-rating='5'],
.p66b1aa9-review-card__rating-trust[data-rating='4.5'] {
	--rating-color: hsla(160, 100%, 36%, 1);
}

.p66b1aa9-review-card__rating-trust[data-rating^='4.'][data-rating$='0'],
.p66b1aa9-review-card__rating-trust[data-rating^='4.'][data-rating$='1'],
.p66b1aa9-review-card__rating-trust[data-rating^='4.'][data-rating$='2'],
.p66b1aa9-review-card__rating-trust[data-rating^='4.'][data-rating$='3'],
.p66b1aa9-review-card__rating-trust[data-rating^='4.'][data-rating$='4'],
.p66b1aa9-review-card__rating-trust[data-rating='4'] {
	--rating-color: hsla(89, 85%, 44%, 1);
}

.p66b1aa9-review-card__rating-trust[data-rating^='3.'],
.p66b1aa9-review-card__rating-trust[data-rating='3'] {
	--rating-color: hsla(48, 100%, 50%, 1);
}

.p66b1aa9-review-card__rating-trust[data-rating^='1.'],
.p66b1aa9-review-card__rating-trust[data-rating^='2.'],
.p66b1aa9-review-card__rating-trust[data-rating='1'],
.p66b1aa9-review-card__rating-trust[data-rating='2'] {
	--rating-color: hsla(27, 100%, 57%, 1);
}

.p66b1aa9-review-card__rating-trust::before {
	content: '';
	position: absolute;
	inset: 0;
	max-width: 128px;
	background: repeating-linear-gradient(
		to right,
		var(--rating-color) 0 24px,
		transparent 24px 26px
	);
	width: calc(var(--rating) / 5 * 100%);
}

.p66b1aa9-review-card__rating-trust::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="16" viewBox="0 0 18 16" fill="none"><path d="M8.66758 12.175L12.3176 11.25L13.8426 15.95L8.66758 12.175ZM17.0676 6.1H10.6426L8.66758 0.0500031L6.69258 6.1H0.267578L5.46758 9.85L3.49258 15.9L8.69258 12.15L11.8926 9.85L17.0676 6.1Z" fill="white"/></svg>')
		center/26px 16px repeat-x;
}

.p66b1aa9-review-card__rating-google {
	display: flex;
	gap: 8px;
	align-items: center;
}

.p66b1aa9-review-card__date {
	color: #171717;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}

.p66b1aa9-review-card__content {
	margin-top: 16px;
}

.p66b1aa9-review-card__content--trustpilot {
	padding-bottom: 16px;
	border-bottom: 1px solid #ebebeb;
}

.p66b1aa9-review-card__text {
	overflow: hidden;
	color: #3c3c3c;
	font-size: 16px;
	line-height: 24px;
}

.p66b1aa9-review-card__text:not(:has(a)) {
	overflow: auto;
	max-height: 144px;
}

@media (min-width: 1200px) {
	.p66b1aa9-review-card__text:not(:has(a)) {
		max-height: 120px;
	}
}

.p66b1aa9-review-card__see-more {
	color: #4f49ff;
	font-size: 16px;
	line-height: 24px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.p66b1aa9-review-card__actions {
	margin-top: 16px;
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.p66b1aa9-review-card__actions-group {
	display: flex;
	gap: 16px;
}

.p66b1aa9-review-card__action {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #484848;
	font-size: 12px;
	line-height: 16px;
}

.p66b1aa9-apps {
	border-radius: var(--M);
	border: 1px solid var(--Primary-100);
	background: var(
		--Casino-Gradient-Main,
		linear-gradient(90deg, var(--Primary-400) 0%, var(--Primary-200) 100%)
	);
	padding: 15px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

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

@media screen and (min-width: 768px) {
	.p66b1aa9-apps__title {
		font-size: 32px;
		line-height: 40px;
	}
}

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

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

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

.p66b1aa9-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;
}

.p66b1aa9-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) {
	.p66b1aa9-apps {
		padding: 39px 179px 39px 39px;
	}

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

	.p66b1aa9-apps__icons {
		height: 348px;
	}

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

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

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

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

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

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

.p66b1aa9-toc__links {
	margin-left: 16px;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}

.p66b1aa9-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);
}

.p66b1aa9-toc__links a:hover {
	background-color: var(--Neutral-200);
	color: var(--Text-100);
}
:root {
	--S: 4px;
	--M: 8px;
	--Primary-400: #00331f;
	--Primary-300: #15523a;
	--Primary-200: #179163;
	--Primary-100: #56d2a0;
	--Primary-50: #a8fbd9;
	--Neutral-400: #0d0d0d;
	--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: 'Inter';
	src: url('/assets/fonts/Inter-Regular-a1f0ef0a29e900e333f5c7dc41612c8e.woff2')
		format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('/assets/fonts/Inter-Bold-64a1a969c6d497188ec2db849572b34e.woff2')
		format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
.p66b1aa9-bonus-labeled__section {
	position: relative;
	min-height: 270px;
	padding: 16px 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.p66b1aa9-bonus-labeled__section--inner {
	margin: 40px 0;
}

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

@media screen and (min-width: 768px) {
	.p66b1aa9-bonus-labeled__section {
		padding: 16px;
	}
}

.p66b1aa9-bonus-labeled__section::before {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 100%;
	translate: -50% 0;
	content: '';
	background: linear-gradient(90deg, #0d0d0d 0%, rgba(24, 24, 24, 0.5) 100%);
}

.p66b1aa9-bonus-labeled {
	position: relative;
	z-index: 1;
}

.p66b1aa9-bonus-labeled__label {
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	display: inline-block;
	padding: 3px 4px 3px 7px;
	color: var(--Text-00);
	border: 1px solid var(--Accent-100);
	border-radius: 4px;
	background: var(--Accent-100);
}

.p66b1aa9-bonus-labeled__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	margin-top: 31px;
	margin-bottom: 5px;
	color: var(--Text-100);
	overflow-wrap: break-word;
}

@media (min-width: 1200px) {
	.p66b1aa9-bonus-labeled__title {
		font-size: 20px;
		line-height: 28px;
		margin-top: 45px;
	}
}

.p66b1aa9-bonus-labeled__text {
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	max-width: 228px;
	min-height: 80px;
	margin-bottom: 28px;
	color: var(--Primary-100);
}

@media (min-width: 1200px) {
	.p66b1aa9-bonus-labeled__text {
		font-size: 48px;
		line-height: 56px;
		max-width: unset;
		margin-bottom: 10px;
	}
}

.p66b1aa9-bonus-labeled__img {
	width: 100vw;
	height: 100%;
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 50%;
	translate: -50% 0;
	max-width: initial !important;
}

.p66b1aa9-bonus-labeled__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.p66b1aa9-bonus-labeled__btns {
	display: flex;
	max-width: 343px;
	gap: 8px;
}

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

.p66b1aa9-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;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov.s {
	max-width: 300px;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.author-block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.author-block .img-cov {
	max-width: 250px;
	min-width: 150px;
}

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

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

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

@media (max-width: 768px) {
	.author-block {
		flex-direction: column;
	}
}

.footer__list {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}
