.swiffy-slider {
	position: relative;
	display: block;
	width: 100%;
	--swiffy-slider-snap-align: center;
	--swiffy-slider-item-width: 100%;
	--swiffy-slider-item-gap: 1rem;
	--swiffy-slider-item-reveal: 0rem;
	--swiffy-slider-item-ratio: 2/1;
	--swiffy-slider-item-count: 1;
	--swiffy-slider-nav-light: #fff;
	--swiffy-slider-nav-dark: #333;
	--swiffy-slider-nav-zoom: 1;
	--swiffy-slider-track-opacity: 0.1;
	--swiffy-slider-track-height: 0;
	--swiffy-slider-nav-outside-size: 3.5rem;
	--swiffy-slider-indicator-outside-size: 1.5rem;
	--swiffy-slider-animation-duration: 0.75s;
	--swiffy-slider-animation-delay: 0s;
	--swiffy-slider-animation-timing: ease-in-out;
}

.swiffy-slider,
.swiffy-slider::after,
.swiffy-slider::before {
	box-sizing: border-box;
}

.swiffy-slider ::-webkit-scrollbar {
	height: var(--swiffy-slider-track-height);
}

.swiffy-slider ::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, var(--swiffy-slider-track-opacity));
}

.swiffy-slider ::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.4);
	border-radius: 1rem;
}

.swiffy-slider ::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.6);
}

.slider-container {
	--swiffy-slider-item-gap-totalwidth: calc(
		var(--swiffy-slider-item-gap) * (var(--swiffy-slider-item-count) - 1)
	);
	--swiffy-slider-item-width: calc(
		(
				100% - var(--swiffy-slider-item-reveal) -
					var(--swiffy-slider-item-gap-totalwidth)
			) / var(--swiffy-slider-item-count)
	);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	display: grid;
	align-items: center;
	height: 100%;
	grid: auto/auto-flow max-content;
	grid-auto-rows: 100%;
	grid-auto-columns: var(--swiffy-slider-item-width);
	grid-auto-flow: column;
	grid-gap: var(--swiffy-slider-item-gap);
	list-style: none;
	margin: 0;
	padding: 0;
	scrollbar-width: none;
	scrollbar-color: rgba(0, 0, 0, 0.4)
		rgba(0, 0, 0, var(--swiffy-slider-track-opacity));
	background-clip: padding-box;
}

.slider-container > * {
	/*The slides*/
	scroll-snap-align: var(--swiffy-slider-snap-align);
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-item-helper .slider-container > * {
	background-size: cover;
	background-color: #e1e1e1;
	background-position: 50% 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider-item-helper:not(.slider-item-ratio) .slider-container > * {
	min-height: 20rem;
}

.slider-item-ratio .slider-container > * > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-item-ratio-contain .slider-container > * > * {
	object-fit: contain;
}

.slider-item-ratio .slider-container > *::after {
	display: block;
	padding-top: calc(100% / (var(--swiffy-slider-item-ratio)));
	content: '';
}

.slider-item-ratio-32x9 {
	--swiffy-slider-item-ratio: 32/9;
}

.slider-item-ratio-21x9 {
	--swiffy-slider-item-ratio: 21/9;
}

.slider-item-ratio-16x9 {
	--swiffy-slider-item-ratio: 16/9;
}

.slider-item-ratio-4x3 {
	--swiffy-slider-item-ratio: 4/3;
}

.slider-item-ratio-2x1 {
	--swiffy-slider-item-ratio: 2/1;
}

.slider-item-ratio-1x1 {
	--swiffy-slider-item-ratio: 1/1;
}

.slider-item-ratio-3x4 {
	--swiffy-slider-item-ratio: 3/4;
}

.slider-nav-scrollbar {
	--swiffy-slider-track-height: 0.5rem;
}

.slider-nav-scrollbar .slider-container {
	scrollbar-width: thin;
}

.slider-nav-nodelay .slider-container {
	scroll-behavior: auto;
}

.slider-indicators {
	position: absolute;
	right: 2rem;
	bottom: 0;
	left: 2rem;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-bottom: 1rem;
	list-style: none;
}

.slider-nav-scrollbar .slider-indicators {
	margin-bottom: calc(1rem + var(--swiffy-slider-track-height));
}

.slider-indicators > *.active {
	opacity: 1;
}

.swiffy-slider.slider-indicators-outside .slider-nav {
	margin-bottom: var(--swiffy-slider-indicator-outside-size);
}

.swiffy-slider.slider-indicators-outside {
	padding-bottom: var(--swiffy-slider-indicator-outside-size);
}

.swiffy-slider.slider-indicators-outside.slider-indicators,
.swiffy-slider.slider-indicators-outside .slider-indicators {
	margin-bottom: 0;
}

.slider-indicators > * {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 2rem;
	height: 0.2rem;
	padding: 0;
	border: 0.4rem solid transparent;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	opacity: 0.5;
	transition: opacity 0.4s ease;
}

.slider-indicators-square.slider-indicators > *,
.slider-indicators-square .slider-indicators > * {
	width: 0.5rem;
	height: 0.5rem;
	border: 0.4rem solid transparent;
}

.slider-indicators-round.slider-indicators > *,
.slider-indicators-round .slider-indicators > * {
	width: 0.5rem;
	height: 0.5rem;
	border: 0.4rem solid transparent;
	border-radius: 50%;
}

.slider-indicators-highlight.slider-indicators > *.active,
.slider-indicators-highlight .slider-indicators > *.active {
	border: 0.33rem solid transparent;
	padding: 0.07rem;
}

.slider-nav {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	visibility: hidden;
	opacity: 0.8;
	transition: visibility 0.1s, opacity 0.2s linear;
	margin-bottom: var(--swiffy-slider-track-height);
	display: flex;
	align-items: center;
	padding: 0 0.5rem;
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
	transform: scale(var(--swiffy-slider-nav-zoom));
}

.slider-nav::before {
	position: absolute;
	content: '';
	padding: 0.5rem;
	width: 3rem;
	height: 3rem;
}

.slider-nav::after {
	content: '';
	mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'></path></svg>");
	mask-size: cover;
	background-color: var(--swiffy-slider-nav-light);
	background-origin: content-box;
	width: 3rem;
	height: 3rem;
}

.slider-nav-arrow .slider-nav::after {
	mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z'></path></svg>");
}

.slider-nav-chevron .slider-nav::after {
	mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M9.224 1.553a.5.5 0 0 1 .223.67L6.56 8l2.888 5.776a.5.5 0 1 1-.894.448l-3-6a.5.5 0 0 1 0-.448l3-6a.5.5 0 0 1 .67-.223z'></path></svg>");
}

.slider-nav-caret .slider-nav::after {
	mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='M10 12.796V3.204L4.519 8 10 12.796zm-.659.753-5.48-4.796a1 1 0 0 1 0-1.506l5.48-4.796A1 1 0 0 1 11 3.204v9.592a1 1 0 0 1-1.659.753z'></path></svg>");
}

.slider-nav-caretfill .slider-nav::after {
	mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'></path></svg>");
}

.swiffy-slider:hover .slider-nav {
	visibility: visible;
}

.swiffy-slider.slider-nav-autohide.slider-item-first-visible
	.slider-nav:not(.slider-nav-next) {
	visibility: hidden;
}

.swiffy-slider.slider-nav-autohide.slider-item-last-visible
	.slider-nav.slider-nav-next {
	visibility: hidden;
}

.slider-nav-outside .slider-container {
	margin: 0 var(--swiffy-slider-nav-outside-size);
}

.slider-nav-outside .slider-nav {
	padding: 0;
}

.swiffy-slider .slider-nav:hover {
	opacity: 1;
}

.slider-nav-square .slider-nav {
	padding: 0;
}

.slider-nav-round .slider-nav::before,
.slider-nav-square .slider-nav::before {
	background-color: var(--swiffy-slider-nav-light);
}

.slider-nav-round .slider-nav::after,
.slider-nav-square .slider-nav::after {
	background-color: var(--swiffy-slider-nav-dark);
	width: 2rem;
	height: 2rem;
	margin: 0.5rem;
}

.slider-nav-round .slider-nav::before {
	border-radius: 50%;
}

.slider-nav-round .slider-nav::after {
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' %3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'%3E%3C/path%3E%3C/svg%3E");
}

.slider-nav-dark .slider-nav::after {
	background-color: var(--swiffy-slider-nav-dark);
}

.slider-nav-dark.slider-nav-round .slider-nav::before,
.slider-nav-dark.slider-nav-square .slider-nav::before {
	background-color: var(--swiffy-slider-nav-dark);
}

.slider-nav-dark.slider-nav-round .slider-nav::after,
.slider-nav-dark.slider-nav-square .slider-nav::after {
	background-color: var(--swiffy-slider-nav-light);
}

.slider-nav-sm {
	--swiffy-slider-nav-zoom: 0.75;
	--swiffy-slider-nav-outside-size: 2.5rem;
}

.slider-nav.slider-nav-next::after {
	transform: rotate(180deg);
}

.slider-nav.slider-nav-next {
	right: 0;
	left: unset;
}

.slider-nav-visible .slider-nav {
	visibility: visible;
}

.slider-nav-dark .slider-nav {
	opacity: 0.6;
}

.slider-indicators-dark.slider-indicators > *,
.slider-indicators-dark .slider-indicators > * {
	filter: invert(1);
}

.slider-item-snapstart {
	--swiffy-slider-snap-align: start;
}

.slider-item-nosnap {
	--swiffy-slider-snap-align: unset;
}

.slider-item-nogap {
	--swiffy-slider-item-gap: 0rem;
}

.slider-item-reveal {
	--swiffy-slider-item-reveal: 8rem;
}

.slider-item-snapstart.slider-item-reveal {
	--swiffy-slider-item-reveal: 4rem;
}

.slider-item-show2 {
	--swiffy-slider-item-count: 2;
}

.slider-item-show3 {
	--swiffy-slider-item-count: 3;
}

.slider-item-show4 {
	--swiffy-slider-item-count: 4;
}

.slider-item-show5 {
	--swiffy-slider-item-count: 5;
}

.slider-item-show6 {
	--swiffy-slider-item-count: 6;
}

.slider-nav-mousedrag .slider-container {
	cursor: grab;
}

.slider-nav-mousedrag.dragging .slider-container {
	scroll-snap-type: unset;
	scroll-behavior: unset;
	user-select: none;
}

.slider-nav-mousedrag.dragging .slider-nav {
	visibility: hidden;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote {
	margin: 0;
}

body {
	font-family: 'Rubik', sans-serif;
	background-color: #030b25;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.no-scroll {
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1344px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

.btn {
	border-radius: 8px;
	border: 0;
	text-decoration: none;
}

.btn-icon {
	background-color: transparent;
	border: 0;
	padding: 0;
}

.btn-primary {
	display: block;
	width: 100%;
	max-width: max-content;
	background-color: #fdd835;
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	font-weight: 900;
	color: #000a12;
	line-height: 1.7;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.06em;
	padding: 9px 27px 10px;
	cursor: pointer;
	transition: opacity 0.3s, background-color 0.3s;
}

.btn-primary:hover,
.btn-primary:focus {
	/* background-image: none; */
	background: #ffff7b;
}

.btn-primary:active {
	background-image: none;
	background-color: #ffff7b;
}

.btn-primary:disabled {
	opacity: 0.5;
}

.btn-secondary {
	display: block;
	width: 100%;
	max-width: max-content;
	background-color: rgba(182, 189, 204, 0.2);
	font-family: 'Roboto Slab', serif;
	font-size: 14px;
	font-weight: 900;
	color: #33d5ff;
	line-height: 1.7;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.06em;
	padding: 8px 16px;
	cursor: pointer;
	transition: opacity 0.3s, background-color 0.3s;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: rgba(182, 189, 204, 0.4);
}

.btn-secondary:active {
	background-color: rgba(182, 189, 204, 0.1);
}

.btn-secondary:disabled {
	opacity: 0.5;
}

.btn-secondary--little {
	font-size: 12px;
	line-height: 16px;
	padding: 8px 16px;
}

.btn-secondary__text-desktop {
	display: none;
}

.btn-tertiary {
	display: block;
	width: 100%;
	max-width: max-content;
	background-color: #a153ff;
	font-family: 'Roboto Slab', serif;
	font-size: 12px;
	font-weight: 900;
	color: #fff;
	line-height: 1.35;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.06em;
	padding: 8px 16px;
	cursor: pointer;
	transition: opacity 0.3s, background-color 0.3s;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
	background-color: #703bf5;
}

.btn-tertiary:active {
	background-color: #c395ff;
}

.btn-tertiary:disabled {
	background-color: #703bf5;
	opacity: 0.5;
}

.btn-slider {
	display: block;
	width: 48px;
	height: 48px;
	background-color: #a153ff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	font-size: 0;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.3s, background-color 0.3s;
}

.btn-slider:hover,
.btn-slider:focus {
	background-color: #703bf5;
}

.btn-slider:active {
	background-color: #c395ff;
}

.btn-slider:disabled {
	background-color: #703bf5;
	opacity: 0.5;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #1a2646;
	padding: 12px 0;
	z-index: 10;
}

.header__container {
	display: flex;
	align-items: center;
	padding-left: 8px;
	padding-right: 23px;
}

.header__burger {
	width: 40px;
	height: 40px;
	background-image: url('/assets/img/icons/burger.svg');
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	margin-left: 14px;
}

.header__buttons {
	display: flex;
	justify-content: center;
	padding: 0 8px;
	margin-top: auto;
}

.header__login,
.header__signup {
	line-height: 24px;
	padding: 8px 16px;
	max-width: unset;
}

.header__login {
	margin-right: 8px;
}

.menu {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	background-color: #1a2646;
	z-index: 1;
	max-width: 320px;
	height: 100vh;
	padding: 16px 0 24px;
	transform: translateX(100%);
	transition: transform 0.3s 0.3s;
}

.menu::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transform: translateX(-320px);
	transition: opacity 0.3s, visibility 0.3s;
}

.menu__active {
	transform: translateX(0);
	transition: 0.3s transform;
}

.menu__active::before {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s 0.3s, visibility 0.3s 0.3s;
}

.menu__text {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	padding-left: 16px;
	margin-bottom: 16px;
}

.menu__close {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 24px;
	height: 24px;
	font-size: 0;
	cursor: pointer;
	z-index: 5;
}

.menu__close::after,
.menu__close::before {
	content: '';
	position: absolute;
	top: 45%;
	left: 1px;
	width: 22px;
	height: 3px;
	border-radius: 3px;
	background-color: #fff;
	transform-origin: center;
}

.menu__close::after {
	transform: rotate(45deg);
}

.menu__close::before {
	transform: rotate(-45deg);
}

.menu__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	margin-bottom: 16px;
}

.menu__item {
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
}

.menu__item--dropdown {
	display: flex;
	align-items: center;
	padding-right: 0;
}

.menu__link {
	display: block;
	flex-grow: 1;
	color: #b6bdcc;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px;
	transition: 0.3s color;
}

.menu__link:hover,
.menu__link:focus {
	color: #fdd835;
}

.menu__button {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	color: #fff;
	padding-left: 16px;
	margin-bottom: 16px;
}

.menu__button svg {
	fill: #fff;
	margin-right: 8px;
	pointer-events: none;
}

.menu__arrow {
	width: 56px;
	height: 56px;
	fill: #b6bdcc;
	margin-left: auto;
	padding: 20px;
	transform: scaleX(-1);
}

.menu__arrow svg {
	pointer-events: none;
	transition: fill 0.3s;
}

.menu__arrow:hover svg,
.menu__arrow:focus svg {
	fill: #fdd835;
}

.menu__dropdown {
	position: absolute;
	top: 0;
	right: 0;
	padding-top: 16px;
	width: 100%;
	background-color: #1a2646;
	z-index: 1;
	max-width: 320px;
	height: calc(100vh - 64px);
	transform: translateX(100%);
	transition: transform 0.3s;
}

.menu__dropdown.opened {
	transform: translateX(0);
}

.submenu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.logo {
	width: 100%;
	max-width: 124px;
	height: 40px;
	margin-right: auto;
	text-decoration: none;
	transition: 0.3s opacity;
}

.logo:hover {
	opacity: 0.7;
}

.logo--footer {
	max-width: 220px;
	height: unset;
	margin: 0 auto;
}

.logo__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.logo__img--footer {
	max-width: 203px;
	height: 60px;
	margin: 0 auto;
}

.logo__text {
	font-size: 14px;
	line-height: 24px;
	color: #b6bdcc;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.logo--header {
	display: flex;
	align-items: center;
	color: #ffd149;
}

.breadcrumbs {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.breadcrumbs--category {
	padding-bottom: 24px;
}

.breadcrumbs--article {
	padding-bottom: 12px;
}

.breadcrumbs--versus {
	padding-bottom: 16px;
}

.breadcrumbs__item {
	display: none;
	font-size: 13px;
	font-weight: 500;
	color: #fdd835;
}

.breadcrumbs__item:not(:last-child) {
	margin-right: 20px;
}

.breadcrumbs__item:nth-last-child(2) {
	display: block;
}

.breadcrumbs__link {
	position: relative;
	color: #ffd149;
	text-decoration: none;
	padding-left: 22px;
	background-image: url('/assets/img/icons/arrow-left.svg');
	background-repeat: no-repeat;
	background-position: left center;
}

.main--page {
	padding-top: 64px;
}

.main__box {
	position: relative;
	display: flex;
	flex-direction: column;
}

.main__box--single {
	margin-top: 32px;
	margin-bottom: 40px;
}

.main__content {
	margin-top: 48px;
	margin-bottom: 40px;
}

.main__content--single {
	background-color: #1a2646;
	padding: 24px 16px 36px;
	margin: 0 -16px;
}

.slider-main {
	margin-bottom: 24px;
}

.slider-main .slider-indicators {
	display: flex;
	column-gap: 8px;
	margin-bottom: 4px;
}

.slider-main .slider-indicators button {
	font-size: 0;
	width: 8px;
	height: 8px;
	border: 4px solid transparent;
	background-color: rgba(47, 54, 69, 0.5);
	opacity: 1;
	transition: background-color 0.3s;
}

.slider-main .slider-indicators button.active {
	background-color: #fdd835;
}

.sidebar--winners {
	margin-top: 40px;
}

.sidebar--contents {
	order: -1;
	margin-bottom: 24px;
}

.slider-block--provider {
	margin-top: 8px;
}

.slider-block--provider .slider-container {
	grid-auto-columns: 112px;
}

.slider-block--game {
	margin-top: 8px;
}

.slider-block--game .slider-container {
	grid-auto-columns: 120px;
}

.slider-block--promo {
	margin-bottom: 16px;
}

.slider-block--promo .slider-container {
	grid-auto-columns: 256px;
}

.slider-block .slider-nav {
	display: none;
	opacity: 1;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

.slider-block .slider-nav::before {
	display: none;
}

.slider-block .slider-nav::after {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: rotate(-45deg);
	-webkit-mask: none;
	mask: none;
	background-color: transparent;
}

.slider-block .slider-nav-next {
	left: unset;
	transform: translateY(-50%) scaleX(-1);
}

.provider-card {
	display: block;
	background-color: rgba(182, 189, 204, 0.2);
	border-radius: 6px;
	padding: 0 8px;
}

.provider-card--footer {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	max-width: 156px;
	border-radius: 100px;
}

.provider-card__img {
	width: 96px;
	min-width: 96px;
	height: 48px;
	object-fit: contain;
	object-position: center;
}

.game-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.game-block:not(:last-child) {
	margin-bottom: 24px;
}

.game-block__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
	padding-right: 16px;
	background-position: right center;
	background-repeat: no-repeat;
}

.game-block__title--top {
	background-image: url('/assets/img/icons/icon-top.svg');
	background-size: 16px;
	padding-right: 32px;
}

.game-block__title--new {
	background-image: url('/assets/img/icons/icon-new.svg');
	background-size: 12px;
	padding-right: 28px;
}

.game-block__title--promo {
	background-image: url('/assets/img/icons/icon-promo.svg');
	background-size: 18px;
	padding-right: 34px;
}

.game-block__title--wager {
	background-image: url('/assets/img/icons/icon-wager.svg');
	background-size: 22px;
	padding-right: 38px;
}

.game-block__title--jackpot {
	background-image: url('/assets/img/icons/icon-jackpot.svg');
	background-size: 28px;
	padding-right: 44px;
}

.game-block__btn {
	margin-left: auto;
}

.topic {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	padding: 0 8px;
}

.topic--center {
	width: 100%;
	justify-content: center;
}

.topic__item {
	font-size: 0;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: center top;
}

.topic__item--top {
	background-image: url('/assets/img/icons/label-top.svg');
}

.topic__item--new {
	background-image: url('/assets/img/icons/label-new.svg');
}

.topic__item--wager {
	background-image: url('/assets/img/icons/label-wager.svg');
}

.topic__item--promo {
	background-image: url('/assets/img/icons/label-promo.svg');
}

.topic__item--jackpot {
	background-image: url('/assets/img/icons/label-jackpot.svg');
}

.game-card {
	position: relative;
	height: 168px;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.game-card:hover .game-card__over,
.game-card:focus .game-card__over {
	opacity: 1;
	visibility: visible;
}

.game-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background-image: linear-gradient(0deg, #000a12 0%, rgba(0, 10, 18, 0) 100%);
}

.game-card__over {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 10, 18, 0.5);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: opacity 0.3s, visibility 0.3s;
}

.game-card__text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin: auto 0;
}

.game-card__btn-primary {
	font-size: 12px;
	line-height: 16px;
	max-width: unset;
	padding: 8px 16px;
	margin-bottom: 8px;
}

.game-card__btn-tertiary {
	max-width: unset;
}

.jackpot-card {
	position: relative;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	text-decoration: none;
}

.jackpot-card:hover .jackpot-card__over,
.jackpot-card:focus .jackpot-card__over {
	opacity: 1;
	visibility: visible;
}

.jackpot-card:nth-child(5) {
	display: none;
}

.jackpot-card__bg {
	padding-top: 140%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.jackpot-card__text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 9px;
	font-weight: 700;
	line-height: 16px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 8px 4px 36px;
	background-color: #a153ff;
	background-image: url('/assets/img/icons/icon-jackpot.svg');
	background-size: 16px;
	background-position: left 16px center;
	background-repeat: no-repeat;
}

.promo {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	background-color: #1a2646;
	padding: 16px;
}

.promo:not(:last-child) {
	margin-bottom: 24px;
}

.promo__title {
	font-size: 24px;
	font-weight: 900;
	line-height: 32px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.promo__total {
	margin-bottom: 16px;
}

.promo__subtitle {
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	color: #b6bdcc;
	text-transform: uppercase;
}

.promo__price {
	font-size: 24px;
	font-weight: 900;
	line-height: 32px;
	text-transform: uppercase;
	color: #fff;
}

.promo__btn {
	order: 1;
	max-width: 300px;
	margin: 0 auto;
}

.promo__grid {
	display: grid;
	grid-gap: 12px 14px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 16px;
}

.promo-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border-radius: 16px;
	overflow: hidden;
	padding: 32px 16px 24px;
	height: 320px;
	text-decoration: none;
}

.promo-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	pointer-events: none;
}

.promo-card--bg-1::before {
	background-image: linear-gradient(90deg, #81c147 0%, #c4d93b 100%);
}

.promo-card--bg-2::before {
	background-image: linear-gradient(90deg, #1c74d4 0%, #21f6fc 100%);
}

.promo-card--bg-3::before {
	background-image: linear-gradient(90deg, #86012b 0%, #d7001c 100%);
}

.promo-card--bg-4::before {
	background-image: linear-gradient(90deg, #2e0f6c 0%, #712df5 100%);
}

.promo-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-image: var(--bg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left 50px center;
	border-radius: 16px;
}

.promo-card--main {
	width: 100%;
	height: auto;
	border-radius: 0;
	padding: 0;
	border: 0;
	text-align: left;
	cursor: pointer;
}

.promo-card--main::before {
	border-radius: 0;
}

.promo-card--main::after {
	background-image: none;
}

.promo-card__container {
	display: block;
	position: relative;
	padding-top: 14px;
	padding-bottom: 52px;
	height: 100%;
}

.promo-card__container::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-image: var(--bg);
	background-repeat: no-repeat;
	background-position: left calc(50% + 300px) center;
	background-size: cover;
}

.promo-card__label {
	position: relative;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #fff;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 0 8px;
	margin-bottom: 70px;
	z-index: 1;
}

.promo-card__label--main {
	margin-bottom: 76px;
}

.promo-card__suptext {
	position: relative;
	font-size: 20px;
	font-weight: 900;
	line-height: 24px;
	color: #fff;
	z-index: 1;
}

.promo-card__text {
	position: relative;
	font-size: 24px;
	font-weight: 900;
	line-height: 32px;
	color: #fdd835;
	text-transform: uppercase;
	text-shadow: 0 4px 6px rgba(0, 10, 18, 0.15);
	z-index: 1;
}

.promo-card__text--main {
	display: block;
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 36px;
}

.promo-card__buttons {
	display: flex;
	margin-top: auto;
}

.promo-card__btn {
	position: relative;
	z-index: 1;
	font-size: 12px;
	line-height: 16px;
	padding: 8px 16px;
	margin-right: 8px;
}

.promo-card__btn--main {
	font-size: 16px;
	line-height: 1.7;
	padding: 9px 27px 10px;
	margin-right: 0;
	border-radius: 100px;
}

.promo-card__details {
	position: relative;
	z-index: 1;
	font-size: 12px;
	line-height: 16px;
}

.promo-card__bg,
.promo-card-main__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-card__bg {
	object-position: top 0 left 50px;
}

.promo-card-main__bg {
	object-position: top 0 left 160px;
}

.winners {
	display: flex;
	flex-direction: column;
	background-color: #1a2646;
	border-radius: 16px;
	padding: 8px;
}

.winners__title {
	position: relative;
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
	color: #fff;
	padding-left: 26px;
	margin-bottom: 8px;
}

.winners__title::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #1be176;
}

.winners__container {
	display: flex;
	overflow-x: auto;
}

.winners-card {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 88px;
	min-width: 88px;
	border-radius: 8px;
	border: 0;
	background-color: transparent;
	padding: 8px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

.winners-card:hover,
.winners-card:focus {
	background-color: #404552;
}

.winners-card:hover .winners-card__over,
.winners-card:focus .winners-card__over {
	opacity: 1;
	visibility: visible;
}

.winners-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1a2646;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s 0.5s, visibility 0.3s 0.5s;
}

.winners-card--hidden::after {
	display: none;
}

.winners-card__img {
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto 8px;
}

.winners-card__content {
	position: relative;
	flex-grow: 1;
}

.winners-card__name {
	display: block;
	font-size: 12px;
	line-height: 15px;
	color: #b6bdcc;
	text-align: center;
}

.winners-card__price {
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	color: #fff;
	text-align: center;
}

.winners-card__over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	color: #fdd835;
	text-align: center;
	background-color: #404552;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.content {
	font-size: 16px;
	line-height: 1.5;
	color: #b6bdcc;
}

.content > p:not([class]) {
	margin-bottom: 16px;
}

.content > p:not([class]):empty {
	display: none;
}

.content a:not([class]) {
	font-weight: 700;
	color: #ffd149;
	transition: opacity 0.3s;
}

.content a:not([class]):hover,
.content a:not([class]):focus {
	opacity: 0.7;
}

.content b,
.content strong {
	font-weight: 700;
	color: #ffd149;
}

.content h1 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 16px;
	color: #fff;
}

.content h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
	color: #fff;
}

.content h3,
.content h4,
.content h5,
.content h6 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
}

.content table {
	min-width: 500px;
	border-collapse: collapse;
}

.content table thead th {
	background-color: #fdd835;
	color: #000a12;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
	padding: 14px 20px;
}

.content table thead th:first-child {
	border-top-left-radius: 16px;
}

.content table thead th:last-child {
	border-top-right-radius: 16px;
}

.content table thead th img {
	max-height: 36px;
	min-width: 100px;
}

.content table tbody tr {
	background-color: rgba(0, 10, 18, 0.2);
}

.content table tbody tr:nth-child(even) {
	background-color: #2f3645;
}

.content table tbody tr:last-child td:first-child,
.content table tbody tr:last-child th:first-child {
	border-bottom-left-radius: 16px;
}

.content table tbody tr:last-child td:last-child,
.content table tbody tr:last-child th:last-child {
	border-bottom-right-radius: 16px;
}

tbody:not(.content table thead + tbody) tr:first-child td:first-child {
	border-top-left-radius: 16px;
}

tbody:not(.content table thead + tbody) tr:first-child td:last-child {
	border-top-right-radius: 16px;
}

.content table td {
	padding: 8px 20px;
	font-size: 16px;
	line-height: 1.5;
}

.content blockquote {
	background-color: #fdd835;
	background-image: url('/assets/img/icons/warning.svg');
	background-position: top 24px left 24px;
	background-repeat: no-repeat;
	border-radius: 16px;
	padding: 24px 20px 24px 64px;
	margin: 24px 0;
	color: #000a12;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
}

.content ul:not([class]) {
	margin: 0 0 16px;
	padding-left: 26px;
}

.content ul:not([class]) > li::marker {
	font-size: 1.5em;
	line-height: 24px;
}

.content ol:not([class]) {
	list-style-type: none;
	margin: 0;
	padding: 0;
	counter-reset: list;
}

.content ol:not([class]):not(:last-child) {
	margin-bottom: 24px;
}

.content ol:not([class]) > li {
	position: relative;
	padding-left: 48px;
	min-height: 32px;
	counter-increment: list;
}

.content ol:not([class]) > li:not(:last-child) {
	margin-bottom: 16px;
}

.content ol:not([class]) > li::before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: counter(list);
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	font-size: 14px;
	font-weight: 500;
	background-color: #a153ff;
	border-radius: 50%;
	color: #fff;
}

.content ol:not([class]) ul:not([class]) {
	padding-left: 26px;
	margin-top: 16px;
}

.content img:not([class]),
.content img[class='lazy'],
.content .wp-block-image img {
	height: auto;
	border-radius: 16px;
}

.content figure:not(.alignright, .alignleft) {
	margin-bottom: 24px;
}

.content--single > p:not([class]) {
	margin-bottom: 24px;
}

.content--single h1 {
	text-align: left;
}

.content--single h2 {
	margin-bottom: 16px;
}

.content--single h3,
.content--single h4,
.content--single h5,
.content--single h6 {
	margin-bottom: 8px;
}

.content--single ul:not([class]) {
	list-style-type: disc;
}

.content--single ul:not([class]) li::marker {
	color: #fff;
}

.content--single ul:not([class]) li:not(:last-child) {
	margin-bottom: 8px;
}

.wp-block-table {
	overflow-y: auto;
}

.alignright {
	float: right;
	margin-left: 16px;
	margin-bottom: 8px;
}

.alignright:not(:first-child) {
	padding-top: 8px;
}

.alignleft {
	float: left;
	margin-right: 16px;
	margin-bottom: 8px;
}

.alignleft:not(:first-child) {
	padding-top: 8px;
}

.aligncenter img {
	margin: 0 auto 16px;
}

.table-contents {
	width: 100%;
}

.table-contents__button {
	position: relative;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	line-height: 32px;
	color: #fff;
	text-transform: uppercase;
	text-align: left;
	border-radius: 16px;
	background-color: #2f3645;
	padding: 8px 26px;
	cursor: pointer;
}

.table-contents__button:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	border-top: 7px solid #fff;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	transform: translateY(-50%);
	transition: 0.3s transform;
}

.table-contents__button--opened:after {
	transform: translateY(-50%) scaleY(-1);
}

.table-contents__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: none;
	padding-left: 24px;
	margin-top: 24px;
}

.table-contents__item {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
}

.table-contents__item:not(:last-child) {
	margin-bottom: 8px;
}

.table-contents__link {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.table-contents__link:hover,
.table-contents__link:active {
	color: #ffa000;
}

.tabs-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	max-width: max-content;
	overflow-y: auto;
	background-color: #1a2646;
	border-radius: 16px;
	padding: 4px;
	margin: 0 auto 28px;
}

.tabs-list__item:first-child {
	margin-left: auto;
}

.tabs-list__item:last-child {
	margin-right: auto;
}

.tabs-list__link {
	display: block;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.7;
	color: #b6bdcc;
	white-space: nowrap;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 12px;
	transition: color 0.3s, background-color 0.3s;
}

.tabs-list__link:hover,
.tabs-list__link:focus {
	color: #ffa000;
	background-color: rgba(182, 189, 204, 0.1);
}

.advantages:not(:last-child) {
	margin-bottom: 32px;
}

.advantages__item {
	background-color: #2f3645;
	border-radius: 16px;
	overflow: hidden;
}

.advantages__item:not(:last-child) {
	margin-bottom: 16px;
}

.advantages__title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 32px;
	color: #000a12;
	padding: 12px 72px 12px 24px;
}

.advantages__title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #fff;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateY(-50%);
}

.advantages__title--positive {
	background-color: #1be176;
}

.advantages__title--positive::after {
	background-image: url('/assets/img/icons/heart.svg');
}

.advantages__title--negative {
	background-color: #ff5e3a;
}

.advantages__title--negative::after {
	background-image: url('/assets/img/icons/heart-broken.svg');
}

.advantages__logo {
	max-height: 26px;
	margin-left: 16px;
}

.advantages__content {
	padding: 24px;
}

.advantages__content p {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.advantages__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.advantages__list li {
	font-size: 16px;
	line-height: 1.5;
	padding-left: 36px;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: top 2px left;
}

.advantages__list li:not(:last-child) {
	margin-bottom: 16px;
}

.advantages__list--check li {
	background-image: url('/assets/img/icons/check-round.svg');
}

.advantages__list--cross li {
	background-image: url('/assets/img/icons/close-round.svg');
}

.payment {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-gap: 12px;
	grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
}

.payment:not(:last-child) {
	margin-bottom: 24px;
}

.payment__item {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background-color: #2f3645;
	padding: 10px 5px;
}

.faq__item {
	background-color: #2f3645;
	border-radius: 16px;
	overflow: hidden;
}

.faq__item:not(:last-child) {
	margin-bottom: 16px;
}

.faq__question {
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	padding: 15px 16px;
	color: #000a12;
	background-color: #fdd835;
}

.faq__answer {
	font-size: 16px;
	line-height: 24px;
	padding: 24px 16px;
	color: #b6bdcc;
}

.faq__answer p:not(:last-child) {
	margin-bottom: 16px;
}

.page-404 {
	padding: 32px 0 64px;
	text-align: center;
}

.page-404__title {
	font-size: 64px;
	color: #fdd835;
	margin-bottom: 8px;
}

.page-404__text {
	font-size: 24px;
	color: #fff;
	margin-bottom: 40px;
}

.page-404__btn {
	font-size: 14px;
	padding: 12px 5px;
	max-width: 200px;
	margin: 0 auto;
}

.footer__top {
	background-color: #1a2646;
	padding: 24px 0;
	margin-bottom: 32px;
}

.footer__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer__container--bottom {
	max-width: 872px;
	padding-bottom: 12px;
}

.footer__left {
	margin-bottom: 20px;
}

.footer__contact {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.footer__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 8px;
}

.footer__subtitle {
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.02em;
}

.footer__link {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #ffd149;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.3s;
}

.footer__link:hover,
.footer__link:focus {
	opacity: 0.7;
}

.footer__copy {
	font-size: 12px;
	line-height: 16px;
	color: #b6bdcc;
	text-align: center;
}

.footer__copy a {
	color: #ffd149;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer__copy a:hover,
.footer__copy a:focus {
	opacity: 0.7;
}

.menu-footer {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 16px;
}

.menu-footer__item {
	text-align: center;
	margin-bottom: 16px;
}

.menu-footer__link {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	line-height: 24px;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s;
}

.menu-footer__link:hover,
.menu-footer__link:focus {
	color: #fdd835;
}

.social-footer {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}

.social-footer li:not(:last-child) {
	margin-right: 32px;
}

.social-footer a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.social-footer a svg {
	fill: #fff;
	transition: 0.3s fill;
}

.social-footer a:hover svg {
	fill: #ffd149;
}

.footer-brands {
	margin-bottom: 32px;
}

.footer-brands__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 16px;
}

.footer-brands__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 16px;
}

.footer-brands__item {
	flex-basis: 120px;
	margin: 8px;
}

.footer-brands__img {
	margin: 0 auto;
}

.languages {
	width: fit-content;
	margin: 0 auto;
}

.languages__select {
	position: relative;
	min-width: 170px;
}

.languages__placeholder {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	color: #ffa000;
	text-transform: uppercase;
	border-radius: 24px;
	background-color: rgba(182, 189, 204, 0.2);
	padding: 8px 40px 8px 16px;
	cursor: pointer;
}

.languages__placeholder::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 16px;
	width: 8px;
	height: 8px;
	border-right: 3px solid #ffa000;
	border-bottom: 3px solid #ffa000;
	transform: translateY(-67%) rotate(40deg) skewX(-10deg);
	transition: transform 0.3s;
}

.languages__placeholder.open::after {
	transform: translateY(-20%) rotate(40deg) skewX(-10deg) scale(-1);
}

.languages__icon {
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: 2px;
	object-fit: contain;
	margin-right: 8px;
}

.languages__dropdown {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	width: 100%;
	max-height: 146px;
	overflow-y: auto;
	border-radius: 24px;
	background-color: #404552;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.languages__dropdown.open {
	opacity: 1;
	visibility: visible;
}

.languages__link {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	color: #ffa000;
	text-transform: uppercase;
	text-decoration: none;
	word-break: break-word;
	padding: 8px 16px;
	transition: color 0.3s;
}

.languages__link:hover,
.languages__link:focus {
	background-color: #596070;
}

.popup {
	position: fixed;
	display: none;
	align-items: flex-end;
	justify-content: center;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 10, 18, 0.64);
	z-index: 15;
}

.popup--active {
	display: flex;
}

.popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
	font-size: 0;
	cursor: pointer;
}

.popup__close::before,
.popup__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 2px;
	background-color: #fff;
	pointer-events: none;
}

.popup__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-error__inner {
	position: relative;
	width: 100%;
	max-width: 424px;
	border-radius: 24px 24px 0 0;
	background-color: #1a2646;
	padding: 16px;
}

.popup-error__name {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
	padding: 0 32px;
	text-align: center;
	margin-bottom: 24px;
}

.popup-error__img {
	margin: 0 auto 16px;
}

.popup-error__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
	text-align: center;
	margin-bottom: 16px;
}

.popup-error__text {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	text-align: center;
	margin-bottom: 24px;
}

.popup-error__btn {
	font-size: 14px;
	padding: 8px 16px;
	max-width: 328px;
	margin: 0 auto;
}

.popup-demo__inner {
	width: 80%;
	height: 80vh;
}

.popup-demo__inner iframe {
	width: 100%;
	height: 100%;
	border: 0;
	background-color: #fff;
}

.img-cov {
	display: block;
	margin: 25px auto;
}
.img-cov img {
	width: 100%;
}

@media (min-width: 62rem) {
	.slider-item-show6:not(.slider-item-snapstart) .slider-container > *,
	.slider-item-show4:not(.slider-item-snapstart) .slider-container > *,
	.slider-item-show2:not(.slider-item-snapstart) .slider-container > * {
		scroll-snap-align: unset;
	}

	.slider-item-show6:not(.slider-item-snapstart) .slider-container > *::before,
	.slider-item-show4:not(.slider-item-snapstart) .slider-container > *::before,
	.slider-item-show2:not(.slider-item-snapstart) .slider-container > *::before {
		content: ' ';
		display: block;
		position: absolute;
		left: calc(var(--swiffy-slider-item-gap) / 2 * -1);
		top: 0;
		/*FF fix setting w+h to 1 px - otherwise snap will not occur*/
		width: 1px;
		height: 1px;
		scroll-snap-align: var(--swiffy-slider-snap-align);
	}

	.slider-nav-outside-expand .slider-nav {
		margin-left: -4rem;
	}

	.slider-nav-outside-expand .slider-nav.slider-nav-next {
		margin-right: -4rem;
	}

	.slider-nav-sm.slider-nav-outside-expand .slider-nav {
		margin-left: -3.5rem;
	}

	.slider-nav-sm.slider-nav-outside-expand .slider-nav.slider-nav-next {
		margin-right: -3.5rem;
	}

	.slider-indicators-sm.slider-indicators {
		display: none;
	}
}

@media screen and (min-width: 400px) {
	.provider-card--footer {
		flex-grow: unset;
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.breadcrumbs__item {
		display: block;
	}

	.breadcrumbs__link {
		position: relative;
		color: #b6bdcc;
		text-decoration: none;
		padding-left: 0;
		background-image: none;
		transition: 0.3s color;
	}

	.breadcrumbs__link:after {
		content: '';
		position: absolute;
		top: 6px;
		right: -12px;
		width: 4px;
		height: 4px;
		background-color: #b6bdcc;
		border-radius: 4px;
		pointer-events: none;
	}

	.breadcrumbs__link:hover {
		color: #ffd149;
	}

	.slider-main {
		margin-bottom: 32px;
	}

	.slider-main .slider-indicators {
		margin-bottom: 16px;
	}

	.jackpot-card__text {
		font-size: 12px;
		padding: 8px 8px 8px 52px;
		background-position: left 28px center;
	}

	.promo-card--main {
		padding: 0;
	}

	.promo-card__container {
		padding-top: 32px;
		padding-bottom: 57px;
	}

	.promo-card__container::after {
		background-size: contain;
		background-position: right center;
	}

	.tabs-list {
		margin-bottom: 32px;
	}

	.tabs-list__item:not(:last-child) {
		margin-right: 24px;
	}

	.advantages {
		display: flex;
	}

	.advantages:not(:last-child) {
		margin-bottom: 40px;
	}

	.advantages__item {
		width: 50%;
	}

	.advantages__item:not(:last-child) {
		margin-right: 16px;
		margin-bottom: 0;
	}

	.advantages__content {
		padding: 32px 52px 32px 24px;
	}

	.advantages__content p {
		margin-bottom: 24px;
	}

	.advantages__list {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

	.advantages__list li:not(:last-child) {
		margin-bottom: 24px;
	}

	.footer__container--bottom {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding-bottom: 24px;
	}

	.footer__contact {
		width: 100%;
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 16px;
	}

	.footer__item {
		width: 50%;
		margin-bottom: 16px;
	}

	.menu-footer {
		display: grid;
		grid-gap: 16px;
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 16px;
	}

	.menu-footer__item {
		margin-bottom: 0;
	}

	.popup--active {
		align-items: center;
	}

	.popup__close {
		top: 24px;
		right: 24px;
	}

	.popup-error__inner {
		border-radius: 24px;
		padding: 24px;
	}

	.popup-error__name {
		margin-bottom: 32px;
	}

	.popup-error__img {
		margin-bottom: 24px;
	}

	.popup-error__title {
		margin-bottom: 24px;
	}

	.popup-error__text {
		margin-bottom: 32px;
	}
}

@media screen and (min-width: 992px) {
	.header__container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.header__burger {
		display: none;
	}

	.header__buttons {
		justify-content: flex-start;
		margin-left: auto;
		margin-top: unset;
	}

	.header__login,
	.header__signup {
		font-size: 12px;
		line-height: 16px;
		max-width: max-content;
		min-width: max-content;
	}

	.menu {
		flex-direction: row;
		align-items: center;
		position: static;
		z-index: 0;
		padding: 0;
		height: auto;
		max-width: unset;
		transform: unset;
	}

	.menu::before {
		display: none;
	}

	.menu__text {
		display: none;
	}

	.menu__close {
		display: none;
	}

	.menu__list {
		display: flex;
		flex-wrap: wrap;
		margin-left: 15px;
		margin-bottom: 0;
		overflow: unset;
	}

	.menu__item:not(:last-child) {
		margin-right: 22px;
	}

	.menu__item--dropdown {
		position: relative;
	}

	.menu__item--dropdown:hover .menu__arrow::before,
	.menu__item--dropdown:focus .menu__arrow::before {
		border-right: 2px solid #fdd835;
		border-bottom: 2px solid #fdd835;
	}

	.menu__item--dropdown:hover > .menu__link,
	.menu__item--dropdown:focus > .menu__link {
		color: #fdd835;
	}

	.menu__item--dropdown:hover .menu__dropdown,
	.menu__item--dropdown:focus .menu__dropdown {
		opacity: 1;
		visibility: visible;
	}

	.menu__link {
		padding: 5px;
	}

	.menu__arrow {
		position: relative;
		width: 20px;
		height: 34px;
		padding: 0;
		transition: border 0.3s;
	}

	.menu__arrow::before {
		content: '';
		position: absolute;
		top: 10px;
		left: 6px;
		width: 9px;
		height: 9px;
		border-right: 2px solid #b6bdcc;
		border-bottom: 2px solid #b6bdcc;
		transform: rotate(45deg);
	}

	.menu__arrow svg {
		display: none;
		padding: 0;
	}

	.menu__button {
		display: none;
	}

	.menu__dropdown {
		top: 100%;
		right: auto;
		left: -8px;
		width: 210px;
		height: auto;
		transform: none;
		padding: 33px 20px 18px;
		border-radius: 0 0 16px 16px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0.3s;
	}

	.submenu .menu__item:not(:last-child) {
		margin-bottom: 8px;
		margin-right: 0;
	}

	.submenu .menu__link {
		line-height: 20px;
		padding: 6px 0;
		text-transform: unset;
	}

	.breadcrumbs--article {
		padding: 0 0 24px;
	}

	.breadcrumbs--versus {
		padding: 0 0 24px;
	}
}

@media screen and (min-width: 1050px) {
	.btn-secondary__text-mobile {
		display: none;
	}

	.btn-secondary__text-desktop {
		display: block;
	}

	.menu__list {
		margin-left: 35px;
	}

	.logo {
		height: 48px;
	}

	.logo--footer {
		width: 24%;
		height: unset;
		margin: 0 0 0;
		flex: 0 auto;
	}

	.logo__img--footer {
		margin: 0;
	}

	.main--page {
		padding-top: 72px;
	}

	.main__box {
		flex-direction: row;
		align-items: flex-start;
	}

	.main__box--single {
		margin-top: 64px;
		margin-bottom: 96px;
	}

	.main__blocks {
		width: calc(100% - 223px);
	}

	.main__content {
		max-width: 872px;
		width: 100%;
		margin: 64px auto;
	}

	.main__content--single {
		max-width: unset;
		border-radius: 16px;
		padding: 32px 48px 40px;
		margin: 0;
	}

	.sidebar {
		position: sticky;
		top: 88px;
	}

	.sidebar--winners {
		margin-top: 0;
		margin-left: 24px;
	}

	.sidebar--contents {
		order: 0;
		margin-bottom: 0;
		margin-left: 40px;
	}

	.slider-block--provider {
		margin-top: 16px;
	}

	.slider-block--provider .slider-container {
		column-gap: 24px;
	}

	.slider-block--game {
		margin-top: 16px;
	}

	.slider-block--game .slider-container {
		grid-auto-columns: 162px;
		column-gap: 24px;
	}

	.slider-block--promo {
		margin-bottom: 0;
		margin-top: 24px;
	}

	.slider-block--promo .slider-container {
		grid-auto-columns: 600px;
		column-gap: 24px;
	}

	.slider-block .slider-nav {
		display: block;
	}

	.provider-card--footer {
		max-width: 112px;
	}

	.game-block:not(:last-child) {
		margin-bottom: 32px;
	}

	.game-block__title {
		font-size: 24px;
		line-height: 32px;
	}

	.topic--center {
		justify-content: flex-end;
	}

	.topic__item {
		width: 32px;
		height: 32px;
		background-size: 32px;
	}

	.game-card {
		height: 228px;
	}

	.game-card__btn-primary {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 16px;
	}

	.game-card__btn-tertiary {
		font-size: 14px;
		line-height: 24px;
	}

	.jackpot-card:nth-child(5) {
		display: block;
	}

	.jackpot-card__text {
		word-break: break-all;
	}

	.promo {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		padding: 24px;
	}

	.promo:not(:last-child) {
		margin-bottom: 32px;
	}

	.promo__title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 0;
	}

	.promo__total {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 72px;
		padding-left: 88px;
		background-image: url('/assets/img/icons/icon-total-jackpot.svg');
		background-repeat: no-repeat;
		background-position: left center;
		background-size: 72px;
		margin-bottom: 16px;
	}

	.promo__price {
		font-size: 32px;
		line-height: 40px;
	}

	.promo__btn {
		order: unset;
		max-width: max-content;
		margin: 0 0 0 auto;
		font-size: 14px;
		line-height: 24px;
	}

	.promo__grid {
		width: 100%;
		grid-gap: 24px;
		grid-template-columns: repeat(5, 1fr);
		margin-bottom: 0;
	}

	.promo-card {
		padding: 32px 24px 24px;
	}

	.promo-card::after {
		background-size: cover;
		background-position: left 226px center;
	}

	.promo-card--main {
		width: 100%;
		padding: 0;
	}

	.promo-card__container {
		padding-top: 32px;
		padding-bottom: 57px;
	}

	.promo-card__text {
		max-width: 300px;
		font-size: 32px;
		font-weight: 800;
		line-height: 40px;
	}

	.promo-card__btn {
		margin-right: 12px;
	}

	.promo-card__btn--main {
		margin-right: 0;
	}

	.promo-card__bg {
		object-position: top 0 left 226px;
	}

	.promo-card-main__bg {
		object-fit: contain;
		object-position: top 0 right 7%;
	}

	.winners {
		width: 199px;
		max-height: calc(100vh - 104px);
		padding: 16px 8px 6px;
	}

	.winners__title {
		margin-bottom: 16px;
	}

	.winners__container {
		display: block;
		overflow-x: hidden;
		overflow-y: hidden;
	}

	.winners-card {
		display: flex;
		align-items: center;
		flex-direction: row;
		width: 100%;
		opacity: 1;
		visibility: visible;
	}

	.winners-card--hidden {
		display: none;
		opacity: 0;
		visibility: hidden;
	}

	.winners-card--hidden::after {
		display: block;
		opacity: 1;
		visibility: visible;
	}

	.winners-card__img {
		width: 40px;
		min-width: 40px;
		height: 40px;
		margin: 0 8px 0 0;
	}

	.winners-card__name,
	.winners-card__price,
	.winners-card__over {
		text-align: left;
	}

	.content > p:not([class]) {
		margin-bottom: 24px;
	}

	.content h1 {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.content h2 {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 16px;
	}

	.content blockquote {
		background-position: left 32px center;
		padding: 24px 60px 24px 100px;
		margin: 32px 0;
	}

	.content ol:not([class]):not(:last-child) {
		margin-bottom: 24px;
	}

	.content ol:not([class]) > li {
		padding-left: 72px;
		min-height: 48px;
	}

	.content ol:not([class]) > li::before {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.content--single > p:not([class]) {
		margin-bottom: 32px;
	}

	.content--single h2 {
		margin-bottom: 24px;
	}

	.content--single h3 {
		font-size: 18px;
	}

	.content--single ul:not([class]) {
		padding-left: 64px;
	}

	.content--single ul:not([class]):not(:last-child) {
		margin-bottom: 24px;
	}

	.table-contents {
		width: 308px;
		min-width: 308px;
	}

	.table-contents__button {
		font-size: 20px;
		text-align: center;
		cursor: default;
	}

	.table-contents__button:after {
		display: none;
	}

	.table-contents__list {
		display: block;
		padding-left: 0;
		max-height: calc(100vh - 172px);
		overflow-y: auto;
	}

	.table-contents__item:not(:last-child) {
		margin-bottom: 16px;
	}

	.payment {
		grid-gap: 16px;
	}

	.payment:not(:last-child) {
		margin-bottom: 32px;
	}

	.faq__question {
		line-height: 28px;
		padding: 14px 32px;
	}

	.faq__answer {
		padding: 24px 32px;
	}

	.footer__top {
		padding: 32px 0;
	}

	.footer__container {
		flex-direction: row;
	}

	.footer__left {
		width: 24%;
	}

	.menu-footer {
		align-content: start;
		width: 48%;
		margin-right: auto;
	}

	.menu-footer__item {
		text-align: left;
	}

	.social-footer {
		justify-content: flex-start;
		margin-bottom: 24px;
	}

	.social-footer li:not(:last-child) {
		margin-right: 16px;
	}

	.footer-brands__list {
		grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
	}

	.languages {
		margin: 0;
	}
}

@media (max-width: 62rem) {
	.swiffy-slider {
		--swiffy-slider-track-height: 0rem;
		--swiffy-slider-item-reveal: 0rem;
		--swiffy-slider-item-count: 1;
		--swiffy-slider-nav-zoom: 0.875;
	}

	.swiffy-slider .slider-item-show2-sm {
		--swiffy-slider-item-count: 2;
	}

	.slider-item-reveal {
		--swiffy-slider-item-reveal: 4rem;
	}

	.slider-item-snapstart.slider-item-reveal {
		--swiffy-slider-item-reveal: 2rem;
	}

	.slider-item-show6 .slider-container {
		grid-auto-columns: calc(25% - var(--swiffy-slider-item-gap) / 4 * 3);
	}

	.slider-item-show6.slider-item-reveal .slider-container {
		grid-auto-columns: calc(
			25% - var(--swiffy-slider-item-gap) / 4 * 3 - 0.5rem
		);
	}

	.slider-item-show6.slider-item-reveal .slider-container > * {
		scroll-snap-align: unset;
	}

	.slider-item-show6.slider-item-reveal .slider-container > *::before {
		content: ' ';
		display: block;
		position: absolute;
		left: calc(var(--swiffy-slider-item-gap) / 2 * -1);
		top: 0;
		/*FF fix setting w+h to 1 px - otherwise snap will not occur*/
		width: 1px;
		height: 1px;
		scroll-snap-align: center;
	}

	.slider-nav::before,
	.slider-nav::after {
		width: 2rem;
		height: 2rem;
		padding: 0.3rem;
	}

	.slider-nav-round .slider-nav::after,
	.slider-nav-square .slider-nav::after {
		width: 1.75rem;
		height: 1.75rem;
		margin: 0.125rem;
	}

	.slider-nav-outside-expand .slider-container,
	.slider-nav-outside .slider-container {
		margin: 0 2rem;
	}

	.slider-nav-outside-expand .slider-container {
		margin: 0 var(--swiffy-slider-nav-outside-size);
	}

	.slider-nav-outside-expand .slider-nav {
		padding: 0;
	}

	.slider-indicators-square.slider-indicators > *,
	.slider-indicators-square .slider-indicators > *,
	.slider-indicators-round.slider-indicators > *,
	.slider-indicators-round .slider-indicators > * {
		width: 0.3rem;
		height: 0.3rem;
	}

	.slider-indicators {
		margin-bottom: 0.5rem;
		display: none;
	}

	.slider-nav-scrollbar .slider-indicators {
		margin-bottom: 0rem;
	}

	.slider-indicators > * {
		width: 1rem;
		height: 0.125rem;
		border-width: 0.25rem;
	}

	.slider-indicators-sm .slider-indicators,
	.slider-indicators-sm.slider-indicators {
		display: flex;
	}
}

@media (max-width: 48rem) {
	.slider-item-show6 .slider-container {
		grid-auto-columns: calc(50% - var(--swiffy-slider-item-gap) / 2);
	}

	.slider-item-show6.slider-item-reveal .slider-container {
		grid-auto-columns: calc(50% - var(--swiffy-slider-item-gap) / 2 - 1.5rem);
	}
}

@media (hover: hover) {
	.slider-nav-mousedrag .slider-container::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.slider-nav-animation.slider-nav-animation-fast {
		--swiffy-slider-animation-duration: 0.25s;
	}

	.slider-nav-animation.slider-nav-animation-slow {
		--swiffy-slider-animation-duration: 1.25s;
	}

	.slider-nav-animation .slider-container > * > * {
		transition: opacity var(--swiffy-slider-animation-duration)
				var(--swiffy-slider-animation-timing),
			transform var(--swiffy-slider-animation-duration)
				var(--swiffy-slider-animation-timing);
		transition-delay: var(--swiffy-slider-animation-delay);
	}

	.slider-nav-animation .slider-container .slide-visible > * {
		transition: opacity var(--swiffy-slider-animation-duration)
				var(--swiffy-slider-animation-timing),
			transform var(--swiffy-slider-animation-duration)
				var(--swiffy-slider-animation-timing);
		transition-delay: var(--swiffy-slider-animation-delay);
	}

	.slider-nav-animation.slider-nav-animation-fadein .slider-container > * > * {
		opacity: 0.5;
	}

	.slider-nav-animation.slider-nav-animation-scale .slider-container > * > * {
		transform: scale(0.9);
	}

	.slider-nav-animation.slider-nav-animation-appear .slider-container > * > * {
		opacity: 0.3;
		transform: scale(0.9);
	}

	.slider-nav-animation.slider-nav-animation-scaleup .slider-container > * > * {
		transform: scale(0.25);
	}

	.slider-nav-animation.slider-nav-animation-zoomout .slider-container > * {
		overflow: hidden;
	}

	.slider-nav-animation.slider-nav-animation-zoomout .slider-container > * > * {
		transform: scale(1.3);
	}

	.slider-nav-animation.slider-nav-animation-turn .slider-container > * > * {
		transform: rotateY(70deg);
	}

	.slider-nav-animation.slider-nav-animation-slideup .slider-container > * > * {
		transform: translateY(60%) scale(0.99);
	}

	.slider-nav-animation.slider-nav-animation-slideup .slider-container {
		overflow-y: hidden;
	}

	.slider-nav-animation .slider-container > *.slide-visible > * {
		opacity: 1;
		transform: none;
	}
}

@media (hover: none) {
	.swiffy-slider.slider-nav-touch .slider-nav {
		visibility: visible;
	}

	.swiffy-slider:not(.slider-nav-touch).slider-nav-outside-expand
		.slider-container,
	.swiffy-slider:not(.slider-nav-touch).slider-nav-outside .slider-container {
		margin: 0 0rem;
	}

	.slider-item-nosnap-touch {
		--swiffy-slider-snap-align: unset;
	}
}
