@import url('css2.css');
@import url('css2-1.css');
@font-face {
	font-family: swiper-icons;
	font-style: normal;
	font-weight: 400;
	src: url('');
}

:root {
	--swiper-theme-color: #007aff;
}

:host {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.swiper {
	display: block;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	box-sizing: initial;
	display: flex;
	height: 100%;
	position: relative;
	transition-property: transform;
	transition-timing-function: ease;
	transition-timing-function: var(
		--swiper-wrapper-transition-timing-function,
		initial
	);
	width: 100%;
	z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	transform: translateZ(0);
}

.swiper-horizontal {
	touch-action: pan-y;
}

.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	display: block;
	flex-shrink: 0;
	height: 100%;
	position: relative;
	transition-property: transform;
	width: 100%;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d {
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
	transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
	-ms-overflow-style: none;
	overflow: auto;
	scrollbar-width: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
	height: var(--swiper-centered-offset-after);
	min-width: 1px;
	width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(270deg, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(90deg, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(0deg, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(180deg, #00000080, #0000);
}

.swiper-lazy-preloader {
	border: 4px solid #007aff;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top: 4px solid #0000;
	box-sizing: border-box;
	height: 42px;
	left: 50%;
	margin-left: -21px;
	margin-top: -21px;
	position: absolute;
	top: 50%;
	transform-origin: 50%;
	width: 42px;
	z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}

.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
	flex-direction: column;
	flex-wrap: wrap;
}

.tippy-touch {
	cursor: pointer !important;
}

.tippy-notransition {
	transition: none !important;
}

.tippy-popper {
	max-width: 400px;
	outline: 0;
	perspective: 800px;
	pointer-events: none;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 9999;
}

.tippy-popper.html-template {
	max-width: 96%;
	max-width: calc(100% - 20px);
}

.tippy-popper[x-placement^='top'] [x-arrow] {
	border-left: 7px solid #0000;
	border-right: 7px solid #0000;
	border-top: 7px solid #333;
	bottom: -7px;
	margin: 0 9px;
}

.tippy-popper[x-placement^='top'] [x-arrow].arrow-small {
	border-left: 5px solid #0000;
	border-right: 5px solid #0000;
	border-top: 5px solid #333;
	bottom: -5px;
}

.tippy-popper[x-placement^='top'] [x-arrow].arrow-big {
	border-left: 10px solid #0000;
	border-right: 10px solid #0000;
	border-top: 10px solid #333;
	bottom: -10px;
}

.tippy-popper[x-placement^='top'] [x-circle] {
	transform-origin: 0 33%;
}

.tippy-popper[x-placement^='top'] [x-circle].enter {
	opacity: 1;
	transform: scale(1) translate(-50%, -55%);
}

.tippy-popper[x-placement^='top'] [x-circle].leave {
	opacity: 0;
	transform: scale(0.15) translate(-50%, -50%);
}

.tippy-popper[x-placement^='top'] .tippy-tooltip.light-theme [x-circle] {
	background-color: #fff;
}

.tippy-popper[x-placement^='top'] .tippy-tooltip.light-theme [x-arrow] {
	border-left: 7px solid #0000;
	border-right: 7px solid #0000;
	border-top: 7px solid #fff;
}

.tippy-popper[x-placement^='top']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-small {
	border-left: 5px solid #0000;
	border-right: 5px solid #0000;
	border-top: 5px solid #fff;
}

.tippy-popper[x-placement^='top']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-big {
	border-left: 10px solid #0000;
	border-right: 10px solid #0000;
	border-top: 10px solid #fff;
}

.tippy-popper[x-placement^='top'] .tippy-tooltip.transparent-theme [x-circle] {
	background-color: #000000b3;
}

.tippy-popper[x-placement^='top'] .tippy-tooltip.transparent-theme [x-arrow] {
	border-left: 7px solid #0000;
	border-right: 7px solid #0000;
	border-top: 7px solid #000000b3;
}

.tippy-popper[x-placement^='top']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-small {
	border-left: 5px solid #0000;
	border-right: 5px solid #0000;
	border-top: 5px solid #000000b3;
}

.tippy-popper[x-placement^='top']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-big {
	border-left: 10px solid #0000;
	border-right: 10px solid #0000;
	border-top: 10px solid #000000b3;
}

.tippy-popper[x-placement^='top'] [data-animation='perspective'] {
	transform-origin: bottom;
}

.tippy-popper[x-placement^='top'] [data-animation='perspective'].enter {
	opacity: 1;
	transform: translateY(-10px) rotateX(0);
}

.tippy-popper[x-placement^='top'] [data-animation='perspective'].leave {
	opacity: 0;
	transform: translateY(0) rotateX(90deg);
}

.tippy-popper[x-placement^='top'] [data-animation='fade'].enter {
	opacity: 1;
	transform: translateY(-10px);
}

.tippy-popper[x-placement^='top'] [data-animation='fade'].leave {
	opacity: 0;
	transform: translateY(-10px);
}

.tippy-popper[x-placement^='top'] [data-animation='shift'].enter {
	opacity: 1;
	transform: translateY(-10px);
}

.tippy-popper[x-placement^='top'] [data-animation='shift'].leave {
	opacity: 0;
	transform: translateY(0);
}

.tippy-popper[x-placement^='top'] [data-animation='scale'].enter {
	opacity: 1;
	transform: translateY(-10px) scale(1);
}

.tippy-popper[x-placement^='top'] [data-animation='scale'].leave {
	opacity: 0;
	transform: translateY(0) scale(0);
}

.tippy-popper[x-placement^='bottom'] [x-arrow] {
	border-bottom: 7px solid #333;
	border-left: 7px solid #0000;
	border-right: 7px solid #0000;
	margin: 0 9px;
	top: -7px;
}

.tippy-popper[x-placement^='bottom'] [x-arrow].arrow-small {
	border-bottom: 5px solid #333;
	border-left: 5px solid #0000;
	border-right: 5px solid #0000;
	top: -5px;
}

.tippy-popper[x-placement^='bottom'] [x-arrow].arrow-big {
	border-bottom: 10px solid #333;
	border-left: 10px solid #0000;
	border-right: 10px solid #0000;
	top: -10px;
}

.tippy-popper[x-placement^='bottom'] [x-circle] {
	transform-origin: 0 -50%;
}

.tippy-popper[x-placement^='bottom'] [x-circle].enter {
	opacity: 1;
	transform: scale(1) translate(-50%, -45%);
}

.tippy-popper[x-placement^='bottom'] [x-circle].leave {
	opacity: 0;
	transform: scale(0.15) translate(-50%, -5%);
}

.tippy-popper[x-placement^='bottom'] .tippy-tooltip.light-theme [x-circle] {
	background-color: #fff;
}

.tippy-popper[x-placement^='bottom'] .tippy-tooltip.light-theme [x-arrow] {
	border-bottom: 7px solid #fff;
	border-left: 7px solid #0000;
	border-right: 7px solid #0000;
}

.tippy-popper[x-placement^='bottom']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-small {
	border-bottom: 5px solid #fff;
	border-left: 5px solid #0000;
	border-right: 5px solid #0000;
}

.tippy-popper[x-placement^='bottom']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-big {
	border-bottom: 10px solid #fff;
	border-left: 10px solid #0000;
	border-right: 10px solid #0000;
}

.tippy-popper[x-placement^='bottom']
	.tippy-tooltip.transparent-theme
	[x-circle] {
	background-color: #000000b3;
}

.tippy-popper[x-placement^='bottom']
	.tippy-tooltip.transparent-theme
	[x-arrow] {
	border-bottom: 7px solid #000000b3;
	border-left: 7px solid #0000;
	border-right: 7px solid #0000;
}

.tippy-popper[x-placement^='bottom']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-small {
	border-bottom: 5px solid #000000b3;
	border-left: 5px solid #0000;
	border-right: 5px solid #0000;
}

.tippy-popper[x-placement^='bottom']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-big {
	border-bottom: 10px solid #000000b3;
	border-left: 10px solid #0000;
	border-right: 10px solid #0000;
}

.tippy-popper[x-placement^='bottom'] [data-animation='perspective'] {
	transform-origin: top;
}

.tippy-popper[x-placement^='bottom'] [data-animation='perspective'].enter {
	opacity: 1;
	transform: translateY(10px) rotateX(0);
}

.tippy-popper[x-placement^='bottom'] [data-animation='perspective'].leave {
	opacity: 0;
	transform: translateY(0) rotateX(-90deg);
}

.tippy-popper[x-placement^='bottom'] [data-animation='fade'].enter {
	opacity: 1;
	transform: translateY(10px);
}

.tippy-popper[x-placement^='bottom'] [data-animation='fade'].leave {
	opacity: 0;
	transform: translateY(10px);
}

.tippy-popper[x-placement^='bottom'] [data-animation='shift'].enter {
	opacity: 1;
	transform: translateY(10px);
}

.tippy-popper[x-placement^='bottom'] [data-animation='shift'].leave {
	opacity: 0;
	transform: translateY(0);
}

.tippy-popper[x-placement^='bottom'] [data-animation='scale'].enter {
	opacity: 1;
	transform: translateY(10px) scale(1);
}

.tippy-popper[x-placement^='bottom'] [data-animation='scale'].leave {
	opacity: 0;
	transform: translateY(0) scale(0);
}

.tippy-popper[x-placement^='left'] [x-arrow] {
	border-bottom: 7px solid #0000;
	border-left: 7px solid #333;
	border-top: 7px solid #0000;
	margin: 6px 0;
	right: -7px;
}

.tippy-popper[x-placement^='left'] [x-arrow].arrow-small {
	border-bottom: 5px solid #0000;
	border-left: 5px solid #333;
	border-top: 5px solid #0000;
	right: -5px;
}

.tippy-popper[x-placement^='left'] [x-arrow].arrow-big {
	border-bottom: 10px solid #0000;
	border-left: 10px solid #333;
	border-top: 10px solid #0000;
	right: -10px;
}

.tippy-popper[x-placement^='left'] [x-circle] {
	transform-origin: 50% 0;
}

.tippy-popper[x-placement^='left'] [x-circle].enter {
	opacity: 1;
	transform: scale(1) translate(-50%, -50%);
}

.tippy-popper[x-placement^='left'] [x-circle].leave {
	opacity: 0;
	transform: scale(0.15) translate(-50%, -50%);
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.light-theme [x-circle] {
	background-color: #fff;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.light-theme [x-arrow] {
	border-bottom: 7px solid #0000;
	border-left: 7px solid #fff;
	border-top: 7px solid #0000;
}

.tippy-popper[x-placement^='left']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-small {
	border-bottom: 5px solid #0000;
	border-left: 5px solid #fff;
	border-top: 5px solid #0000;
}

.tippy-popper[x-placement^='left']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-big {
	border-bottom: 10px solid #0000;
	border-left: 10px solid #fff;
	border-top: 10px solid #0000;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.transparent-theme [x-circle] {
	background-color: #000000b3;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.transparent-theme [x-arrow] {
	border-bottom: 7px solid #0000;
	border-left: 7px solid #000000b3;
	border-top: 7px solid #0000;
}

.tippy-popper[x-placement^='left']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-small {
	border-bottom: 5px solid #0000;
	border-left: 5px solid #000000b3;
	border-top: 5px solid #0000;
}

.tippy-popper[x-placement^='left']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-big {
	border-bottom: 10px solid #0000;
	border-left: 10px solid #000000b3;
	border-top: 10px solid #0000;
}

.tippy-popper[x-placement^='left'] [data-animation='perspective'] {
	transform-origin: right;
}

.tippy-popper[x-placement^='left'] [data-animation='perspective'].enter {
	opacity: 1;
	transform: translateX(-10px) rotateY(0);
}

.tippy-popper[x-placement^='left'] [data-animation='perspective'].leave {
	opacity: 0;
	transform: translateX(0) rotateY(-90deg);
}

.tippy-popper[x-placement^='left'] [data-animation='fade'].enter {
	opacity: 1;
	transform: translateX(-10px);
}

.tippy-popper[x-placement^='left'] [data-animation='fade'].leave {
	opacity: 0;
	transform: translateX(-10px);
}

.tippy-popper[x-placement^='left'] [data-animation='shift'].enter {
	opacity: 1;
	transform: translateX(-10px);
}

.tippy-popper[x-placement^='left'] [data-animation='shift'].leave {
	opacity: 0;
	transform: translateX(0);
}

.tippy-popper[x-placement^='left'] [data-animation='scale'].enter {
	opacity: 1;
	transform: translateX(-10px) scale(1);
}

.tippy-popper[x-placement^='left'] [data-animation='scale'].leave {
	opacity: 0;
	transform: translateX(0) scale(0);
}

.tippy-popper[x-placement^='right'] [x-arrow] {
	border-bottom: 7px solid #0000;
	border-right: 7px solid #333;
	border-top: 7px solid #0000;
	left: -7px;
	margin: 6px 0;
}

.tippy-popper[x-placement^='right'] [x-arrow].arrow-small {
	border-bottom: 5px solid #0000;
	border-right: 5px solid #333;
	border-top: 5px solid #0000;
	left: -5px;
}

.tippy-popper[x-placement^='right'] [x-arrow].arrow-big {
	border-bottom: 10px solid #0000;
	border-right: 10px solid #333;
	border-top: 10px solid #0000;
	left: -10px;
}

.tippy-popper[x-placement^='right'] [x-circle] {
	transform-origin: -50% 0;
}

.tippy-popper[x-placement^='right'] [x-circle].enter {
	opacity: 1;
	transform: scale(1) translate(-50%, -50%);
}

.tippy-popper[x-placement^='right'] [x-circle].leave {
	opacity: 0;
	transform: scale(0.15) translate(-50%, -50%);
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.light-theme [x-circle] {
	background-color: #fff;
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.light-theme [x-arrow] {
	border-bottom: 7px solid #0000;
	border-right: 7px solid #fff;
	border-top: 7px solid #0000;
}

.tippy-popper[x-placement^='right']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-small {
	border-bottom: 5px solid #0000;
	border-right: 5px solid #fff;
	border-top: 5px solid #0000;
}

.tippy-popper[x-placement^='right']
	.tippy-tooltip.light-theme
	[x-arrow].arrow-big {
	border-bottom: 10px solid #0000;
	border-right: 10px solid #fff;
	border-top: 10px solid #0000;
}

.tippy-popper[x-placement^='right']
	.tippy-tooltip.transparent-theme
	[x-circle] {
	background-color: #000000b3;
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.transparent-theme [x-arrow] {
	border-bottom: 7px solid #0000;
	border-right: 7px solid #000000b3;
	border-top: 7px solid #0000;
}

.tippy-popper[x-placement^='right']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-small {
	border-bottom: 5px solid #0000;
	border-right: 5px solid #000000b3;
	border-top: 5px solid #0000;
}

.tippy-popper[x-placement^='right']
	.tippy-tooltip.transparent-theme
	[x-arrow].arrow-big {
	border-bottom: 10px solid #0000;
	border-right: 10px solid #000000b3;
	border-top: 10px solid #0000;
}

.tippy-popper[x-placement^='right'] [data-animation='perspective'] {
	transform-origin: left;
}

.tippy-popper[x-placement^='right'] [data-animation='perspective'].enter {
	opacity: 1;
	transform: translateX(10px) rotateY(0);
}

.tippy-popper[x-placement^='right'] [data-animation='perspective'].leave {
	opacity: 0;
	transform: translateX(0) rotateY(90deg);
}

.tippy-popper[x-placement^='right'] [data-animation='fade'].enter {
	opacity: 1;
	transform: translateX(10px);
}

.tippy-popper[x-placement^='right'] [data-animation='fade'].leave {
	opacity: 0;
	transform: translateX(10px);
}

.tippy-popper[x-placement^='right'] [data-animation='shift'].enter {
	opacity: 1;
	transform: translateX(10px);
}

.tippy-popper[x-placement^='right'] [data-animation='shift'].leave {
	opacity: 0;
	transform: translateX(0);
}

.tippy-popper[x-placement^='right'] [data-animation='scale'].enter {
	opacity: 1;
	transform: translateX(10px) scale(1);
}

.tippy-popper[x-placement^='right'] [data-animation='scale'].leave {
	opacity: 0;
	transform: translateX(0) scale(0);
}

.tippy-popper .tippy-tooltip.transparent-theme {
	background-color: #000000b3;
}

.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill] {
	background-color: initial;
}

.tippy-popper .tippy-tooltip.light-theme {
	background-color: #fff;
	box-shadow: 0 4px 20px 4px #00143c1a, 0 4px 80px -8px #00143c33;
	color: #26323d;
}

.tippy-popper .tippy-tooltip.light-theme[data-animatefill] {
	background-color: initial;
}

.tippy-tooltip {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #333;
	border-radius: 4px;
	color: #fff;
	font-size: 0.95rem;
	padding: 0.4rem 0.8rem;
	position: relative;
	text-align: center;
	will-change: transform;
}

.tippy-tooltip--small {
	font-size: 0.8rem;
	padding: 0.25rem 0.5rem;
}

.tippy-tooltip--big {
	font-size: 1.2rem;
	padding: 0.6rem 1.2rem;
}

.tippy-tooltip[data-animatefill] {
	background-color: initial;
	overflow: hidden;
}

.tippy-tooltip[data-interactive] {
	pointer-events: auto;
}

.tippy-tooltip[data-inertia] {
	transition-timing-function: cubic-bezier(0.53, 2, 0.36, 0.85);
}

.tippy-tooltip [x-arrow] {
	height: 0;
	position: absolute;
	width: 0;
}

.tippy-tooltip [x-circle] {
	background-color: #333;
	border-radius: 50%;
	left: 50%;
	overflow: hidden;
	position: absolute;
	top: 50%;
	transition: all ease;
	width: 130%;
	width: calc(110% + 2rem);
	will-change: transform;
	z-index: -1;
}

.tippy-tooltip [x-circle]:before {
	content: '';
	float: left;
	padding-top: 90%;
}

@media (max-width: 450px) {
	.tippy-popper {
		max-width: 96%;
		max-width: calc(100% - 20px);
	}
}

.header {
	align-items: center;
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	display: block;
	display: flex;
	height: 80px;
	justify-content: center;
	padding: 0 20px;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 10;
	background: #000f00;
}

@media (max-width: 600px) {
	.header {
		padding: 0 10px;
	}
}

@media (max-height: 450px), (max-width: 700px) {
	.header {
		display: none;
	}
}

.header.scrolled {
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
}

.header.scrolled:after {
	opacity: 0.3;
}

.header .logo {
	cursor: pointer;
}

.header .logo img {
	width: 180px;
}

.header .wrapper {
	grid-gap: 20px;
	align-items: center;
	display: grid;
	grid-template-columns: auto 1fr;
	width: 1400px;
}

.header .anAuth {
	display: flex;
	justify-content: end;
}

.header .anAuth .mainBtn {
	margin-left: 15px;
	padding: 0 50px;
}

.header .anAuth .mainBtn:first-child.blue {
	margin-left: 0;
}

@media (max-height: 450px), (max-width: 700px) {
	.header .anAuth .blue {
		display: none;
	}
}

.header .menu {
	position: relative;
}

.header .menu.mainBtn {
	border-radius: 50% !important;
	padding: 0;
	width: 47px !important;
}

.header .flexWrap {
	grid-gap: 15px;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.header .element .open {
	transform: scale(1.1);
}

.header .navigation {
	align-items: center;
	display: flex;
	height: 47px;
	justify-content: space-between;
	min-width: 165px;
	padding: 0 20px;
	position: relative;
}

.header .navigation.baseBlock {
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #212f44 20%, #192232 47%);
}

.header .navigation .menuBtn {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	padding: 5px;
	position: relative;
}

.header .navigation .menuBtn svg {
	color: #32fe2b;
	transition: color 0.2s ease;
	z-index: 10;
}

.header .navigation .menuBtn:before {
	background-color: #232c43;
	border-radius: 50%;
	content: '';
	height: 34px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
	width: 34px;
	z-index: 0;
}

.header .navigation .menuBtn:hover:before {
	opacity: 1;
}

.header:after {
	background-color: var(--lines);
	bottom: 0;
	content: '';
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 0.1s ease-out;
	width: 100%;
}

.header .search {
	align-items: center;
	color: var(--blue);
	display: flex;
	justify-content: center;
	width: 47px;
}

.header .search:hover svg {
	transform: scale(1.2);
}

.header .loadingLines {
	grid-gap: 15px;
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: flex-end;
}

.header .loadingLines .loadingLine {
	align-items: center;
	border-radius: 4px;
	display: flex;
	height: 47px;
	justify-content: center;
	width: 172px;
}

.header .loadingLines .loadingLine .line {
	animation: loadingLine 1s linear infinite;
	background-color: #465063;
	border-radius: 20px;
	height: 15px;
	width: calc(100% - 40px);
}

.header .loadingLines .loadingLine:last-child {
	width: 165px;
}

.headerMobile {
	align-items: center;
	background-color: #000f00;
	display: flex;
	display: none;
	height: 70px;
	justify-content: center;
	padding: 0 15px;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 10;
}

@media (max-width: 600px) {
	.headerMobile {
		padding: 0 10px;
	}
}

@media (max-height: 450px), (max-width: 700px) {
	.headerMobile {
		display: flex;
	}
}

.headerMobile.scrolled {
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
}

.headerMobile.scrolled:after {
	opacity: 0.3;
}

.headerMobile.opened {
	background-color: #0000;
	box-shadow: none;
}

.headerMobile.opened .mainBtn {
	display: none;
}

.headerMobile.opened .logo {
	margin-left: 20px;
}

.headerMobile .wrapper {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: 47px auto 47px;
	max-width: calc(100vw - 20px);
	width: 100%;
}

.headerMobile .wrapper.pro {
	grid-template-columns: 1fr auto 47px;
}

.headerMobile .wrapper .comeBack {
	border-radius: 25px;
	font-size: 13px;
	padding: 0 10px;
}

.headerMobile .wrapper .element {
	height: 47px;
	width: 47px;
}

.headerMobile .wrapper .element .menuBtn {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.headerMobile .logo {
	margin: auto 0;
	transition: margin-left 0.3s ease;
}

.headerMobile .logo img {
	max-width: 150px;
}

.headerMobile.unauth .wrapper {
	grid-template-columns: auto auto 47px;
}

.headerMobile.unauth .wrapper .anAuth {
	display: flex;
}

.headerMobile.unauth .wrapper .anAuth .mainBtn {
	flex-grow: 1;
}

.headerMobile.unauth .wrapper .anAuth .element {
	margin-left: 10px;
}

.headerMobile .balance {
	margin: auto;
}

.headerMobile .balance .body {
	padding-right: 10px;
}

.headerMobile .notificationsWrapper .dropdown {
	border-radius: 0;
	height: 100vh;
	max-height: 100vh;
	min-width: 100vw;
	position: fixed;
	top: 0;
	width: 100vw;
}

.headerMobile .notificationsWrapper .dropdown:after {
	display: none;
}

.headerMobile .sandwich {
	align-items: center;
	display: flex;
	justify-content: center;
	position: relative;
}

.headerMobile .sandwich svg {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	color: var(--blue);
	cursor: pointer;
	transition: transform 0.4s;
	-webkit-user-select: none;
	user-select: none;
}

.headerMobile .sandwich svg .line {
	fill: none;
	stroke: var(--blue);
	stroke-width: 5.5;
	stroke-linecap: round;
	transition: stroke-dasharray 0.4s, stroke-dashoffset 0.4s;
}

.headerMobile .sandwich svg .top {
	stroke-dasharray: 40 160;
}

.headerMobile .sandwich svg .middle {
	stroke-dasharray: 40 142;
	transform-origin: 50%;
	transition: transform 0.4s;
}

.headerMobile .sandwich svg .bottom {
	stroke-dasharray: 40 85;
	transform-origin: 50%;
	transition: transform 0.4s, stroke-dashoffset 0.4s;
}

.headerMobile .sandwich.opened svg {
	transform: rotate(45deg);
}

.headerMobile .sandwich.opened svg .top {
	stroke-dashoffset: -64px;
}

.headerMobile .sandwich.opened svg .middle {
	transform: rotate(90deg);
}

.headerMobile .sandwich.opened svg .bottom {
	stroke-dashoffset: -64px;
}

.bottomMenuMobile {
	grid-gap: 10px;
	align-items: center;
	background-color: #121a29;
	border-top: 5px solid #1d2430;
	bottom: 0;
	display: none;
	grid-template-columns: calc(25% - 25px) calc(25% - 25px) 80px calc(25% - 25px) calc(
			25% - 25px
		);
	justify-content: center;
	left: 0;
	padding: 0 10px env(safe-area-inset-bottom);
	position: fixed;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	width: 100vw;
	z-index: 4;
}

.bottomMenuMobile.opened {
	transform: translateY(0);
}

@media (max-height: 450px), (max-width: 700px) {
	.bottomMenuMobile {
		display: grid;
	}
}

.bottomMenuMobile .mainBtn {
	height: 70px;
	position: relative;
	top: -10px;
	width: 70px;
}

.bottomMenuMobile .mainBtn img {
	height: 30px;
	width: 30px;
}

.bottomMenuMobile a {
	align-items: center;
	color: #475774;
	display: flex;
	flex-direction: column;
	font-size: 0.6rem;
	justify-content: center;
	text-transform: uppercase;
}

.bottomMenuMobile a svg {
	color: #fff;
	height: 30px;
	margin-bottom: 3px;
	width: 30px;
}

.bottomMenuMobile a.active,
.bottomMenuMobile a.active svg {
	color: var(--blue);
}

.sandwichMenu {
	background-color: var(--bgModal);
	display: none;
	flex-direction: column;
	height: 100%;
	left: 0;
	overflow-x: clip;
	overflow-y: auto;
	padding: 70px 30px 30px;
	position: fixed;
	top: 0;
	z-index: 9;
}

.sandwichMenu .sandwichBtn {
	background-color: #202a3d;
	background-image: none;
	border: 3px solid #3f4e69;
}

.sandwichMenu .authButtons {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.sandwichMenu .authButtons .blue {
	box-shadow: none;
}

@media (max-height: 450px), (max-width: 700px) {
	.sandwichMenu.opened {
		display: flex;
	}
}

.sandwichMenu .searchSandwich {
	align-items: flex-start;
	color: #677a9d;
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
	margin-top: 10px;
}

.sandwichMenu .searchSandwich p {
	animation: searchSandwichAppear 0.3s ease both;
	font-size: 1.1rem;
}

.sandwichMenu .searchSandwich .sandwichBtn {
	animation: searchSandwichAppear 0.3s ease both;
	color: #677a9d;
	margin-top: 20px;
	padding: 0 30px;
}

@keyframes searchSandwichAppear {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sandwichMenu .searchSandwich:after {
	animation: searchSandwichAppearAfter 0.3s ease both;
	background-color: #202a3d;
	border-radius: 50%;
	content: '';
	height: 440px;
	left: 35%;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
	transform-origin: left top;
	width: 240vw;
	z-index: -1;
}

@keyframes searchSandwichAppearAfter {
	0% {
		transform: scale(0) translate(-50%, -50%);
	}
	to {
		transform: scale(1) translate(-50%, -50%);
	}
}

.sandwichMenu .elements {
	padding: 0 10px;
}

.sandwichMenu .elements a {
	align-items: center;
	color: #677a9d;
	display: flex;
	font-size: 1rem;
	margin-bottom: 20px;
	opacity: 0;
}

.sandwichMenu .elements a svg {
	color: var(--blue);
	height: auto;
	margin-right: 10px;
	width: 30px;
}

.sandwichMenu .elements a:first-child {
	animation: elementSandwich 0.2s ease 0.05s both;
}

.sandwichMenu .elements a:nth-child(2) {
	animation: elementSandwich 0.2s ease 0.1s both;
}

.sandwichMenu .elements a:nth-child(3) {
	animation: elementSandwich 0.2s ease 0.15s both;
}

.sandwichMenu .elements a:nth-child(4) {
	animation: elementSandwich 0.2s ease 0.2s both;
}

.sandwichMenu .elements a:nth-child(5) {
	animation: elementSandwich 0.2s ease 0.25s both;
}

.sandwichMenu .elements a:nth-child(6) {
	animation: elementSandwich 0.2s ease 0.3s both;
}

.sandwichMenu .elements a:nth-child(7) {
	animation: elementSandwich 0.2s ease 0.35s both;
}

.sandwichMenu .elements a:nth-child(8) {
	animation: elementSandwich 0.2s ease 0.4s both;
}

.sandwichMenu .elements a:nth-child(9) {
	animation: elementSandwich 0.2s ease 0.45s both;
}

.sandwichMenu .elements a:nth-child(10) {
	animation: elementSandwich 0.2s ease 0.5s both;
}

@keyframes elementSandwich {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sandwichMenu .lntg {
	animation: lntgAppear 0.3s ease 0.3s both;
	margin-top: auto;
	width: 100%;
}

@keyframes lntgAppear {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sandwichMenu .lntg img {
	height: 20px;
	margin-right: 10px;
}

.notificationsWrapper .menuBtn {
	position: relative;
}

.notificationsWrapper .menuBtn.notted:after {
	opacity: 1;
}

.notificationsWrapper .menuBtn.open:after {
	opacity: 0 !important;
}

.notificationsWrapper .menuBtn:after {
	background-color: #fe2b90;
	border-radius: 50%;
	content: '';
	height: 6px;
	opacity: 0;
	position: absolute;
	right: 5px;
	top: 5px;
	transition: opacity 0.3s ease;
	width: 6px;
	z-index: 99;
}

.notificationsWrapper .head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.notificationsWrapper .head .readAll {
	align-items: center;
	color: #7a85a5;
	cursor: pointer;
	display: flex;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.notificationsWrapper .head .readAll:hover {
	color: var(--blue);
}

.notificationsWrapper .head .readAll svg {
	margin-left: 10px;
}

.notificationsWrapper .dropdown {
	min-width: 400px;
}

.notificationsWrapper .dropdown:after {
	left: auto;
	right: 115px;
}

.notificationsWrapper .notifications {
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px 10px 10px 0;
}

.notificationsWrapper .notifications .empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 0;
	width: 100%;
}

.notificationsWrapper .notifications .empty p {
	font-size: 14px;
	padding-top: 15px;
}

.notificationsWrapper .notifications .notification {
	display: flex;
	height: auto;
	margin-bottom: 5px;
	padding: 10px;
}

.notificationsWrapper .notifications .notification .imgHolder {
	align-items: center;
	background-image: linear-gradient(180deg, #1e2a3d, #1e2a3d),
		linear-gradient(180deg, #2a3a54 20%, #1e2a3d 47%);
	display: flex;
	flex-shrink: 0;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.notificationsWrapper .notifications .notification .inside {
	flex-grow: 1;
	margin-left: 10px;
}

.notificationsWrapper .notifications .notification .inside p {
	color: #7a85a5;
	font-size: 0.8rem;
	margin-top: 5px;
}

.notificationsWrapper .notifications .notification .inside .value {
	color: #32fe2b;
	display: inline;
}

.footer {
	background-color: var(--bgModal);
	max-width: 100vw;
	overflow: hidden;
	padding: 50px 20px;
}

@media (max-width: 800px) {
	.footer .wrap .row {
		grid-gap: 20px;
	}
}

@media (max-height: 450px), (max-width: 700px) {
	.footer {
		padding: 50px 10px 100px;
	}
	.footer .wrap .row {
		grid-gap: 30px;
		grid-template-columns: 1fr;
	}
	.footer .wrap .row .col {
		padding-left: 7%;
	}
	.footer .wrap .last {
		grid-gap: 25px;
		grid-template-columns: 1fr;
	}
	.footer .wrap .last .inLine {
		justify-content: center !important;
	}
	.footer .wrap .last .inLine.top {
		grid-area: 1;
	}
}

.footer .wrap {
	margin: 0 auto;
	max-width: 1280px;
}

.footer .row {
	grid-gap: 30px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	padding-bottom: 30px;
	position: relative;
	width: 100%;
}

.footer .row:after {
	background-color: var(--line);
	bottom: 0;
	content: '';
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: calc(100% - 30px);
}

.footer .row .col {
	display: flex;
	flex-direction: column;
}

.footer .row .col .logo {
	margin-bottom: 20px;
	width: 180px;
}

.footer .row .col a,
.footer .row .col p {
	color: var(--textSecondary);
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	transition: 0.15s ease;
}

.footer .row .col .h2 {
	color: var(--text);
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
}

.footer .row .col.list a,
.footer .row .col.list p {
	font-size: 14px;
	padding: 4px 0;
}

.footer .row .col.list .subLink {
	cursor: pointer;
	text-decoration: underline;
}

.footer .row .col.list .subLink,
.footer .row .col.list a {
	display: inline-block;
}

.footer .row .col.list .subLink:hover,
.footer .row .col.list a:hover {
	color: var(--text);
}

.footer .row.simple {
	grid-column-gap: 20px;
	grid-row-gap: 32px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
	padding: 30px 0;
	text-align: center;
	width: 100%;
}

.footer .row a {
	transition: opacity 0.3s ease;
}

.footer .row a:hover {
	opacity: 0.7;
}

.footer .row .icon {
	width: 108px;
}

.footer .last {
	grid-gap: 15px;
	align-items: center;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 30px 10px 0;
}

.footer .last .inLine {
	align-items: center;
	display: flex;
	width: 100%;
}

.footer .last .inLine svg {
	height: 50px;
	margin-right: 15px;
	width: 50px;
}

.footer .last .inLine p {
	color: var(--textSecondary);
	font-size: 13px;
	font-weight: 300;
}

.footer .last .inLine:last-child {
	justify-content: flex-end;
}

.footer .last .inLine .rate {
	align-items: center;
	border-radius: 20px;
	color: var(--textSecondary);
	display: flex;
	font-size: 12px;
	justify-content: center;
	margin-right: 10px;
	padding: 10px 15px;
}

.footer .last .inLine iframe {
	background-color: var(--bgModal);
	height: 40px;
	margin-right: 10px;
	width: 40px;
}

.footer .last .inLine a {
	transition: opacity 0.3s ease;
}

.footer .last .inLine a:hover {
	opacity: 0.7;
}

.footer .last .inLine a img {
	height: 32px;
	width: 40px;
}

.categoriesBlock {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: calc(100% - 330px) 320px;
	min-height: 86px;
}

@media (max-width: 900px) {
	.categoriesBlock {
		grid-gap: 0;
		grid-template-columns: 100%;
	}
}

.categoriesBlock .categoriesWrapper {
	display: grid;
	grid-template-columns: 23px calc(100% - 46px) 23px;
}

.categoriesBlock .categoriesWrapper .arrow {
	align-items: center;
	background: #004e00;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	height: 46px;
	justify-content: center;
	margin: 20px 0;
	position: relative;
	width: 46px;
	z-index: 3;
}

.categoriesBlock .categoriesWrapper .arrow svg {
	color: var(--lines);
	height: 16px;
	transition: color 0.3s ease;
	width: 16px;
}

.categoriesBlock .categoriesWrapper .arrow:hover svg {
	color: var(--blue);
}

.categoriesBlock .categoriesWrapper .arrow.left svg {
	transform: rotate(180deg);
}

.categoriesBlock .categoriesWrapper .arrow.right {
	justify-self: flex-end;
}

.categoriesBlock .categoriesWrapper.withBg .arrow {
	box-shadow: none;
}

.categoriesBlock .categoriesWrapper.withBg .category {
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background-color: #19223280;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

@media (max-width: 600px) {
	.categoriesBlock .categoriesWrapper.withBg .category {
		border-radius: 10px;
	}
}

.categoriesBlock .categoriesWrapper.withBg .category .inner {
	color: #fff !important;
}

.categoriesBlock .categoriesWrapper.withBg .category:hover {
	background-color: #192232b3;
}

.categoriesBlock .categoriesWrapper .categories {
	max-width: 100%;
}

.categoriesBlock .categoriesWrapper .categories swiper-slide {
	padding: 20px 0;
	width: auto !important;
}

.categoriesBlock .categoriesWrapper .categories swiper-slide:first-child {
	padding-left: 35px;
}

.categoriesBlock .categoriesWrapper .categories swiper-slide:last-child {
	padding-right: 35px;
}

.categoriesBlock .categoriesWrapper .categories .category {
	display: block;
	height: 46px;
	position: relative;
}

.categoriesBlock
	.categoriesWrapper
	.categories
	.category.loadingCategory
	.inner {
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background-color: #19223280;
}

.categoriesBlock .categoriesWrapper .categories .category .inner {
	align-items: center;
	border-radius: 4px;
	color: var(--textSecondary);
	cursor: pointer;
	display: flex;
	font-size: 1.1rem;
	font-weight: 500;
	height: 46px;
	justify-content: center;
	padding: 5px 17px 5px 10px;
	position: relative;
	transition: color 0.3s ease;
	white-space: nowrap;
	z-index: 2;
}

.categoriesBlock .categoriesWrapper .categories .category .inner:hover {
	color: var(--blue);
}

.categoriesBlock .categoriesWrapper .categories .category .inner:hover span {
	border-color: var(--blue);
}

.categoriesBlock .categoriesWrapper .categories .category .inner svg {
	height: 18px;
	margin-left: 5px;
	margin-right: 8px;
	width: 18px;
}

.categoriesBlock .categoriesWrapper .categories .category .inner .line {
	animation: loadingLine 1s linear infinite;
	background-color: #465063;
	border-radius: 20px;
	height: 10px;
	margin: 0 20px;
	width: calc(100% - 40px);
	width: 130px;
}

.categoriesBlock .categoriesWrapper .categories .category.active .inner {
	background: linear-gradient(90deg, #005d11 0%, #00c324 100%);
	color: #fff;
	transition: box-shadow 0.3s ease;
}

.categoriesBlock
	.categoriesWrapper
	.categories
	.category.active
	.inner
	svg
	path {
	fill: #fff;
}

.categoriesBlock
	.categoriesWrapper
	.categories
	.category.active
	.inner
	span.count {
	border-color: #fff;
}

.categoriesBlock .categoriesWrapper .categories .category.active .inner:hover {
	border-color: #0000;
}

@media (max-width: 600px) {
	.categoriesBlock .categoriesWrapper {
		grid-template-columns: 100%;
	}
	.categoriesBlock .categoriesWrapper .arrow {
		display: none;
	}
	.categoriesBlock .categoriesWrapper .categories .category {
		height: 57px;
	}
	.categoriesBlock .categoriesWrapper .categories .category .inner {
		border-radius: 10px;
		box-shadow: none !important;
		flex-direction: column;
		font-size: 0.7rem !important;
		height: 57px;
		min-width: 70px;
		overflow: hidden;
		padding: 7px;
		text-overflow: ellipsis;
	}
	.categoriesBlock .categoriesWrapper .categories .category .inner svg {
		height: 24px;
		margin: 0 0 5px;
		width: 24px;
	}
	.categoriesBlock .categoriesWrapper .categories .category .inner .count {
		display: none;
	}
	.categoriesBlock .categoriesWrapper .categories .category .inner .line {
		height: 5px;
		margin: 0 5px;
		width: 30px;
	}
	.categoriesBlock .categoriesWrapper swiper-slide {
		padding: 0 !important;
	}
	.categoriesBlock .categoriesWrapper swiper-slide:first-child {
		padding-left: 0 !important;
	}
	.categoriesBlock .categoriesWrapper swiper-slide:last-child {
		padding-right: 0 !important;
	}
}

.categoriesBlock .loadingLine {
	margin: auto;
	width: 100%;
}

.categoriesBlock .loadingLine .line {
	animation: loadingLine 1s linear infinite;
	background-color: #465063;
	border-radius: 20px;
	height: 10px;
	width: calc(100% - 40px);
}

@media (max-width: 900px) {
	.categoriesBlock .loadingLine {
		margin: 15px 0 10px;
	}
}

.categoriesBlock .providers {
	color: #fff !important;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 1rem;
	height: 46px;
	margin: 20px 0;
	position: relative;
	z-index: 3;
}

@media (max-width: 900px) {
	.categoriesBlock .providers {
		margin: 15px 0 10px;
	}
}

.categoriesBlock .providers.active {
	background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
		linear-gradient(180deg, #79cdfd, #1a64fc);
	box-shadow: 0 0 20px 0 #3a7cffab;
	transition: box-shadow 0.3s ease;
}

.categoriesBlock .providers.active:hover {
	border-color: #0000;
}

.categoriesBlock .providers.active .defaultSelect__single-value {
	color: #fff;
}

.categoriesBlock .providers.active .defaultSelect__single-value span.count {
	border-color: #fff;
}

.categoriesBlock .providers.active .defaultSelect__indicator {
	color: #fff;
}

.categoriesBlock
	.providers.none
	.defaultSelect__control--menu-is-open
	.defaultSelect__single-value {
	display: none;
}

.categoriesBlock
	.providers.none
	.defaultSelect__control--menu-is-open
	.defaultSelect__input {
	margin: 0 10px !important;
}

.categoriesBlock span.count {
	border: 2px solid var(--borderModal);
	border-radius: 30px;
	font-size: 0.7rem;
	font-weight: 700;
	margin-left: 10px;
	padding: 3px 10px;
	transition: border-color 0.3s ease;
}

.searchGames {
	background-color: var(--bgModal);
	border-radius: 30px;
	box-sizing: initial;
	height: calc(100% - 60px);
	margin-top: 10px;
	max-height: 100%;
	padding: 20px;
	position: absolute;
	top: 0;
	width: calc(100% - 60px);
}

.searchGames .field {
	box-sizing: initial;
	display: grid;
	grid-template-columns: 40px auto;
	height: 40px;
}

.searchGames .field svg {
	align-self: center;
	justify-self: center;
}

.searchGames .field input {
	background-color: #0000;
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: 1rem;
	height: 40px;
	outline: 0;
	padding: 0;
}

.searchGames:before {
	background: linear-gradient(var(--bgModal) 20%, #121a2900);
	top: 70px;
}

.searchGames:after,
.searchGames:before {
	content: '';
	height: 15px;
	left: 20px;
	position: absolute;
	width: calc(100% - 50px);
	z-index: 1;
}

.searchGames:after {
	background: linear-gradient(#121a2900, var(--bgModal) 80%);
	bottom: 15px;
}

.searchGames .items {
	height: 100%;
	margin-top: 5px;
	max-height: calc(100% - 50px);
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 10px;
	padding-top: 10px;
	position: relative;
	width: 100%;
}

.searchGames .items .list {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
}

.searchGames .items .list .blockLoader {
	max-height: calc(100% - 10px);
}

.searchGames .items.waiting .item {
	animation: flashCustom 0.5s ease infinite;
}

@keyframes flashCustom {
	0% {
		opacity: 0.75;
	}
	50% {
		opacity: 0.25;
	}
	to {
		opacity: 0.75;
	}
}

.searchGames .items .item {
	grid-gap: 10px;
	border-radius: 10px;
	cursor: pointer;
	display: grid;
	grid-template-columns: 60px calc(100% - 70px);
	height: 80px;
}

.searchGames .items .item .thumb {
	border-radius: 9px;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.searchGames .items .item .thumb:before {
	background-color: var(--slotHover);
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.15s ease;
	z-index: 2;
}

.searchGames .items .item .thumb .playBtn {
	height: 50px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.15s ease;
	width: 50px;
	z-index: 2;
}

.searchGames .items .item .thumb .playBtn:after {
	display: none;
}

.searchGames .items .item .thumb .playBtn img {
	height: 30px;
	width: 30px;
}

.searchGames .items .item .thumb .image {
	height: 80px;
	object-fit: cover;
	object-position: 50% 50%;
	transition: transform 0.15s ease;
	width: 100%;
}

@media (max-width: 600px) {
	.searchGames .items .item {
		border-radius: 11px;
		grid-template-columns: 40px calc(100% - 50px);
		height: 60px;
	}
	.searchGames .items .item .thumb {
		border-radius: 8px;
	}
	.searchGames .items .item .thumb .image {
		height: 60px;
	}
	.searchGames .items .item .thumb .playBtn {
		height: 40px;
		width: 40px;
	}
	.searchGames .items .item .thumb .playBtn img {
		height: 20px;
		width: 20px;
	}
}

.searchGames .items .item:hover .thumb .image {
	transform: scale(1.2);
}

.searchGames .items .item:hover .thumb .playBtn,
.searchGames .items .item:hover .thumb:before {
	opacity: 1;
}

.searchGames .items .item .info {
	align-self: center;
}

.searchGames .items .item .info .name {
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.searchGames .items .item .info .provider {
	color: var(--textSecondary);
	font-size: 0.7rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.searchGames .itemsEmpty {
	align-items: center;
	color: var(--textSecondary);
	display: flex;
	flex-direction: column;
	grid-column: 1/-1;
	height: 100%;
	justify-content: center;
	margin-top: 20px;
}

.searchGames .itemsEmpty svg {
	fill: var(--iconColor);
	height: 100px;
	width: 100px;
}

.searchGames .itemsEmpty .h6 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-top: 10px;
}

.searchGames .itemsEmpty p {
	font-size: 0.6rem;
	font-weight: 300;
	margin-top: 4px;
}

.banerBody {
	padding-top: 70px;
	position: relative;
}

@media (max-width: 1400px) {
	.banerBody {
		padding-top: 0;
	}
}

.banerBody .arrowArea {
	cursor: pointer;
	height: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-100%, -50%);
	width: 250px;
	z-index: 1;
}

.banerBody .arrowArea.right {
	right: 0;
	transform: translate(100%, -50%);
}

.banerBody .banners .swiper-slide {
	transition: opacity 0.3s ease-out, transform 0.3s ease-out !important;
}

.banerBody .banners .swiper-slide.swiper-slide-next,
.banerBody .banners .swiper-slide.swiper-slide-prev {
	opacity: 0.2 !important;
}

.banerBody .banners .swiper-pagination {
	align-items: center;
	bottom: -15px;
	display: flex;
	justify-content: center;
	padding: 0 auto;
	width: 100%;
}

.banerBody .banners .swiper-pagination .swiper-pagination-bullet {
	background: #829dff;
	border-radius: 2px;
	height: 2px;
	opacity: 0.2;
	transition: all 0.12s ease-out;
	width: 150px;
}

.banerBody
	.banners
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--blue);
	border: 0;
	box-shadow: 0 0 3px #0003;
	opacity: 1;
}

@media (min-width: 1400px) {
	.banerBody .banners {
		overflow: visible !important;
	}
}

@media (max-width: 1400px) {
	.banerBody .banners {
		padding-top: 50px;
	}
}

@media (max-width: 900px) {
	.banerBody .banners {
		padding-top: 40px;
	}
}

@media (max-width: 600px) {
	.banerBody .banners {
		left: -10px;
		width: calc(100% + 20px);
	}
}

.banner {
	background: linear-gradient(90deg, #121a29 0.11%, #10162000 97.48%);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
}

.banner .h1 {
	font-size: 3rem;
	font-weight: 700;
	padding-bottom: 10px;
}

@media (max-width: 900px) {
	.banner .h1 {
		font-size: 2rem;
	}
}

@media (max-width: 600px) {
	.banner .h1 {
		font-size: 1.5rem;
	}
}

.banner p {
	font-size: 1.4rem;
	font-weight: 300;
	max-width: 45%;
	text-shadow: 0 3px 4px #0a0d1169;
}

@media (max-width: 1200px) {
	.banner p {
		max-width: 60%;
	}
}

@media (max-width: 900px) {
	.banner p {
		font-size: 1rem;
		font-size: 0.8rem;
		font-weight: 400;
	}
}

.banner p span {
	color: #32fe2b;
	font-weight: 700;
}

.banner .mainBtn {
	font-weight: 400;
	margin-top: 50px;
	max-width: 250px;
}

@media (max-width: 600px) {
	.banner .mainBtn {
		font-size: 0.8rem !important;
		height: 40px !important;
		margin-top: 20px;
		max-width: 190px;
	}
}

.banner:after {
	content: '';
	display: block;
	padding-top: 386px;
	width: 100%;
}

@media (max-width: 900px) {
	.banner:after {
		padding-top: 250px;
	}
}

@media (max-width: 600px) {
	.banner:after {
		padding-top: 186px;
	}
}

.banner .inside {
	bottom: 5%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	left: 5%;
	position: absolute;
	right: 5%;
	top: 5%;
}

@media (max-width: 600px) {
	.banner {
		border-radius: 0 !important;
	}
}

.banner.challengeBanner {
	background: url('');
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 45px;
}

.banner.challengeBanner img {
	bottom: 0;
	position: absolute;
	right: 20%;
}

@media (max-width: 1200px) {
	.banner.challengeBanner img {
		right: 0;
	}
}

@media (max-width: 900px) {
	.banner.challengeBanner img {
		height: 300px;
		right: 5%;
	}
}

@media (max-width: 600px) {
	.banner.challengeBanner img {
		height: 220px;
		right: -3%;
	}
}

.banner.jackpotBanner {
	background: url('');
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 24px;
}

.banner.jackpotBanner img {
	bottom: 0;
	height: 440px;
	position: absolute;
	right: 10%;
}

@media (max-width: 1200px) {
	.banner.jackpotBanner img {
		right: 0;
	}
}

@media (max-width: 900px) {
	.banner.jackpotBanner img {
		height: 290px;
		right: -15px;
	}
}

@media (max-width: 600px) {
	.banner.jackpotBanner img {
		height: 220px;
		right: -10%;
	}
}

.banner.jackpotBanner .h1 {
	color: #ffcc48;
	text-transform: uppercase;
}

.banner.jackpotBanner .h2 {
	font-size: 4.83rem;
	font-weight: 700;
}

.banner.jackpotBanner .h2 p {
	display: none;
	font-size: 0.6rem;
}

@media (max-width: 900px) {
	.banner.jackpotBanner .h2 {
		font-size: 3rem;
	}
}

@media (max-width: 600px) {
	.banner.jackpotBanner .h2 {
		font-size: 2.5rem;
	}
	.banner.jackpotBanner .h2 p {
		display: block !important;
	}
}

.banner.jackpotBanner .h2 .odometer {
	margin-bottom: 8px;
}

.banner.jackpotBanner .h3 {
	font-size: 1.1rem;
	line-height: 1.5rem;
	max-width: 45%;
}

@media (max-width: 1200px) {
	.banner.jackpotBanner .h3 {
		max-width: 60%;
	}
}

@media (max-width: 900px) {
	.banner.jackpotBanner .h3 {
		font-size: 1rem;
		max-width: 60%;
	}
}

@media (max-width: 700px) {
	.banner.jackpotBanner .h3 {
		font-size: 0.8rem;
	}
}

@media (max-width: 600px) {
	.banner.jackpotBanner .h3 {
		display: none;
	}
}

@media (max-width: 900px) {
	.banner.jackpotBanner .mainBtn {
		font-size: 1rem;
		height: 40px;
		margin-top: 0;
		max-width: 60%;
	}
}

.banner.bonusBanner {
	background: url('/images/bgShark.png') center center / cover no-repeat;
	border-radius: 25px;
}

@media (max-width: 1200px) {
	.banner.bonusBanner .inside .h2 {
		display: none;
	}
	.banner.bonusBanner .inside .info {
		grid-gap: 10px;
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		max-width: 65%;
	}
	.banner.bonusBanner .inside .info .iblock {
		margin: 0 !important;
	}
}

@media (max-width: 1100px) {
	.banner.bonusBanner .inside .h1 {
		font-size: 3rem !important;
	}
}

@media (max-width: 900px) {
	.banner.bonusBanner .mainImg {
		bottom: 0;
		height: 300px !important;
		top: auto !important;
		transform: none !important;
	}
	.banner.bonusBanner .inside .h1 {
		font-size: 2.5rem !important;
	}
	.banner.bonusBanner .inside .info .iblock img {
		margin-right: 10px !important;
		width: 30px !important;
	}
	.banner.bonusBanner .inside .info .iblock .h3 {
		font-size: 1.3rem !important;
	}
}

@media (max-width: 700px) {
	.banner.bonusBanner .mainImg {
		height: 250px !important;
	}
}

@media (max-width: 600px) {
	.banner.bonusBanner .mainImg {
		bottom: auto;
		height: 150px !important;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.banner.bonusBanner .inside {
		left: 3% !important;
		right: 3% !important;
	}
	.banner.bonusBanner .inside .h1 {
		font-size: 1.5rem !important;
	}
	.banner.bonusBanner .inside .info {
		grid-gap: 10px;
	}
	.banner.bonusBanner .inside .info .iblock {
		padding: 5px 10px !important;
	}
	.banner.bonusBanner .inside .info .iblock .h3 {
		font-size: 1rem !important;
	}
	.banner.bonusBanner .inside .info .iblock p {
		font-size: 0.5rem !important;
	}
	.banner.bonusBanner .inside .info .iblock img {
		margin-right: 5px !important;
	}
	.banner.bonusBanner .back {
		border-radius: 0 !important;
	}
}

.banner.bonusBanner .inside {
	bottom: 10%;
	justify-content: space-between;
	top: 10%;
}

.banner.bonusBanner .inside .h1 {
	font-size: 4.7rem;
}

.banner.bonusBanner .inside .h1,
.banner.bonusBanner .inside .h2 {
	text-shadow: 0 6.189px 8.252px #172e504d;
	text-transform: uppercase;
}

.banner.bonusBanner .inside .h2 {
	font-size: 3.5rem;
	font-weight: 700;
	opacity: 0.9;
}

.banner.bonusBanner .inside .info {
	display: flex;
}

.banner.bonusBanner .inside .info .iblock {
	align-items: center;
	background-color: rgba(18, 26, 41, 0.302);
	border-radius: 15px;
	display: flex;
	margin-right: 15px;
	padding: 10px 15px;
}

.banner.bonusBanner .inside .info .iblock img {
	margin-right: 15px;
	width: 60px;
}

.banner.bonusBanner .inside .info .iblock .h3 {
	font-size: 2rem;
	font-weight: 700;
}

.banner.bonusBanner .inside .info .iblock .h3 span {
	color: #32fe2b;
}

.banner.bonusBanner .inside .info .iblock.col {
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.banner.bonusBanner .inside .info .iblock.col p {
	text-wrap: nowrap;
	font-size: 0.9rem;
	max-width: 100%;
	padding-top: 2px;
	text-align: center;
	width: 100%;
}

.banner.bonusBanner .mainImg {
	height: 400px;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

.banner.bonusBanner .back {
	background: #192232;
	border-radius: 25px;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.banner.bonusBanner .backImg {
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	width: 100%;
}

@media (max-width: 1300px) {
	.banner.slotBanner .mainImg {
		height: 400px !important;
		right: 15px !important;
	}
}

@media (max-width: 1150px) {
	.banner.slotBanner .methods {
		grid-gap: 15px !important;
		padding: 15px !important;
	}
	.banner.slotBanner .methods .method .images img {
		max-height: 35px;
	}
	.banner.slotBanner .mainBtn {
		margin-top: 0;
	}
}

@media (max-width: 1100px) {
	.banner.slotBanner .inside .h1,
	.banner.slotBanner .inside .h1.pay {
		font-size: 2rem !important;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play .h1 {
		font-size: 14px !important;
	}
	.banner.slotBanner .inside .list .slot:nth-child(4),
	.banner.slotBanner .inside .list .slot:nth-child(5) {
		display: none;
	}
}

@media (max-width: 1050px) {
	.banner.slotBanner .inside .h1 {
		font-size: 1.8rem !important;
	}
	.banner.slotBanner .inside .h1.pay {
		font-size: 1.6rem !important;
	}
	.banner.slotBanner .inside .methods {
		grid-template-columns: 1fr 1fr !important;
	}
	.banner.slotBanner .inside .methods .method.first {
		grid-area: 1/1/1/3;
	}
}

@media (max-width: 900px) {
	.banner.slotBanner .mainImg {
		height: 270px !important;
		right: 20px !important;
	}
	.banner.slotBanner .inside .h1 {
		font-size: 1.4rem !important;
	}
	.banner.slotBanner .inside .h1.pay {
		font-size: 1.2rem !important;
	}
	.banner.slotBanner .inside .methods {
		grid-template-columns: 1fr 1fr 1fr !important;
	}
	.banner.slotBanner .inside .methods .method.first {
		grid-area: 1;
	}
	.banner.slotBanner .inside .methods .method .h4 {
		font-size: 10px !important;
		padding-top: 10px !important;
	}
	.banner.slotBanner .inside .methods .method .images img {
		max-height: 30px !important;
	}
	.banner.slotBanner .inside .list .slot {
		border-radius: 15px;
		margin-right: 10px !important;
		max-width: 100px !important;
	}
	.banner.slotBanner .inside .list .slot .slotInner,
	.banner.slotBanner .inside .list .slot .slotInner .play {
		border-radius: 15px;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play .h1 {
		font-size: 8px !important;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play p {
		display: none;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play .mainBtn {
		display: flex !important;
		height: 45px;
		width: 45px;
	}
	.banner.slotBanner .inside .list .slot .slotInner .back {
		border-radius: 15px;
	}
	.banner.slotBanner .inside .list .slot:nth-child(4) {
		display: block;
	}
}

@media (max-width: 800px) {
	.banner.slotBanner .inside .methods {
		max-width: 65%;
	}
}

@media (max-width: 750px) {
	.banner.slotBanner .mainBtn {
		display: none;
	}
	.banner.slotBanner .mainImg {
		height: 275px !important;
		right: -30px !important;
	}
	.banner.slotBanner .mainImg.bi {
		height: 235px !important;
	}
	.banner.slotBanner .inside .methods {
		grid-template-columns: 1fr 1fr !important;
	}
	.banner.slotBanner .inside .methods .method.first {
		grid-area: 1/1/1/3 !important;
	}
	.banner.slotBanner .inside .h1 {
		font-size: 1.2rem !important;
	}
	.banner.slotBanner .inside .h1.pay {
		font-size: 1rem !important;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play .mainBtn {
		height: 40px;
		width: 40px;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play .like {
		height: 25px !important;
		opacity: 1 !important;
		visibility: visible !important;
		width: 25px !important;
	}
	.banner.slotBanner .inside .list .slot .slotInner .play .like svg {
		width: 12px !important;
	}
	.banner.slotBanner .inside .list .slot:nth-child(4) {
		display: none;
	}
}

@media (max-width: 600px) {
	.banner.slotBanner .mainImg {
		bottom: 0;
		height: 210px !important;
		right: -60px !important;
		top: auto;
		transform: none;
	}
	.banner.slotBanner .mainImg.bi {
		height: 180px !important;
		right: -20px !important;
	}
	.banner.slotBanner .inside .h1 {
		font-size: 0.9rem !important;
	}
	.banner.slotBanner .inside .h1.pay {
		font-size: 0.75rem !important;
	}
	.banner.slotBanner .inside .h4 {
		font-size: 8px !important;
		padding-top: 5px !important;
	}
	.banner.slotBanner .inside .methods .method .images img {
		max-height: 20px !important;
	}
	.banner.slotBanner .inside .list .slot {
		max-width: 80px !important;
	}
}

.banner.slotBanner .methods {
	grid-gap: 30px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	background-color: rgba(17, 23, 37, 0.302);
	border-radius: 18px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 60%;
	padding: 20px;
}

.banner.slotBanner .methods .method {
	flex-direction: column;
	width: 100%;
}

.banner.slotBanner .methods .method,
.banner.slotBanner .methods .method .images {
	align-items: center;
	display: flex;
	justify-content: center;
}

.banner.slotBanner .methods .method .images img {
	margin-right: 15px;
}

.banner.slotBanner .methods .method .images img:last-child {
	margin: 0;
}

.banner.slotBanner .methods .method .h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	padding-top: 15px;
	text-transform: uppercase;
	white-space: nowrap;
}

.banner.slotBanner .inside .h1 {
	font-size: 2.3rem;
}

.banner.slotBanner .mainImg {
	bottom: 0;
	height: 440px;
	right: 60px;
	top: auto;
	transform: none;
}

.banner.slotBanner .back {
	border-radius: 27px;
}

.banner.slotBanner .back .backImg {
	filter: blur(0);
}

.banner.slotBanner .list {
	display: flex;
}

.banner.slotBanner .list .slot {
	margin-right: 15px;
	max-width: 133px;
}

.banner.slotBanner .list .slot .play .h1 {
	font-size: 14px;
}

.banner.slotBanner .list .slot .play p {
	font-size: 12px;
	max-width: 100%;
}

.banner.slotBanner .list .slot .play .mainBtn {
	height: 60px;
	margin-top: 0;
	width: 60px;
}

.banner.slotBanner .list .slot .play .mainBtn img {
	height: 25px;
	padding-left: 0;
	width: 25px;
}

.banner.slotBanner .list .slot .play .down .like {
	height: 30px;
	width: 30px;
}

.banner.slotBanner .list .slot .play .down .like svg {
	height: 13px;
	width: 13px;
}

.banner.slotBanner .list .slot .demo {
	display: none;
}

@media (max-width: 1000px) {
	.banner.bydloBanner .mainImg {
		height: 420px !important;
		right: -10px !important;
	}
}

@media (max-width: 900px) {
	.banner.bydloBanner .mainImg {
		height: 290px !important;
	}
	.banner.bydloBanner .inside .h1 {
		font-size: 2rem !important;
	}
	.banner.bydloBanner .inside .h3 {
		font-size: 0.9rem !important;
		padding-top: 5px !important;
	}
	.banner.bydloBanner .inside .mainBtn {
		margin: 0 !important;
	}
}

@media (max-width: 600px) {
	.banner.bydloBanner .mainImg {
		bottom: 0;
		height: 200px !important;
		right: -50px !important;
		top: auto;
		transform: none;
	}
	.banner.bydloBanner .inside .h1 {
		font-size: 1.4rem !important;
	}
	.banner.bydloBanner .inside .h3 {
		font-size: 0.7rem !important;
		max-width: 60% !important;
		padding-top: 5px !important;
	}
	.banner.bydloBanner .inside .mainBtn {
		font-size: 0.7rem !important;
		height: 35px !important;
		max-width: 180px !important;
	}
}

.banner.bydloBanner .mainImg {
	bottom: 0;
	height: 450px;
	right: 60px;
	top: auto;
	transform: none;
}

.banner.bydloBanner .back .backImg {
	filter: blur(0);
}

.banner.bydloBanner .inside .h1 {
	font-size: 3rem;
}

.banner.bydloBanner .inside .h3 {
	font-size: 1.3rem;
	font-weight: 300;
	max-width: 50%;
	padding-top: 10px;
}

@media (max-width: 1300px) {
	.banner.tournamentBanner .inside .list .btnHolder {
		display: none;
	}
	.banner.tournamentBanner .mainImg {
		height: 410px !important;
		right: -50px !important;
	}
	.banner.tournamentBanner .inside .list .btnHolder {
		display: none;
	}
	.banner.tournamentBanner .inside .h1 {
		font-size: 2.8rem !important;
	}
	.banner.tournamentBanner .inside .list {
		grid-gap: 15px !important;
	}
}

@media (max-width: 900px) {
	.banner.tournamentBanner .mainImg {
		height: 290px !important;
		right: -30px !important;
	}
	.banner.tournamentBanner .inside .h1 {
		font-size: 1.9rem !important;
	}
	.banner.tournamentBanner .inside .h1 p {
		font-size: 16px !important;
	}
	.banner.tournamentBanner .inside .list .tour .rewards .h6 {
		font-size: 18px !important;
		margin-right: 5px !important;
	}
	.banner.tournamentBanner .inside .list .tour .h5 {
		font-size: 12px !important;
		max-width: 180px !important;
	}
	.banner.tournamentBanner .inside .list .tour .countdown .item span {
		font-size: 12px !important;
		height: 30px !important;
		width: 30px !important;
	}
	.banner.tournamentBanner .inside .list .tour .left {
		font-size: 10px !important;
		padding-top: 7px !important;
	}
}

@media (max-width: 740px) {
	.banner.tournamentBanner .mainImg {
		height: 280px !important;
		right: -20px !important;
	}
}

@media (max-width: 600px) {
	.banner.tournamentBanner .mainImg {
		height: 210px !important;
		right: -30px !important;
	}
	.banner.tournamentBanner .inside .h1 {
		font-size: 1.5rem !important;
	}
	.banner.tournamentBanner .inside .h1 p {
		font-size: 10px !important;
	}
	.banner.tournamentBanner .inside .list {
		grid-gap: 10px !important;
	}
	.banner.tournamentBanner .inside .list .tour {
		padding: 10px !important;
	}
	.banner.tournamentBanner .inside .list .tour .rewards .h6 {
		font-size: 16px !important;
	}
	.banner.tournamentBanner .inside .list .tour .h5 {
		font-size: 10px !important;
		max-width: 150px !important;
	}
	.banner.tournamentBanner .inside .list .tour:last-child {
		display: block;
	}
	.banner.tournamentBanner .inside .list .tour .left {
		display: none !important;
	}
}

@media (max-width: 500px) {
	.banner.tournamentBanner .inside .h1 {
		font-size: 1.2rem !important;
	}
	.banner.tournamentBanner .inside .list .tour:last-child {
		display: none !important;
	}
}

.banner.tournamentBanner .mainImg {
	bottom: 0;
	height: 440px;
	right: -40px;
	top: auto;
	transform: none;
}

.banner.tournamentBanner .inside .theme {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.banner.tournamentBanner .inside .withBack {
	background: #11172580;
	border-radius: 25px;
	font-size: 34px;
	padding: 25px;
}

.banner.tournamentBanner .inside .withBack p {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	max-width: 100%;
	padding-top: 15px;
	text-shadow: 0 6.033px 8.044px #172e502e;
}

.banner.tournamentBanner .inside.stream {
	grid-gap: 50px;
	display: grid;
	grid-template-columns: 1fr 560px;
}

.banner.tournamentBanner .inside.stream .theme .mainBtn {
	height: 44px;
	margin-top: 0;
	width: 200px;
}

.banner.tournamentBanner .inside.stream .theme.hideMobile {
	display: none !important;
}

.banner.tournamentBanner .inside.stream .mob {
	display: none;
}

.banner.tournamentBanner .inside.stream .frameBox {
	padding: 10px;
}

.banner.tournamentBanner .inside.stream .frameBox iframe {
	border-radius: 15px;
}

.banner.tournamentBanner .inside .h1 {
	font-size: 3.1rem;
}

.banner.tournamentBanner .inside .h1 p {
	font-size: 22.388px;
	font-style: normal;
	font-weight: 400;
	padding-bottom: 10px;
	text-transform: none;
}

.banner.tournamentBanner .inside .list {
	grid-gap: 25px;
	display: grid;
	grid-template-columns: auto auto auto 1fr;
}

.banner.tournamentBanner .inside .list .btnHolder {
	align-self: flex-end;
}

.banner.tournamentBanner .inside .list .btnHolder .subText {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.banner.tournamentBanner .inside .list .btnHolder .mainBtn {
	margin-top: 20px;
	width: 250px;
}

.banner.tournamentBanner .inside .list .tour {
	background: #11172580;
	border-radius: 14px;
	padding: 15px;
	z-index: 10;
}

.banner.tournamentBanner .inside .list .tour .h5 {
	color: #32fe2b;
	font-size: 14px;
	font-weight: 700;
	max-width: 250px;
	overflow: hidden;
	padding: 5px 0 10px;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.banner.tournamentBanner .inside .list .tour .rewards {
	display: flex;
}

.banner.tournamentBanner .inside .list .tour .rewards .h6 {
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	margin-right: 10px;
	text-shadow: 0 2.383px 3.177px #172e502e;
}

.banner.tournamentBanner .inside .list .tour .countdown {
	display: flex;
}

.banner.tournamentBanner .inside .list .tour .countdown .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 5px;
}

.banner.tournamentBanner .inside .list .tour .countdown .item span {
	align-items: center;
	background: #333d5040;
	border: 2px solid #ffffff1a;
	border-radius: 50%;
	display: flex;
	font-size: 18px;
	font-weight: 700;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.banner.tournamentBanner .inside .list .tour .left {
	font-size: 12px;
	padding-top: 10px;
	text-shadow: 0 6px 9px #172e502e;
}

@media (max-width: 1200px) {
	.banner.cashBanner .mainImg {
		height: 415px !important;
		right: 0 !important;
	}
}

@media (max-width: 1100px) {
	.banner.cashBanner .inside .h1 {
		font-size: 28px !important;
	}
}

@media (max-width: 900px) {
	.banner.cashBanner .mainImg {
		height: 275px !important;
		right: 0 !important;
	}
	.banner.cashBanner .inside .h1 {
		font-size: 22px !important;
		padding: 15px !important;
	}
	.banner.cashBanner .inside .countdown .item span {
		border: 2px solid #ffffff08 !important;
		font-size: 1rem !important;
		height: 40px !important;
		width: 40px !important;
	}
	.banner.cashBanner .inside .countdown .item .small {
		font-size: 0.5rem !important;
		margin-top: 5px !important;
	}
	.banner.cashBanner .inside .me .item span {
		font-size: 1.3rem !important;
	}
	.banner.cashBanner .inside .me .item .small {
		font-size: 0.6rem !important;
		margin-top: 5px !important;
	}
}

@media (max-width: 700px) {
	.banner.cashBanner .mainImg {
		height: 250px !important;
		right: -10px !important;
	}
	.banner.cashBanner .inside .h1 {
		font-size: 18px !important;
	}
}

@media (max-width: 600px) {
	.banner.cashBanner .mainImg {
		height: 190px !important;
		right: -40px !important;
	}
	.banner.cashBanner .inside .h1 {
		border-radius: 10px !important;
		font-size: 13px !important;
		padding: 10px !important;
	}
	.banner.cashBanner .inside .mainBtn {
		font-size: 0.7rem !important;
		height: 33px !important;
		max-width: 130px !important;
	}
	.banner.cashBanner .inside .countdown {
		padding: 5px 10px !important;
	}
	.banner.cashBanner .inside .countdown .item {
		margin-right: 10px !important;
	}
	.banner.cashBanner .inside .countdown .item:last-child {
		margin-right: 0 !important;
	}
	.banner.cashBanner .inside .countdown .item span {
		font-size: 0.9rem !important;
		height: 35px !important;
		width: 35px !important;
	}
	.banner.cashBanner .inside .countdown .item .small {
		font-size: 0.4rem !important;
	}
	.banner.cashBanner .inside .me .item span {
		font-size: 1rem !important;
	}
	.banner.cashBanner .inside .me .item .small {
		font-size: 0.5rem !important;
		margin-top: 0 !important;
	}
}

.banner.cashBanner .mainImg {
	bottom: 0;
	height: 450px;
	right: 60px;
	top: auto;
	transform: none;
}

.banner.cashBanner .inside .mainBtn {
	margin: 0;
}

.banner.cashBanner .inside .h1 {
	font-size: 34px;
}

.banner.cashBanner .inside .h1.withBack {
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	background: #1117254d;
	border-radius: 15px;
	padding: 25px;
}

.banner.cashBanner .inside .timer {
	margin-right: auto;
	z-index: 10;
}

.banner.cashBanner .inside .countdown {
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	background: #1117254d;
	border-radius: 15px;
	display: flex;
	padding: 10px 15px;
}

@media (max-width: 600px) {
	.banner.cashBanner .inside .countdown {
		margin-bottom: 10px;
	}
}

.banner.cashBanner .inside .countdown .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 15px;
}

.banner.cashBanner .inside .countdown .item:last-child {
	margin: 0;
}

.banner.cashBanner .inside .countdown .item span {
	align-items: center;
	background: #333d5054;
	border: 3px solid #ffffff08;
	border-radius: 50%;
	display: flex;
	font-size: 1.4rem;
	font-weight: 700;
	height: 60px;
	justify-content: center;
	width: 60px;
}

.banner.cashBanner .inside .countdown .item .small {
	font-size: 0.7rem;
	margin-top: 10px;
	max-width: none;
	text-shadow: 0 2.931px 3.909px #0a0d1169;
	text-transform: uppercase;
}

@media (max-width: 1200px) {
	.banner.cashBanner .inside .countdown .item span {
		background: #333d5080;
	}
}

.banner.cashBanner .inside .me {
	display: flex;
}

.banner.cashBanner .inside .me .item {
	margin-right: 40px;
}

.banner.cashBanner .inside .me .item:last-child {
	margin-right: 0;
}

.banner.cashBanner .inside .me .item span {
	font-size: 1.8rem;
	font-weight: 700;
	text-shadow: 0 2.229px 2.972px #0a0d1169;
}

.banner.cashBanner .inside .me .item .small {
	font-size: 0.8rem;
	font-weight: 300;
	margin-top: 7px;
	max-width: 100%;
	text-shadow: 0 2.229px 2.972px #0a0d1169;
}

.banner.streamBanner .mainImg.hideMobile {
	display: none !important;
}

@media (max-width: 1300px) {
	.banner.streamBanner .inside.stream .withBack {
		font-size: 28px !important;
	}
}

@media (max-width: 1100px) {
	.banner.streamBanner .inside {
		grid-gap: 25px !important;
		grid-template-columns: 1fr 1fr !important;
	}
}

@media (max-width: 900px) {
	.banner.streamBanner .inside {
		grid-gap: 0 !important;
		grid-template-columns: 2fr 1fr !important;
	}
	.banner.streamBanner .inside.stream {
		bottom: 0 !important;
		left: 0 !important;
		padding: 5%;
		right: 0 !important;
		top: 0 !important;
		width: 100%;
	}
	.banner.streamBanner .inside.stream .mainBtn {
		display: none;
	}
	.banner.streamBanner .inside.stream .mainBtn.mob {
		display: flex !important;
	}
	.banner.streamBanner .inside.stream .withBack {
		font-size: 20px !important;
		padding: 15px !important;
	}
	.banner.streamBanner .inside.stream .withBack p {
		font-size: 10px !important;
	}
	.banner.streamBanner .inside .frameBox {
		background-image: none;
		border: initial;
		display: none;
	}
	.banner.streamBanner .inside .frameBox.showMobile {
		display: block !important;
		height: 100%;
		position: absolute;
		width: 100%;
	}
	.banner.streamBanner .mainImg.secondary {
		display: block !important;
	}
	.banner.streamBanner .mainImg.hideMobile {
		display: none !important;
	}
}

@media (max-width: 600px) {
	.banner.streamBanner .inside.stream .withBack {
		border-radius: 15px !important;
		font-size: 16px !important;
	}
	.banner.streamBanner .inside.stream .withBack p {
		display: none;
	}
}

.banner.streamBanner .mainImg.secondary {
	display: none;
}

:root {
	--swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
	align-items: center;
	color: var(--swiper-theme-color);
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
	cursor: pointer;
	display: flex;
	height: 44px;
	height: var(--swiper-navigation-size);
	justify-content: center;
	margin-top: -22px;
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	position: absolute;
	top: 50%;
	top: var(--swiper-navigation-top-offset, 50%);
	width: 27px;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	z-index: 10;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	cursor: auto;
	opacity: 0.35;
	pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
	cursor: auto;
	opacity: 0;
	pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
	display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
	height: 100%;
	object-fit: contain;
	transform-origin: center;
	width: 100%;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
	transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 10px;
	left: var(--swiper-navigation-sides-offset, 10px);
	right: auto;
}

.swiper-button-lock {
	display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: 44px;
	font-size: var(--swiper-navigation-size);
	font-variant: normal;
	letter-spacing: 0;
	line-height: 1;
	text-transform: none !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	left: auto;
	right: 10px;
	right: var(--swiper-navigation-sides-offset, 10px);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
}

.liveBets {
	min-height: 155px;
	overflow-x: hidden;
	position: relative;
	white-space: nowrap;
	width: 100%;
}

.liveBets .swiper-slide {
	padding: 20px 0;
	width: auto !important;
}

.liveBets .swiper-slide:first-child,
.liveBets .swiper-slide:last-child {
	margin-left: 10px;
}

@media (max-width: 600px) {
	.liveBets {
		left: -10px;
		min-height: 100px;
		width: calc(100% + 20px);
	}
	.liveBets .swiper-slide {
		padding: 10px 0;
	}
}

.bet {
	display: flex;
	position: relative;
}

.bet .loadingLine {
	animation: loadingLine 1s linear infinite;
	background-color: #465063;
	border-radius: 15px;
	height: 10px;
	margin-bottom: 10px;
	width: 100%;
}

.bet.empty .x .loadingLine {
	height: 15px;
	width: 50%;
}

.bet.empty .username .loadingLine {
	height: 8px;
	width: 90%;
}

.bet.empty .win .loadingLine {
	width: 60%;
}

.bet:hover .image img {
	transform: scale(1.2);
}

.bet:hover .image .playBtnLast,
.bet:hover .image:before {
	opacity: 1;
}

.bet .image {
	border-radius: 20px;
	box-shadow: 0 0 10px 0 #0a0f11;
	height: 110px;
	left: 40px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	z-index: 1;
}

.bet .image:before {
	background-color: var(--slotHover);
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.15s ease;
	z-index: 1;
}

.bet .image img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	width: 100%;
}

.bet .image .playBtnLast {
	height: 50px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	z-index: 2;
}

.bet .image .playBtnLast img {
	height: 20px;
	position: relative;
	width: 20px;
	z-index: 2;
}

.bet .info {
	display: flex;
	flex-direction: column;
	height: 110px;
	justify-content: space-between;
	min-width: 215px;
	padding: 7px 26px 7px 100px;
}

.bet .info .x {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 2px;
	transition: color 0.3s ease;
}

.bet .info p {
	font-size: 0.9rem;
	font-weight: 700;
	opacity: 0;
}

@keyframes xAppear {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.bet .info .username {
	color: var(--textSecondary);
	font-size: 0.6rem;
	margin-bottom: 3px;
}

.bet .info .win {
	font-size: 0.9rem;
	font-weight: 700;
}

@media (max-width: 600px) {
	.bet .info {
		border-radius: 15px;
		height: 80px;
		min-width: 160px;
		padding: 3px 20px 3px 70px;
	}
	.bet .info .x {
		font-size: 0.9rem;
	}
	.bet .info p {
		font-size: 0.6rem;
	}
	.bet .info .username {
		font-size: 0.5rem;
	}
	.bet .info .win {
		font-size: 0.6rem;
	}
	.bet .image {
		border-radius: 10px;
		height: 80px;
		left: 29px;
		width: 58px;
	}
}

.jackpotBlock {
	display: grid;
	grid-template-columns: auto 245px;
	height: 100px;
	position: relative;
}

.jackpotBlock.start {
	align-items: center;
	background: url('../images/jackpotBlock.a4bda04f88bc0b0c53a7.png');
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 25px;
	box-shadow: 14px 0 12px 0 #0a0e1b40;
	grid-template-columns: auto 1fr auto;
	height: 145px;
	padding: 0 35px;
	transition: transform 0.3s ease;
}

@media (max-width: 600px) {
	.jackpotBlock.start {
		margin-top: 20px;
	}
	.jackpotBlock.start:hover .title {
		transform: translateX(0) !important;
	}
}

.jackpotBlock.start:hover .title {
	transform: translateX(10px);
}

.jackpotBlock.start:hover .item .icon img {
	transform: scale(1.05);
}

.jackpotBlock.start:hover .arr {
	transform: scale(1.1);
}

.jackpotBlock.start .title {
	transition: transform 0.3s ease;
	z-index: 3;
}

.jackpotBlock.start .title .h1 {
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
}

.jackpotBlock.start .title p {
	color: #7a85a5;
	font-size: 24px;
	font-weight: 400;
}

.jackpotBlock.start .items {
	background: none;
	grid-template-columns: repeat(3, 1fr);
	position: static;
}

.jackpotBlock.start .items:after {
	z-index: -1;
}

.jackpotBlock.start .items .item {
	position: relative;
}

.jackpotBlock.start .items .item .icon {
	height: 120px;
	width: 120px;
}

.jackpotBlock.start .items .item .icon img {
	transition: transform 0.3s ease;
}

.jackpotBlock.start .items .item .info .h3 {
	font-size: 30px;
}

.jackpotBlock.start .items .item .info .bank {
	font-size: 32px;
}

.jackpotBlock.start .items .item:nth-child(2) .icon {
	height: 140px;
	width: 140px;
}

.jackpotBlock.start .arr {
	transition: transform 0.3s ease;
	z-index: 3;
}

@media (max-width: 1200px) and (min-width: 900px) {
	.jackpotBlock.start {
		grid-template-columns: 1fr 1fr 1fr;
		height: 290px;
	}
	.jackpotBlock.start .title {
		grid-column: 2/3;
		text-align: center;
	}
	.jackpotBlock.start .items {
		grid-column: 1/-1;
		grid-row: 2/3;
	}
	.jackpotBlock.start svg {
		grid-column: 3/-1;
		grid-row: 1/2;
		justify-self: flex-end;
	}
}

.jackpotBlock .items {
	grid-gap: 5px;
	align-items: center;
	background: url('../images/jackpotBlock.a4bda04f88bc0b0c53a7.png');
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 25px;
	box-shadow: 14px 0 12px 0 #0a0e1b40;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-items: center;
	position: relative;
	width: 100%;
	z-index: 2;
}

.jackpotBlock .items:after {
	background: #0d131c;
	border-radius: 25px;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.73;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.jackpotBlock .items .item {
	align-items: center;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.jackpotBlock .items .item .icon {
	animation: floatMajor 6s ease-in-out infinite;
	height: 70px;
	width: 70px;
}

.jackpotBlock .items .item .icon img {
	height: 100%;
	width: 100%;
}

.jackpotBlock .items .item:nth-child(2) .icon {
	animation: floatVodka 6s ease-in-out infinite;
	height: 100px;
	width: 100px;
}

@keyframes floatVodka {
	0% {
		transform: translatey(0);
	}
	50% {
		transform: translatey(-5px);
	}
	to {
		transform: translatey(0);
	}
}

@keyframes floatMajor {
	0% {
		transform: translatey(0);
	}
	50% {
		transform: translatey(-3px);
	}
	to {
		transform: translatey(0);
	}
}

.jackpotBlock .items .item .info {
	flex-grow: 1;
	position: relative;
}

.jackpotBlock .items .item .info .h3 {
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 2px;
}

.jackpotBlock .items .item .info .bank {
	align-items: center;
	display: flex;
	font-size: 1.288rem;
	font-weight: 700;
	white-space: nowrap;
}

.jackpotBlock .items .item .info .bank .odometer {
	margin-left: 3px;
	margin-top: 2px;
}

.jackpotBlock .items .item .info .back {
	font-size: 5.37518593rem;
	font-weight: 700;
	left: 0;
	opacity: 0.1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: -1;
}

.jackpotBlock .items .go {
	align-items: center;
	background-color: rgba(25, 34, 50, 0.376);
	border: 2px solid rgba(186, 112, 33, 0.239);
	border-radius: 4px;
	color: #fff;
	display: flex;
	font-size: 0.9rem;
	font-weight: 500;
	justify-content: center;
	padding: 10px 20px;
	position: relative;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	transition: color 0.3s ease;
	z-index: 2;
}

.jackpotBlock .items .go svg {
	margin-right: 10px;
}

.jackpotBlock .items .go:hover {
	color: var(--blue);
}

@media (max-width: 1400px) {
	.jackpotBlock .items {
		grid-template-columns: repeat(3, 1fr);
	}
	.jackpotBlock .items .go {
		display: none;
	}
}

.jackpotBlock .ticket {
	align-items: center;
	background: url('');
	background-position: 100%;
	background-repeat: no-repeat;
	color: var(--textSecondary);
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: -25px;
	padding: 0 20px 0 45px;
	position: relative;
	width: 270px;
	z-index: 1;
}

.jackpotBlock .ticket .info {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
	transition: color 0.3s ease;
}

.jackpotBlock .ticket .info:hover {
	color: var(--blue);
}

.jackpotBlock .ticket .number {
	align-items: center;
	border: 3px solid #212f44;
	border-radius: 20px;
	box-shadow: 0 5px 6px 0 #11141b33;
	display: flex;
	height: 40px;
	justify-content: center;
	padding: 0 20px 0 50px;
	position: relative;
}

.jackpotBlock .ticket .number input {
	background: #0000;
	border: 0;
	border-bottom: 1px solid #212f44;
	color: var(--textSecondary);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 1px;
	outline: 0;
	text-align: center;
	transition: color 0.3s ease;
	width: 100px;
}

.jackpotBlock .ticket .number input:focus {
	color: #fff;
}

.jackpotBlock .ticket .number .icon {
	cursor: pointer;
	height: 20px;
	left: 24px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: color 0.3s ease;
	width: 20px;
}

.jackpotBlock .ticket .number .icon:hover {
	color: var(--blue);
}

.jackpotBlock .ticket .number .icon:hover svg {
	transform: rotate(180deg);
}

.jackpotBlock .ticket .number .icon svg {
	height: 20px;
	transition: transform 0.3s ease;
	width: 20px;
}

.jackpotBlock .ticket .lastNumber {
	animation-duration: 0.7s;
	animation-fill-mode: both;
	animation-timing-function: ease;
	color: var(--blue);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 1px;
	position: absolute;
	text-decoration: line-through;
}

@keyframes numberUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-30px);
	}
}

.jackpotBlock .ticket p {
	font-size: 0.67rem;
	margin-top: 7px;
}

@media (max-width: 899px) {
	.jackpotBlock.start {
		background: linear-gradient(rgba(7, 43, 7, 0.6), rgba(7, 43, 7, 0.6)),
			url('../images/backgroundMobile.88e33eb77696d187ca31.jpg') center/cover
				no-repeat; /* картинка */
		grid-template-columns: 2fr;
		height: auto;
		padding: 20px;
	}
	.jackpotBlock.start .items {
		grid-gap: 10px;
		box-shadow: none;
		grid-column: 1/3;
		grid-row: 2/3;
		grid-template-columns: 1fr;
	}
	.jackpotBlock.start .items .back {
		font-size: 3rem !important;
		left: -150px !important;
		opacity: 1 !important;
	}
	.jackpotBlock.start .items .item {
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
		background-color: #1213224a;
		border-radius: 20px;
		padding: 0 30px 0 80px;
	}
	.jackpotBlock.start .items .item:nth-child(2) {
		grid-row: 1/2;
	}
	.jackpotBlock.start .items .item:nth-child(2) .icon {
		height: 120px;
		width: 120px;
	}
	.jackpotBlock.start .title {
		grid-column: 1/3;
		grid-row: 1/2;
		text-align: center;
	}
	.jackpotBlock.start svg {
		display: none;
	}
}

@media (max-height: 450px), (max-width: 700px) {
	.jackpotBlock {
		background-image: url('../images/backgroundMobile.88e33eb77696d187ca31.jpg');
		grid-template-columns: 2fr;
		height: auto;
		padding: 20px;
	}
	.jackpotBlock .ticket {
		background-position-x: center;
		left: auto;
		margin: 20px auto auto;
		padding: 20px 0;
	}
	.jackpotBlock .items {
		background-image: none;
		grid-column: 1/3;
		grid-template-columns: 1fr;
	}
	.jackpotBlock.start .items {
		grid-row: 2/3;
	}
	.jackpotBlock.start .items .back {
		left: -110px !important;
	}
	.jackpotBlock .items {
		grid-gap: 10px;
		box-shadow: none;
	}
	.jackpotBlock .items .back {
		font-size: 3rem !important;
		left: -110px !important;
		opacity: 1 !important;
	}
	.jackpotBlock .items .item {
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
		background-color: #1213224a;
		border-radius: 20px;
		padding: 0 20px 0 10px !important;
	}
	.jackpotBlock .items .item:nth-child(2) {
		grid-row: 1/2;
	}
	.jackpotBlock .items .item:nth-child(2) .icon {
		height: 120px;
		width: 120px;
	}
	.jackpotBlock .title {
		grid-column: 1/3;
		grid-row: 1/2;
		margin-bottom: 20px;
		text-align: center;
	}
	.jackpotBlock .title .h1 {
		font-size: 2rem;
	}
	.jackpotBlock .title p {
		color: #fff !important;
		font-size: 1.2rem;
	}
	.jackpotBlock .items:after {
		display: none;
	}
	.jackpotBlock .items .back {
		font-size: 2rem !important;
		left: -115px !important;
	}
	.jackpotBlock .items .item {
		padding: 0 30px 0 50px;
		width: 100%;
	}
	.jackpotBlock .items .item .icon {
		height: 80px !important;
		margin-right: 15px;
		width: 80px !important;
	}
	.jackpotBlock .items .item .info {
		flex-grow: 0;
	}
	.jackpotBlock .items .item .info .h3 {
		font-size: 1rem !important;
	}
	.jackpotBlock .items .item .info .bank {
		font-size: 1.67rem !important;
	}
}

.tnPage {
	max-width: 100vw;
}

.tnPage .h1 {
	color: #fff;
	font-size: 70px;
	font-weight: 700;
	text-shadow: 0 3px 4px #0a0d1169;
}

@media (max-width: 690px) {
	.tnPage .h1 {
		text-shadow: 0 0 0 #0a0d1169 !important;
	}
}

.tnPage .back {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
}

.tnPage .description {
	font-size: 15px;
	font-weight: 300;
	line-height: 26px;
	opacity: 0.8;
	padding: 20px 0;
	text-align: center;
	text-shadow: 0 3px 4px #0a0d1169;
	width: 680px;
}

.tnPage .tnTop {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 30px;
	padding-top: 150px;
	position: relative;
}

@media (max-width: 900px) {
	.tnPage .tnTop {
		padding-bottom: 80px;
	}
}

@media (max-width: 690px) {
	.tnPage .tnTop {
		padding-bottom: 100px;
		padding-top: 120px;
	}
	.tnPage .tnTop .h1 {
		font-size: 48px;
		text-transform: uppercase;
	}
	.tnPage .tnTop .description {
		padding-bottom: 40px;
		width: 100% !important;
	}
}

@media (max-width: 560px) {
	.tnPage .tnTop {
		padding-top: 90px;
	}
	.tnPage .tnTop .h1 {
		font-size: 42px;
	}
	.tnPage .tnTop .description {
		font-size: 12px !important;
	}
	.tnPage .tnTop .switch {
		transform: scale(0.8);
	}
}

.tnPage .tnTop .back {
	left: 50%;
	position: absolute;
	top: -100px;
	transform: translateX(-50%);
}

.tnPage .tnList {
	min-height: 400px;
	position: relative;
}

@media (max-width: 450px) {
	.tnPage .tnList .tournament {
		margin-bottom: 70px !important;
	}
}

.tnPage .tnList .noLive {
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	padding-top: 50px;
	text-align: center;
}

.tnPage .tnList .tournament {
	margin-bottom: 100px;
}

.gamesContainer {
	margin-bottom: 20px;
	margin-top: 20px;
}

.gamesContainer .mobileMenu {
	align-items: center;
	background-color: var(--secondary) !important;
	border-radius: 20px 20px 0 0 !important;
	box-shadow: 0 0 13px 3px var(--bgColor);
	color: var(--textSecondary);
	cursor: pointer;
	display: none;
	font-size: 0.8rem;
	font-weight: 500;
	height: 40px;
	justify-content: center;
	left: 0;
	left: 15px;
	letter-spacing: 1px;
	padding: 0 10px 5px;
	position: fixed;
	text-transform: uppercase;
	top: 50%;
	transform: translate(-50%, calc(-50% - 20px)) rotate(90deg);
	transition: left 0.3s ease, color 0.3s ease, height 0.3s ease;
	white-space: nowrap;
	width: 130px;
	z-index: 5;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .mobileMenu {
		display: flex;
	}
}

.gamesContainer.mobileMenuOpened .iframe,
.gamesContainer.mobileMenuOpened .searchGames {
	left: 100% !important;
}

.gamesContainer.mobileMenuOpened .mobileMenu {
	left: calc(100% - 15px);
	transform: translate(-50%, calc(-50% - 20px)) rotate(270deg);
}

.gamesContainer .templateWrapper {
	align-items: flex-start;
	display: grid;
	grid-template-areas: 'leftSide template menu' 'leftSide jackpotBlock menu';
	justify-content: flex-start;
	transition: grid-template-columns 0.3s ease, grid-gap 0.3s ease;
}

.gamesContainer .templateWrapper .leftSide {
	grid-gap: 20px;
	display: grid;
	grid-area: leftSide;
	grid-template-columns: 1fr;
	grid-template-rows: 100px auto;
	height: 100%;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .templateWrapper .leftSide .level {
		margin-right: 0;
	}
}

.gamesContainer .templateWrapper .level {
	margin-right: 20px;
}

.gamesContainer .templateWrapper .menu {
	border-radius: 30px;
	box-sizing: initial;
	grid-area: menu;
	margin-left: 20px;
	position: -webkit-sticky;
	position: sticky;
	top: 90px;
	width: 60px;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .templateWrapper .menu {
		display: none;
	}
}

.gamesContainer .templateWrapper .menu .item {
	align-items: center;
	color: var(--lines);
	cursor: pointer;
	display: flex;
	height: 60px;
	justify-content: center;
	transition: color 0.3s ease;
	width: 60px;
}

.gamesContainer .templateWrapper .menu .item svg {
	height: 25px;
	width: 25px;
}

.gamesContainer .templateWrapper .menu .item:hover {
	color: var(--textSecondary);
}

.gamesContainer .templateWrapper .menu .item.active {
	color: var(--blue);
}

@media (max-width: 700px) {
	.gamesContainer .templateWrapper {
		grid-template-areas: 'template' 'leftSide' 'jackpotBlock' !important;
		grid-template-columns: 100% !important;
		grid-template-rows: 60px 600px auto !important;
	}
}

.gamesContainer .templateWrapper.suggestionsShow {
	grid-gap: 20px 0;
	grid-template-columns: 320px calc(100% - 320px) 100px;
	grid-template-rows: auto 100px;
}

@media (max-width: 700px) {
	.gamesContainer .templateWrapper.suggestionsShow {
		grid-gap: 5px 0;
	}
}

@media (max-width: 1200px) {
	.gamesContainer .templateWrapper.suggestionsShow {
		grid-template-areas: 'leftSide template menu' 'jackpotBlock jackpotBlock menu';
	}
}

.gamesContainer .templateWrapper.suggestionsShow .suggestions {
	margin-right: 20px;
}

@media (max-width: 700px) {
	.gamesContainer .templateWrapper.suggestionsShow .suggestions {
		margin-right: 0;
	}
}

@media (max-width: 1580px) {
	.gamesContainer .templateWrapper.suggestionsShow {
		grid-template-columns: 320px calc(100% - 400px) 100px;
	}
}

.gamesContainer .templateWrapper.suggestionsHide {
	grid-gap: 20px 0;
	grid-template-columns: 0 100% 80px;
}

.gamesContainer .templateWrapper.suggestionsHide .template {
	margin-left: 0;
}

@media (max-width: 1580px) {
	.gamesContainer .templateWrapper.suggestionsHide .template {
		margin-left: 20px;
		margin-right: 80px;
	}
	.gamesContainer .templateWrapper.suggestionsHide {
		grid-template-columns: 0 calc(100% - 100px) 100px;
	}
	.gamesContainer .templateWrapper.suggestionsHide .menu {
		margin-left: 40px;
	}
	.gamesContainer .templateWrapper.suggestionsHide .jackpotBlock {
		margin-left: 20px;
		width: 100%;
	}
}

.gamesContainer .templateWrapper.templates4 .suggestionsExpand {
	top: 25%;
}

.gamesContainer .template {
	grid-gap: 15px;
	display: grid;
	grid-area: template;
	width: 100%;
}

.gamesContainer .template.template2 {
	grid-template-columns: 1fr 1fr;
}

.gamesContainer .template.template4 {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.gamesContainer .template .game {
	background-color: var(--secondary);
	border-radius: 30px;
	box-shadow: 0 3.518px 3.518px 0 #00000040;
	height: auto;
	padding: 0 10px 10px;
}

.gamesContainer .template .game .mobileWrapper {
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

@media (max-width: 700px) {
	.gamesContainer .template .game .mobileWrapper {
		background-color: var(--secondary);
		bottom: 0;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 10;
	}
}

.gamesContainer .template .game.searching .searchTitle {
	color: var(--textSecondary);
	display: none;
	font-size: 0.9rem;
	font-weight: 500;
	left: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.gamesContainer .template .game.searching:before {
	content: '';
	display: block;
	padding-top: calc(56.25% + 39px);
	width: 100%;
}

@media (max-width: 700px) {
	.gamesContainer .template .game.searching {
		border-width: 3px !important;
	}
	.gamesContainer .template .game.searching .searchTitle {
		display: block;
	}
	.gamesContainer .template .game.searching:before {
		padding-top: 46px;
	}
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game.mobileShow .iframe,
	.gamesContainer .template .game.mobileShow .searchGames {
		bottom: 75px;
		top: 70px;
		z-index: 3;
	}
	.gamesContainer .template .game.mobileShow .iframe .mobileUX,
	.gamesContainer .template .game.mobileShow .searchGames .mobileUX {
		opacity: 1;
	}
	.gamesContainer .template .game.mobileShow .searchGames {
		border-radius: 0;
		height: calc(100vh - 165px);
		margin-top: 0;
		width: calc(100% - 40px);
	}
}

.gamesContainer .template .game .gameBG {
	filter: blur(7px);
	height: calc(100vh + 200px);
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

.gamesContainer .template .game .gameBG img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gamesContainer .template .game .gameBG:after {
	background: radial-gradient(circle, #0c111c00 0, #0c111c 75%);
	content: '';
	height: calc(200vh + 400px);
	left: 0;
	position: absolute;
	top: 0;
	top: calc(-50vh - 200px);
	width: 100vw;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game {
		padding: 0;
	}
}

.gamesContainer .template .game.baseBlock {
	border-width: 5px;
}

.gamesContainer .template .game .top {
	grid-gap: 6px;
	align-items: center;
	display: grid;
	grid-template-columns: calc(40% - 4px) calc(20% - 4px) calc(40% - 4px);
	justify-content: center;
	padding: 10px;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game .top {
		grid-gap: 0;
		grid-template-columns: 1fr auto auto;
		height: 100%;
		padding: 10px 20px;
	}
}

.gamesContainer .template .game .top .title {
	padding-left: 35px;
	position: relative;
}

.gamesContainer .template .game .top .title .tippy {
	cursor: pointer;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.gamesContainer .template .game .top .logo {
	display: flex;
	height: 25px;
	justify-content: center;
	width: 100%;
}

.gamesContainer .template .game .top .name {
	font-size: 12px;
	font-weight: 700;
	justify-self: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game .top .name {
		justify-self: left;
	}
}

.gamesContainer .template .game .top .provider {
	font-size: 8.444px;
	max-width: 100%;
	opacity: 0.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game .top .provider {
		display: none;
	}
}

.gamesContainer .template .game .top .actions {
	align-items: center;
	display: flex;
	justify-self: flex-end;
}

.gamesContainer .template .game .top .actions .action {
	cursor: pointer;
	height: 16px;
	margin-left: 12px;
	width: auto;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game .top .actions .action:first-child,
	.gamesContainer .template .game .top .actions .action:nth-child(3) {
		display: none;
	}
}

.gamesContainer .template .game .top .actions .action.filled svg {
	fill: var(--blue);
	color: var(--blue);
}

.gamesContainer .template .game .top .actions .action.filled:hover svg {
	fill: #0000;
	stroke: var(--blue);
}

.gamesContainer .template .game .top .actions .action svg {
	color: var(--iconColor);
	height: 16px;
	transition: color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
	width: auto;
}

.gamesContainer .template .game .top .actions .action:hover svg {
	color: var(--blue);
}

.gamesContainer .template .game .iframe {
	background-color: var(--secondary);
	position: relative;
}

.gamesContainer .template .game .iframe .gameBroken {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.gamesContainer .template .game .iframe .gameBroken img {
	max-height: 60%;
	object-fit: contain;
	width: 100%;
}

.gamesContainer .template .game .iframe .gameBroken .t .h1 {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 5px;
	text-align: center;
}

.gamesContainer .template .game .iframe .gameBroken .t p {
	color: var(--textSecondary);
	font-size: 18px;
	text-align: center;
}

.gamesContainer .template .game .iframe iframe {
	border: none;
	border-radius: 20px;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.gamesContainer .template .game .iframe:after {
	content: '';
	display: block;
	padding-top: 56.25%;
	width: 100%;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .game .iframe,
	.gamesContainer .template .game .searchGames {
		bottom: 0;
		left: 0;
		position: fixed;
		top: 0;
		transition: left 0.3s ease;
		width: 100vw;
		z-index: 11;
	}
	.gamesContainer .template .game .iframe iframe,
	.gamesContainer .template .game .searchGames iframe {
		border-radius: 0;
	}
}

.gamesContainer .template .mobileUX {
	align-items: center;
	border-radius: 0 20px 0 0;
	bottom: -3px;
	display: none;
	height: 70px;
	justify-content: center;
	left: -3px;
	opacity: 0.5;
	position: absolute;
	width: 70px;
	z-index: 2;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .template .mobileUX {
		display: flex;
	}
}

@media (max-width: 500px) {
	.gamesContainer .template .mobileUX {
		height: 50px;
		width: 50px;
	}
	.gamesContainer .template .mobileUX svg {
		height: 25px;
		width: 25px;
	}
}

.gamesContainer .jackpotBlock {
	grid-area: jackpotBlock;
}

@media (max-height: 450px), (max-width: 700px) {
	.gamesContainer .jackpotBlock {
		left: -10px;
		width: calc(100% + 20px);
	}
}

.suggestions {
	height: 100%;
	overflow: hidden;
	padding: 10px 0;
	position: relative;
}

.suggestions .notFound {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding-top: 30px;
}

.suggestions .notFound .h4 {
	color: var(--textSecondary);
	padding-top: 10px;
}

.suggestions .notFound img {
	opacity: 0.7;
	width: 30%;
}

.suggestions .type {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: 240px 40px;
	position: relative;
	z-index: 2;
}

.suggestions .type .typeSelect {
	color: #fff !important;
	font-family: Inter, sans-serif;
	font-size: 1rem;
}

.suggestions .type .typeSelect .defaultSelect__control {
	justify-content: flex-start;
}

.suggestions .type .typeSelect .defaultSelect__value-container {
	flex: none;
}

.suggestions
	.type
	.typeSelect
	.defaultSelect__control:hover
	.defaultSelect__single-value:after {
	border-color: var(--blue);
}

.suggestions
	.type
	.typeSelect
	.defaultSelect__control:hover
	.defaultSelect__dropdown-indicator,
.suggestions
	.type
	.typeSelect
	.defaultSelect__control:hover
	.defaultSelect__single-value {
	color: var(--blue) !important;
}

.suggestions
	.type
	.typeSelect
	.defaultSelect__control:hover
	.defaultSelect__single-value
	svg {
	animation: rubberBand 1s ease;
}

.suggestions .type .hide {
	align-items: center;
	align-self: center;
	color: var(--iconColor);
	cursor: pointer;
	display: flex;
	height: 28px;
	justify-content: center;
	justify-self: center;
	transition: color 0.3s ease;
	width: 28px;
}

.suggestions .type .hide svg {
	height: 16px;
	width: 16px;
}

.suggestions .type .hide:hover {
	color: var(--blue);
}

@media (max-height: 450px), (max-width: 700px) {
	.suggestions .type .hide {
		display: none;
	}
}

.suggestions:before {
	background: linear-gradient(var(--secondary) 20%, #19223200);
	height: 20px;
	top: 48px;
}

.suggestions:after,
.suggestions:before {
	content: '';
	left: 0;
	position: absolute;
	width: calc(100% - 10px);
	z-index: 2;
}

.suggestions:after {
	background: linear-gradient(#19223200, var(--secondary) 80%);
	bottom: 25px;
	height: 30px;
}

.suggestions .items {
	height: calc(100% - 80px);
	overflow-x: hidden;
	overflow-y: auto;
	padding: 15px 0 15px 10px;
	position: absolute;
	width: calc(100% - 10px);
}

.suggestions .items .list {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: calc(50% - 5px) calc(50% - 5px);
}

@media (max-height: 450px), (max-width: 700px) {
	.suggestions .items .list {
		grid-template-columns: calc(33.33% - 6.66px) calc(33.33% - 6.66px) calc(
				33.33% - 6.66px
			);
	}
}

.suggestions .items .slot {
	width: 100%;
}

.suggestions .items .slot:hover {
	transform: scale(1);
}

.suggestions .items .slot .play {
	padding: 5px;
}

.suggestions .items .slot .play .mainBtn.blue {
	height: 70px;
	width: 70px;
}

.suggestions .items .slot .play .mainBtn.blue img {
	height: 40px;
	width: 40px;
}

@media (max-height: 450px), (max-width: 700px) {
	.suggestions .items .slot .play .mainBtn.blue {
		height: 60px;
		width: 60px;
	}
}

.suggestions .items .slot .play .down {
	justify-content: center;
	padding: 0 10px;
}

@media (max-height: 450px), (max-width: 700px) {
	.suggestions .items .slot .play .down .like {
		display: none;
	}
}

.suggestions .items .slot .play .down a {
	display: none;
}

.suggestions .items .slot .play .h1 {
	font-size: 14px;
}

.suggestions .items .slot .play p {
	font-size: 10px;
}

.suggestions .items .slot .demo {
	display: none;
}

.suggestionsExpand {
	align-items: center;
	animation: suggestionsExpand 0.3s ease both;
	animation-delay: 0.3s;
	background-color: var(--bgColor) !important;
	border-radius: 20px 20px 0 0 !important;
	color: var(--textSecondary);
	cursor: pointer;
	display: flex;
	font-size: 0.8rem;
	height: 40px;
	justify-content: center;
	left: -15px;
	letter-spacing: 2px;
	opacity: 0;
	padding: 0 10px 5px;
	position: relative;
	text-transform: uppercase;
	top: 50%;
	transform: translate(-50%, calc(-50% - 100px)) rotate(270deg);
	transition: left 0.3s ease, color 0.3s ease, height 0.3s ease;
	white-space: nowrap;
	width: 160px;
	z-index: 0;
}

.suggestionsExpand:hover {
	color: #fff;
	height: 50px;
	left: -20px;
}

@media (max-width: 1580px) {
	.suggestionsExpand {
		animation: suggestionsExpandSmall 0.3s ease both;
	}
}

@keyframes suggestionsExpand {
	0% {
		left: 30px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	to {
		left: -15px;
		opacity: 1;
	}
}

@keyframes suggestionsExpandSmall {
	0% {
		left: 50px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	to {
		left: 5px;
		opacity: 1;
	}
}

.level {
	display: flex;
	overflow: hidden;
	padding: 7px;
}

.level .image {
	border-radius: 15px;
	height: 100%;
	overflow: hidden;
	width: 65px;
}

.level .image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.level .inner {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-around;
	padding-left: 10px;
	white-space: nowrap;
}

.level .inner .remain {
	color: var(--textSecondary);
	font-size: 0.8rem;
}

.level .inner .remain span {
	color: #fff;
}

.level .inner .levels {
	color: var(--textSecondary);
	display: flex;
	font-size: 0.6rem;
	font-weight: 400;
	justify-content: space-between;
}

.level .inner .cashback {
	border: 2px solid var(--lines);
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 400;
	padding: 4px 8px;
	text-align: center;
}

.level .inner .cashback span {
	color: var(--blue);
	font-weight: 700;
}

.level .inner .cashback .info {
	height: 13px;
	width: 13px;
}

.level .inner .cashback .info svg {
	color: var(--textSecondary);
	cursor: pointer;
	height: 13px;
	transition: color 0.3s ease;
	width: 13px;
}

.level .inner .cashback .info svg:hover {
	color: var(--blue);
}

.level .inner .progressWrapper {
	background: var(--lines);
	border-radius: 2px;
	height: 4px;
}

.level .inner .progressWrapper .progress {
	background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
		linear-gradient(180deg, #79cdfd, #1a64fc);
	border-radius: 2px;
	box-shadow: 0 0 10px 0 #3a7cffab;
	height: 100%;
	transition: width 1s ease;
}

.games {
	margin-top: 120px;
}

@media (max-width: 700px) {
	.games {
		margin-top: 80px;
	}
}

@media (max-width: 600px) {
	.games {
		margin-top: 20px;
	}
}

.games .mobileShow {
	display: none;
	margin-bottom: 20px;
	margin-top: 20px;
}

.games .mobileShow .input {
	flex-direction: row-reverse;
}

.games .mobileShow .input input {
	font-size: 1rem;
}

.games .mobileShow .input svg {
	color: var(--blue);
	margin-right: 10px;
}

@media (max-width: 900px) {
	.games .mobileShow {
		display: block;
	}
}

.games .input {
	align-items: center;
	background-color: var(--secondary);
	border: 2px solid var(--topLine);
	border-radius: 25px;
	display: flex;
	height: 50px;
	padding: 0 20px;
	transition: border-color 0.3s ease;
}

.games .input input {
	background: #0000;
	border: 0;
	color: #fff;
	flex-grow: 1;
	font-size: 1.1rem;
	height: 100%;
	margin-right: 10px;
	width: 100%;
}

.games .input input:focus {
	border-color: var(--blue);
}

.games .input svg {
	color: var(--lines);
	flex-grow: 0;
	height: 20px;
	transition: color 0.3s ease;
	width: 20px;
}

.games .input:hover {
	border-color: var(--blue);
}

.games .input:hover svg {
	color: var(--blue);
}

.games .byName {
	background-color: var(--bgModal);
	background-image: url('');
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	box-shadow: 0 5px 6px 0 #11141b1f;
	display: grid;
	grid-template-columns: 37% 63%;
	height: 200px;
	padding: 30px;
	position: relative;
}

.games .byName .back {
	color: var(--textSecondary);
	font-weight: 500;
	left: 20px;
	position: absolute;
	top: -20px;
	transform: translateY(-100%);
	transition: color 0.3s ease;
}

.games .byName .back svg {
	margin-right: 5px;
}

.games .byName .back:hover {
	color: #fff;
}

.games .byName .h2 {
	font-size: 1.618rem;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.games .byName p {
	color: var(--textSecondary);
	font-size: 1rem;
	line-height: 1.2rem;
	margin-top: 7px;
}

.games .byName .left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.games .byName:after {
	animation-duration: 0.6s;
	animation-name: flipInX;
	background-image: url('');
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -30px;
	content: '';
	height: 355px;
	position: absolute;
	right: 60px;
	width: 450px;
}

@media (max-width: 900px) {
	.games .byName {
		grid-template-columns: 50% 50%;
		height: 130px;
	}
	.games .byName .input {
		display: none;
	}
	.games .byName:after {
		bottom: -70px;
		height: 300px;
		right: 40px;
		width: 300px;
	}
}

@media (max-width: 700px) {
	.games .byName {
		grid-template-columns: 75% 25%;
		margin-top: 80px;
	}
	.games .byName .back {
		display: none;
	}
	.games .byName:after {
		bottom: -50px;
		height: 250px;
		right: 20px;
		width: 250px;
	}
}

@media (max-width: 600px) {
	.games .byName {
		background-position: 75% 100%;
		background-size: cover;
		border-radius: 0;
		grid-template-columns: 50% 50%;
		left: -10px;
		margin-top: 20px;
		min-height: 136px;
		padding: 30px 10px;
		width: calc(100% + 20px);
	}
	.games .byName .h2 {
		font-size: 1.4rem;
	}
	.games .byName p {
		font-size: 0.9rem;
	}
	.games .byName:after {
		bottom: -50px;
		height: 210px;
		right: 0;
		width: 210px;
	}
}

.games .sortWrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}

.games .sortWrapper p {
	color: var(--textSecondary);
	font-weight: 500;
}

@media (max-width: 600px) {
	.games .sortWrapper {
		padding: 0;
	}
	.games .sortWrapper .sort {
		height: 38px;
		margin-right: 10px;
		min-width: 190px;
	}
	.games .sortWrapper p {
		font-size: 0.8rem;
		margin-right: 20px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.games .sortWrapper .defaultSelect__value-container {
		padding: 0;
	}
	.games .sortWrapper .defaultSelect__single-value {
		font-size: 0.8rem;
	}
	.games .sortWrapper .defaultSelect__single-value svg {
		margin-right: 5px;
	}
	.games .sortWrapper .defaultSelect__option {
		font-size: 0.8rem;
	}
	.games .sortWrapper .defaultSelect__indicator {
		padding: 2px;
	}
}

.games .sort {
	color: #fff !important;
	display: block;
	font-family: Inter, sans-serif;
	font-size: 1rem;
	height: 46px;
	min-width: 240px;
	position: relative;
	z-index: 2;
}

.games .sort .defaultSelect__control:hover .defaultSelect__single-value:after {
	border-color: var(--blue);
}

.games .sort .defaultSelect__control:hover .defaultSelect__dropdown-indicator,
.games .sort .defaultSelect__control:hover .defaultSelect__single-value {
	color: var(--blue) !important;
}

.games .sort .defaultSelect__control:hover .defaultSelect__single-value svg {
	animation: rubberBand 1s ease;
}

.games .items {
	margin-top: 20px;
	min-height: 500px;
	position: relative;
}

@media (max-width: 600px) {
	.games .items {
		margin-top: 10px;
	}
}

.games .items .list {
	grid-gap: 15px 25px;
	align-items: center;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
	justify-items: center;
	min-height: 300px;
}

@media (max-width: 600px) {
	.games .items .list {
		grid-gap: 10px;
		grid-template-columns: repeat(3, 1fr);
		min-height: 150px;
	}
}

.games .items .itemsEmpty {
	align-items: center;
	display: flex;
	flex-direction: column;
	grid-column: 1/-1;
	justify-content: center;
	opacity: 0.5;
}

.games .items .itemsEmpty .h5 {
	animation: gamesNotFound 0.3s ease both;
	font-size: 1.8rem;
	font-weight: 700;
}

.games .items .itemsEmpty p {
	animation: gamesNotFound 0.3s ease 0.1s both;
	margin-top: 10px;
	max-width: 650px;
	text-align: center;
}

@media (max-width: 700px) {
	.games .items .itemsEmpty img {
		width: 100%;
	}
	.games .items .itemsEmpty .h5 {
		font-size: 1.5rem;
	}
	.games .items .itemsEmpty p {
		font-size: 0.9rem;
	}
}

@keyframes gamesNotFound {
	0% {
		opacity: 0;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(-60px);
	}
}

.jackpots {
	margin-bottom: 30px;
	padding-top: 70px;
}

.jackpots .backgroundBack {
	z-index: -1;
}

.jackpots .backgroundBack img {
	opacity: 0.1;
}

.jackpots .rangs {
	margin-bottom: 100px;
	margin-top: 100px;
	position: relative;
}

@media (max-width: 900px) {
	.jackpots .rangs {
		margin-bottom: 20px;
	}
}

.jackpots .rangs:after,
.jackpots .rangs:before {
	background-color: var(--secondary);
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: -50px;
}

.jackpots .rangs:after {
	bottom: -50px;
	top: auto;
}

@media (max-width: 900px) {
	.jackpots .rangs:after {
		bottom: 0;
	}
}

.jackpots .rangs .h1 {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.jackpots .rangs .h1 {
		font-size: 2rem;
	}
}

.jackpots .rangs .desc {
	color: var(--textSecondary);
	font-size: 1.15rem;
	font-weight: 100;
	line-height: 230%;
	margin-top: 20px;
	text-align: center;
}

@media (max-width: 900px) {
	.jackpots .rangs .desc {
		font-size: 1rem;
	}
}

@media (max-width: 600px) {
	.jackpots .rangs .desc {
		font-size: 0.8rem;
	}
}

.jackpots .grid {
	display: flex;
	justify-content: space-evenly;
	margin-top: 270px;
}

@media (max-width: 900px) {
	.jackpots .grid {
		align-items: center;
		flex-direction: column;
		margin-top: 150px;
	}
	.jackpots .grid .item {
		margin-bottom: 30vw !important;
	}
	.jackpots .grid .item:last-child {
		margin-bottom: 5vw !important;
	}
	.jackpots .grid .item.vodka {
		order: -1;
		transform: translateY(0) !important;
	}
}

.jackpots .grid .item {
	border-radius: 25px;
	height: 348px;
	margin: 0 2vw;
	max-width: calc(100% - 60px);
	position: relative;
	width: 400px;
}

.jackpots .grid .item svg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.jackpots .grid .item.major svg {
	stroke: url('');
}

.jackpots .grid .item.major .main {
	height: auto;
	width: 82.25%;
}

.jackpots .grid .item.major .images:before {
	background: radial-gradient(50% 50% at 50% 50%, #8f00ff 0, #0085ff00 100%);
	opacity: 0.3;
}

.jackpots .grid .item.major .back:first-child {
	filter: blur(3.8px);
	height: auto;
	left: 70px;
	top: -50px;
	transform: translate(-50%, -50%) rotate(-30deg);
	width: 25%;
}

.jackpots .grid .item.major .back:last-child {
	filter: blur(1.62px);
	height: auto;
	left: auto;
	right: -80px;
	top: -80px;
	transform: translate(-50%, -50%) rotate(30deg);
	width: 37.5%;
}

.jackpots .grid .item.vodka {
	transform: translateY(-70px);
}

.jackpots .grid .item.vodka svg {
	stroke: url('');
}

.jackpots .grid .item.vodka .main {
	height: auto;
	width: 85.5%;
}

.jackpots .grid .item.vodka .images:before {
	background: radial-gradient(50% 50% at 50% 50%, #ff9900e0 0, #f900 100%);
	border-radius: 388.922px;
	opacity: 0.45;
}

.jackpots .grid .item.vodka .back {
	filter: blur(2.7px);
	height: auto;
	width: 30%;
}

.jackpots .grid .item.vodka .back:first-child {
	left: 20px;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.jackpots .grid .item.vodka .back:last-child {
	left: auto;
	right: -100px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 32.5%;
}

.jackpots .grid .item.grand svg {
	stroke: url('');
}

.jackpots .grid .item.grand .main {
	height: auto;
	width: 78.25%;
}

.jackpots .grid .item.grand .images:before {
	background: radial-gradient(50% 50% at 50% 50%, #0085ff 0, #0085ff00 100%);
	opacity: 0.3;
}

.jackpots .grid .item.grand .back:first-child {
	filter: blur(3.8px);
	height: auto;
	left: 70px;
	top: -50px;
	transform: translate(-50%, -50%) rotate(-30deg);
	width: 25%;
}

.jackpots .grid .item.grand .back:last-child {
	filter: blur(1.62px);
	height: auto;
	left: auto;
	right: -80px;
	top: -80px;
	transform: translate(-50%, -50%) rotate(30deg);
	width: 37.5%;
}

.jackpots .grid .item .images {
	position: relative;
	width: 100%;
}

.jackpots .grid .item .images img {
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
}

.jackpots .grid .item .images .main {
	transform: translate(-50%, -60%);
}

.jackpots .grid .item .images:before {
	animation: jackpotRankBack 5s linear infinite;
	content: '';
	height: 300px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
}

@keyframes jackpotRankBack {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.25);
	}
	to {
		transform: translate(-50%, -50%) scale(1);
	}
}

.jackpots .grid .item .text {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.jackpots .grid .item .text:before {
	content: '';
	display: block;
	padding-top: 32.5%;
	width: 100%;
}

.jackpots .grid .item .text .title {
	font-size: 3rem;
	font-weight: 700;
}

.jackpots .grid .item .text .bank {
	font-size: 3rem;
	font-weight: 700;
	margin-top: 5px;
	white-space: nowrap;
}

.jackpots .grid .item .text .bank .odometer {
	margin-bottom: 5px;
	margin-left: 5px;
}

.jackpots .grid .item .text .period {
	color: var(--textSecondary);
	margin-top: 15px;
}

.jackpots .grid .item .text .period span {
	color: #fff;
}

.jackpots .grid .item .text .hash {
	align-items: center;
	color: var(--textSecondary);
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}

.jackpots .grid .item .text .hash .h6 {
	cursor: pointer;
	transition: color 0.3s ease;
}

.jackpots .grid .item .text .hash .h6:hover {
	color: var(--blue);
}

.jackpots .grid .item .text .hash span {
	font-size: 0.7rem;
}

.jackpots .history {
	position: relative;
}

.jackpots .history .types {
	display: flex;
	margin-bottom: 40px;
	padding: 0 20px;
	position: relative;
}

.jackpots .history .types:after {
	background-color: var(--blue);
	background: linear-gradient(180deg, #41c6ff 8.4%, #1a64fc 80.38%);
	border-radius: 4px;
	bottom: -43px;
	content: '';
	height: 3px;
	left: 45px;
	position: absolute;
	transition: left 0.3s ease;
	width: 150px;
}

.jackpots .history .types.typesmajor:after {
	left: 45px;
}

.jackpots .history .types.typesvodka:after {
	left: 245px;
}

.jackpots .history .types.typesgrand:after {
	left: 445px;
}

@media (max-width: 900px) {
	.jackpots .history .types {
		margin-bottom: 10px;
	}
	.jackpots .history .types:after {
		bottom: -13px;
		width: 75px;
	}
	.jackpots .history .types.typesmajor:after {
		left: 32px;
	}
	.jackpots .history .types.typesvodka:after {
		left: 132px;
	}
	.jackpots .history .types.typesgrand:after {
		left: 232px;
	}
}

.jackpots .history .types .type {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	height: 50px;
	justify-content: center;
	opacity: 0.5;
	transition: opacity 0.3s ease, text-shadow 0.3s ease;
	width: 200px;
}

@media (max-width: 900px) {
	.jackpots .history .types .type {
		font-size: 1.3rem;
		width: 100px;
	}
}

.jackpots .history .types .type:hover {
	opacity: 1;
}

.jackpots .history .types .type.typeMajor {
	color: #bf6fff;
}

.jackpots .history .types .type.typeMajor.active {
	opacity: 1;
	text-shadow: 0 3.278px 33.11px #bf6fff;
}

.jackpots .history .types .type.typeVodka {
	color: #ffd466;
}

.jackpots .history .types .type.typeVodka.active {
	opacity: 1;
	text-shadow: 0 3.278px 33.11px #ffd466;
}

.jackpots .history .types .type.typeGrand {
	color: #5fafff;
}

.jackpots .history .types .type.typeGrand.active {
	opacity: 1;
	text-shadow: 0 3.278px 33.11px #5fafff;
}

.tableWrapper {
	overflow: hidden;
}

.tableWrapper .table {
	height: 600px;
	overflow-y: auto;
	padding: 20px;
	position: relative;
}

.tableWrapper .table .blockLoader {
	height: calc(100% - 20px);
	width: calc(100% - 20px);
}

table {
	position: relative;
	width: 100%;
}

table thead tr th {
	border-bottom: 1px solid #232940;
	color: var(--textSecondary);
	font-size: 1.2rem;
	padding: 0 10px 20px 15px;
	white-space: nowrap;
}

table tbody tr:nth-child(2n) {
	background-color: #004e00;
}

table tbody tr td {
	height: 40px;
	padding: 10px 3px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

table tbody tr td span {
	color: var(--textSecondary);
}

table tbody tr td .small {
	font-size: 0.7rem;
}

table tbody tr td a {
	transition: color 0.3s ease;
}

table tbody tr td a:hover {
	color: var(--blue);
}

table tbody tr td.name {
	color: var(--blue);
	font-weight: 700;
}

table tbody tr td b {
	font-weight: 700;
}

.VIP {
	padding-top: 600px;
	position: relative;
}

@media (max-width: 600px) {
	.VIP {
		padding-top: 250px;
	}
}

.VIP .background {
	height: 100%;
	left: 50%;
	max-height: 100vh;
	position: absolute;
	top: -10%;
	width: 100vw;
	z-index: -1;
}

.VIP .background img {
	transform: translateX(-50%);
}

@media (max-width: 600px) {
	.VIP .background {
		height: 500px;
		left: 50%;
		top: 0;
		transform: translateY(0) !important;
	}
	.VIP .background img {
		height: 100%;
		object-fit: cover;
		width: 200%;
	}
}

.VIP .cashback {
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
	background: linear-gradient(180deg, #121a2980, #121a294d);
	border-radius: 25px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 334px;
	position: relative;
}

@media (max-width: 1200px) {
	.VIP .cashback {
		grid-template-columns: 1fr;
		min-height: 340px;
		overflow: hidden;
		padding: 20px;
	}
}

@media (max-width: 600px) {
	.VIP .cashback {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: #0000;
	}
}

.VIP .cashback .chest {
	background-image: url('');
	background-repeat: no-repeat;
	border-radius: 25px 0 0 25px;
	position: relative;
}

@media (max-width: 1200px) {
	.VIP .cashback .chest {
		background-size: cover;
		bottom: 0;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: -1;
	}
	.VIP .cashback .chest img {
		display: none;
	}
}

@media (max-width: 600px) {
	.VIP .cashback .chest {
		display: none;
	}
}

.VIP .cashback .chest:before {
	background: radial-gradient(50% 50% at 50% 50%, #2681fd8f 0, #0085ff00 100%);
	content: '';
	height: 100%;
	left: -25%;
	position: absolute;
	width: 100%;
}

.VIP .cashback .chest img {
	left: -90px;
	position: absolute;
	top: -80px;
}

.VIP .cashback .info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 20px 20px 0;
}

@media (max-width: 600px) {
	.VIP .cashback .info {
		padding: 0;
	}
}

.VIP .cashback .info .h3 {
	font-size: 1.6rem;
	font-weight: 700;
	text-shadow: 0 3.338px 4.45px #0a0d1169;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.VIP .cashback .info .h3 {
		margin-bottom: 20px;
	}
}

.VIP .cashback .info .countdown {
	display: flex;
}

@media (max-width: 600px) {
	.VIP .cashback .info .countdown {
		margin-bottom: 10px;
	}
}

.VIP .cashback .info .countdown .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 10px;
}

.VIP .cashback .info .countdown .item span {
	align-items: center;
	background: #333d5054;
	border: 3px solid #ffffff08;
	border-radius: 50%;
	display: flex;
	font-size: 1.3rem;
	font-weight: 700;
	height: 60px;
	justify-content: center;
	width: 60px;
}

.VIP .cashback .info .countdown .item .small {
	font-size: 0.8rem;
	margin-top: 10px;
	text-shadow: 0 2.931px 3.909px #0a0d1169;
	text-transform: uppercase;
}

@media (max-width: 1200px) {
	.VIP .cashback .info .countdown .item span {
		background: #333d5080;
	}
}

.VIP .cashback .info .desc {
	font-weight: 300;
	text-shadow: 0 3px 4px #0a0d1169;
}

@media (max-width: 600px) {
	.VIP .cashback .info .desc {
		color: #7a85a5;
		font-size: 0.9rem;
		margin-bottom: 20px;
		margin-top: 10px;
	}
}

.VIP .cashback .info .me {
	display: flex;
}

.VIP .cashback .info .me .item {
	margin-right: 30px;
}

.VIP .cashback .info .me .item:last-child {
	margin-right: 0;
}

.VIP .cashback .info .me .item span {
	font-size: 1.4rem;
	font-weight: 700;
	text-shadow: 0 2.229px 2.972px #0a0d1169;
}

.VIP .cashback .info .me .item .small {
	font-size: 0.8rem;
	font-weight: 300;
	margin-top: 3px;
	text-shadow: 0 2.229px 2.972px #0a0d1169;
}

.VIP .levels {
	display: grid;
	grid-template-columns: 1170px 400px;
	position: relative;
	width: 100%;
}

@media (max-width: 1400px) {
	.VIP .levels {
		grid-template-columns: auto;
		margin-bottom: 878px;
	}
}

.VIP .levels:before {
	background-color: var(--bgColor);
	content: '';
	height: calc(100% + 50px);
	left: 50%;
	position: absolute;
	right: 0;
	transform: translateX(-50%);
	width: 100vw;
}

.VIP .levels .map {
	background-image: url('');
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
}

@media (max-width: 1400px) {
	.VIP .levels .map {
		background-position: 50%;
		left: 50%;
		margin: auto;
		max-width: 800px;
		min-width: 1170px;
		order: 2;
		position: absolute;
		top: 470px;
		transform: translateX(-50%);
	}
}

.VIP .levels .map .ded {
	bottom: 0;
	left: -15%;
	position: absolute;
}

.VIP .levels .map:before {
	background: radial-gradient(50% 50% at 50% 50%, #2681fd57 0, #0085ff00 100%);
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.3;
	position: absolute;
	right: 0;
	top: 0;
}

.VIP .levels .map .grid {
	grid-gap: 0 35px;
	display: grid;
	grid-template-areas: '.      level10 .     ' '.      level10 .     ' 'level8 level10 level9' 'level8 .       level9' 'level8 level7  level9' '.      level7  .     ' 'level5 level7  level6' 'level5 .       level6' 'level5 level4  level6' '.      level4  .     ' 'level2 level4  level3' 'level2 .       level3' 'level2 level1  level3' '.      level1  .     ' '.      level1  .     ';
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(15, 1fr);
	padding: 12% 35%;
}

@media (max-width: 1400px) {
	.VIP .levels .map .grid {
		margin: auto;
		max-width: 100vw;
		padding: 12% 0;
		width: 351px;
	}
}

.VIP .levels .map .grid .level10 {
	grid-area: level10;
}

.VIP .levels .map .grid .item {
	border: 5px solid #0000;
	border-radius: 25px;
	box-shadow: 0 1.913px 5.738px 0 #030711;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
	width: 100%;
	will-change: transform;
}

.VIP .levels .map .grid .item.active {
	border: 5px solid #0a6dfc;
	box-shadow: 0 2.52px 21.689px 0 #0075ff;
	transform: scale(1.2);
}

.VIP .levels .map .grid .item.active:before {
	display: none;
}

.VIP .levels .map .grid .item.passed .passedBlock {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 0.6rem;
	font-weight: 700;
	justify-content: center;
	left: 50%;
	position: absolute;
	text-transform: uppercase;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

.VIP .levels .map .grid .item.passed .passedBlock svg {
	filter: drop-shadow(0 0 20px rgb(58, 124, 255));
	margin-bottom: 5px;
}

.VIP .levels .map .grid .item.passed .level,
.VIP .levels .map .grid .item.passed img {
	opacity: 0.33;
}

.VIP .levels .map .grid .item:hover {
	transform: scale(1.2);
}

.VIP .levels .map .grid .item:hover img {
	transform: scale(1.1);
}

.VIP .levels .map .grid .item:after {
	content: '';
	display: block;
	padding-top: 150.4%;
	width: 100%;
}

.VIP .levels .map .grid .item:before {
	background-image: url('');
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: -1px;
	width: 100%;
	z-index: 3;
}

.VIP .levels .map .grid .item .lvl {
	font-size: 0.65rem;
	font-weight: 700;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 13px;
	width: 100%;
	z-index: 2;
}

.VIP .levels .map .grid .item img {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: transform 0.3s ease;
	width: 100%;
	z-index: 1;
}

.VIP .levels .info {
	left: -200px;
	margin: auto;
	max-width: calc(100vw - 20px);
	position: relative;
	width: 400px;
	z-index: 3;
}

@media (max-width: 1400px) {
	.VIP .levels .info {
		left: auto;
		margin-top: 50px;
	}
}

.VIP .levels .info:after {
	background: radial-gradient(50% 50% at 50% 50%, #2681fd57 0, #0085ff00 100%);
	content: '';
	height: 300px;
	left: 50%;
	position: absolute;
	top: 200px;
	transform: translate(-50%, -50%);
	width: 800px;
}

.VIP .levels .info .h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
}

.VIP .levels .info .desc {
	color: var(--textSecondary);
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 1.1rem;
	text-align: center;
	text-shadow: 0 2.633px 3.51px #0a0d1169;
}

.VIP .levels .info .levelSwiper {
	margin-top: 40px;
	overflow: visible;
	position: relative;
}

@media (max-width: 600px) {
	.VIP .levels .info .levelSwiper {
		left: 15px;
	}
}

.VIP .levels .info .levelSwiper .item,
.VIP .levels .info .levelSwiper .swiper-slide-shadow {
	border-radius: 45px;
	max-width: calc(100vw - 50px);
}

.VIP .levels .info .levelSwiper .item {
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #2886fd 0, #192232 20%);
	box-shadow: none;
	padding: 40px 20px;
}

.VIP .levels .info .levelSwiper .item .top {
	display: flex;
}

.VIP .levels .info .levelSwiper .item .top .left {
	align-items: center;
	background-image: linear-gradient(180deg, #111827, #111827),
		linear-gradient(180deg, #2886fd 0, #111827 50%);
	border-radius: 50%;
	display: flex;
	font-size: 1.5rem;
	font-weight: 700;
	height: 70px;
	justify-content: center;
	width: 70px;
}

.VIP .levels .info .levelSwiper .item .top .right {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-evenly;
	margin-left: 20px;
}

.VIP .levels .info .levelSwiper .item .top .right span {
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
}

.VIP .levels .info .levelSwiper .item .top .right .small {
	color: #475774;
}

.VIP .levels .info .levelSwiper .item .items {
	margin: 40px 0;
}

.VIP .levels .info .levelSwiper .item .items .row {
	align-items: center;
	display: flex;
	font-size: 1.3rem;
	justify-content: space-between;
}

.VIP .levels .info .levelSwiper .item .items .row:first-child {
	margin-bottom: 15px;
}

.VIP .levels .info .levelSwiper .item .items .row .value {
	color: #475774;
	white-space: nowrap;
}

.loading {
	align-items: center;
	background-color: var(--bgColor);
	display: flex;
	height: 100vh;
	justify-content: center;
	width: 100vw;
}

.streamer {
	min-height: 100vh;
}

.streamer,
.streamer .start {
	position: relative;
}

.streamer .start .h1 {
	font-size: 100px;
	font-weight: 700;
	margin-top: 20px;
	min-height: 120px;
	text-align: center;
	width: 100%;
}

.streamer .start .columns {
	grid-gap: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	min-height: 570px;
}

.streamer .start .columns .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.streamer .start .columns .item.left {
	animation: fadeInLeft;
	animation-duration: 0.5s;
	animation-timing-function: ease;
}

.streamer .start .columns .item.right {
	animation: fadeInRight;
	animation-duration: 0.5s;
	animation-timing-function: ease;
}

.streamer .start .columns .item .bank {
	padding-bottom: 70px;
}

.streamer .start .columns .item .bank .amount {
	margin-bottom: 15px;
}

.streamer .start .columns .item .bank .amount .label {
	font-size: 32px;
	font-weight: 700;
}

.streamer .start .columns .item .bank .amount .h2 {
	-webkit-text-fill-color: #0000;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(90deg, #41c6ff 0, #1a64fc);
	color: #0000;
	font-size: 70px;
	font-weight: 900;
	text-align: center;
}

.streamer .start .columns .item .timerBlock {
	display: flex;
	flex-direction: column;
}

.streamer .start .columns .item .timerBlock.started .label {
	display: none;
}

.streamer .start .columns .item .timerBlock.started .countdown {
	grid-gap: 10px;
	display: flex;
}

.streamer .start .columns .item .timerBlock.started .countdown .item span {
	border: 2px solid #ffffff1a;
	font-size: 22px;
	height: 55px;
	width: 55px;
}

.streamer .start .columns .item .timerBlock.started .countdown .item .small {
	font-size: 12px;
	font-weight: 400;
	margin-top: 5px;
}

.streamer .start .columns .item .timerBlock .label {
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	margin-bottom: 20px;
}

.streamer .start .columns .item .timerBlock .countdown {
	grid-gap: 15px;
}

.streamer .start .columns .item .timerBlock .countdown .item span {
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	background: #333d5040;
	border: 2px solid #ffffff1a;
	font-size: 30px;
	height: 72px;
	text-shadow: 0 0 10px #ffffffe6;
	width: 72px;
}

.streamer .start .columns .item .timerBlock .countdown .item .small {
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
	text-shadow: 0 4.141px 5.522px #0a0d1169;
	text-transform: uppercase;
}

.streamer .start .columns .item .characterBox {
	bottom: 90px;
	position: absolute;
}

.streamer .start .columns .item .miniTitle {
	bottom: 20px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.streamer .start .columns .item .miniTitle .h3 {
	-webkit-text-fill-color: #0000;
}

.streamer .start .columns .item .miniTitle .odometer-container .odometer,
.streamer .start .columns .item .miniTitle .h3 {
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(90deg, #41c6ff 0, #1a64fc);
	color: #0000;
	font-size: 50px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.streamer .start .columns .item .miniTitle .odometer-container .odometer {
	-webkit-text-fill-color: #0000;
}

.streamer .start .columns .item .miniTitle span {
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	white-space: nowrap;
}

.streamer .start .columns .item .cup {
	position: relative;
}

.streamer .start .columns .item .cup .cupImage {
	animation: enhancedBounceIn 0.5s ease 0.2s forwards, flyCup 12s ease infinite;
	opacity: 0;
	width: 420px;
}

@keyframes flyCup {
	0% {
		filter: drop-shadow(0 0 60px rgba(176, 118, 83, 0.6));
		transform: translateY(0);
	}
	50% {
		filter: drop-shadow(0 20px 30px rgba(176, 118, 83, 0.6));
		transform: translateY(-20px);
	}
	to {
		filter: drop-shadow(0 0 60px rgba(176, 118, 83, 0.6));
		transform: translateY(0);
	}
}

@keyframes enhancedBounceIn {
	0% {
		filter: grayscale(100%);
		opacity: 0;
		transform: scale(0.3);
	}
	30% {
		filter: grayscale(50%);
		opacity: 0.5;
		transform: scale(1.1);
	}
	50% {
		filter: grayscale(25%);
		opacity: 0.75;
		transform: scale(1);
	}
	70% {
		filter: grayscale(10%);
		transform: scale(1);
	}
	to {
		filter: grayscale(0);
		opacity: 1;
		transform: scale(1);
	}
}

.streamer .start .columns .item .cup .light {
	animation: spin 40s linear infinite;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(1turn);
	}
}

.streamer .start .columns .item .cup .mainBtn {
	animation: flipInX-custom 0.5s ease 0.2s forwards;
	bottom: 0;
	height: 50px;
	left: 50%;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%);
}

@keyframes flipInX-custom {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg) translateX(-50%);
	}
	to {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg) translateX(-50%);
	}
}

.streamer .start .columns .item .cup .mainBtn span {
	font-size: 16px;
	font-weight: 500;
	min-width: 150px;
	padding: 0 25px;
	text-align: center;
	white-space: nowrap;
}

.streamer .start .columns .item .bottomTitle {
	animation: fadeInUp;
	animation-duration: 0.3s;
	animation-timing-function: ease;
	margin-top: 25px;
}

.streamer .start .columns .item .bottomTitle .label {
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	text-align: center;
}

.streamer .start .columns .item .bottomTitle .miniText {
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	text-align: center;
}

.streamer .start .columns .item .bottomTitle .teamName {
	-webkit-text-fill-color: #0000;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(90deg, #41c6ff 0, #1a64fc);
	color: #0000;
	font-size: 50px;
	font-weight: 700;
	padding-top: 20px;
	text-align: center;
	text-transform: uppercase;
}

.streamer .start .backComposition {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

.streamer .start .backComposition img {
	animation: coinFlip 10s linear infinite;
}

@keyframes coinFlip {
	0% {
		transform: translatey(0) rotate(0deg);
	}
	25% {
		transform: translatey(-25px) rotate(45deg);
	}
	50% {
		transform: translatey(0) rotate(0);
	}
	75% {
		transform: translatey(-25px) rotate(-45deg);
	}
	to {
		transform: translatey(0) rotate(0);
	}
}

.streamer .streamStat {
	animation: fadeInUp;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, #247cfd 20%, #121a29 47%);
	background-origin: border-box;
	border: 4px solid #0000;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 460px;
	padding: 30px;
	position: relative;
	width: 100%;
}

.streamer .streamStat .statBack {
	border-radius: 4px;
	left: 0;
	object-fit: contain;
	position: absolute;
	top: 0;
	width: 100%;
}

.streamer .streamStat .statCharacter {
	position: absolute;
	right: 10%;
	top: -95px;
}

.streamer .avatar {
	align-items: center;
	border-radius: 50%;
	display: flex;
	height: 84px;
	justify-content: center;
	width: 84px;
}

.streamer .avatar img {
	border-radius: 50%;
	height: 75px;
	object-fit: cover;
	width: 75px;
}

.streamer .streamerUser .h4 {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.streamer .streamerUser .media {
	align-items: center;
	display: flex;
	margin-top: 5px;
}

.streamer .streamerUser .media img {
	margin-right: 5px;
	width: 28px;
}

.streamer .streamerUser .media a {
	color: #677a9d;
	font-size: 20px;
	font-weight: 500;
	text-shadow: 0 6.52px 26.079px #00000059;
	transition: color 0.3s ease;
}

.streamer .streamerUser .media a:hover {
	color: var(--blue);
}

.streamer .stat span {
	font-size: 28px;
	font-weight: 700;
}

.streamer .stat .understat {
	color: #677a9d;
	font-size: 20px;
	font-weight: 500;
}

.streamer .stat.bank {
	display: flex;
	flex-direction: column;
	padding-left: 100px;
}

.streamer .stat.bank .prize {
	-webkit-text-fill-color: #0000;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(90deg, #41c6ff 0, #1a64fc);
	color: #0000;
	font-size: 26px;
	font-weight: 900;
}

.streamer .stat.bank p {
	color: #677a9d;
	font-size: 13px;
	font-weight: 500;
}

.streamer .stat.bank span {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	padding-top: 5px;
}

.streamer .streamBlock {
	margin-top: 140px;
}

.streamer .streamBlock,
.streamer .streamBlock .title {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.streamer .streamBlock .title .h1 {
	font-size: 38px;
	font-weight: 700;
	text-align: center;
}

.streamer .streamBlock .title .composition {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: 25px 1fr 25px;
	margin-top: 10px;
	min-width: 300px;
}

.streamer .streamBlock .title .composition .item {
	border-radius: 4px;
	height: 4px;
	width: 100%;
}

.streamer .streamBlock p {
	color: #717f99;
	font-size: 18px;
	font-weight: 400;
	margin-top: 40px;
	max-width: 1000px;
	text-align: center;
}

.streamer .streamBlock .row {
	grid-gap: 20px;
	align-items: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	position: relative;
	z-index: 1;
}

.streamer .streamBlock .row .avatar {
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, #247cfd 20%, #121a29 80%);
	border: 5px solid #0000;
}

.streamer .streamBlock .row .avatar img {
	width: 74px;
}

.streamer .streamBlock .row .column {
	align-items: flex-start;
	display: flex;
}

.streamer .streamBlock .row .column img {
	margin-right: 15px;
}

.streamer .streamBlock .row.top {
	grid-template-columns: auto 250px 1fr 1fr 1.1fr;
}

.streamer .streamBlock .row .investItem {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.streamer .streamBlock .row .investItem .head {
	font-size: 20px;
	font-weight: 700;
}

.streamer .streamBlock .row .investItem .date {
	color: #677a9dcc;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
}

.streamer .streamBlock .row .investItem .mainBtn {
	min-width: 180px;
}

.streamer .streamTeam {
	margin-top: 100px;
	position: relative;
}

.streamer .streamTeam .h2 {
	font-size: 42px;
	font-weight: 700;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 0;
	transform: translateX(-50%);
}

.streamer .streamTeam .subhead {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
}

.streamer .streamTeam .subhead .right {
	align-items: center;
	display: flex;
	margin-bottom: 30px;
}

.streamer .streamTeam .subhead .right .teamCount {
	color: #677a9d;
	font-size: 22px;
	font-weight: 500;
	margin-right: 20px;
}

.streamer .streamTeam .subhead .right .teamCount span {
	color: #fff;
}

.streamer .streamTeam .subhead .right .mainBtn {
	min-width: 200px;
}

.streamer .streamTeam .subhead .right .mainBtn span {
	color: #677a9d;
	font-size: 18px;
	font-weight: 400;
	text-shadow: 0 3.86px 5.147px #0a0d1169;
}

.streamer .streamTeam .teamList .team {
	grid-gap: 25px;
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, #253041 20%, #121a29 47%);
	background-origin: border-box;
	border: 4px solid #0000;
	border-radius: 55px;
	box-shadow: 0 5px 6px 0 #11141b1f;
	cursor: pointer;
	display: grid;
	filter: drop-shadow(0 0 0 rgba(58, 124, 255, 0.3));
	grid-template-columns: 84px 230px 1fr 1fr 1.1fr;
	height: 110px;
	margin-bottom: 15px;
	padding: 0 15px;
	transition: filter 0.3s ease;
}

.streamer .streamTeam .teamList .team.champion {
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, #41c6ff 20%, #1a64fc 47%);
}

.streamer .streamTeam .teamList .team.second {
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, #713fff 20%, #121a29 47%);
}

.streamer .streamTeam .teamList .team:hover {
	filter: drop-shadow(0 0 10px rgba(58, 124, 255, 0.3));
}

.streamer .streamTeam .teamList .team .column {
	align-items: flex-start;
	display: flex;
	position: relative;
	z-index: 1;
}

.streamer .streamTeam .teamList .team .column.last:after {
	background: linear-gradient(90deg, #3f5b8f00, #3f5b8f33 50%, #3f5b8f00);
	content: '';
	height: 110px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: -1;
}

.streamer .streamTeam .teamList .team .column .icon {
	margin-right: 15px;
}

.streamer .streamTeam .teamList .team .column .bigIcon {
	bottom: 50%;
	left: -20px;
	position: absolute;
	transform: translateY(50%);
	width: 95px;
}

.streamer .streamTeam .teamList .team .column .bigIcon.champion {
	bottom: -30px;
	left: -50px;
	transform: none;
	width: 140px;
}

.streamer .streamTeam .teamList .team .column .bigIcon.second {
	bottom: -23px;
	left: -27px;
	transform: none;
	width: 120px;
}

.streamer .back {
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.statItem {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, rgba(37, 48, 65, 0.502) 30%, #121a29);
	background-origin: border-box;
	border: 3px solid #0000;
	border-radius: 15px;
	display: flex;
	height: 120px;
	padding-left: 120px;
	position: relative;
}

.statItem.prize {
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, rgba(37, 48, 65, 0.502) 30%, #2989fd);
}

.statItem .tippy {
	position: absolute;
	right: 10px;
	top: 10px;
}

.statItem .statIcon {
	left: -30px;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	width: 140px;
}

.statItem .statContent .h3 {
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
}

.statItem .statContent .subT {
	color: #677a9dcc;
	font-size: 14px;
	font-weight: 500;
	padding-top: 5px;
}

.start {
	margin-bottom: 30px;
}

.start .lobbySearch {
	margin-bottom: 30px;
	margin-top: 30px;
	position: relative;
}

@media (max-width: 600px) {
	.start .lobbySearch {
		margin-top: 0;
	}
}

.start .lobbySearch .searchMobile {
	display: none;
	height: 170px;
	margin-top: 35px;
	padding: 25px;
	position: relative;
	z-index: 1;
}

@media (max-width: 1000px) {
	.start .lobbySearch .searchMobile {
		display: block;
	}
}

@media (max-width: 700px) {
	.start .lobbySearch .searchMobile {
		padding: 25px;
	}
	.start .lobbySearch .searchMobile .inside {
		max-width: 160px !important;
	}
	.start .lobbySearch .searchMobile .inside .h1 {
		font-size: 14px;
	}
	.start .lobbySearch .searchMobile .mainImg {
		right: 0 !important;
	}
}

@media (max-width: 450px) {
	.start .lobbySearch .searchMobile .mainImg {
		right: -25px !important;
		width: 200px !important;
	}
}

.start .lobbySearch .searchMobile .inside {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	max-width: 300px;
}

.start .lobbySearch .searchMobile .inside .h1 {
	font-weight: 500;
	margin-bottom: 15px;
}

.start .lobbySearch .searchMobile .mainImg {
	bottom: -3px;
	position: absolute;
	right: 10%;
}

.start .lobbySearch .searchMobile .back {
	border-radius: 25px;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.start .lobbySearch .searchMobile .back .backImg {
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	width: 100%;
}

@media (max-width: 1000px) {
	.start .lobbySearch .searchWrapper {
		display: none;
	}
}

.start .searchWrapper {
	height: 370px;
	position: relative;
}

.start .searchGames {
	box-sizing: border-box;
	height: 100%;
	width: 100%;
}

.start .liveBets {
	margin-top: 50px;
}

@media (max-width: 600px) {
	.start .liveBets {
		margin-bottom: 10px;
		margin-top: 10px;
	}
}

.gameList {
	margin-top: 20px;
	position: relative;
	z-index: 1;
}

@media (max-width: 1400px) {
	.gameList .glow {
		display: none;
	}
}

.gameList .swiper-grid-column > .swiper-wrapper {
	flex-direction: row !important;
}

.gameList.tour {
	padding-bottom: 30px;
	padding-top: 0;
}

.gameList.tour .swiper {
	padding-bottom: 25px;
	padding-top: 90px;
}

@media (max-width: 690px) {
	.gameList.tour .swiper {
		padding-top: 60px;
	}
}

@media (max-width: 450px) {
	.gameList.tour .swiper {
		padding-top: 50px;
	}
}

.gameList.tour .glow {
	background: radial-gradient(
		50% 50% at 49.09% 48.05%,
		#2d66f0 0,
		#2d66f000 100%
	);
	content: '';
	flex-shrink: 0;
	height: 450px;
	opacity: 0.26;
	position: absolute;
	right: -45%;
	top: -62px;
	width: 876px;
	z-index: -1;
}

.gameList.tour .glow.two {
	right: 50%;
	top: -80px;
	transform: translateX(50%);
}

.gameList.tour .glow.three {
	left: -35%;
	right: auto;
}

.gameList .top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 600px) {
	.gameList .top {
		margin-bottom: 10px;
	}
}

.gameList .top .title {
	align-items: center;
	background-color: #004e00;
	border: none;
	border-radius: 4px;
	display: flex;
	font-size: 1.2rem;
	font-weight: 400;
	height: 55px;
	padding: 8px 25px;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	white-space: nowrap;
}

.gameList .top .title img {
	margin-right: 10px;
	width: 23px;
}

.gameList .top .arrows,
.gameList .top .arrows .item {
	align-items: center;
	display: flex;
}

.gameList .top .arrows .item {
	background-color: #004e00;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	height: 55px;
	justify-content: center;
	transform-origin: center;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	width: 55px;
}

.gameList .top .arrows .item svg {
	color: #677a9d;
	height: 15px;
	transition: color 0.3s ease-in-out, transform 0.3s ease;
	width: 15px;
}

.gameList .top .arrows .item.left {
	margin-right: 20px;
}

@media (max-width: 600px) {
	.gameList .top .arrows .item.left {
		margin-right: 10px;
	}
}

.gameList .top .arrows .item.left svg {
	transform: rotate(180deg);
}

.gameList .gameSwiper {
	left: -10px;
	max-width: calc(100% + 20px);
	padding: 5px 10px;
	width: calc(100% + 20px) !important;
}

.gameList .gameSwiper .swiper-slide {
	padding: 30px 3px 20px;
	width: 180px;
}

@media (max-width: 600px) {
	.gameList .gameSwiper .swiper-slide {
		padding: 0;
	}
	.gameList .top .title {
		font-size: 0.9rem;
		height: 45px;
		padding: 0 15px;
	}
	.gameList .top .title img {
		height: 16px;
		margin-right: 10px;
		width: 16px;
	}
	.gameList .top .arrows .item {
		height: 45px;
		width: 45px;
	}
	.gameList .top .arrows .item.right {
		margin-left: 15px;
	}
}

.sTournament,
.sTournament .swiper {
	overflow: visible !important;
}

.sTournament swiper-slide {
	overflow: visible;
	padding: 80px 0 20px;
}

@keyframes backScale {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
	to {
		transform: scale(1);
	}
}

.slot {
	align-self: flex-start;
	border-radius: 25px;
	box-shadow: 0 5px 6px 0 #11141b40;
	position: relative;
	transition: transform 0.3s ease;
	width: 100%;
}

.slot.empty {
	margin-right: 20px;
}

.slot.empty .slotInner .loadingLines {
	bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	left: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
}

.slot.empty .slotInner .loadingLine {
	animation: loadingLine 1s linear infinite;
	background-color: #192232;
	border-radius: 15px;
	height: 20px;
	margin-bottom: 10px;
	width: 80%;
}

.slot.empty .slotInner .loadingLine:last-child {
	height: 15px;
	width: 50%;
}

@keyframes loadingLine {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
	to {
		opacity: 1;
	}
}

.slot .slotInner {
	background-color: #19223280;
	border-radius: 25px;
	height: 100%;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease;
	width: 100%;
	z-index: 1;
}

.slot .slotInner:after {
	content: '';
	display: block;
	padding-top: 135%;
	width: 100%;
}

.slot .back {
	height: 100%;
	object-fit: cover;
	position: absolute;
	transition: transform 0.3s ease;
	width: 100%;
}

.slot .demo {
	align-items: center;
	background-color: #19223257;
	border-radius: 0 0 25px 25px;
	color: var(--textSecondary);
	display: flex;
	font-size: 0.8rem;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	left: 50%;
	margin: auto;
	opacity: 0;
	transition: transform 0.3s ease, color 0.3s ease;
	width: 90px;
	z-index: -1;
}

.slot .demo:hover {
	color: var(--blue);
}

@media (max-width: 600px) {
	.slot .demo {
		background-color: #192232cc;
		border-radius: 20px;
		font-size: 0.6rem;
		height: auto;
		left: 50%;
		padding: 7px 15px;
		position: absolute;
		text-transform: uppercase;
		top: 88%;
		transform: translate(-50%, -50%);
		width: auto;
		z-index: 1;
	}
}

.slot:hover {
	transform: scale(1.08);
}

.slot:hover .demo {
	animation: demoAppear 0.3s ease 0.3s both;
	opacity: 1;
}

@media (max-width: 600px) {
	.slot:hover .demo {
		animation: demoAppearMobile 0.3s ease 0.3s both;
	}
}

@keyframes demoAppear {
	0% {
		opacity: 0;
		transform: translateY(-7px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes demoAppearMobile {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
	}
	to {
		display: block;
		opacity: 1;
	}
}

.slot:hover .back {
	transform: scale(1.25);
	will-change: transform;
}

.slot:hover .play {
	opacity: 1;
	z-index: 1;
}

.slot:hover .play .like {
	animation: likeAppear 0.3s ease 0.3s both;
}

@media (max-width: 600px) {
	.slot:hover .play .like {
		opacity: 0 !important;
		visibility: hidden !important;
	}
}

@keyframes likeAppear {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.in {
	margin: 30px 0 50px;
	min-height: 500px;
	padding: 35px;
}

@media (max-width: 1000px) {
	.in {
		padding: 0;
	}
	.in .question .top {
		padding: 25px 5% !important;
	}
	.in .question .top .h2 {
		font-size: 20px !important;
	}
}

.in.rule .question {
	background-color: #19223280;
	background-image: none;
	border: 2px solid rgba(70, 80, 99, 0.149);
	padding-bottom: 25px !important;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.in .h1 {
	font-size: 28px;
	text-transform: uppercase;
}

.in .question {
	margin-bottom: 20px;
	overflow: hidden;
	padding: 0 !important;
	transition: padding 0.3s ease;
}

.in .question:last-child {
	margin-bottom: 0;
}

.in .question .top {
	align-items: center;
	background-color: var(--secondary);
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr 20px;
	padding: 30px 2.5%;
	position: relative;
	z-index: 1;
}

.in .question .top .h2 {
	color: #fff;
	font-size: 24px !important;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 1000px) {
	.in .question .top .h2 {
		font-size: 20px !important;
	}
}

.in .question .top .plusminus {
	cursor: pointer;
	height: 20px;
	position: relative;
	width: 20px;
}

.in .question .top .plusminus.active:before {
	opacity: 0;
	transform: translatey(-50%) rotate(-90deg);
}

.in .question .top .plusminus.active:after {
	transform: translatey(-50%) rotate(0);
}

.in .question .top .plusminus:after,
.in .question .top .plusminus:before {
	background-color: #fff;
	border-radius: 5px;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
	top: 50%;
	transition: 0.35s;
	width: 100%;
}

.in .question .top .plusminus:before {
	transform: translatey(-50%);
}

.in .question .top .plusminus:after {
	transform: translatey(-50%) rotate(90deg);
}

.in .question .ReactCollapse--collapse {
	transition: height 0.3s ease 0s;
}

.in .question .ReactCollapse--collapse .ReactCollapse--content {
	color: var(--lines);
	font-size: 15px;
	font-weight: 400;
	padding-top: 0 !important;
	text-shadow: 0 5px 6px #172e502e;
}

.in .question.opened .miniText {
	height: auto;
}

.in .question .miniText {
	color: #7a85a5;
	font-size: 17px;
	height: 0;
	line-height: 150%;
	padding: 0 25px 25px 45px;
	transition: color 0.3s ease;
}

.in .question .miniText span {
	color: hsla(0, 0%, 100%, 0.702);
}

.in .question .ruleBlock {
	color: #7a85a5;
	font-size: 17px;
	line-height: 150%;
	padding: 25px 25px 25px 5%;
}

@media (max-width: 1000px) {
	.in .question .ruleBlock {
		font-size: 14px;
		padding: 15px 15px 15px 4%;
	}
}

.in .question .ruleBlock.sub {
	padding: 10px 25px 10px 5%;
}

.in .question .ruleBlock.sub:first-child {
	padding-top: 20px;
}

.in .question .ruleBlock.sub:last-child {
	padding-bottom: 0;
}

.in .question .ruleBlock a {
	color: #32fe2b;
}

.in .question .ruleBlock li {
	margin: 15px 0;
}

.in .question .ruleBlock li:last-child {
	margin: 0;
}

.in .question .ruleBlock .h3,
.in .question .ruleBlock p {
	display: inline !important;
}

.in .question .ruleBlock .h3 {
	color: #fff;
	font-weight: 700;
	margin-right: 5px;
}

@keyframes float {
	0% {
		filter: drop-shadow(0 0 60px rgba(45, 102, 240, 0.6));
		transform: translate(-50%);
	}
	50% {
		filter: drop-shadow(0 20px 30px rgba(45, 102, 240, 0.6));
		transform: translate(-50%, -20px);
	}
	to {
		filter: drop-shadow(0 0 60px rgba(45, 102, 240, 0.6));
		transform: translate(-50%);
	}
}

@keyframes floatGreen {
	0% {
		filter: drop-shadow(0 0 60px rgba(59, 201, 182, 0.6));
		transform: translate(-50%);
	}
	50% {
		filter: drop-shadow(0 20px 30px rgba(59, 201, 182, 0.6));
		transform: translate(-50%, -20px);
	}
	to {
		filter: drop-shadow(0 0 60px rgba(59, 201, 182, 0.6));
		transform: translate(-50%);
	}
}

@keyframes floatRed {
	0% {
		filter: drop-shadow(0 0 60px rgba(255, 85, 104, 0.6));
		transform: translate(-50%);
	}
	50% {
		filter: drop-shadow(0 20px 30px rgba(255, 85, 104, 0.6));
		transform: translate(-50%, -20px);
	}
	to {
		filter: drop-shadow(0 0 60px rgba(255, 85, 104, 0.6));
		transform: translate(-50%);
	}
}

@keyframes floatGold {
	0% {
		filter: drop-shadow(0 0 60px rgba(176, 118, 83, 0.6));
		transform: translate(-50%);
	}
	50% {
		filter: drop-shadow(0 20px 30px rgba(176, 118, 83, 0.6));
		transform: translate(-50%, -20px);
	}
	to {
		filter: drop-shadow(0 0 60px rgba(176, 118, 83, 0.6));
		transform: translate(-50%);
	}
}

@keyframes multyFloat {
	0% {
		transform: translate(-50%) rotate(0);
	}
	25% {
		transform: translate(-50%, -10px) rotate(-15deg);
	}
	50% {
		transform: translate(-50%, -15px) rotate(0);
	}
	75% {
		transform: translate(-50%, -10px) rotate(15deg);
	}
	to {
		transform: translate(-50%) rotate(0);
	}
}

.profile {
	padding-left: 260px;
}

@media (max-width: 820px) {
	.profile {
		padding-left: 240px !important;
	}
}

@media (max-width: 700px) {
	.profile {
		padding-left: 0 !important;
	}
}

.profile input {
	font-size: 14px;
}

.profile .prowrapper {
	max-width: 100vw;
	overflow-x: hidden;
	padding: 35px 50px;
}

@media (max-width: 1280px) {
	.profile .prowrapper {
		padding: 35px;
	}
}

@media (max-width: 820px) {
	.profile .prowrapper {
		padding: 25px;
	}
}

@media (max-width: 700px) {
	.profile .prowrapper {
		padding: 20px 0 90px;
	}
	.profile .prowrapper .profileTop {
		padding: 0 20px !important;
	}
	.profile .prowrapper .profileTop .comeBack {
		display: none;
	}
	.profile .prowrapper .structure .his.baseBlock {
		border: solid #0000 !important;
		border-width: 3px 0 0 !important;
	}
	.profile .prowrapper .wallet .block.baseBlock {
		border-radius: 0 !important;
		padding: 15px !important;
	}
	.profile .prowrapper .wallet .block.attention {
		max-width: 100% !important;
	}
	.profile .prowrapper .wallet .block .h1 {
		font-size: 20px;
	}
	.profile .prowrapper .settings .block.baseBlock {
		border: solid #0000 !important;
		border-radius: 0 !important;
		border-width: 3px 0 0 !important;
		padding: 20px !important;
	}
}

@media (max-width: 600px) {
	.profile .prowrapper .field .label {
		font-size: 12px !important;
	}
	.profile .prowrapper .field input {
		font-size: 14px !important;
		height: 40px !important;
	}
	.profile .prowrapper .block .mainBtn span {
		font-size: 14px !important;
	}
	.profile .prowrapper .block .left .title .h2 {
		font-size: 22px !important;
	}
	.profile .prowrapper .block .left .title p {
		font-size: 13px !important;
	}
	.profile .prowrapper .block .instruction .item {
		font-size: 12px !important;
	}
	.profile .prowrapper .profileTop .about .icon {
		height: 40px !important;
		margin-right: 15px !important;
		width: 40px !important;
	}
	.profile .prowrapper .profileTop .about .icon svg {
		height: 17px !important;
		width: 17px !important;
	}
	.profile .prowrapper .profileTop .about .h1 {
		font-size: 16px !important;
	}
}

.profile .prowrapper .profileTop {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	width: 100%;
}

.profile .prowrapper .profileTop .about {
	align-items: center;
	display: flex;
}

.profile .prowrapper .profileTop .about .icon {
	align-items: center;
	border-radius: 50%;
	display: flex;
	height: 50px;
	justify-content: center;
	margin-right: 20px;
	width: 50px;
}

.profile .prowrapper .profileTop .about .icon svg {
	height: 20px;
	width: 20px;
}

.profile .prowrapper .profileTop .about .h1 {
	font-size: 20px;
	font-weight: 500;
	text-shadow: 0 5.367px 7.156px #172e502e;
}

.profile .prowrapper .profileTop .comeBack {
	height: 50px;
	padding: 0 20px;
}

.profile .prowrapper .promoSwiper {
	position: relative;
}

@media (max-width: 1660px) {
	.profile .prowrapper .promoSwiper .mainSlide {
		width: calc(33% - 20px) !important;
	}
}

@media (max-width: 1400px) {
	.profile .prowrapper .promoSwiper .mainSlide {
		width: calc(50% - 25px) !important;
	}
}

@media (max-width: 1300px) {
	.profile .prowrapper .promoSwiper .mainSlide {
		width: 80% !important;
	}
}

@media (max-width: 800px) {
	.profile .prowrapper .promoSwiper .mainSlide {
		width: calc(100% - 20px) !important;
	}
}

@media (max-width: 700px) {
	.profile .prowrapper .promoSwiper {
		padding: 0 20px !important;
	}
}

@media (max-width: 600px) {
	.profile .prowrapper .promoSwiper .swiper-slide .block {
		border-radius: 35px !important;
		min-height: 600px !important;
		padding-bottom: 25px;
		padding-left: 25px;
		padding-right: 25px;
	}
	.profile .prowrapper .promoSwiper .swiper-slide .block .h1 {
		font-size: 22px !important;
	}
	.profile .prowrapper .promoSwiper .swiper-slide .block .amountBox {
		font-size: 30px !important;
	}
	.profile .prowrapper .promoSwiper .swiper-slide .block .levelSwiper .slot {
		width: 140px !important;
	}
	.profile .prowrapper .promoSwiper .swiper-slide .block.bigIcon {
		padding-top: 240px !important;
	}
	.profile .prowrapper .promoSwiper .swiper-slide .block .flyIcon.big {
		top: 35px !important;
		width: 140px !important;
	}
	.profile .prowrapper .promoSwiper .swiper-slide .block .flyIcon.small {
		display: none;
	}
}

.profile .prowrapper .promoSwiper .swiper-pagination {
	padding: 45px 0;
	position: relative;
}

.profile .prowrapper .promoSwiper .swiper-pagination .swiper-pagination-bullet {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(to bottom, #192232, #192232),
		linear-gradient(to bottom, var(--topLine) 20%, #192232 47%);
	background-origin: border-box;
	border: 3px solid #0000;
	box-shadow: 0 5px 6px 0 #11141b1f;
	height: 25px;
	margin: 0 12px;
	opacity: 1;
	transition: background-image 0.3s ease, box-shadow 0.3s ease;
	width: 25px;
}

.profile
	.prowrapper
	.promoSwiper
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
		linear-gradient(180deg, #79cdfd, #1a64fc);
	box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #3a7cffab;
}

.profile .prowrapper .promoSwiper .swiper-slide {
	width: calc(25% - 20px);
}

.profile .prowrapper .promoSwiper .swiper-slide .slot:hover {
	transform: scale(1) !important;
}

.profile .prowrapper .promoSwiper .fly {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.profile .prowrapper .promoSwiper .fly .flyIcon {
	top: 15%;
	transform-origin: center;
}

.profile .prowrapper .promoSwiper .fly .small {
	animation: multyFloat 12s linear infinite;
	filter: drop-shadow(0 0 0 rgba(45, 102, 240, 0.6));
	transform: rotate(50deg);
}

.profile .prowrapper .promoSwiper .block.fs {
	min-height: 660px;
}

.profile .prowrapper .promoSwiper .block.bBlock {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 660px;
	padding-top: 350px;
}

.profile .prowrapper .promoSwiper .block.bBlock .field {
	margin-bottom: 30px;
}

.profile .prowrapper .promoSwiper .block.bBlock .h1 {
	font-size: 25px;
	margin: 0;
}

.profile .prowrapper .promoSwiper .block.bBlock .h1 p {
	color: var(--lines);
	font-size: 15px;
	font-weight: 400;
	padding-top: 5px;
}

.profile .prowrapper .promoSwiper .auto {
	display: flex;
	flex-direction: column;
	font-size: 15px;
	height: 45px;
	justify-content: space-between;
}

.profile .prowrapper .promoSwiper .auto span {
	color: #1a64fc;
}

.profile .prowrapper .promoSwiper .amountBox {
	font-size: 34px;
	font-weight: 700;
	padding: 40px 0;
}

.profile .prowrapper .promoSwiper .amountBox span {
	color: var(--lines);
	font-size: 22px;
}

.profile .prowrapper .promoSwiper .amountBox .miniText {
	padding: 10px 0 0;
}

.profile .prowrapper .block {
	background-image: linear-gradient(to bottom, var(--bgModal), var(--bgModal)),
		linear-gradient(to bottom, var(--topLine) 1%, var(--bgModal) 10%);
	border-radius: 45px;
	margin-bottom: auto;
	min-height: 300px;
	padding: 35px;
	position: relative;
}

.profile .prowrapper .block .amountBox {
	padding: 0 0 25px;
}

.profile .prowrapper .block .burning {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 20px;
}

.profile .prowrapper .block .burning span {
	color: #32fe2b;
}

.profile .prowrapper .block .burning b {
	font-weight: 700;
}

.profile .prowrapper .block .bonusLine {
	margin-bottom: 35px;
}

.profile .prowrapper .block .bonusLine .line {
	background: #192232;
	border-radius: 6px;
	height: 10px;
	position: relative;
	width: 100%;
}

.profile .prowrapper .block .bonusLine .line .fill {
	background: linear-gradient(149deg, #41c6ff 8.4%, #1a64fc 80.38%);
	border-radius: 6px;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: width 0.3s ease;
}

.profile .prowrapper .block .bonusLine .amounts {
	display: flex;
	font-size: 16px;
	font-weight: 700;
	justify-content: space-between;
	padding-top: 10px;
}

.profile .prowrapper .block .bonusLine .amounts .num span {
	color: var(--lines);
	font-size: 14px;
}

.profile .prowrapper .block .bonusLine .amounts .num:last-child {
	text-align: end;
}

.profile .prowrapper .block .bonusLine .amounts .smallText {
	color: var(--lines);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
}

.profile .prowrapper .block .mainBtn span b {
	font-weight: 700;
}

.profile .prowrapper .block.fs {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.profile .prowrapper .block.fs .swiper {
	padding: 0 10%;
	width: 100%;
}

.profile .prowrapper .block.fs .swiper .swiper-slide-shadow {
	display: none;
}

.profile .prowrapper .block.fs .swiper .swiper-slide {
	align-items: center;
	display: flex;
	justify-content: center;
}

.profile .prowrapper .block.fs .slot {
	width: 210px;
}

.profile .prowrapper .block.fs .slot .demo {
	display: none;
}

.profile .prowrapper .block.fs .slot:hover .slotInner {
	transform: scale(1);
}

.profile .prowrapper .block.fs .fsTitle {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 30px 0 10px;
	width: 100%;
}

.profile .prowrapper .block.fs .fsTitle .h3 {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	text-shadow: 0 5px 6px #172e502e;
	white-space: nowrap;
}

.profile .prowrapper .block.fs .smallText {
	color: var(--lines);
	font-size: 15px;
	font-weight: 400;
	text-shadow: 0 5.009px 6px #172e502e;
}

.profile .prowrapper .block.fs .fsBalance {
	padding: 35px 0 25px;
}

.profile .prowrapper .block.fs .fsBalance .num {
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	text-shadow: 0 5px 6px #172e502e;
}

.profile .prowrapper .block .blockLoader {
	background-color: var(--bgModal);
	border-radius: 4px;
	left: 0;
	top: 0;
	z-index: 101;
}

.profile .prowrapper .block.double {
	grid-gap: 40px;
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
}

.profile .prowrapper .block .instruction {
	padding-top: 20px;
}

.profile .prowrapper .block .instruction .item {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 20px;
}

.profile .prowrapper .block .instruction .item p {
	display: inline;
}

.profile .prowrapper .block .instruction .item p .link {
	color: var(--blue);
	cursor: pointer;
}

.profile .prowrapper .block .instruction .item span {
	color: var(--lines);
}

.profile .prowrapper .block .title .h2 {
	font-size: 25px;
	font-weight: 500;
	padding-bottom: 10px;
	text-shadow: 0 5.009px 6.679px #172e502e;
}

.profile .prowrapper .block .title p {
	color: var(--lines);
	font-size: 15px;
	font-weight: 300;
}

.profile .prowrapper .block .qr {
	align-items: center;
	background: #192232;
	border-radius: 25px;
	display: flex;
	height: 230px;
	justify-content: center;
	padding: 35px;
	width: 230px;
}

.profile .prowrapper .block .qr img {
	height: 100%;
	width: 100%;
}

.profile .prowrapper .block .field {
	margin-bottom: 15px;
}

.profile .prowrapper .block .field .label {
	align-items: center;
	display: flex;
}

.profile .prowrapper .block .field .label a,
.profile .prowrapper .block .field .label p {
	color: var(--lines);
	padding-left: 10px;
	transition: color 0.3s ease;
}

.profile .prowrapper .block .field .label a {
	text-decoration: underline;
}

.profile .prowrapper .block .field .label a:hover {
	color: var(--blue);
}

.profile .prowrapper .block .field input {
	height: 45px;
}

.profile .prowrapper .block .field .MuiInputBase-root {
	border: 0;
	border-radius: 25px;
	transition: border-color 0.3s ease;
}

.profile .prowrapper .block .field .MuiInputBase-root input {
	border: 0;
}

.profile
	.prowrapper
	.block
	.field
	.MuiInputBase-root.Mui-focused
	.MuiOutlinedInput-notchedOutline {
	border-color: var(--blue) !important;
}

.profile
	.prowrapper
	.block
	.field
	.MuiInputBase-root.Mui-error
	.MuiOutlinedInput-notchedOutline {
	border-color: #ff5568;
}

.profile
	.prowrapper
	.block
	.field
	.MuiInputBase-root
	.MuiOutlinedInput-notchedOutline {
	border: 2px solid var(--topLine);
	transition: border-color 0.3s ease !important;
}

.profile .prowrapper .block .field .MuiInputBase-root input:hover {
	border: 0;
}

.profile .prowrapper .block .inLine {
	grid-gap: 15px;
	align-items: end;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 15px;
}

.profile .prowrapper .block .inLine:last-child {
	margin-bottom: 0;
}

.profile .prowrapper .block .inLine .field {
	margin: 0;
}

.profile .prowrapper .block .inLine.qrcode {
	grid-gap: 50px;
	align-items: center;
	margin-top: 40px;
}

.profile .prowrapper .block .inLine.qrcode .info {
	font-size: 16px;
}

.profile .prowrapper .block .inLine.qrcode .info p {
	color: var(--lines);
	padding-top: 10px;
}

.profile .prowrapper .block .inLine.qrcode .info p span {
	color: var(--blueSecond);
	font-weight: 700;
}

.profile .prowrapper .settings {
	grid-gap: 25px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	width: 100%;
}

@media (max-width: 1660px) {
	.profile .prowrapper .settings {
		grid-template-columns: 1fr 1fr;
	}
	.profile .prowrapper .settings .block.set {
		margin-bottom: 0;
	}
	.profile .prowrapper .settings .block.double {
		grid-template-columns: 1fr;
	}
	.profile .prowrapper .settings .block.double .qr {
		grid-area: 1;
		margin: auto;
	}
	.profile .prowrapper .settings .block .inLine {
		grid-template-columns: 1fr !important;
	}
	.profile .prowrapper .settings .block .mainBtn {
		margin-top: 20px;
	}
}

@media (max-width: 1150px) {
	.profile .prowrapper .settings {
		grid-template-columns: 1fr;
	}
	.profile .prowrapper .settings .inLine {
		grid-template-columns: auto;
	}
}

@media (max-width: 820px) {
	.profile .prowrapper .settings .block {
		border-radius: 35px !important;
		padding: 25px !important;
	}
	.profile .prowrapper .settings .block .field .label {
		font-size: 14px;
	}
	.profile .prowrapper .settings .block .field .label .end p {
		font-size: 12px;
	}
}

.profile .menu {
	background-color: var(--bgModal);
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100vh;
	left: 0;
	padding: 50px 25px;
	position: fixed;
	top: 0;
	transition: transform 0.3s ease;
	width: 260px;
	z-index: 100;
}

@media (max-width: 820px) {
	.profile .menu {
		padding: 35px 15px !important;
		width: 240px !important;
	}
}

@media (max-height: 450px), (max-width: 700px) {
	.profile .menu {
		height: 100% !important;
		overflow-y: auto;
		padding: 15px 30px !important;
		transform: translateX(-100%);
		width: 100% !important;
	}
	.profile .menu .first .logo {
		display: none;
	}
	.profile .menu .first .mobileTop {
		display: flex !important;
	}
	.profile .menu .first .userInfo {
		grid-template-columns: auto 1fr !important;
		width: 100%;
	}
	.profile .menu .logoBottom {
		display: flex !important;
	}
	.profile .menu.opened {
		transform: translateX(0);
	}
}

.profile .menu .first {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
}

.profile .menu .first .mobileTop {
	align-items: center;
	border-bottom: 1px solid rgba(71, 87, 116, 0.502);
	display: none;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 0 0 20px;
	width: 100%;
}

.profile .menu .first .mobileTop .mainBtn {
	padding: 0 10px;
}

.profile .menu .first .mobileTop .mainBtn img {
	margin-right: 15px;
}

.profile .menu .first .logo {
	margin-bottom: 40px;
	width: 150px;
}

.profile .menu .first .logo img {
	width: 100%;
}

.profile .menu .first .userInfo {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: auto 135px;
	margin-bottom: 20px;
	max-width: 100%;
}

.profile .menu .first .userInfo .avatar {
	align-items: center;
	border-radius: 50%;
	display: flex;
	height: 60px;
	justify-content: center;
	width: 60px;
}

.profile .menu .first .userInfo .avatar svg {
	height: 28px;
	width: 28px;
}

.profile .menu .first .userInfo .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.profile .menu .first .userInfo .info .h1 {
	display: block;
	font-size: 20px;
	font-weight: 400;
	overflow: hidden;
	text-overflow: ellipsis;
	text-shadow: 0 2.415px 3.22px #172e502e;
	white-space: nowrap;
	width: 100%;
}

.profile .menu .first .userInfo .info p {
	color: var(--lines);
	font-size: 14px;
	font-weight: 300;
	overflow: hidden;
	padding-top: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.profile .menu .first .dropdown {
	animation: zoomInUp;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
	border-radius: 0;
	height: 100vh;
	left: 260px;
	max-height: 100vh;
	position: fixed;
	top: 0;
	width: 260px;
	z-index: -1;
}

.profile .menu .first .dropdown.disappear {
	animation: zoomOutDown;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
}

.profile .menu .first .balance {
	width: 100%;
}

.profile .menu .first .balance img {
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.profile .menu .first .balance .arrow {
	color: #475774;
	height: 10px;
	width: 10px;
}

.profile .menu .first .balance .body {
	padding-right: 55px;
}

.profile .menu .first .balance .mainBtn {
	height: 35px;
	right: 10px;
	width: 35px;
}

.profile .menu .first .balance .mainBtn span {
	top: 50%;
}

.profile .menu .first .balance .mainBtn img {
	height: 16px;
	width: 16px;
}

.profile .menu .logoBottom {
	align-items: center;
	border-top: 1px solid rgba(71, 87, 116, 0.502);
	display: none;
	justify-content: center;
	margin-top: 20px;
	padding-top: 20px;
}

.profile .menu .logoBottom .logo img {
	max-width: 150px;
}

.profile .menu .nav {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.profile .menu .nav .profileLink {
	align-items: center;
	cursor: pointer;
	display: grid;
	grid-template-columns: auto 1fr;
	margin-bottom: 30px;
	position: relative;
	transition: transform 0.6s ease;
	width: 100%;
}

.profile .menu .nav .profileLink:last-child {
	margin-bottom: 0;
}

.profile .menu .nav .profileLink:hover {
	transform: translateX(5px);
}

.profile .menu .nav .profileLink:hover .part {
	background-color: #212f44b0;
	border-color: #293a53;
}

.profile .menu .nav .profileLink.active:after,
.profile .menu .nav .profileLink:hover .part .baseBlock {
	opacity: 1;
}

.profile .menu .nav .profileLink.active .part .h2 {
	font-weight: 700;
}

.profile .menu .nav .profileLink.active .part .baseBlock {
	opacity: 0;
}

.profile .menu .nav .profileLink.active .icon .mainBtn {
	opacity: 1;
}

.profile .menu .nav .profileLink.active .icon span svg {
	color: var(--text);
}

.profile .menu .nav .profileLink .icon {
	border-radius: 50%;
	height: 40px;
	margin-right: 10px;
	position: relative;
	width: 40px;
}

.profile .menu .nav .profileLink .icon span {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 10;
}

.profile .menu .nav .profileLink .icon span svg {
	color: var(--lines);
	transition: color 0.3s ease;
}

.profile .menu .nav .profileLink .icon.gold {
	background-image: linear-gradient(180deg, #fff741, #fc791a),
		linear-gradient(180deg, #fff3c0, #fc791a);
}

.profile .menu .nav .profileLink .icon.gold svg {
	color: var(--text) !important;
}

.profile .menu .nav .profileLink .part {
	border: 2px solid #19223200;
	border-radius: 4px;
	height: 40px;
	padding: 0 20px;
	position: relative;
	transition: border-color 0.3s ease;
}

.profile .menu .nav .profileLink .part .h2 {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: 400;
	height: 100%;
	justify-content: flex-start;
	position: relative;
	text-shadow: 0 3px 4px #172e502e;
	transition: font-weight 0.3s ease, font-size 0.3s ease;
	width: 100%;
	z-index: 10;
}

.profile .menu .nav .profileLink .part .baseBlock {
	content: '';
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s ease;
	width: 100%;
}

.profile .menu .nav .profileLink .mainBtn {
	border-radius: 50%;
	height: 40px;
	left: -3px;
	opacity: 0;
	position: absolute;
	top: -3px;
	width: 40px;
}

.wallet {
	position: relative;
}

@media (max-width: 1150px) {
	.wallet .vW {
		display: none !important;
	}
	.wallet .mobileWalletNav {
		display: block !important;
	}
}

@media (max-width: 700px) {
	.wallet .structure .baseBlock {
		border: solid #0000 !important;
		border-width: 3px 0 0 !important;
	}
}

.wallet .vW {
	display: flex;
}

.wallet .walNav {
	height: 50px;
}

.wallet .walNav,
.wallet .walNav a {
	align-items: center;
	display: flex;
	position: relative;
}

.wallet .walNav a {
	color: var(--lines);
	height: 100%;
	justify-content: center;
	margin-right: 15px;
	transition: color 0.3s ease;
	width: 150px;
	z-index: 1;
}

.wallet .walNav a.last {
	margin: 0;
}

.wallet .walNav a.active,
.wallet .walNav a:hover {
	color: var(--text);
}

.wallet .walNav a.active .mainBtn {
	opacity: 1;
}

.wallet .walNav .mainBtn {
	content: '';
	height: calc(100% + 6px);
	position: absolute;
	top: -3;
	transition: all 0.3s ease;
	width: 150px;
}

.wallet .mobileWalletNav {
	border-bottom: 1px solid rgba(71, 87, 116, 0.502);
	border-top: 1px solid rgba(71, 87, 116, 0.502);
	display: none;
	overflow: visible;
	padding: 15px;
}

.wallet .mobileWalletNav .swiper-slide {
	max-width: 130px;
}

.wallet .mobileWalletNav .swiper-slide a {
	align-items: center;
	display: flex;
	height: 40px;
	justify-content: center;
	position: relative;
	width: 100%;
}

.wallet .mobileWalletNav .swiper-slide a.active .baseBlock {
	opacity: 1;
}

.wallet .mobileWalletNav .swiper-slide a .h2 {
	font-size: 14px;
	position: relative;
	z-index: 1;
}

.wallet .mobileWalletNav .swiper-slide a .baseBlock {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s ease;
	width: 100%;
}

.structure {
	grid-template-columns: 2fr 1fr 1fr;
	padding: 30px 0;
	width: 100%;
}

@media (max-width: 1660px) {
	.structure {
		grid-template-columns: 1.5fr 1fr !important;
	}
	.structure .block.wBanner {
		display: none;
	}
}

@media (max-width: 1580px) {
	.structure .block .tableBody .row,
	.structure .block .tableHead {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}

@media (max-width: 1470px) {
	.structure .block .tableHead {
		display: none;
	}
	.structure .block .tableBody .list {
		grid-gap: 10px;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	}
	.structure .block .tableBody .row {
		grid-template-columns: 1fr;
		margin-bottom: 0;
		padding: 15px;
	}
	.structure .block .tableBody .row .col {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}
	.structure .block .tableBody .row .col.center {
		justify-content: center;
	}
	.structure .block .tableBody .row .col.center img {
		height: 80px;
		margin: 0 0 10px;
	}
	.structure .block .tableBody .row .col .subTitle {
		color: #475774;
		display: block;
		font-size: 12px;
	}
}

@media (max-width: 1280px) {
	.structure {
		padding: 30px 0;
	}
	.structure .crypto .input input {
		font-size: 14px;
		height: 45px;
		padding: 0 40px 0 15px;
	}
	.structure .crypto .input .action {
		height: 25px !important;
		width: 25px !important;
	}
	.structure .crypto .inLine {
		grid-gap: 20px !important;
	}
	.structure .crypto .inLine .qr {
		height: 210px !important;
		padding: 25px !important;
		width: 210px !important;
	}
	.structure .crypto .inLine .info,
	.structure .crypto .inLine .miniText {
		font-size: 12px !important;
	}
}

@media (max-width: 1160px) {
	.structure {
		grid-template-columns: 1fr !important;
	}
	.structure .attention {
		width: 100%;
	}
}

@media (max-width: 820px) {
	.structure .crypto .inLine {
		grid-template-columns: 1fr !important;
	}
	.structure .crypto .inLine .qr {
		margin: auto;
	}
	.structure .crypto .inLine .info {
		text-align: center;
	}
	.structure .block {
		border-radius: 35px !important;
		padding: 25px !important;
	}
	.structure .block .searchBox {
		grid-template-columns: 1fr !important;
	}
	.structure .block .field .label {
		font-size: 14px;
	}
	.structure .block .field .label .end p {
		font-size: 12px;
	}
	.structure .block .pay {
		flex-direction: column;
	}
	.structure .block .pay .mainBtn {
		width: 100% !important;
	}
	.structure .block .pay .toSend {
		padding: 20px 0 0 !important;
	}
}

@media (max-width: 700px) {
	.structure .his {
		border-radius: 0 !important;
		padding: 20px !important;
	}
}

@media (max-width: 600px) {
	.structure .his .tableBody .list .row .col {
		font-size: 14px !important;
	}
	.structure .his .tableBody .list .row .col .cur {
		width: 19px !important;
	}
}

.structure.grid {
	grid-gap: 20px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
}

.block {
	position: relative;
	z-index: 1;
}

.block .mainBtn {
	box-shadow: 0 0 0 0 #11141b1f, 0 0 0 0 #3a7cffab;
	height: 45px;
}

.block .status {
	color: var(--blue);
	font-size: 14px;
	font-weight: 700;
	padding-left: 20px;
	padding-top: 10px;
}

.block .status p {
	color: #7a85a5;
	display: inline;
	font-weight: 400;
}

.block .h1 {
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 30px;
}

.block .h1 span {
	color: var(--blueSecond);
}

.block.crypto .inLine {
	align-items: center !important;
}

.block.crypto .miniText span {
	color: var(--blueSecond);
}

.block.attention {
	align-items: center;
	display: flex;
	flex-direction: column;
	max-width: 300px;
}

.block.attention img {
	width: 125px;
}

.block.attention .miniText {
	line-height: 170%;
}

.block .tableHead {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	margin-bottom: 20px;
}

.block .tableHead .colName {
	align-items: center;
	color: var(--lines);
	display: flex;
	font-size: 16px;
	font-weight: 400;
	justify-content: center;
}

.block .tableBody {
	grid-gap: 15px;
	display: grid;
}

.block .tableBody .row {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	margin-bottom: 15px;
	min-height: 55px;
	padding: 5px 0;
}

.block .tableBody .row .col {
	align-items: center;
	display: flex;
	justify-content: center;
}

.block .tableBody .row .col .subTitle {
	display: none;
}

.block .tableBody .row .col.l {
	cursor: pointer;
}

.block .tableBody .row .col.img img {
	border-radius: 10px;
	height: 55px;
}

.block .tableBody .row .col.am {
	font-weight: 700;
}

.block .tableBody .row .col img {
	margin-right: 5px;
}

.block.his {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 50vh;
}

.block .tableBody {
	height: 100%;
}

.block .empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.block .empty p {
	color: var(--lines);
	font-size: 18px;
	font-weight: 400;
	margin-top: 30px;
}

.block .question {
	margin-bottom: 20px;
	overflow: hidden;
	padding: 25px;
}

.block .question:last-child {
	margin-bottom: 0;
}

.block .question .top {
	align-items: center;
	background-color: var(--secondary);
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr 20px;
	position: relative;
	z-index: 1;
}

.block .question .top .h2 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding-right: 15px;
}

.block .question .top .plusminus {
	cursor: pointer;
	height: 20px;
	position: relative;
	width: 20px;
}

.block .question .top .plusminus.active:before {
	opacity: 0;
	transform: translatey(-50%) rotate(-90deg);
}

.block .question .top .plusminus.active:after {
	transform: translatey(-50%) rotate(0);
}

.block .question .top .plusminus:after,
.block .question .top .plusminus:before {
	background-color: #fff;
	border-radius: 5px;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
	top: 50%;
	transition: 0.35s;
	width: 100%;
}

.block .question .top .plusminus:before {
	transform: translatey(-50%);
}

.block .question .top .plusminus:after {
	transform: translatey(-50%) rotate(90deg);
}

.block .question .ReactCollapse--collapse {
	transition: height 0.3s ease 0s;
}

.block .question .ReactCollapse--collapse .ReactCollapse--content {
	color: var(--lines);
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	padding-top: 25px;
	text-shadow: 0 5px 6px #172e502e;
}

.block .question.opened .miniText {
	height: auto;
	padding: 0 25px 25px;
}

.block .question .miniText {
	height: 0;
	padding: 0;
}

.block .freeSpins {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	margin-bottom: 50px;
}

@media (max-width: 1600px) {
	.block .freeSpins.simple .empty:last-child {
		display: none;
	}
}

@media (max-width: 760px) {
	.block .freeSpins.simple .empty {
		display: none !important;
	}
}

@media (max-width: 700px) {
	.block .freeSpins.simple .empty {
		display: block !important;
	}
	.block .freeSpins.simple .empty:last-child {
		display: none !important;
	}
}

@media (max-width: 450px) {
	.block .freeSpins.simple .empty {
		display: none !important;
	}
}

.block .freeSpins .item {
	align-items: flex-start;
	background-color: #192232cc;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	height: 70px;
	overflow: hidden;
	padding: 0 15px;
}

.block .freeSpins .item.gold {
	background: linear-gradient(180deg, #fff741, #fc791a),
		linear-gradient(180deg, #fff741, #fc791a);
	justify-content: center;
	position: relative;
}

.block .freeSpins .item.gold .h3 {
	color: var(--lines);
	position: relative;
	z-index: 1;
}

.block .freeSpins .item.gold .h3:after {
	background-color: #fff;
	border-radius: 50%;
	content: '';
	height: 200px;
	left: -80px;
	opacity: 1;
	position: absolute;
	top: -130px;
	width: 200px;
	z-index: -1;
}

.block .freeSpins .item.gold .amount {
	background-color: hsla(0, 0%, 100%, 0.502);
	color: var(--lines);
	position: relative;
	z-index: 2;
}

.block .freeSpins .item .h3 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 5px;
}

.block .freeSpins .item .h3 span {
	color: var(--lines);
	font-size: 15px;
	font-weight: 400;
}

.block .freeSpins .item .amount {
	align-items: center;
	background-color: #253146;
	border-radius: 10px;
	display: flex;
	font-size: 10px;
	font-weight: 700;
	height: 20px;
	justify-content: center;
	padding: 0 10px;
	transition: color 0.3s ease;
}

.block .freeSpins .item:hover svg {
	transform: scale(1.1);
}

.block .freeSpins .item.blue span {
	color: var(--text);
}

.block .freeSpins .item.blue .amount {
	background-color: var(--text);
	color: var(--lines);
}

.block .freeSpins .item.blue svg {
	color: var(--text);
	transform: scale(1.1);
}

.block .freeSpins .item.blue:after {
	display: none;
}

.block .freeSpins .item img,
.block .freeSpins .item svg {
	color: var(--topLine);
	height: 75px;
	position: absolute;
	right: 5px;
	top: 10px;
	transition: color 0.3s ease, transform 0.3s ease;
	width: 75px;
}

.block .systems {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	margin-bottom: 35px;
	position: relative;
}

.block .systems .noSystems {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 86px;
	width: 100%;
}

.block .systems .noSystems .h2 {
	color: var(--lines);
	font-size: 18px;
	font-weight: 400;
	margin-top: 30px;
}

.block .systems.wallets .system .imgContent {
	align-items: center;
	display: flex;
	margin-bottom: 10px;
}

.block .systems.wallets .system .imgContent img {
	margin-bottom: 0;
	margin-right: 10px;
}

.block .systems.wallets .system .imgContent .code {
	color: var(--lines);
	font-size: 20px;
	font-weight: 700;
	opacity: 0.5;
}

.block .systems.wallets .system .name .h2 {
	font-size: 16px;
	font-weight: 700;
}

.block .systems.wallets .system .name .h2 p {
	align-items: center;
	color: #818fa5;
	display: inline !important;
	display: flex;
	font-size: 16px;
	font-weight: 400;
	justify-content: center;
	z-index: 10;
}

.block .systems .system {
	align-items: flex-start;
	border-radius: 15px;
	flex-direction: column;
	height: auto;
	padding: 15px;
}

.block .systems .system:hover img {
	transform: scale(1.05);
}

.block .systems .system.active {
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #3ab3ff 20%, #192232 47%);
}

.block .systems .system.active:hover {
	border-color: #3ab3ff;
}

.block .systems .system img {
	height: 40px;
	margin-bottom: 10px;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.block .systems .system .name {
	align-items: center;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.block .systems .system .name .h2 {
	font-size: 13px;
	font-weight: 400;
}

.block .systems .system .name .selector {
	background-image: linear-gradient(to bottom, #121a27, #121a27),
		linear-gradient(to bottom, var(--topLine) 20%, #121a27 47%);
	border-radius: 50%;
	height: 19px;
	position: relative;
	width: 19px;
}

.block .systems .system .name .selector .mainBtn {
	border-radius: 50%;
	height: 19px;
	left: -3px;
	opacity: 0;
	position: absolute;
	top: -3px;
	width: 19px;
}

.block .systems .system .name .selector .mainBtn:hover:after {
	opacity: 0;
}

.block .systems .system .name .selector.active .mainBtn {
	opacity: 1;
}

.block input {
	font-size: 14px;
	font-weight: 700;
}

.block .searchBox {
	grid-gap: 10px;
	align-items: flex-end;
	display: grid;
	grid-template-columns: 250px 1fr;
	margin-bottom: 35px;
	position: relative;
}

.block .searchBox .swiper {
	padding-left: 10px;
}

.block .searchBox .swiper:after {
	background: linear-gradient(-90deg, #121a2900, var(--bgModal) 80%);
	left: 0;
}

.block .searchBox .swiper:after,
.block .searchBox .swiper:before {
	content: '';
	height: 100%;
	position: absolute;
	top: 0;
	width: 10px;
	z-index: 10;
}

.block .searchBox .swiper:before {
	background: linear-gradient(90deg, #121a2900, var(--bgModal) 80%);
	right: 0;
}

.block .searchBox .field {
	margin-bottom: 0 !important;
}

.block .searchBox .field svg {
	right: 5px;
	width: 20px;
}

.block .searchBox .field input {
	padding-right: 40px;
}

.block .searchBox .mainBtn {
	padding: 0 20px 0 10px;
}

.block .searchBox .mainBtn img {
	border-radius: 50%;
	height: 25px;
	margin-right: 10px;
	width: 25px;
}

.block .searchBox .mainBtn.blue {
	box-shadow: 0 0 0 0 #11141b1f, 0 0 0 0 #3a7cff00;
}

.block .searchBox .mainBtn.blue:after {
	display: none;
}

.block .searchBox .swiper {
	width: 100%;
}

.block .searchBox .swiper-slide {
	height: auto;
	width: auto;
}

.block .twoFa {
	grid-gap: 10px;
	align-items: flex-end;
	display: grid;
	grid-template-columns: 1fr 200px;
	position: relative;
}

@media (max-width: 500px) {
	.block .twoFa {
		grid-template-columns: 1fr;
	}
	.block .twoFa .mainBtn {
		display: none;
	}
}

.block .twoFa .field {
	margin-bottom: 0 !important;
}

.block .pay {
	align-items: center;
	display: flex;
	margin-top: 50px;
}

.block .pay .mainBtn {
	width: 250px;
}

.block .pay .toSend {
	color: var(--lines);
	font-size: 14px;
	padding-left: 30px;
}

.block .pay .toSend .h5 {
	color: var(--text);
	display: inline;
}

.block .amountBox.last {
	padding-bottom: 0 !important;
}

.block .amountBox input {
	font-size: 14px;
	font-weight: 700;
}

.block .amountBox .label {
	display: flex;
	justify-content: space-between;
}

.block .amountBox .label .end p {
	display: inline;
}

.block .amountBox .label .end p span {
	color: var(--text);
	font-weight: 700;
}

.block .miniText {
	color: var(--lines);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	text-shadow: 0 5px 6px #172e502e;
}

.block.wBanner {
	padding-top: 400px !important;
}

.block.wBanner .miniText {
	padding: 30px 0 40px;
}

.block .flyIcon {
	animation: float 12s ease-in-out infinite;
	filter: drop-shadow(0 0 60px rgba(45, 102, 240, 0.6));
	left: 50%;
	position: absolute;
	top: -100px;
	transform: translateX(-50%);
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transform: translateZ(0);
	transition: opacity 0.3s;
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
	display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 8px;
	bottom: var(--swiper-pagination-bottom, 8px);
	left: 0;
	top: auto;
	top: var(--swiper-pagination-top, auto);
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	font-size: 0;
	overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	position: relative;
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}

.swiper-pagination-bullet {
	background: #000;
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	border-radius: 50%;
	border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
	display: inline-block;
	height: 8px;
	height: var(
		--swiper-pagination-bullet-height,
		var(--swiper-pagination-bullet-size, 8px)
	);
	opacity: 0.2;
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
	width: 8px;
	width: var(
		--swiper-pagination-bullet-width,
		var(--swiper-pagination-bullet-size, 8px)
	);
}

button.swiper-pagination-bullet {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet:only-child {
	display: none !important;
}

.swiper-pagination-bullet-active {
	background: var(--swiper-theme-color);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	opacity: 1;
	opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	left: auto;
	left: var(--swiper-pagination-left, auto);
	right: 8px;
	right: var(--swiper-pagination-right, 8px);
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	display: block;
	margin: 6px 0;
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: transform 0.2s, top 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 4px;
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
	color: inherit;
	color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
	background: #00000040;
	background: var(--swiper-pagination-progressbar-bg-color, #00000040);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-theme-color);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0);
	transform-origin: left top;
	width: 100%;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	height: 4px;
	height: var(--swiper-pagination-progressbar-size, 4px);
	left: 0;
	top: 0;
	width: 100%;
}

.swiper-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
	height: 100%;
	left: 0;
	top: 0;
	width: 4px;
	width: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-pagination-lock {
	display: none;
}

.streamPop .tournament {
	justify-content: space-around;
	padding: 30px 50px 50px;
}

.streamPop .tournament .activeBlock {
	grid-gap: 30px;
	align-items: center;
}

.streamPop .tournament .activeBlock .teamPlace {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #121a29, #121a29),
		linear-gradient(180deg, #212f44 30%, #121a29);
	background-origin: border-box;
	border: 4px solid #0000;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	font-size: 38px;
	font-weight: 700;
	height: 90px;
	justify-content: center;
	width: 90px;
}

.streamPop .tournament .activeBlock .teamPlace p {
	font-size: 14px;
	font-weight: 500;
	text-transform: lowercase;
}

.streamPop .tournament .activeBlock .streamTitle .label {
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
}

.streamPop .tournament .activeBlock .streamTitle .h1 {
	font-size: 62px;
	font-style: normal;
	font-weight: 700;
}

.streamPop .tournament .info {
	grid-gap: 15px;
	display: flex;
}

.streamPop .tournament .info .statItem {
	padding-right: 25px;
}

.streamPop .tournament:before {
	background: #121a29;
	border-radius: 35px 35px 0 0;
	bottom: 0;
	content: '';
	height: 10%;
	left: 0;
	position: absolute;
	top: auto;
	width: 100%;
	z-index: 1;
}

.streamPop .tournament .character {
	bottom: 10%;
	right: -10px;
}

.streamPop .tournament .backHolder {
	border-radius: 35px 35px 0 0;
}

.streamPop .tnAbout {
	margin-top: 0 !important;
}

.streamPop .tnAbout .tableWrapper .listHead {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin-bottom: 25px;
}

.streamPop .tnAbout .tableWrapper .listHead .h6 {
	color: #475774;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}

.streamPop .tnAbout .tableWrapper .list .userRow {
	grid-gap: 15px;
	align-items: center;
	border-radius: 4px;
	display: grid;
	grid-template-columns: 70px 1fr 1fr 1fr 1fr;
	height: 80px;
	margin-bottom: 25px;
}

.streamPop .tnAbout .tableWrapper .list .userRow .vertical {
	align-items: center;
	display: flex;
}

.streamPop .tnAbout .tableWrapper .list .userRow:last-child {
	margin-bottom: 0;
}

.streamPop .tnAbout .tableWrapper .list .userRow.back {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #212f44 30%, #192232);
	background-origin: border-box;
	border: 4px solid #0000;
}

.modalWrapper {
	bottom: 0;
	display: flex;
	left: 0;
	max-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 11;
}

@media (min-height: 700px) {
	.modalWrapper {
		align-items: center;
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.modalWrapper {
		align-items: normal;
		justify-content: normal;
	}
	.modalWrapper .modal {
		border: 0 !important;
	}
}

@media (max-width: 500px) {
	.modalWrapper .remember span {
		font-size: 11px !important;
	}
	.modalWrapper .switch {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		height: 45px !important;
		max-width: 100% !important;
		width: 100%;
	}
	.modalWrapper .switch .item {
		font-size: 14px !important;
		max-width: 100%;
		width: 100% !important;
	}
	.modalWrapper .switch .item.active:after {
		opacity: 1;
	}
	.modalWrapper .switch .item.last:after {
		width: calc(100% - 6px);
	}
	.modalWrapper .switch .mainBtn {
		display: none;
	}
	.modalWrapper .inputs .field .input input {
		font-size: 1rem !important;
		height: 45px !important;
	}
}

.modalWrapper.disappear .modal {
	animation: zoomOutDown;
	animation-duration: 0.3s;
	animation-timing-function: ease;
}

.modalWrapper .modal {
	animation: zoomInDown;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	background-color: var(--bgModal);
	border: 2px solid #1f2a40;
	border-radius: 25px;
	max-width: 100%;
	min-height: 700px;
	position: relative;
	position: absolute;
	width: 1000px;
}

@media (max-width: 450px) {
	.modalWrapper .modal.mtn {
		border-radius: 20px !important;
	}
}

.modalWrapper .modal .close {
	cursor: pointer;
}

.modalWrapper .modal.mtn {
	border-radius: 35px;
	border-width: 0 !important;
	margin: 100px 0;
	top: 0;
	width: 1280px !important;
}

.modalWrapper .modal.lng {
	width: 500px !important;
}

@media (max-width: 900px) {
	.modalWrapper .modal.mtn {
		border-radius: 0;
		margin: 0;
	}
	.modalWrapper .modal.mtn .tnPop {
		overflow-x: hidden;
	}
	.modalWrapper .modal.mtn .tnPop .tournament,
	.modalWrapper .modal.mtn .tnPop .tournament .backHolder,
	.modalWrapper .modal.mtn .tnPop .tournament:before {
		border-radius: 0;
	}
	.modalWrapper .modal.mtn .tnPop .tournament .character {
		height: 100%;
		right: -100px !important;
		width: auto !important;
	}
	.modalWrapper .modal .image,
	.modalWrapper .modal .left {
		display: none;
	}
	.modalWrapper .modal .signIn,
	.modalWrapper .modal .signUp {
		grid-template-columns: 1fr;
		min-height: 100vh !important;
	}
	.modalWrapper .modal .signIn {
		padding: 0 0 70px !important;
	}
}

@media (max-width: 600px) {
	.modalWrapper .modal .signIn .form,
	.modalWrapper .modal .signUp .form {
		padding: 30px 10px;
	}
}

.modalWrapper .top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 100%;
}

.modalWrapper .top .h1 {
	font-size: 1.5rem;
	font-weight: 700;
}

.modalWrapper .top:after {
	background: #475774;
	bottom: -20px;
	content: '';
	height: 1px;
	opacity: 0.4;
	position: absolute;
	width: 100%;
}

.modalWrapper .top svg path {
	fill: #475774;
	transition: fill 0.3s ease;
}

.modalWrapper .top svg:hover path {
	fill: #fff;
}

.modalWrapper .languages {
	padding: 25px;
}

.modalWrapper .languages .list {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: repeat(3, calc(33.33% - 6.66px));
	margin-top: 40px;
}

@media (max-width: 500px) {
	.modalWrapper .languages .list {
		grid-template-columns: repeat(2, calc(50% - 10px));
	}
}

.modalWrapper .languages .list .item {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 50px;
	padding: 0 20px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.modalWrapper .languages .list .item.bydlo {
	align-items: flex-end;
	grid-area: 1/1/3/1;
	min-height: 104px;
	padding: 10px 20px;
	transition: transform 0.3s ease;
}

.modalWrapper .languages .list .item.bydlo.active .back {
	filter: drop-shadow(0 0 20px rgba(58, 124, 255, 0.733));
}

.modalWrapper .languages .list .item.bydlo:hover {
	transform: scale(1.1);
}

.modalWrapper .languages .list .item.bydlo:hover .byd {
	transform: translateX(20px) scale(1.1);
}

.modalWrapper .languages .list .item.bydlo .h1 {
	align-items: center;
	background: #210d4166;
	border-radius: 15px;
	color: #fff;
	display: flex;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	height: 30px;
	justify-content: center;
	width: 100%;
}

.modalWrapper .languages .list .item.bydlo img {
	bottom: 40px;
	left: -15px;
	position: absolute;
	transition: transform 0.3s ease;
	width: 120px;
}

.modalWrapper .languages .list .item.bydlo .back {
	height: 100%;
	left: 0;
	object-fit: contain;
	top: 0;
	transition: filter 0.3s ease;
	width: 100%;
	z-index: -1;
}

.modalWrapper .languages .list .item .mini {
	height: 15px;
	margin-right: 10px;
	width: 15px;
}

.modalWrapper .languages .list .item .text {
	font-size: 14px;
}

.modalWrapper .languages .list .item:hover .baseBlock {
	opacity: 1;
}

.modalWrapper .languages .list .item .baseBlock {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s ease;
	width: 100%;
	z-index: -1;
}

.modalWrapper .languages .list .item .baseBlock.blue {
	opacity: 1;
}

.modalWrapper .l {
	font-size: 1rem;
	font-weight: 300;
	margin-bottom: 10px;
	padding: 0 20px;
}

.modalWrapper .signIn,
.modalWrapper .signUp {
	grid-gap: 20px;
	display: grid;
	grid-template-columns: calc(45% - 10px) calc(55% - 10px);
	min-height: 700px;
}

.modalWrapper .signIn .mobileBanner,
.modalWrapper .signUp .mobileBanner {
	align-items: center;
	display: none;
	justify-content: center;
	min-height: 190px;
	padding: 10px 20px;
	position: relative;
	width: 100%;
}

.modalWrapper .signIn .mobileBanner .bg,
.modalWrapper .signUp .mobileBanner .bg {
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

@media (max-width: 900px) {
	.modalWrapper .signIn .mobileBanner,
	.modalWrapper .signUp .mobileBanner {
		display: flex;
	}
}

.modalWrapper .signIn .left,
.modalWrapper .signUp .left {
	border-radius: 25px;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.modalWrapper .signIn .left .bg,
.modalWrapper .signUp .left .bg {
	animation: leftBackgroundAppear 0.7s ease both;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

@keyframes leftBackgroundAppear {
	0% {
		transform: scale(0.5);
	}
	to {
		transform: scale(1.2);
	}
}

.modalWrapper .signIn .image,
.modalWrapper .signUp .image {
	animation: bounceInLeft;
	animation-delay: 0.3s;
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-timing-function: ease;
	bottom: 0;
	left: -119px;
	position: absolute;
	transform: translateX(-200%);
	width: 490px;
}

.modalWrapper .signIn .tl,
.modalWrapper .signUp .tl {
	animation-delay: 0.5s;
	animation-duration: 0.6s;
	animation-fill-mode: both;
	animation-name: flipInY;
	height: 100% !important;
	object-fit: contain;
	position: absolute;
	right: -33px;
	top: 0;
	width: 130px;
}

.modalWrapper .signIn .form,
.modalWrapper .signUp .form {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 50px;
}

.modalWrapper .signIn .form .inputs,
.modalWrapper .signUp .form .inputs {
	grid-gap: 20px;
	display: grid;
	margin-top: 50px;
	padding-bottom: 25px;
	width: 100%;
}

.modalWrapper .signIn .form .steps,
.modalWrapper .signUp .form .steps {
	padding: 45px 0 25px;
	width: 100%;
}

.modalWrapper .signIn .form .steps .step,
.modalWrapper .signUp .form .steps .step {
	grid-gap: 15px;
	align-items: center;
	display: flex;
	margin-bottom: 35px;
}

.modalWrapper .signIn .form .steps .step:last-child,
.modalWrapper .signUp .form .steps .step:last-child {
	margin-bottom: 0;
}

.modalWrapper .signIn .form .steps .step .number,
.modalWrapper .signUp .form .steps .step .number {
	align-items: center;
	display: flex;
	font-size: 22px;
	font-style: normal;
	font-weight: 900;
	height: 37px;
	justify-content: center;
	position: relative;
	transform-origin: center;
	transition: all 0.3s ease;
	width: 37px;
}

.modalWrapper .signIn .form .steps .step .number.blue,
.modalWrapper .signUp .form .steps .step .number.blue {
	transform: scale(1.1);
}

.modalWrapper .signIn .form .steps .step .number.blue:before,
.modalWrapper .signUp .form .steps .step .number.blue:before {
	transform: translateX(-50%) scale(1.5);
}

.modalWrapper .signIn .form .steps .step .number.first:before,
.modalWrapper .signUp .form .steps .step .number.first:before {
	bottom: -14px;
	top: auto;
}

.modalWrapper .signIn .form .steps .step .number:before,
.modalWrapper .signUp .form .steps .step .number:before {
	background: #2d384e;
	border-radius: 50%;
	content: '';
	height: 5px;
	left: 50%;
	position: absolute;
	top: -14px;
	transform: translateX(-50%);
	transition: transform 0.3s ease;
	width: 5px;
}

.modalWrapper .signIn .form .steps .step .stepTitle,
.modalWrapper .signUp .form .steps .step .stepTitle {
	font-size: 16px;
}

.modalWrapper .signIn .form .steps .step .stepTitle a,
.modalWrapper .signUp .form .steps .step .stepTitle a {
	font-weight: 700;
}

.modalWrapper .signIn .form .steps .step .stepTitle a span,
.modalWrapper .signUp .form .steps .step .stepTitle a span {
	color: #3bb5ff;
}

.modalWrapper .signIn .form .teamForm .teamData,
.modalWrapper .signUp .form .teamForm .teamData {
	grid-gap: 20px;
	align-items: center;
	display: grid;
	grid-template-columns: 125px 1fr;
}

.modalWrapper .signIn .form .teamForm .teamData .avatar .ava,
.modalWrapper .signUp .form .teamForm .teamData .avatar .ava {
	background: linear-gradient(149deg, #41c6ff 8.4%, #1a64fc 80.38%);
	border-radius: 50%;
	cursor: pointer;
	height: 125px;
	position: relative;
	width: 100%;
}

.modalWrapper .signIn .form .teamForm .teamData .avatar .ava:hover .select,
.modalWrapper .signUp .form .teamForm .teamData .avatar .ava:hover .select {
	opacity: 1;
}

.modalWrapper .signIn .form .teamForm .teamData .avatar .ava .select,
.modalWrapper .signUp .form .teamForm .teamData .avatar .ava .select {
	align-items: center;
	background-color: rgba(15, 22, 36, 0.851);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 102%;
	justify-content: center;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease;
	width: 102%;
	z-index: 1;
}

.modalWrapper .signIn .form .teamForm .teamData .avatar .ava .select img,
.modalWrapper .signUp .form .teamForm .teamData .avatar .ava .select img {
	width: 45px;
}

.modalWrapper .signIn .form .teamForm .teamData .avatar .ava .select p,
.modalWrapper .signUp .form .teamForm .teamData .avatar .ava .select p {
	font-size: 10px;
}

.modalWrapper .signIn .form .teamForm .teamData .avatar .ava .avaImg,
.modalWrapper .signUp .form .teamForm .teamData .avatar .ava .avaImg {
	border-radius: 50%;
	height: 117px;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 117px;
}

.modalWrapper .signIn .form .teamForm .mediaWrap,
.modalWrapper .signIn .form .teamForm .teamData .nameDesc .field:last-child,
.modalWrapper .signUp .form .teamForm .mediaWrap,
.modalWrapper .signUp .form .teamForm .teamData .nameDesc .field:last-child {
	margin-top: 20px;
}

.modalWrapper .signIn .form .teamForm .mediaWrap .mediaList,
.modalWrapper .signUp .form .teamForm .mediaWrap .mediaList {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	margin-top: 15px;
}

.modalWrapper .signIn .form .teamForm .mediaWrap .mediaList .m,
.modalWrapper .signUp .form .teamForm .mediaWrap .mediaList .m {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #212f44 20%, #192232 47%);
	background-origin: border-box;
	border: 3px solid #0000;
	border-radius: 23px;
	cursor: pointer;
	display: flex;
	height: 47px;
	justify-content: center;
}

.modalWrapper .signIn .form .teamForm .mediaWrap .mediaList .m.selected,
.modalWrapper .signUp .form .teamForm .mediaWrap .mediaList .m.selected {
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #41c6ff 20%, #1a64fc 47%);
}

.modalWrapper .signIn .form .teamForm .mediaWrap .mediaList .m img,
.modalWrapper .signUp .form .teamForm .mediaWrap .mediaList .m img {
	margin-right: 10px;
	width: 23px;
}

.modalWrapper .signIn .form .social,
.modalWrapper .signUp .form .social {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.modalWrapper .signIn .form .social a,
.modalWrapper .signUp .form .social a {
	margin: 0 8px;
}

.modalWrapper .signIn .form .miniText,
.modalWrapper .signUp .form .miniText {
	color: #475774;
	font-size: 15px;
	text-align: center;
}

.modalWrapper .signIn .form .miniText .h5,
.modalWrapper .signUp .form .miniText .h5 {
	color: var(--text);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.modalWrapper .signIn .form .foot,
.modalWrapper .signUp .form .foot {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.modalWrapper .signIn .form .foot .reg,
.modalWrapper .signUp .form .foot .reg {
	display: none !important;
}

@media (max-height: 450px), (max-width: 700px) {
	.modalWrapper .signIn .form .foot .reg,
	.modalWrapper .signUp .form .foot .reg {
		display: flex !important;
	}
}

.modalWrapper .signIn .form .foot .btnBorder,
.modalWrapper .signUp .form .foot .btnBorder {
	align-items: center;
	background: linear-gradient(var(--bgModal), var(--bgModal)) padding-box,
		linear-gradient(to right, #41c6ff, #1a64fc) border-box;
	border: 3px solid #0000;
	border-radius: 25px;
	cursor: pointer;
	display: flex;
	font-size: 18px;
	height: 47px;
	justify-content: center;
	overflow: hidden;
	position: relative;
	transition: box-shadow 0.4s ease;
	width: 100%;
}

.modalWrapper .signIn .form .foot .btnBorder a,
.modalWrapper .signIn .form .foot .btnBorder span,
.modalWrapper .signUp .form .foot .btnBorder a,
.modalWrapper .signUp .form .foot .btnBorder span {
	position: relative;
	z-index: 1;
}

.modalWrapper .signIn .form .foot .btnBorder:hover,
.modalWrapper .signUp .form .foot .btnBorder:hover {
	box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #3a7cffab;
}

.modalWrapper .signIn .form .foot .btnBorder:hover:after,
.modalWrapper .signUp .form .foot .btnBorder:hover:after {
	transform: translateX(0);
}

.modalWrapper .signIn .form .foot .btnBorder:after,
.modalWrapper .signUp .form .foot .btnBorder:after {
	background: linear-gradient(90deg, #41c6ff, #1a64fc);
	border-radius: 50%;
	content: '';
	height: 200px;
	left: -10%;
	opacity: 1;
	position: absolute;
	top: -110px;
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	width: 130%;
}

.modalWrapper .signIn .form .foot.final,
.modalWrapper .signUp .form .foot.final {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.modalWrapper .signIn .form .foot .mainBtn,
.modalWrapper .signUp .form .foot .mainBtn {
	font-size: 17px;
	margin-top: 15px;
}

.modalWrapper .signIn .form .foot .loginSwap,
.modalWrapper .signUp .form .foot .loginSwap {
	align-items: center;
	display: flex;
	font-size: 15px;
	font-style: normal;
	font-weight: 300;
	justify-content: center;
	margin-top: 15px;
}

.modalWrapper .signIn .form .foot .loginSwap a,
.modalWrapper .signIn .form .foot .loginSwap span,
.modalWrapper .signUp .form .foot .loginSwap a,
.modalWrapper .signUp .form .foot .loginSwap span {
	color: #32fe2b;
	cursor: pointer;
	margin-left: 5px;
}

.modalWrapper .signIn .form .captcha,
.modalWrapper .signUp .form .captcha {
	align-items: center;
	display: flex;
	justify-content: center;
}

.modalWrapper .signIn .passStrenght,
.modalWrapper .signUp .passStrenght {
	grid-gap: 4px;
	display: grid;
	grid-template-columns: 10px 10px 10px 10px;
	padding-left: 20px;
	padding-top: 10px;
	width: 100%;
}

.modalWrapper .signIn .passStrenght .bar,
.modalWrapper .signUp .passStrenght .bar {
	animation: bounceInLeft;
	animation-duration: 0.2s;
	animation-fill-mode: both;
	animation-timing-function: ease;
	border-radius: 50%;
	height: 10px;
	width: 100%;
}

.modalWrapper .signIn .remember,
.modalWrapper .signUp .remember {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	width: 100%;
}

.modalWrapper .signIn .remember span,
.modalWrapper .signUp .remember span {
	color: var(--text);
	font-size: 13px;
	font-weight: 300;
}

.modalWrapper .signIn .remember span .link,
.modalWrapper .signIn .remember span a,
.modalWrapper .signUp .remember span .link,
.modalWrapper .signUp .remember span a {
	color: #32fe2b;
	cursor: pointer;
	display: inline-block;
	margin-left: 5px;
}

.modalWrapper .signIn .remember .check,
.modalWrapper .signUp .remember .check {
	background: #293750;
	border-radius: 50%;
	cursor: pointer;
	height: 19px;
	margin-right: 15px;
	position: relative;
	width: 19px;
}

.modalWrapper .signIn .remember .check.true:before,
.modalWrapper .signUp .remember .check.true:before {
	opacity: 1;
}

.modalWrapper .signIn .remember .check:before,
.modalWrapper .signUp .remember .check:before {
	background-color: #41c6ff;
	border-radius: 50%;
	content: '';
	height: 19px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.12s ease-out;
	width: 19px;
}

.modalWrapper .signIn .react-code-input,
.modalWrapper .signUp .react-code-input {
	align-items: center;
	display: flex !important;
	justify-content: center;
}

.modalWrapper .signIn .react-code-input input,
.modalWrapper .signUp .react-code-input input {
	background-color: var(--btnDark);
	border: 2px solid #212f44;
	border-radius: 25px;
	color: var(--text);
	font-size: 1.1rem;
	height: 50px;
	padding: 0;
	text-transform: uppercase;
	transition: border-color 0.3s ease;
	transition: color 0.3s ease-out, opacity 0.3s ease-out;
	width: 9ch;
}

.modalWrapper .signIn .react-code-input input::placeholder,
.modalWrapper .signUp .react-code-input input::placeholder {
	color: #c8dfc8;
	opacity: 1;
}

.modalWrapper .signIn .react-code-input input:-webkit-autofill,
.modalWrapper .signIn .react-code-input input:-webkit-autofill:active,
.modalWrapper .signIn .react-code-input input:-webkit-autofill:focus,
.modalWrapper .signIn .react-code-input input:-webkit-autofill:hover,
.modalWrapper .signUp .react-code-input input:-webkit-autofill,
.modalWrapper .signUp .react-code-input input:-webkit-autofill:active,
.modalWrapper .signUp .react-code-input input:-webkit-autofill:focus,
.modalWrapper .signUp .react-code-input input:-webkit-autofill:hover {
	-webkit-text-fill-color: var(--text);
	-webkit-background-clip: text;
	box-shadow: inset 0 0 20px 20px var(--btnDark);
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
	-webkit-transition: border-color 0.3s ease;
	transition: border-color 0.3s ease;
}

.modalWrapper .signIn .react-code-input input:focus,
.modalWrapper .signUp .react-code-input input:focus {
	border-color: var(--blue) !important;
}

.modalWrapper .selector {
	align-items: center;
	color: #fff !important;
	display: flex;
	font-size: 1rem;
	height: 50px;
	justify-content: space-between;
	margin: 10px 0 20px;
	position: relative;
	z-index: 3;
	z-index: 100;
}

.modalWrapper .selector .defaultSelect__control {
	width: 100%;
}

.modalWrapper .selector .defaultSelect__menu {
	max-height: 300px !important;
}

.modalWrapper .selector.active {
	background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
		linear-gradient(180deg, #79cdfd, #1a64fc);
	box-shadow: 0 0 20px 0 #3a7cffab;
	transition: box-shadow 0.3s ease;
}

.modalWrapper .selector.active:hover {
	border-color: #0000;
}

.modalWrapper .selector.active .defaultSelect__single-value {
	color: #fff;
}

.modalWrapper .selector.active .defaultSelect__single-value span.count {
	border-color: #fff;
}

.modalWrapper .selector.active .defaultSelect__indicator {
	color: #fff;
}

.modalWrapper
	.selector.none
	.defaultSelect__control--menu-is-open
	.defaultSelect__single-value {
	display: none;
}

.modalWrapper
	.selector.none
	.defaultSelect__control--menu-is-open
	.defaultSelect__input {
	margin: 0 10px !important;
}

.modalWrapper .signUp .data {
	-webkit-backdrop-filter: blur(13.5px);
	backdrop-filter: blur(13.5px);
	background: #121a2929;
	border-radius: 15px;
	bottom: 20px;
	left: 50%;
	padding: 25px;
	position: absolute;
	transform: translateX(-50%);
	width: calc(100% - 40px);
}

.modalWrapper .signUp .data.mobile {
	bottom: auto;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	padding: 20px 25px;
	position: relative;
	width: 100%;
}

.modalWrapper .signUp .data.mobile .h1 {
	font-size: 24px;
	margin-bottom: 15px;
}

.modalWrapper .signUp .data.mobile .list {
	grid-gap: 40px;
	grid-template-columns: auto 1fr;
}

.modalWrapper .signUp .data.mobile .list .h2 {
	font-size: 34px;
}

.modalWrapper .signUp .data.mobile .list p {
	font-size: 12px;
}

.modalWrapper .signUp .data .h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 35px;
}

.modalWrapper .signUp .data .h1 span {
	color: #32fe2b;
}

.modalWrapper .signUp .data .list {
	grid-gap: 25px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.modalWrapper .signUp .data .list .h2 {
	font-size: 50px;
	font-weight: 700;
}

.modalWrapper .signUp .data .list .h2 b {
	color: #32fe2b;
}

.modalWrapper .signUp .data .list .h2 p {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.7;
}

.modalWrapper .signUp .left .tl {
	animation: tlAnim 0.3s ease 0.3s both;
	height: auto !important;
	top: 40px;
}

@keyframes tlAnim {
	0% {
		opacity: 0;
		right: -100px;
	}
	80% {
		right: -25px;
	}
	to {
		opacity: 1;
		right: -33px;
	}
}

.modalWrapper .signUp .left .tl:nth-child(2) {
	animation: tlAnim2 0.15s ease 0.5s both;
	opacity: 0;
	right: -33px;
}

@keyframes tlAnim2 {
	0% {
		opacity: 0;
		right: -33px;
	}
	80% {
		right: 50px;
	}
	to {
		opacity: 0.6;
		right: 42px;
	}
}

.modalWrapper .signUp .left .tl:nth-child(3) {
	animation: tlAnim3 0.15s ease 0.6s both;
	opacity: 0;
	right: -42px;
}

@keyframes tlAnim3 {
	0% {
		opacity: 0;
		right: 42px;
	}
	80% {
		right: 125px;
	}
	to {
		opacity: 0.3;
		right: 117px;
	}
}

.modalWrapper .signUp .image {
	animation: floatReg 10s ease-in-out infinite;
	bottom: 318px;
	left: -123px;
	width: 460px;
}

@keyframes floatReg {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-40px);
	}
	to {
		transform: translateY(0);
	}
}

.modalWrapper .signUp .form .switch {
	margin: 50px auto 0;
	max-width: 370px;
}

.modalWrapper .signUp .form .switch .item {
	margin-right: 10px;
	width: 115px;
}

.modalWrapper .signUp .form .switch .mainBtn {
	width: 115px;
}

.modalWrapper .signUp .form .inputs {
	margin-top: 25px;
}

@media (max-height: 700px) {
	.modalWrapper .modal {
		border-radius: 0;
		min-height: 100vh;
	}
	.modalWrapper .modal .form {
		padding: 15px 15px 20px !important;
	}
}

.tnPop {
	position: relative;
	z-index: 10;
}

@media (max-width: 1100px) {
	.tnPop .tournament .info .dates {
		font-weight: 400 !important;
		opacity: 0.8;
	}
}

@media (max-width: 690px) {
	.tnPop .tournament .info .dates {
		font-size: 12px;
	}
}

.tnPop .tournament .character {
	right: -60px;
}

.tnPop .tournament .info .h1 {
	font-size: 26px;
}

.tnPop .tournament .info .rewards {
	font-size: 44px;
}

.tnPop .tnAbout {
	margin-top: 50px;
	padding: 0 50px 50px;
}

@media (max-width: 980px) {
	.tnPop .tnAbout .topAbout {
		grid-template-columns: 1fr 1fr !important;
	}
}

@media (max-width: 690px) {
	.tnPop .tnAbout {
		margin-top: 30px !important;
		padding: 0 30px 30px !important;
	}
	.tnPop .tnAbout .topAbout .item span {
		font-size: 14px !important;
	}
	.tnPop .tnAbout .topAbout .item .h4 {
		font-size: 20px !important;
	}
}

@media (max-width: 450px) {
	.tnPop .tnAbout {
		margin-top: 30px !important;
		padding: 0 15px 15px !important;
	}
	.tnPop .tnAbout .topAbout .item span {
		font-size: 12px !important;
	}
	.tnPop .tnAbout .topAbout .item .h4 {
		font-size: 16px !important;
	}
}

.tnPop .tnAbout .topAbout {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: 40% 20% 20% 20%;
	margin-bottom: 50px;
	padding-bottom: 35px;
	position: relative;
}

.tnPop .tnAbout .topAbout:after {
	background-color: #232940;
	bottom: 0;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.tnPop .tnAbout .topAbout .item {
	display: flex;
	flex-direction: column;
}

.tnPop .tnAbout .topAbout .item span {
	color: var(--lines);
	font-size: 18px;
	font-weight: 400;
	padding-bottom: 15px;
}

.tnPop .tnAbout .topAbout .item .h4 {
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
}

.tnPop .tnAbout .infoTop {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.tnPop .tnAbout .simpleInfo {
	margin-bottom: 50px;
}

@media (max-width: 690px) {
	.tnPop .tnAbout .simpleInfo .infoTop .h3 {
		font-size: 22px !important;
	}
	.tnPop .tnAbout .simpleInfo .infoTop p {
		font-size: 18px !important;
	}
	.tnPop .tnAbout .simpleInfo .txt {
		font-size: 16px !important;
	}
	.tnPop .tnAbout .simpleInfo .tableWrapper .list thead th {
		font-size: 14px !important;
	}
	.tnPop .tnAbout .simpleInfo .tableWrapper .list tbody td {
		font-size: 15px !important;
	}
}

@media (max-width: 490px) {
	.tnPop .tnAbout .simpleInfo .infoTop .h3 {
		font-size: 18px !important;
	}
	.tnPop .tnAbout .simpleInfo .infoTop p {
		font-size: 16px !important;
	}
	.tnPop .tnAbout .simpleInfo .tableWrapper .list thead th,
	.tnPop .tnAbout .simpleInfo .txt {
		font-size: 14px !important;
	}
	.tnPop .tnAbout .simpleInfo .tableWrapper .list tbody td {
		font-size: 15px !important;
	}
}

.tnPop .tnAbout .simpleInfo:last-child {
	margin-bottom: 0;
}

.tnPop .tnAbout .simpleInfo .refresh {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	transition: color 0.3s ease;
	width: 40px;
}

.tnPop .tnAbout .simpleInfo .refresh:hover {
	color: var(--blue);
}

.tnPop .tnAbout .simpleInfo .refresh:hover svg {
	transform: rotate(180deg);
}

.tnPop .tnAbout .simpleInfo .refresh svg {
	height: 20px;
	transition: transform 0.3s ease;
	width: 20px;
}

.tnPop .tnAbout .simpleInfo .h3 {
	align-items: center;
	display: flex;
	font-size: 26px;
	font-weight: 700;
	opacity: 0.9;
	padding-bottom: 15px;
	text-transform: uppercase;
}

.tnPop .tnAbout .simpleInfo .h3 p {
	color: #475774;
	font-size: 22px;
	font-weight: 400;
	padding-left: 15px;
}

.tnPop .tnAbout .simpleInfo .txt {
	color: #475774;
	font-size: 19px;
	font-weight: 400;
}

.tnPop .tnAbout .simpleInfo .tnGames {
	padding: 20px;
}

@media (max-width: 690px) {
	.tnPop .tnAbout .simpleInfo .tnGames {
		border-radius: 20px !important;
		padding: 10px !important;
	}
	.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide {
		margin-right: 10px !important;
		max-width: 90px !important;
	}
	.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot,
	.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .slotInner {
		border-radius: 15px !important;
	}
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide {
	max-width: 122px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .play .h1 {
	font-size: 14px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .play p {
	font-size: 12px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .play .mainBtn {
	height: 60px;
	width: 60px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .play .mainBtn img {
	height: 25px;
	padding-left: 0;
	width: 25px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .play .down .like {
	height: 30px;
	width: 30px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .play .down .like svg {
	height: 13px;
	width: 13px;
}

.tnPop .tnAbout .simpleInfo .tnGames .swiper-slide .slot .demo {
	display: none;
}

.tnPop .tnAbout .simpleInfo .tableWrapper {
	padding: 20px 0;
	position: relative;
}

.tnPop .tnAbout .simpleInfo .tableWrapper .loaderList {
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.tnPop .tnAbout .simpleInfo .tableWrapper table {
	border-collapse: initial !important;
}

.tnPop .tnAbout .simpleInfo .tableWrapper th {
	font-size: 19px;
}

.tnPop .tnAbout .simpleInfo .tableWrapper tr {
	position: relative;
}

.tnPop .tnAbout .simpleInfo .tableWrapper tr.u td {
	padding-bottom: 59px;
}

.tnPop .tnAbout .simpleInfo .tableWrapper tr.u .loaderList {
	animation: none;
	bottom: 23px;
	left: 50%;
	opacity: 0.2;
	position: absolute;
	transform: translateX(-50%);
}

.tnPop .tnAbout .simpleInfo .tableWrapper tr:nth-child(2n) {
	background-color: #192232;
}

.tnPop .tnAbout .simpleInfo .tableWrapper tr td {
	font-size: 19px;
	font-weight: 700;
	padding: 12px 3px;
}

.tnPop .tnAbout .simpleInfo .tableWrapper tr td span {
	color: var(--blue);
}

:root {
	--toastify-color-light: #fff;
	--toastify-color-dark: #121212;
	--toastify-color-info: #3498db;
	--toastify-color-success: #07bc0c;
	--toastify-color-warning: #f1c40f;
	--toastify-color-error: #e74c3c;
	--toastify-color-transparent: #ffffffb3;
	--toastify-icon-color-info: var(--toastify-color-info);
	--toastify-icon-color-success: var(--toastify-color-success);
	--toastify-icon-color-warning: var(--toastify-color-warning);
	--toastify-icon-color-error: var(--toastify-color-error);
	--toastify-toast-width: 320px;
	--toastify-toast-background: #fff;
	--toastify-toast-min-height: 64px;
	--toastify-toast-max-height: 800px;
	--toastify-font-family: sans-serif;
	--toastify-z-index: 9999;
	--toastify-text-color-light: #757575;
	--toastify-text-color-dark: #fff;
	--toastify-text-color-info: #fff;
	--toastify-text-color-success: #fff;
	--toastify-text-color-warning: #fff;
	--toastify-text-color-error: #fff;
	--toastify-spinner-color: #616161;
	--toastify-spinner-color-empty-area: #e0e0e0;
	--toastify-color-progress-light: linear-gradient(
		90deg,
		#4cd964,
		#5ac8fa,
		#007aff,
		#34aadc,
		#5856d6,
		#ff2d55
	);
	--toastify-color-progress-dark: #bb86fc;
	--toastify-color-progress-info: var(--toastify-color-info);
	--toastify-color-progress-success: var(--toastify-color-success);
	--toastify-color-progress-warning: var(--toastify-color-warning);
	--toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
	box-sizing: border-box;
	color: #fff;
	padding: 4px;
	position: fixed;
	-webkit-transform: translateZ(9999);
	-webkit-transform: translateZ(var(--toastify-z-index));
	width: 320px;
	width: var(--toastify-toast-width);
	z-index: 9999;
	z-index: var(--toastify-z-index);
}

.Toastify__toast-container--top-left {
	left: 1em;
	top: 1em;
}

.Toastify__toast-container--top-center {
	left: 50%;
	top: 1em;
	transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
	right: 1em;
	top: 1em;
}

.Toastify__toast-container--bottom-left {
	bottom: 1em;
	left: 1em;
}

.Toastify__toast-container--bottom-center {
	bottom: 1em;
	left: 50%;
	transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
	bottom: 1em;
	right: 1em;
}

@media only screen and (max-width: 480px) {
	.Toastify__toast-container {
		left: 0;
		margin: 0;
		padding: 0;
		width: 100vw;
	}
	.Toastify__toast-container--top-center,
	.Toastify__toast-container--top-left,
	.Toastify__toast-container--top-right {
		top: 0;
		transform: translateX(0);
	}
	.Toastify__toast-container--bottom-center,
	.Toastify__toast-container--bottom-left,
	.Toastify__toast-container--bottom-right {
		bottom: 0;
		transform: translateX(0);
	}
	.Toastify__toast-container--rtl {
		left: auto;
		right: 0;
	}
}

.Toastify__toast {
	border-radius: 4px;
	box-shadow: 0 1px 10px 0 #0000001a, 0 2px 15px 0 #0000000d;
	box-sizing: border-box;
	cursor: default;
	direction: ltr;
	display: flex;
	font-family: sans-serif;
	font-family: var(--toastify-font-family);
	justify-content: space-between;
	margin-bottom: 1rem;
	max-height: 800px;
	max-height: var(--toastify-toast-max-height);
	min-height: 64px;
	min-height: var(--toastify-toast-min-height);
	overflow: hidden;
	padding: 8px;
	position: relative;
	z-index: 0;
}

.Toastify__toast--rtl {
	direction: rtl;
}

.Toastify__toast--close-on-click {
	cursor: pointer;
}

.Toastify__toast-body {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	margin: auto 0;
	padding: 6px;
}

.Toastify__toast-body > div:last-child {
	flex: 1 1;
	word-break: break-word;
}

.Toastify__toast-icon {
	display: flex;
	flex-shrink: 0;
	margin-inline-end: 10px;
	width: 20px;
}

.Toastify--animate {
	animation-duration: 0.7s;
	animation-fill-mode: both;
}

.Toastify--animate-icon {
	animation-duration: 0.3s;
	animation-fill-mode: both;
}

@media only screen and (max-width: 480px) {
	.Toastify__toast {
		border-radius: 0;
		margin-bottom: 0;
	}
}

.Toastify__toast-theme--dark {
	background: #121212;
	background: var(--toastify-color-dark);
	color: #fff;
	color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
	background: #fff;
	background: var(--toastify-color-light);
	color: #757575;
	color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
	background: #3498db;
	background: var(--toastify-color-info);
	color: #fff;
	color: var(--toastify-text-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
	background: #07bc0c;
	background: var(--toastify-color-success);
	color: #fff;
	color: var(--toastify-text-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
	background: #f1c40f;
	background: var(--toastify-color-warning);
	color: #fff;
	color: var(--toastify-text-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
	background: #e74c3c;
	background: var(--toastify-color-error);
	color: #fff;
	color: var(--toastify-text-color-error);
}

.Toastify__progress-bar-theme--light {
	background: linear-gradient(
		90deg,
		#4cd964,
		#5ac8fa,
		#007aff,
		#34aadc,
		#5856d6,
		#ff2d55
	);
	background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
	background: #bb86fc;
	background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
	background: #3498db;
	background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
	background: #07bc0c;
	background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
	background: #f1c40f;
	background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
	background: #e74c3c;
	background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
	background: #ffffffb3;
	background: var(--toastify-color-transparent);
}

.Toastify__close-button {
	align-self: flex-start;
	background: #0000;
	border: none;
	color: #fff;
	cursor: pointer;
	opacity: 0.7;
	outline: none;
	padding: 0;
	transition: 0.3s ease;
}

.Toastify__close-button--light {
	color: #000;
	opacity: 0.3;
}

.Toastify__close-button > svg {
	fill: currentColor;
	height: 16px;
	width: 14px;
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
	opacity: 1;
}

@keyframes Toastify__trackProgress {
	0% {
		transform: scaleX(1);
	}
	to {
		transform: scaleX(0);
	}
}

.Toastify__progress-bar {
	bottom: 0;
	height: 5px;
	left: 0;
	opacity: 0.7;
	position: absolute;
	transform-origin: left;
	width: 100%;
	z-index: 9999;
	z-index: var(--toastify-z-index);
}

.Toastify__progress-bar--animated {
	animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
	transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
	left: auto;
	right: 0;
	transform-origin: right;
}

.Toastify__spinner {
	animation: Toastify__spin 0.65s linear infinite;
	border: 2px solid #e0e0e0;
	border-color: var(--toastify-spinner-color-empty-area);
	border-radius: 100%;
	border-right-color: #616161;
	border-right-color: var(--toastify-spinner-color);
	box-sizing: border-box;
	height: 20px;
	width: 20px;
}

@keyframes Toastify__bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: none;
	}
}

@keyframes Toastify__bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes Toastify__bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: none;
	}
}

@keyframes Toastify__bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes Toastify__bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes Toastify__bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}

@keyframes Toastify__bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
	animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
	animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
	animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
	animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
	animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
	animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
	animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
	animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

@keyframes Toastify__zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

.Toastify__zoom-enter {
	animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
	animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
	40% {
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateX(10deg);
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}

@keyframes Toastify__flipOut {
	0% {
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg);
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
}

.Toastify__flip-enter {
	animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
	animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
	0% {
		transform: translate3d(110%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideInLeft {
	0% {
		transform: translate3d(-110%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideInUp {
	0% {
		transform: translate3d(0, 110%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideInDown {
	0% {
		transform: translate3d(0, -110%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(110%, 0, 0);
		visibility: hidden;
	}
}

@keyframes Toastify__slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(-110%, 0, 0);
		visibility: hidden;
	}
}

@keyframes Toastify__slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(0, 500px, 0);
		visibility: hidden;
	}
}

@keyframes Toastify__slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(0, -500px, 0);
		visibility: hidden;
	}
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
	animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
	animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
	animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
	animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
	animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
	animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
	animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
	animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	font: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: initial;
}

:focus {
	outline: 0;
}

a {
	color: #fff;
	text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	background: #fff;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: '';
	content: none;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
	background: #0000;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type='search'] {
	-webkit-appearance: none;
	-moz-appearance: none;
}

audio,
canvas,
video {
	zoom: 1;
	display: inline-block;
	display: inline;
	max-width: 100%;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 100%;
	scrollbar-width: none;
}

a:active,
a:hover {
	outline: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
}

figure,
form {
	margin: 0;
}

fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	margin-left: -7px;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	vertical-align: initial;
	vertical-align: middle;
}

button {
	border: 0;
	margin: 0;
	padding: 0;
}

button,
input,
textarea {
	-webkit-appearance: none;
	line-height: normal;
}

button,
select {
	text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
	-webkit-appearance: button;
	cursor: pointer;
	overflow: visible;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

input[type='checkbox'],
input[type='radio'] {
	box-sizing: border-box;
	height: 13px;
	padding: 0;
	width: 13px;
}

input[type='search'] {
	-webkit-appearance: textfield;
	box-sizing: initial;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button,
html,
input,
select,
textarea {
	box-sizing: border-box;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

img {
	vertical-align: middle;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

.chromeframe {
	background: #ccc;
	color: #000;
	margin: 0.2em 0;
	padding: 0.2em 0;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.noCopy {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

:root {
	--bgColor: #0c111c;
	--text: #fff;
	--bgModal: #001d00;
	--borderModal: #465063;
	--topLine: #212f44;
	--lines: #475774;
	--btnDark: #192232;
	--blue: #32fe2b;
	--blueDark: #2b91fe56;
	--lightBtn: #232c43;
	--secondary: #192232;
	--textSecondary: #ffffff;
	--textDark: #677a9d;
	--line: #273140;
	--iconColor: #475774;
	--slotHover: #10131fbf;
	--accent: #1a2534;
	--blueSecond: #1e6cfd;
}

body {
	background-color: #0c111c;
	background-color: var(--bgColor);
	color: #fff;
	color: var(--text);
	font-family: Inter, sans-serif;
}

.safe-bottom {
	padding-bottom: env(safe-area-inset-bottom);
}

::-webkit-scrollbar {
	width: 2px;
}

::-webkit-scrollbar-thumb {
	background: #3f4e69;
	border-radius: 2px;
	-webkit-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

::-webkit-scrollbar-track {
	background: #0c111c;
}

input::placeholder {
	color: #c8dfc8;
	opacity: 1;
}

input {
	font-family: Inter, sans-serif;
	outline: 0;
}

img {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

.thumbs {
	grid-gap: 5px;
	display: grid;
	grid-template-columns: auto auto;
	padding-left: 10px;
}

.thumbs .arr {
	height: 35px;
	width: 35px;
}

.thumbs .arr svg {
	color: #677a9d;
	transition: transform 0.3s ease, color 0.3s ease;
}

.thumbs .arr:hover svg {
	color: #fff;
	transform: scale(1.1);
}

.tippy-popper .tippy-tooltip {
	background-color: rgba(12, 17, 28, 0.902);
	border-radius: 15px;
	box-shadow: 0 1px 6px 0 #11141b80;
	font-size: 0.8rem;
	max-width: 350px;
	padding: 10px;
}

.tippy-popper .tippy-tooltip .arrow-regular {
	border-top: 7px solid rgba(12, 17, 28, 0.902);
}

.tippy-popper .tippy-tooltip .enter {
	background-color: rgba(12, 17, 28, 0.902);
}

.switch {
	height: 47px;
}

.switch,
.switch .item,
.switch a {
	align-items: center;
	display: flex;
	position: relative;
}

.switch .item,
.switch a {
	color: #475774;
	color: var(--lines);
	cursor: pointer;
	font-size: 15px;
	font-weight: 400;
	height: 100%;
	justify-content: center;
	margin-right: 15px;
	transition: color 0.3s ease;
	width: 100px;
	z-index: 1;
}

.switch .item.last,
.switch a.last {
	margin: 0 !important;
}

.switch .item:after,
.switch a:after {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
		linear-gradient(180deg, #79cdfd, #1a64fc);
	background-origin: border-box;
	border: 3px solid #0000;
	border-radius: 25px;
	box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #3a7cffab;
	content: '';
	height: calc(100% - 6px);
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s ease;
	width: 100%;
	z-index: -1;
}

.switch .item.active,
.switch .item:hover,
.switch a.active,
.switch a:hover {
	color: #fff;
	color: var(--text);
}

.switch .item.active .mainBtn,
.switch a.active .mainBtn {
	opacity: 1;
}

.switch .mainBtn {
	content: '';
	height: calc(100% - 4px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	width: 100px;
}

.parallax {
	height: calc(100vh + 100px);
	object-fit: cover;
	width: 100%;
	z-index: -100;
}

.contentWrapper {
	max-width: 100vw;
	overflow: hidden;
}

.container {
	margin: auto;
	max-width: 100vw;
	min-height: 100vh;
	padding-top: 15px;
	position: relative;
}

@media (max-width: 700px) {
	.container {
		padding-top: 0;
	}
}

@keyframes containerBluringIn {
	0% {
		filter: blur(0);
	}
	to {
		filter: blur(10px);
	}
}

@keyframes containerBluringOut {
	0% {
		filter: blur(10px);
	}
	to {
		filter: blur(0);
	}
}

.container.blurIn {
	animation: containerBluringIn 0.5s ease both;
}

.container.blurOut {
	animation: containerBluringOut 0.3s ease both;
}

.countdown {
	grid-gap: 8px;
	display: grid;
	grid-template-columns: auto auto auto auto;
}

.countdown .item {
	flex-direction: column;
}

.countdown .item,
.countdown .item span {
	align-items: center;
	display: flex;
	justify-content: center;
}

.countdown .item span {
	background: #333d5040;
	border: 3px solid #ffffff1a;
	border-radius: 50%;
	font-size: 25px;
	font-weight: 700;
	height: 58px;
	width: 58px;
}

.closedGame {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.closedGame .wrap {
	position: relative;
}

.closedGame .timerBlock {
	background-color: #121a2980;
	border-radius: 22px;
	bottom: 0;
	display: flex;
	justify-content: center;
	padding: 10px;
	position: absolute;
	width: 100%;
}

.closedGame img {
	height: 100%;
	max-height: 750px;
	max-width: 1314px;
	object-fit: cover;
	width: 100%;
}

.closedGame img.banned {
	border-radius: 25px;
	box-shadow: 0 5px 6px 0 #11141b1f;
	max-height: 550px;
	max-width: 700px;
}

.closedGame .baseBlock {
	border-radius: 20px;
	bottom: 10%;
	left: 50%;
	min-width: 250px;
	padding: 15px 30px;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
}

.backgroundBack {
	overflow: hidden;
	position: fixed;
	z-index: -1;
}

.backgroundBack,
.backgroundBack img {
	height: 100vh;
	left: 0;
	top: 0;
	width: 100vw;
}

.backgroundBack img {
	object-fit: cover;
	object-position: center;
	position: absolute;
}

.content {
	margin: auto;
	max-width: 100%;
	padding: 0 20px 50px;
	width: 1440px;
}

@media (max-width: 1440px) {
	.content {
		max-width: 100vw !important;
		overflow-x: hidden;
	}
}

@media (max-width: 600px) {
	.content {
		padding: 0 10px;
	}
}

@media (max-width: 700px) {
	.content {
		min-height: 100vh;
	}
}

.baseBlock {
	background-clip: padding-box, border-box;
	background: #004e00;
	background-origin: border-box;
	border: 3px solid #0000;
	border-radius: 4px !important;
	box-shadow: 0 5px 6px 0 #11141b1f;
}

.baseBlock.blue {
	background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
		linear-gradient(180deg, #79cdfd, #1a64fc);
	box-shadow: 0 5px 6px 0 #11141b1f, 0 0 36.54px 0 #3a7cffab;
}

.mainBtn {
	-webkit-touch-callout: none;
	align-items: center;
	background-clip: padding-box, border-box;
	background: #004e00;
	background-origin: border-box;
	border: 3px solid #0000;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	font-weight: 300;
	height: 47px;
	justify-content: center;
	line-height: normal;
	position: relative;
	transition: border 0.3s ease;
	-webkit-user-select: none;
	user-select: none;
}
.mainContainer {
	background: #072b07;
}

.mainBtn span {
	z-index: 8;
}

.mainBtn.blue {
	background: linear-gradient(90deg, #005d11 0%, #00c324 100%);
	border: none;
}

.mainBtn.blue .loaderList {
	animation: whiteLoader 0.5s ease-out infinite alternate;
	background-color: #fff;
	background-color: var(--text);
	box-shadow: 20px 0 #fff, -20px 0 #fff;
	box-shadow: 20px 0 var(--text), -20px 0 var(--text);
}

@keyframes whiteLoader {
	0% {
		background-color: hsla(0, 0%, 100%, 0.302);
		box-shadow: 20px 0 hsla(0, 0%, 100%, 0.302), -20px 0 #fff;
		box-shadow: 20px 0 hsla(0, 0%, 100%, 0.302), -20px 0 var(--text);
	}
	50% {
		background-color: #fff;
		background-color: var(--text);
		box-shadow: 20px 0 hsla(0, 0%, 100%, 0.302),
			-20px 0 hsla(0, 0%, 100%, 0.302);
	}
	to {
		background-color: hsla(0, 0%, 100%, 0.302);
		box-shadow: 20px 0 #fff, -20px 0 hsla(0, 0%, 100%, 0.302);
		box-shadow: 20px 0 var(--text), -20px 0 hsla(0, 0%, 100%, 0.302);
	}
}

.mainBtn svg {
	transition: transform 0.3s ease;
}

@media (max-width: 600px) {
	.slot:hover {
		transform: scale(1) !important;
	}
	.slot .back,
	.slot .play,
	.slot .slotInner {
		border-radius: 15px !important;
	}
}

.play {
	-webkit-touch-callout: none;
	align-items: center;
	background-color: #10131fbf;
	background-color: var(--slotHover);
	border-radius: 25px;
	content: '';
	display: flex;
	flex-direction: column;
	height: 110%;
	justify-content: space-around;
	left: 50%;
	opacity: 0;
	padding: 3%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
	-webkit-user-select: none;
	user-select: none;
	width: 110%;
	will-change: transform;
	z-index: 0;
}

@media (max-width: 1000px) {
	.play {
		padding: 7%;
	}
}

.play.blocked {
	opacity: 1;
	z-index: 1;
}

.play p {
	color: #677a9d;
	color: var(--textSecondary);
	font-size: 14px;
	font-weight: 400;
	overflow: hidden;
	padding: 5px 15px 0;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

@media (max-width: 1000px) {
	.play p {
		font-size: 0.7rem;
	}
}

@media (max-width: 600px) {
	.play p {
		font-size: 0.6rem;
	}
}

.play .h1 {
	font-size: 17px;
	font-weight: 700;
	overflow: hidden;
	padding: 0 15px;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

@media (max-width: 1000px) {
	.play .h1 {
		font-size: 0.8rem;
	}
}

@media (max-width: 600px) {
	.play .h1 {
		font-size: 0.7rem;
	}
}

.play .mainBtn {
	display: flex;
	font-size: 16px;
	font-weight: 300;
	height: 40px;
	width: 100px;
}

.play .mainBtn img {
	height: 50px;
	padding-left: 5px;
	width: 50px;
}

.play .mainBtn.blue {
	border-radius: 50%;
	height: 90px;
	width: 90px;
}

@media (max-width: 1000px) {
	.play .mainBtn.blue {
		height: 60px;
		width: 60px;
	}
	.play .mainBtn.blue img {
		height: 40px;
		width: 40px;
	}
}

@media (max-width: 600px) {
	.play .mainBtn.blue {
		height: 55px;
		width: 55px;
	}
	.play .mainBtn.blue img {
		height: 35px;
		width: 35px;
	}
}

.play .mainBtn.blue img {
	transition: transform 0.3s ease-in-out;
}

.play .mainBtn.blue:hover img {
	transform: scale(1.1);
}

.play .down {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 0 20px;
	width: 100%;
}

@media (max-width: 1000px) {
	.play .down {
		padding: 0 5px;
	}
}

.play .down .like {
	align-items: center;
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
	background-color: #192232cc;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	opacity: 0;
	transition: background-color 0.3s ease;
	width: 40px;
}

@media (max-width: 1000px) {
	.play .down .like {
		height: 30px;
		width: 30px;
	}
	.play .down .like svg {
		width: 14px !important;
	}
}

.play .down .like svg {
	height: 18px;
	transition: transform 0.3s ease;
	width: 18px;
}

.play .down .like svg path {
	fill: #475774;
	fill: var(--lines);
	stroke: #475774;
	stroke: var(--lines);
	transition: fill 0.3s ease, stroke 0.3s ease;
}

.play .down .like.active svg path {
	fill: url('');
	stroke: url('');
}

.play .down .like.active:hover svg {
	transform: scale(1.15);
}

.play .down .like:hover {
	background-color: #192232;
}

.play .down .like:hover:hover svg {
	transform: scale(1.15);
}

.play .down .blockReason {
	background-color: rgba(25, 34, 50, 0.902);
	border-radius: 15px;
	color: #677a9d;
	color: var(--textSecondary);
	font-size: 12px;
	padding: 10px;
	text-align: center;
}

@media (max-width: 600px) {
	.play .down .blockReason {
		border-radius: 10px;
		font-size: 10px;
		padding: 5px;
	}
}

.field {
	width: 100%;
}

.field .label {
	color: #7a85a5;
	font-size: 1rem;
	font-weight: 300;
	margin-bottom: 10px;
	padding: 0 20px;
}

.field input {
	background-color: #192232;
	background-color: var(--btnDark);
	border: 2px solid #212f44;
	border: 2px solid var(--topLine);
	border-radius: 25px;
	box-shadow: 0 5px 6px 0 #11141b1f;
	color: #fff;
	color: var(--text);
	font-size: 1.1rem;
	height: 50px;
	padding: 0 20px;
	transition: border-color 0.3s ease;
	width: 100%;
}

.field input:focus,
.field input:hover {
	border-color: #32fe2b;
	border-color: var(--blue);
}

.field input::placeholder {
	opacity: 1;
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:active,
.field input:-webkit-autofill:focus,
.field input:-webkit-autofill:hover {
	-webkit-text-fill-color: #fff;
	-webkit-text-fill-color: var(--text);
	-webkit-background-clip: text;
	box-shadow: inset 0 0 20px 20px #192232;
	box-shadow: inset 0 0 20px 20px var(--btnDark);
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.field .input {
	position: relative;
}

.field .input:focus input,
.field .input:hover input {
	border-color: #32fe2b;
	border-color: var(--blue);
}

.field .input .action {
	cursor: pointer;
	height: 30px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
}

.field .input .action svg {
	height: 100%;
	opacity: 0.33;
	transition: transform 0.3s ease;
	width: 100%;
}

.field .input .action:hover svg {
	opacity: 1;
	transform: rotate(-90deg);
}

.grecaptcha-badge {
	visibility: hidden !important;
}

.tippy {
	cursor: pointer;
}

.tippy svg {
	color: #293a53;
	transition: color 0.3s ease;
}

.tippy:hover svg {
	color: #32fe2b;
	color: var(--blue);
}

.balance {
	position: relative;
}

.balance.simple {
	background: #121a29;
	background: var(--bgModal);
	border: 3px solid #212e43;
	border-radius: 25px;
}

.balance.simple .body {
	grid-gap: 10px;
	background: #192232;
	border-radius: 22px;
	box-shadow: 0 5px 6px 0 #11141b1f;
	display: grid;
	grid-template-columns: 1fr auto;
	position: relative;
}

.balance.simple .body .walletLink {
	align-items: center;
	display: flex;
	justify-content: flex-start;
}

.balance.simple .body .walletLink img {
	margin-right: 5px !important;
}

.balance.simple .body .walletLink .h4 {
	padding: 0;
}

.balance.simple .body .dots {
	padding-bottom: 0;
}

.balance .nulls {
	padding-bottom: 2px;
}

.balance .wager {
	grid-gap: 5px;
	align-items: center;
	display: grid;
	grid-template-columns: auto 1fr auto;
	padding: 10px;
}

.balance .wager p {
	font-size: 11px;
}

.balance .wager .h4 {
	align-items: center;
	display: flex;
	font-size: 12px;
	font-weight: 700;
}

.balance .wager .h4 img {
	margin-right: 5px;
	width: 13px;
}

.balance .wager .h4 .dots {
	color: #475774;
	color: var(--lines);
	display: flex;
}

.balance .body {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 47px;
	justify-content: space-between;
	padding: 0 60px 0 10px;
	transition: border-color 0.3s ease;
}

.balance .body .h4 {
	font-weight: 700;
	padding-right: 15px;
	text-shadow: 0 4px 4px #00000040;
}

.balance .body .h4,
.balance .body .h4 .dots {
	align-items: center;
	display: flex;
	font-size: 14px;
}

.balance .body .h4 .dots {
	color: #818fa5;
	font-weight: 400;
	padding-bottom: 1px;
}

.balance .body .curIcon {
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	height: 22px;
	margin-right: 10px !important;
	width: 22px;
}

.balance .body:hover {
	border-color: #212f44;
	border-color: var(--topLine);
}

.balance .body .arrow {
	align-items: center;
	color: #fff;
	display: flex;
	justify-content: center;
	opacity: 0.5;
	position: relative;
	transform-origin: 50% 50%;
	transition: transform 0.3s ease;
}

.balance .body .arrow.open {
	transform: rotate(180deg);
}

.balance .mainBtn {
	border-radius: 50%;
	height: 54px;
	position: absolute;
	right: -4px;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
}

.balance .mainBtn.blue img {
	transform-origin: center;
	transition: transform 0.3s ease;
}

.balance .mainBtn.blue:hover img {
	transform: scale(1.2) rotate(90deg);
}

.balance .mainBtn span {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.dropdown {
	animation: selectAppear 0.3s ease both;
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background-color: #192232;
	border-radius: 25px;
	box-shadow: 0 1px 10px 0 #11141b80;
	cursor: default;
	display: flex;
	flex-direction: column;
	max-height: 400px;
	padding: 15px 10px;
	position: absolute;
	right: 0;
	top: calc(100% + 25px);
	transform: translate(0);
	width: 215px;
	z-index: 99;
}

.dropdown.centered {
	animation: centerAppear 0.3s ease both;
	right: 50%;
	transform: translate(50%) !important;
}

@keyframes centerAppear {
	0% {
		opacity: 0;
		transform: translate(-30px, -50%);
	}
	to {
		opacity: 1;
		transform: translateY(0, -50%);
	}
}

.dropdown.profile:after {
	left: auto;
	right: 65px;
}

.dropdown.main {
	left: auto;
	max-height: -webkit-max-content;
	max-height: max-content;
	right: 0;
	width: 330px;
}

.dropdown.main:after {
	left: auto;
	right: 20px;
}

.dropdown.main .mainBtn span {
	align-items: center;
	justify-content: center;
	width: 100%;
}

.dropdown.main .mainBtn span svg {
	margin-right: 10px;
}

.dropdown.main .mainBtn:before {
	width: 100%;
}

.dropdown.main .baseBlock,
.dropdown.main .mainBtn {
	background-image: linear-gradient(180deg, #252d42, #252d42),
		linear-gradient(180deg, #212f44 20%, #252d42 47%);
	background-image: linear-gradient(to bottom, #252d42, #252d42),
		linear-gradient(to bottom, var(--topLine) 20%, #252d42 47%);
}

.dropdown.main .grided {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.dropdown.main .grided .colored {
	background: #252d42;
	border: 0;
	border-radius: 15px;
	height: 65px;
	margin: 0;
	overflow: hidden;
	padding: 0 15px;
	position: relative;
	transition: background 0.3s ease, transform 0.3s ease;
}

.dropdown.main .grided .colored.active {
	background: linear-gradient(351deg, #1a64fc, #41c6ff);
}

.dropdown.main .grided .colored:hover {
	transform: translateX(2px);
}

.dropdown.main .grided .colored:hover .character {
	transform: scale(1.05);
}

.dropdown.main .grided .colored.j .character {
	bottom: -39px;
	right: -40px;
}

.dropdown.main .grided .colored.m {
	overflow: visible;
	overflow: initial;
}

.dropdown.main .grided .colored.m .character {
	left: 0;
	right: auto;
}

.dropdown.main .grided .colored.m span {
	align-items: flex-end;
}

.dropdown.main .grided .colored.t {
	overflow: visible;
	overflow: initial;
}

.dropdown.main .grided .colored.t span {
	justify-content: flex-end;
	padding-bottom: 15px;
}

.dropdown.main .grided .colored .character {
	bottom: 0;
	position: absolute;
	right: 0;
	transform-origin: bottom;
	transition: transform 0.3s ease;
}

.dropdown.main .grided .colored span {
	align-items: flex-start;
	color: #fff;
	flex-direction: column;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	text-shadow: 0 4px 4px #00000040;
}

.dropdown.main .grided .colored span p {
	color: #f9fbff;
	font-size: 9px;
	font-weight: 400;
	opacity: 0.8;
	padding-top: 5px;
	text-shadow: 0 4px 4px #00000040;
}

.dropdown.disappear {
	animation: fadeOut;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
}

.dropdown.grid {
	padding: 5px;
}

.dropdown .list {
	grid-gap: 10px;
	display: grid;
	grid-template-rows: repeat(auto-fit, 45px);
	min-height: 150px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px 10px 10px 0;
}

.dropdown .list .loadBox {
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	border-radius: 30px;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 199;
}

.dropdown .list.big {
	grid-gap: 25px;
	grid-template-rows: repeat(auto-fit, 50px);
}

.dropdown .list.big .dropBtn {
	grid-gap: 15px;
	align-items: flex-start;
	cursor: default;
	display: grid;
	grid-template-columns: auto 1fr;
	height: 50px;
	margin: 0;
}

.dropdown .list.big .dropBtn:hover {
	background-color: #212f4400;
	border-color: #293a5300;
	transform: translateX(3px);
}

.dropdown .list.big .dropBtn .imgHolder {
	align-items: center;
	background-image: linear-gradient(180deg, #1e2a3d, #1e2a3d),
		linear-gradient(180deg, #2a3a54 20%, #1e2a3d 47%);
	display: flex;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.dropdown .list.big .dropBtn .inside {
	font-size: 1rem;
	font-weight: 300;
	text-shadow: 0 4px 4px #00000040;
}

.dropdown .list.big .dropBtn .inside p {
	color: #7a85a5;
	font-size: 14px;
	font-weight: 300;
}

.dropdown .list::-webkit-scrollbar-track {
	margin: 25px 0;
}

.dropdown:after {
	background-color: #192232;
	border-radius: 5px;
	content: '';
	height: 25px;
	left: calc(50% - 16px);
	position: absolute;
	top: -8px;
	transform: translateX(-50%);
	transform: rotate(45deg) translateZ(-1px);
	width: 25px;
	z-index: -1;
}

.dropdown .head {
	font-size: 18px;
	font-weight: 300;
	padding: 0 15px 15px;
	position: relative;
}

.dropdown .head:after {
	background-color: #273140;
	bottom: 0;
	content: '';
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: calc(100% - 30px);
}

.dropdown .dropBtn,
.dropdown .mainBtn,
.dropdown a {
	border: 2px solid #19223200;
	border-radius: 4px;
	color: #fff;
	color: var(--text);
	cursor: pointer;
	font-size: 15px;
	height: 40px;
	margin-bottom: 10px;
	padding: 0 10px;
	position: relative;
	text-shadow: 0 4px 4px #00000040;
	transition: border-color 0.3s ease, transform 0.6s ease;
	width: 100%;
}

.dropdown .dropBtn svg,
.dropdown .mainBtn svg,
.dropdown a svg {
	color: #1a82fc;
	margin-right: 15px;
}

.dropdown .dropBtn span,
.dropdown .mainBtn span,
.dropdown a span {
	align-items: center;
	display: flex;
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 9;
}

.dropdown .dropBtn:hover,
.dropdown .mainBtn:hover,
.dropdown a:hover {
	background-color: #212f44b0;
	border-color: #293a53;
	transform: translateX(3px);
}

.dropdown .balance {
	display: flex;
	height: 45px;
	justify-content: space-between;
	margin-bottom: 0;
	padding: 0 10px 0 5px;
	position: relative;
}

.dropdown .balance:after {
	height: 39px;
}

.dropdown .balance p {
	align-items: center;
	color: #818fa5;
	display: flex;
	font-size: 15px;
	font-weight: 400;
	justify-content: center;
	z-index: 10;
}

.dropdown .balance img {
	position: relative;
	width: 30px;
	z-index: 10;
}

.dropdown .lntg {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: auto 1fr;
	margin-top: 20px;
	position: relative;
}

.dropdown .lntg a {
	height: auto;
	padding: 0;
}

.dropdown .lntg .mainBtn {
	height: 45px;
	margin: 0;
	padding: 0;
}

.dropdown .lntg .mainBtn span {
	font-size: 16px;
}

.dropdown .lntg:before {
	background-color: #829dff;
	content: '';
	height: 1px;
	left: 50%;
	opacity: 0.1;
	position: absolute;
	top: -10px;
	transform: translateX(-50%);
	width: 90%;
}

.dropdown .mainBtn {
	font-size: 13px;
	height: 37px;
	margin-left: 0;
	margin-top: 20px;
	padding: 0 15px;
	position: relative;
}

.dropdown .mainBtn img,
.dropdown .mainBtn svg {
	border-radius: 50%;
	height: 15px;
	margin-right: 10px;
	object-fit: cover;
	width: 15px;
}

.dropdown .mainBtn span {
	align-items: center;
	display: flex;
	font-weight: 400;
}

.blockLoader {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.blockLoader .vdkOne {
	animation: huysan 1.5s ease infinite;
	width: 50px;
}

.blockLoader .vdkOne,
.blockLoader .vdkTwo {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transform-origin: bottom;
}

.blockLoader .vdkTwo {
	animation: jopina 1.5s ease infinite;
	width: 55px;
}

@keyframes huysan {
	0% {
		transform: scale(1) translate(-50%, -50%);
	}
	40% {
		transform: scale(1) translate(-50%, -50%);
	}
	60% {
		transform: scale(1.05) translate(-50%, -50%);
	}
	80% {
		transform: scale(1) translate(-50%, -50%);
	}
	to {
		transform: scale(1) translate(-50%, -50%);
	}
}

@keyframes jopina {
	0% {
		transform: scale(1) rotate(0deg) translate(-50%, -50%);
	}
	40% {
		transform: scale(1) rotate(-15deg) translate(-50%, -60%);
	}
	60% {
		transform: scale(1.05) rotate(-15deg) translate(-50%, -60%);
	}
	80% {
		transform: scale(1) rotate(-15deg) translate(-50%, -60%);
	}
	to {
		transform: scale(1) rotate(0) translate(-50%, -50%);
	}
}

.loaderList {
	animation: loaderList 0.5s ease-out infinite alternate;
	background-color: #005d11;
	border-radius: 25%;
	height: 10px;
	margin: 10px auto;
	position: relative;
	width: 10px;
	z-index: 99;
}

@keyframes loaderList {
	0% {
		background-color: #005d11;
		background-color: #00c324;
	}
	50% {
		background-color: #005d11;
		background-color: #00c324;
	}
	to {
		background-color: #00c324;
		background-color: #005d11;
	}
}

.defaultSelect .defaultSelect__input-container {
	color: #fff;
}

.defaultSelect .defaultSelect__single-value {
	color: #677a9d;
	color: var(--textSecondary);
	font-weight: 500;
	transition: color 0.3s ease;
}

.defaultSelect .defaultSelect__option,
.defaultSelect .defaultSelect__single-value {
	align-items: center;
	display: flex;
	font-size: 1rem;
	white-space: nowrap;
}

.defaultSelect .defaultSelect__option img,
.defaultSelect .defaultSelect__option svg,
.defaultSelect .defaultSelect__single-value img,
.defaultSelect .defaultSelect__single-value svg {
	height: 24px;
	margin-right: 10px;
	width: 24px;
}

.defaultSelect .defaultSelect__option {
	font-size: 0.9rem;
	font-weight: 300;
}

.defaultSelect .defaultSelect__option img,
.defaultSelect .defaultSelect__option svg {
	height: 20px;
	margin-right: 10px;
	width: 20px;
}

.defaultSelect .defaultSelect__control {
	background-color: #0000;
	border: 0 !important;
	box-shadow: none;
	cursor: pointer;
	outline: 0;
}

.defaultSelect
	.defaultSelect__control.defaultSelect__control--menu-is-open
	.defaultSelect__single-value:after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

.defaultSelect
	.defaultSelect__control.defaultSelect__control--menu-is-open
	.defaultSelect__dropdown-indicator {
	transform: rotate(180deg);
}

.defaultSelect .defaultSelect__indicator-separator {
	display: none;
}

.defaultSelect .defaultSelect__indicator {
	color: #475774;
	color: var(--iconColor);
}

.defaultSelect .defaultSelect__dropdown-indicator {
	transition: transform 0.3s ease, color 0.3s ease;
}

.defaultSelect .defaultSelect__dropdown-indicator:hover {
	color: #677a9d;
	color: var(--textSecondary);
}

.defaultSelect .defaultSelect__menu {
	animation: selectAppear 0.3s ease both;
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background-color: rgba(25, 34, 50, 0.933);
	border-radius: 35px;
	overflow: hidden;
}

.defaultSelect .defaultSelect__menu .defaultSelect__menu-list {
	max-height: 400px;
	overflow-x: hidden;
	padding: 10px 5px;
	position: relative;
	z-index: 2;
}

@keyframes selectAppear {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.defaultSelect .defaultSelect__menu .defaultSelect__option {
	border: 2px solid #19223200;
	border-radius: 4px;
	cursor: pointer;
	margin: 6px 10px;
	padding: 10px;
	transition: border-color 0.3s ease, transform 0.6s ease;
	width: auto;
}

.defaultSelect .defaultSelect__menu .defaultSelect__option--is-focused,
.defaultSelect .defaultSelect__menu .defaultSelect__option--is-selected {
	background-color: #212f44b0;
	border-color: #293a53;
}

.defaultSelect .defaultSelect__menu .defaultSelect__option--is-focused {
	transform: translateX(3px);
}

.tournament {
	border-radius: 35px;
	display: flex;
	flex-direction: column;
	height: 400px;
	justify-content: space-between;
	opacity: 1;
	padding: 30px 60px;
	position: relative;
	transform: scale(1);
	transition: transform 1s ease, opacity 1s ease;
	width: 100%;
}

@media (max-width: 1100px) {
	.tournament {
		height: auto;
	}
	.tournament .info {
		-webkit-backdrop-filter: blur(13px);
		backdrop-filter: blur(13px);
		background: #1117253b;
		border-radius: 25px;
		margin: 35px 0;
		max-width: 700px;
		padding: 25px;
	}
	.tournament .info p {
		max-width: 100% !important;
	}
	.tournament .info .h1 {
		opacity: 1 !important;
	}
	.tournament .info .rewards span {
		color: #b0d6ff;
	}
	.tournament .character {
		right: -60px !important;
		width: 440px !important;
	}
}

@media (max-width: 900px) {
	.tournament {
		padding: 30px;
	}
	.tournament .character {
		width: 470px !important;
	}
	.tournament .active {
		border-radius: 20px !important;
		height: 95px !important;
	}
	.tournament .active.square {
		padding: 0 15px !important;
	}
	.tournament .active.square .title .h1 {
		font-size: 24px !important;
		padding: 0 !important;
	}
	.tournament .active.square .title .small {
		opacity: 1 !important;
	}
	.tournament .active .countdown .item span {
		font-size: 18px !important;
		height: 45px !important;
		width: 45px !important;
	}
	.tournament .active .countdown .item .small {
		font-size: 10px !important;
		padding-top: 5px !important;
	}
	.tournament .active .title .h1 {
		font-size: 18px !important;
	}
	.tournament .active .title .h3 {
		font-size: 12px !important;
	}
}

@media (max-width: 690px) {
	.tournament.hidden {
		opacity: 1 !important;
	}
	.tournament.hidden,
	.tournament.hidden .character {
		transform: scale(1) !important;
	}
	.tournament .info {
		border-radius: 15px !important;
		margin: 15px 0 !important;
		padding: 20px;
	}
	.tournament .info .h1 {
		font-size: 16px !important;
		font-weight: 400 !important;
		opacity: 1 !important;
	}
	.tournament .info .rewards .h2 {
		font-size: 28px;
	}
	.tournament .active {
		border-radius: 15px !important;
		height: 80px !important;
		padding: 0 15px !important;
	}
	.tournament .active.square .title .small {
		font-size: 14px !important;
	}
	.tournament .active .countdown .item span {
		font-size: 16px !important;
		height: 40px !important;
		width: 40px !important;
	}
	.tournament .active .countdown .item .small {
		font-size: 10px !important;
		padding-top: 5px !important;
	}
	.tournament .active .title .h1 {
		font-size: 16px !important;
		font-weight: 400;
	}
	.tournament .active .title .h3 {
		font-size: 12px !important;
		font-weight: 400;
	}
	.tournament .character {
		width: 400px !important;
	}
}

@media (max-width: 560px) {
	.tournament {
		padding: 25px;
	}
	.tournament .info {
		border-radius: 15px !important;
		margin: 15px 0 !important;
		padding: 20px;
	}
	.tournament .info .h1 {
		font-size: 12px !important;
	}
	.tournament .info p {
		font-size: 10px !important;
	}
	.tournament .info .rewards .h2 {
		font-size: 24px;
	}
	.tournament .active {
		height: 70px !important;
		margin-right: 10px !important;
	}
	.tournament .active:last-child {
		margin-right: 0 !important;
	}
	.tournament .active.square .title .h1 {
		font-size: 18px !important;
	}
	.tournament .active.square .title .small {
		font-size: 8px !important;
	}
	.tournament .active .countdown {
		grid-gap: 4px !important;
	}
	.tournament .active .countdown .item span {
		font-size: 12px !important;
		height: 35px !important;
		width: 35px !important;
	}
	.tournament .active .countdown .item .small {
		font-size: 8px !important;
	}
	.tournament .active .title .h1 {
		font-size: 12px !important;
		font-weight: 400;
	}
	.tournament .active .title .h3 {
		font-size: 10px !important;
		font-weight: 400;
	}
	.tournament .character {
		width: 360px !important;
	}
	.tournament .about {
		height: 45px !important;
		width: 150px !important;
		z-index: 3;
	}
}

@media (max-width: 450px) {
	.tournament {
		padding: 20px !important;
	}
	.tournament,
	.tournament:before {
		border-radius: 20px !important;
	}
	.tournament .activeBlock .square {
		display: none !important;
	}
	.tournament .character {
		right: -70px !important;
		width: 370px !important;
	}
	.tournament .backHolder {
		border-radius: 20px !important;
	}
	.tournament .about {
		height: 40px !important;
		width: 140px !important;
	}
	.tournament .about span {
		font-size: 14px;
	}
}

.tournament.hidden {
	opacity: 0.9;
	transform: scale(0.9);
}

.tournament.hidden .character {
	transform: scale(0.8);
}

.tournament:before {
	background: #1d263c;
	border-radius: 35px;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 12px;
	width: 100%;
	z-index: -3;
}

.tournament .activeBlock {
	display: flex;
	position: relative;
	z-index: 3;
}

.tournament .activeBlock .active {
	align-items: center;
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
	background: #1117253b;
	border-radius: 25px;
	display: flex;
	height: 110px;
	margin-right: 15px;
	padding: 0 25px;
}

.tournament .activeBlock .active.square {
	align-items: center;
	border-radius: 35px;
	display: flex;
	justify-content: center;
}

.tournament .activeBlock .active.square .title {
	margin-right: 0;
}

.tournament .activeBlock .active.square .title .h1 {
	font-size: 32px;
	text-align: center;
}

.tournament .activeBlock .active.square .small {
	padding-top: 5px;
}

.tournament .activeBlock .active .small {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.8;
	padding-top: 10px;
	text-align: center;
	text-shadow: 0 2px 3px #0a0d1169;
	text-transform: uppercase;
}

.tournament .activeBlock .active .title {
	font-weight: 700;
	margin-right: 15px;
	text-shadow: 0 13px 18px #172e502e;
	text-transform: uppercase;
}

.tournament .activeBlock .active .title .h3 {
	font-size: 18px;
	opacity: 0.9;
}

.tournament .activeBlock .active .title .h1 {
	font-size: 25px;
	font-weight: 700;
	padding-bottom: 5px;
	padding-top: 5px;
}

.tournament .activeBlock .active .countdown {
	grid-gap: 8px;
	display: grid;
	grid-template-columns: auto auto auto auto;
}

.tournament .activeBlock .active .countdown .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tournament .activeBlock .active .countdown .item span {
	align-items: center;
	background: #333d5040;
	border: 3px solid #ffffff1a;
	border-radius: 50%;
	display: flex;
	font-size: 25px;
	font-weight: 700;
	height: 58px;
	justify-content: center;
	width: 58px;
}

.tournament .about {
	align-items: center;
	background: linear-gradient(90deg, #005d11 0%, #00c324 100%);
	border: none;
	border-radius: 4px;
	display: flex;
	height: 50px;
	justify-content: center;
	padding: 2px;
	width: 170px;
}

.tournament .about .mainBtn {
	height: 100%;
}

.tournament .info {
	position: relative;
	z-index: 3;
}

.tournament .info .h1 {
	font-size: 19px;
	font-style: normal;
	font-weight: 700;
	opacity: 0.9;
	padding-bottom: 10px;
	text-shadow: 0 4px 8px #172e502e;
	text-transform: uppercase;
}

.tournament .info .rewards {
	color: #fff;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	text-shadow: 0 9px 13px #172e502e;
}

.tournament .info .rewards .h2 {
	display: inline-block;
	margin-right: 10px;
}

.tournament .info p {
	font-size: 12px;
	font-weight: 300;
	max-width: 530px;
	opacity: 0.8;
	padding-top: 10px;
}

.tournament .info .dates {
	font-size: 19px;
	font-weight: 500;
	padding-top: 10px;
	text-transform: uppercase;
}

.tournament .h1 {
	font-size: 28px;
	font-weight: 500;
	padding-bottom: 5px;
}

.tournament .character {
	bottom: 0;
	position: absolute;
	right: 0;
	transform-origin: bottom;
	transition: transform 1s ease;
	width: 470px;
}

.tournament .close {
	-webkit-backdrop-filter: blur(13px);
	backdrop-filter: blur(13px);
	background: #1117253b;
	border-radius: 10px;
	cursor: pointer;
	opacity: 0.8;
	padding: 5px;
	position: absolute;
	right: 25px;
	top: 25px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 15;
}

@media (max-width: 450px) {
	.tournament .close {
		right: 10px !important;
		top: 10px !important;
		width: 26px;
	}
}

.tournament .close:hover {
	opacity: 1;
	transform: scale(1.1);
}

.tournament .backHolder {
	border-radius: 35px;
	overflow: hidden;
}

.tournament .back,
.tournament .backHolder {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

.tournament .back {
	animation: backScale 40s ease infinite both;
	object-fit: cover;
}

.tournament .mainBtn {
	height: 47px;
	width: 190px;
}

.Toastify__toast-container .Toastify__toast {
	background: #0000;
	border-radius: 200px;
	color: #fff;
}

.Toastify__toast-container .Toastify__toast .Toastify__close-button {
	color: #475774;
	color: var(--lines);
	margin: auto 5px auto auto;
	opacity: 1;
}

.Toastify__toast-container .Toastify__toast .Toastify__close-button svg {
	height: 24px;
	width: 24px;
}

.Toastify__toast-container .Toastify__toast .Toastify__close-button,
.Toastify__toast-container .Toastify__toast .Toastify__toast-body {
	position: relative;
	z-index: 2;
}

.Toastify__toast-container .Toastify__toast:before {
	background: #192232;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(180deg, #192232, #192232),
		linear-gradient(180deg, #212f44 20%, #192232 47%);
	background-image: linear-gradient(to bottom, #192232, #192232),
		linear-gradient(to bottom, var(--topLine) 20%, #192232 47%);
	background-origin: border-box;
	border: 3px solid #0000;
	border-radius: 200px;
	bottom: 4px;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.Toastify__toast-container .Toastify__toast .Toastify__toast-icon {
	height: 20px;
	width: 20px;
}

.Toastify__toast-container .Toastify__toast .Toastify__toast-icon svg {
	display: none;
}

.Toastify__toast-container .Toastify__toast .Toastify__progress-bar {
	height: 50%;
	z-index: 0;
}

.Toastify__toast-container
	.Toastify__toast.Toastify__toast--success
	.Toastify__toast-icon {
	background-image: url('');
}

.Toastify__toast-container
	.Toastify__toast.Toastify__toast--success
	.Toastify__progress-bar {
	background-color: #1afc90;
}

.Toastify__toast-container
	.Toastify__toast.Toastify__toast--error
	.Toastify__toast-icon {
	background-image: url('');
}

.Toastify__toast-container
	.Toastify__toast.Toastify__toast--error
	.Toastify__progress-bar {
	background-color: #fc1a79;
}

.Toastify__toast-container
	.Toastify__toast.Toastify__toast--info
	.Toastify__toast-icon {
	background-image: url('');
}

.Toastify__toast-container
	.Toastify__toast.Toastify__toast--info
	.Toastify__progress-bar {
	background-color: #1a82fc;
}

.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
	zoom: 1;
	display: inline-block;
	display: inline;
	position: relative;
	vertical-align: middle;
	vertical-align: auto;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
	zoom: 1;
	display: inline-block;
	display: inline;
	vertical-align: middle;
	vertical-align: auto;
	visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
	bottom: 0;
	display: block;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	text-align: left;
	top: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
	display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
	-webkit-backface-visibility: hidden;
	display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
	display: block;
	-webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme
	.odometer-digit
	.odometer-value.odometer-last-value,
.odometer.odometer-theme-default
	.odometer-digit
	.odometer-value.odometer-last-value {
	position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
	transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating
	.odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating
	.odometer-ribbon-inner {
	transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating
	.odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating
	.odometer-ribbon-inner {
	transform: translateY(0);
	transition: transform 2s;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
	font-family: Inter, sans-serif;
	line-height: default;
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
	text-align: center;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: 2;
	animation-iteration-count: 2;
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
	animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: 3;
	animation-iteration-count: 3;
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
	animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-delay: calc(var(--animate-delay) * 2);
	animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-delay: calc(var(--animate-delay) * 3);
	animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation-delay: calc(var(--animate-delay) * 4);
	animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	-webkit-animation-delay: calc(var(--animate-delay) * 5);
	animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-duration: calc(var(--animate-duration) / 2);
	animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.8);
	animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-duration: calc(var(--animate-duration) * 3);
	animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
	.animate__animated {
		-webkit-animation-duration: 1ms !important;
		animation-duration: 1ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 1ms !important;
		transition-duration: 1ms !important;
	}
	.animate__animated[class*='Out'] {
		opacity: 0;
	}
}

@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
		transform: translate3d(0, -30px, 0) scaleY(1.1);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
		transform: translate3d(0, -15px, 0) scaleY(1.05);
	}
	80% {
		-webkit-transform: translateZ(0) scaleY(0.95);
		transform: translateZ(0) scaleY(0.95);
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
		transform: translate3d(0, -4px, 0) scaleY(1.02);
	}
}

@keyframes bounce {
	0%,
	20%,
	53%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
		transform: translate3d(0, -30px, 0) scaleY(1.1);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
		transform: translate3d(0, -15px, 0) scaleY(1.05);
	}
	80% {
		-webkit-transform: translateZ(0) scaleY(0.95);
		transform: translateZ(0) scaleY(0.95);
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
		transform: translate3d(0, -4px, 0) scaleY(1.02);
	}
}

.animate__bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}

@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}

.animate__flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.animate__rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shakeX {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX;
}

@-webkit-keyframes shakeY {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
}

@keyframes shakeY {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
}

.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY;
}

@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.animate__headShake {
	-webkit-animation-name: headShake;
	animation-name: headShake;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.animate__swing {
	-webkit-animation-name: swing;
	animation-name: swing;
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.animate__tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

@keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

.animate__jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animate__heartBeat {
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-duration: calc(var(--animate-duration) * 1.3);
	animation-duration: calc(var(--animate-duration) * 1.3);
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
	0% {
		opacity: 0.7;
		-webkit-transform: translateY(-1200px) scale(0.7);
		transform: translateY(-1200px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes backInDown {
	0% {
		opacity: 0.7;
		-webkit-transform: translateY(-1200px) scale(0.7);
		transform: translateY(-1200px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
	0% {
		opacity: 0.7;
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes backInLeft {
	0% {
		opacity: 0.7;
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
	0% {
		opacity: 0.7;
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes backInRight {
	0% {
		opacity: 0.7;
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight;
}

@-webkit-keyframes backInUp {
	0% {
		opacity: 0.7;
		-webkit-transform: translateY(1200px) scale(0.7);
		transform: translateY(1200px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes backInUp {
	0% {
		opacity: 0.7;
		-webkit-transform: translateY(1200px) scale(0.7);
		transform: translateY(1200px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateY(700px) scale(0.7);
		transform: translateY(700px) scale(0.7);
	}
}

@keyframes backOutDown {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateY(700px) scale(0.7);
		transform: translateY(700px) scale(0.7);
	}
}

.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
	}
}

@keyframes backOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
	}
}

.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
	}
}

@keyframes backOutRight {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
	}
}

.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateY(-700px) scale(0.7);
		transform: translateY(-700px) scale(0.7);
	}
}

@keyframes backOutUp {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		-webkit-transform: translateY(-700px) scale(0.7);
		transform: translateY(-700px) scale(0.7);
	}
}

.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.animate__bounceIn {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
		transform: translate3d(0, -3000px, 0) scaleY(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
		transform: translate3d(0, 25px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
		transform: translate3d(0, -10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
		transform: translate3d(0, 5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
		transform: translate3d(0, -3000px, 0) scaleY(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
		transform: translate3d(0, 25px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
		transform: translate3d(0, -10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
		transform: translate3d(0, 5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
		transform: translate3d(-3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0) scaleX(1);
		transform: translate3d(25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
		transform: translate3d(-10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
		transform: translate3d(5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
		transform: translate3d(-3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0) scaleX(1);
		transform: translate3d(25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
		transform: translate3d(-10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
		transform: translate3d(5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
		transform: translate3d(3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
		transform: translate3d(-25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
		transform: translate3d(10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
		transform: translate3d(-5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
		transform: translate3d(3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
		transform: translate3d(-25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
		transform: translate3d(10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
		transform: translate3d(-5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
		transform: translate3d(0, 3000px, 0) scaleY(5);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
		transform: translate3d(0, 10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
		transform: translate3d(0, -5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
		transform: translate3d(0, 3000px, 0) scaleY(5);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
		transform: translate3d(0, 10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
		transform: translate3d(0, -5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

.animate__bounceOut {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
		transform: translate3d(0, 10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
		transform: translate3d(0, 2000px, 0) scaleY(3);
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
		transform: translate3d(0, 10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
		transform: translate3d(0, 2000px, 0) scaleY(3);
	}
}

.animate__bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
		transform: translate3d(20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
		transform: translate3d(-2000px, 0, 0) scaleX(2);
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
		transform: translate3d(20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
		transform: translate3d(-2000px, 0, 0) scaleX(2);
	}
}

.animate__bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
		transform: translate3d(-20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
		transform: translate3d(2000px, 0, 0) scaleX(2);
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
		transform: translate3d(-20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
		transform: translate3d(2000px, 0, 0) scaleX(2);
	}
}

.animate__bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
		transform: translate3d(0, -10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
		transform: translate3d(0, 20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
		transform: translate3d(0, -2000px, 0) scaleY(3);
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
		transform: translate3d(0, -10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
		transform: translate3d(0, 20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
		transform: translate3d(0, -2000px, 0) scaleY(3);
	}
}

.animate__bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.animate__fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInTopLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInTopRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInBottomLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInBottomRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.animate__fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.animate__fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.animate__fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.animate__fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.animate__fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.animate__fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.animate__fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.animate__fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.animate__fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
}

@keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
}

.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
}

@keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
}

.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
}

@keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
}

.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
}

@keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
}

.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0)
			rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
	}
	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
	}
	50% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
	}
	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
			translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
			rotateY(0deg);
	}
	to {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
	}
}

@keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0)
			rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
	}
	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
	}
	50% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
	}
	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
			translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
			rotateY(0deg);
	}
	to {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
	}
}

.animate__animated.animate__flip {
	-webkit-animation-name: flip;
	animation-name: flip;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.animate__flipInX {
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInY {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.animate__flipInY {
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
	}
	to {
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
	}
	to {
		opacity: 0;
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
	}
}

.animate__flipOutX {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
	}
	to {
		opacity: 0;
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
	}
	to {
		opacity: 0;
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
	}
}

.animate__flipOutY {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes lightSpeedInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes lightSpeedInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__lightSpeedInRight {
	-webkit-animation-name: lightSpeedInRight;
	animation-name: lightSpeedInRight;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
		transform: translate3d(-100%, 0, 0) skewX(30deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: skewX(-20deg);
		transform: skewX(-20deg);
	}
	80% {
		-webkit-transform: skewX(5deg);
		transform: skewX(5deg);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes lightSpeedInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
		transform: translate3d(-100%, 0, 0) skewX(30deg);
	}
	60% {
		opacity: 1;
		-webkit-transform: skewX(-20deg);
		transform: skewX(-20deg);
	}
	80% {
		-webkit-transform: skewX(5deg);
		transform: skewX(5deg);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__lightSpeedInLeft {
	-webkit-animation-name: lightSpeedInLeft;
	animation-name: lightSpeedInLeft;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
	}
}

@keyframes lightSpeedOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
	}
}

.animate__lightSpeedOutRight {
	-webkit-animation-name: lightSpeedOutRight;
	animation-name: lightSpeedOutRight;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
	}
}

@keyframes lightSpeedOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
	}
}

.animate__lightSpeedOutLeft {
	-webkit-animation-name: lightSpeedOutLeft;
	animation-name: lightSpeedOutLeft;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	0% {
		opacity: 0;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rotateIn {
	0% {
		opacity: 0;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
	0% {
		opacity: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
	0% {
		opacity: 0;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rotateInUpRight {
	0% {
		opacity: 0;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
	}
}

@keyframes rotateOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
	}
}

.animate__rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}

@keyframes rotateOutDownRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}

.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}

@keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}

.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}

@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}

.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
	}
	40%,
	80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
	}
}

@keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
	}
	40%,
	80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
	}
}

.animate__hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: calc(var(--animate-duration) * 2);
	-webkit-animation-name: hinge;
	animation-name: hinge;
	-webkit-transform-origin: top left;
	transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1) rotate(30deg);
		transform: scale(0.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1) rotate(30deg);
		transform: scale(0.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.animate__jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}

.animate__rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

.animate__zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
}

@keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
}

.animate__zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	}
}

@keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	}
}

.animate__zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	}
}

@keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	}
}

.animate__zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
}

@keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	}
	60% {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
}

.animate__zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

.animate__zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
	}
}

@keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
	}
}

.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
	}
}

.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
	}
}

.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	-webkit-transform-origin: right center;
	transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
	}
}

@keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
	}
}

.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.animate__slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
}

.animate__slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}

.animate__slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
}

.animate__slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
}

.animate__slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}
.openModalDropdown {
	display: none;
}
.openModalDropdown.is-active {
	display: block;
}
.defaultSelect {
	display: flex !important;
	align-items: center;
	padding: 0 15px;
}
.defaultSelect .defaultSelect__control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
/*# sourceMappingURL=main.26c4fcd9.css.map*/
.section_text {
	color: var(--textSecondary);
	line-height: 26px;
}
.section_text h1 {
	font-size: 30px;
	margin: 15px 0;
	color: var(--text);
}
.section_text h2,
.section_text h3,
.section_text h4 {
	font-size: 20px;
	margin: 15px 0;
	color: var(--text);
}
.section_text p {
	margin-bottom: 10px;
}
.content ul {
	list-style: disc;
	padding: 0 0 0 20px;
}
.content ol {
	list-style: auto;
	padding: 0 0 0 20px;
}
.table {
	width: 100%;
	overflow-x: auto !important;
}
.table table {
	width: 100%;
}
.table table td {
	width: 50%;
}
.img-cov {
	width: auto;
	height: auto;
}
.img-cov img {
	width: auto;
	height: auto;
	object-fit: cover;
}

strong {
	display: block;
	font-size: 20px;
	margin: 15px 0;
	color: var(--text);
}
ul li a:hover {
	color: #32fe2b;
}

@media (max-width: 768px) {
	.img-cov img {
		width: 100%;
	}
	.mainSwiperMainPage {
		transform: translate3d(-395px, 0px, 0px) !important;
	}
}
