@import url(https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap);
: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-offset: 16px;
	--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
	--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
	--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
	--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
	--toastify-toast-background: #fff;
	--toastify-toast-min-height: 64px;
	--toastify-toast-max-height: 800px;
	--toastify-toast-bd-radius: 6px;
	--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-color-progress-bgo: 0.2;
}
.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: max(16px, env(safe-area-inset-left));
	left: var(--toastify-toast-left);
	top: max(16px, env(safe-area-inset-top));
	top: var(--toastify-toast-top);
}
.Toastify__toast-container--top-center {
	left: 50%;
	top: max(16px, env(safe-area-inset-top));
	top: var(--toastify-toast-top);
	transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
	right: max(16px, env(safe-area-inset-right));
	right: var(--toastify-toast-right);
	top: max(16px, env(safe-area-inset-top));
	top: var(--toastify-toast-top);
}
.Toastify__toast-container--bottom-left {
	bottom: max(16px, env(safe-area-inset-bottom));
	bottom: var(--toastify-toast-bottom);
	left: max(16px, env(safe-area-inset-left));
	left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
	bottom: max(16px, env(safe-area-inset-bottom));
	bottom: var(--toastify-toast-bottom);
	left: 50%;
	transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
	bottom: max(16px, env(safe-area-inset-bottom));
	bottom: var(--toastify-toast-bottom);
	right: max(16px, env(safe-area-inset-right));
	right: var(--toastify-toast-right);
}
@media only screen and (max-width: 480px) {
	.Toastify__toast-container {
		left: env(safe-area-inset-left);
		margin: 0;
		padding: 0;
		width: 100vw;
	}
	.Toastify__toast-container--top-center,
	.Toastify__toast-container--top-left,
	.Toastify__toast-container--top-right {
		top: env(safe-area-inset-top);
		transform: translateX(0);
	}
	.Toastify__toast-container--bottom-center,
	.Toastify__toast-container--bottom-left,
	.Toastify__toast-container--bottom-right {
		bottom: env(safe-area-inset-bottom);
		transform: translateX(0);
	}
	.Toastify__toast-container--rtl {
		left: auto;
		right: env(safe-area-inset-right);
	}
}
.Toastify__toast {
	--y: 0;
	border-radius: 6px;
	border-radius: var(--toastify-toast-bd-radius);
	box-shadow: 0 4px 12px #0000001a;
	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;
	touch-action: none;
	z-index: 0;
}
.Toastify__toast--stacked {
	position: absolute;
	transform: translate3d(0, var(--y), 0) scale(var(--s));
	transition: transform 0.3s;
	width: 100%;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button,
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
	transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed="false"] {
	overflow: visible;
}
.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > * {
	opacity: 0;
}
.Toastify__toast--stacked:after {
	bottom: 100%;
	content: "";
	height: calc(var(--g) * 1px);
	left: 0;
	position: absolute;
	right: 0;
}
.Toastify__toast--stacked[data-pos="top"] {
	top: 0;
}
.Toastify__toast--stacked[data-pos="bot"] {
	bottom: 0;
}
.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before {
	transform-origin: top;
}
.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before {
	transform-origin: bottom;
}
.Toastify__toast--stacked:before {
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	transform: scaleY(3);
	z-index: -1;
}
.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.5s;
	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;
	z-index: 1;
}
.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 {
	border-bottom-left-radius: 6px;
	border-bottom-left-radius: var(--toastify-toast-bd-radius);
	bottom: 0;
	height: 100%;
	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 {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 6px;
	border-bottom-right-radius: var(--toastify-toast-bd-radius);
	left: auto;
	right: 0;
	transform-origin: right;
}
.Toastify__progress-bar--wrp {
	border-bottom-left-radius: 6px;
	border-bottom-left-radius: var(--toastify-toast-bd-radius);
	bottom: 0;
	height: 5px;
	left: 0;
	position: absolute;
	width: 100%;
}
.Toastify__progress-bar--wrp[data-hidden="true"] {
	opacity: 0;
}
.Toastify__progress-bar--bg {
	height: 100%;
	opacity: 0.2;
	opacity: var(--toastify-color-progress-bgo);
	width: 100%;
}
.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, var(--y), 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, var(--y), 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, var(--y), 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, var(--y), 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, calc(var(--y) - 10px), 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, calc(var(--y) + 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, calc(var(--y) - 10px), 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, calc(var(--y) + 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: translate3d(0, var(--y), 0) 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: translate3d(0, var(--y), 0) perspective(400px);
	}
	30% {
		opacity: 1;
		transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg);
	}
	to {
		opacity: 0;
		transform: translate3d(0, var(--y), 0) 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: translate3d(0, var(--y), 0);
	}
}
@keyframes Toastify__slideInLeft {
	0% {
		transform: translate3d(-110%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, var(--y), 0);
	}
}
@keyframes Toastify__slideInUp {
	0% {
		transform: translate3d(0, 110%, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, var(--y), 0);
	}
}
@keyframes Toastify__slideInDown {
	0% {
		transform: translate3d(0, -110%, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, var(--y), 0);
	}
}
@keyframes Toastify__slideOutRight {
	0% {
		transform: translate3d(0, var(--y), 0);
	}
	to {
		transform: translate3d(110%, var(--y), 0);
		visibility: hidden;
	}
}
@keyframes Toastify__slideOutLeft {
	0% {
		transform: translate3d(0, var(--y), 0);
	}
	to {
		transform: translate3d(-110%, var(--y), 0);
		visibility: hidden;
	}
}
@keyframes Toastify__slideOutDown {
	0% {
		transform: translate3d(0, var(--y), 0);
	}
	to {
		transform: translate3d(0, 500px, 0);
		visibility: hidden;
	}
}
@keyframes Toastify__slideOutUp {
	0% {
		transform: translate3d(0, var(--y), 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-duration: 0.3s;
	animation-name: Toastify__slideOutLeft;
	animation-timing-function: ease-in;
}
.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
	animation-duration: 0.3s;
	animation-name: Toastify__slideOutRight;
	animation-timing-function: ease-in;
}
.Toastify__slide-exit--top-center {
	animation-duration: 0.3s;
	animation-name: Toastify__slideOutUp;
	animation-timing-function: ease-in;
}
.Toastify__slide-exit--bottom-center {
	animation-duration: 0.3s;
	animation-name: Toastify__slideOutDown;
	animation-timing-function: ease-in;
}
@keyframes Toastify__spin {
	0% {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(1turn);
	}
}
.PageNotFoundStyle_notfound_page__bxPp2 {
	background-color: #3d0047;
	padding: 30vh 16px;
	text-align: center;
}
.PageNotFoundStyle_notfound_page__bxPp2 h3 {
	color: #fff;
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
	.PageNotFoundStyle_notfound_page__bxPp2 h3 {
		font-size: 36px;
	}
}
.PageNotFoundStyle_notfound_page__bxPp2 p {
	color: #fff;
	font-size: 18px;
	margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
	.PageNotFoundStyle_notfound_page__bxPp2 p {
		font-size: 14px;
	}
}
.PageNotFoundStyle_notfound_page__bxPp2 a {
	color: #fff;
	text-decoration: underline;
}
/*# sourceMappingURL=main.e7cf6235.css.map*/

* {
	border: 0;
	margin: 0;
	padding: 0;
}
*,
:after,
:before {
	box-sizing: border-box;
}
:active,
:focus,
a:active,
a:focus {
	outline: none;
}
aside,
footer,
header,
nav {
	display: block;
}
body,
html {
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
	font-size: 14px;
	height: 100%;
	line-height: 1;
	width: 100%;
}
button,
input,
textarea {
	font-family: inherit;
}
input::-ms-clear {
	display: none;
}
button {
	cursor: pointer;
}
button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
a,
a:hover,
a:visited {
	text-decoration: none;
}
ul li {
	list-style: none;
}
img {
	vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}
.react-select__control {
	background-clip: padding-box, border-box !important;
	background-color: #0000 !important;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033) !important;
	background-origin: border-box !important;
	border: 1px solid #0000 !important;
	border-radius: 4px;
	color: #2c2c2c;
	font-size: 14px;
	margin: 10px 0;
	padding: 4px 6px;
	text-align: left;
	transition: border-color 0.2s;
	width: 100%;
}
.react-select__control.react-select__control--is-focused {
	border-color: #AF40E0 !important;
	box-shadow: none !important;
}
.react-select__control .react-select__single-value {
	overflow: visible !important;
}
.react-select__control .react-select__input-container,
.react-select__control .react-select__placeholder,
.react-select__control .react-select__single-value {
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 500 !important;
}
.react-select__control .react-select__value-container {
	min-height: 47px;
}
.react-select__control .react-select__input-container {
	height: 47px;
}
.react-select__control .react-select__indicator-separator {
	display: none;
}
.react-select__control .react-select__input {
	border-color: initial !important;
	box-shadow: none !important;
	height: 42px;
}
.react-select__menu {
	text-align: left;
}
.select-error .react-select__control {
	border: 2px solid red !important;
}
.input_error_massage {
	color: red;
	display: block;
	font-size: 12px;
	margin-top: -8px;
	padding-bottom: 10px;
	text-align: left;
}
.input_block {
	margin: -10px 0;
	position: relative;
	width: 100%;
}
.input_block.with_label {
	text-align: left;
}
.input_block.with_label label {
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	margin-top: 24px;
	max-width: 170px;
	width: 100%;
}
.input_block.with_label label.full {
	max-width: none;
	width: 100%;
}
.input_block.file_input {
	margin: 10px 0;
}
.input_block.file_input input {
	display: none;
}
.input_block.file_input .file_wrapper {
	align-items: center;
	display: flex;
}
.input_block.file_input .file_label {
	align-items: center;
	color: #2c2c2c;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	margin-top: 0;
	max-width: none;
	width: 100%;
}
.input_block.file_input .file_label:hover {
	cursor: pointer;
}
.input_block.file_input .file_label.loaded div {
	background-color: #30cb43;
}
.input_block.file_input .file_label div {
	background: #3d0047;
	color: #fff;
	padding: 14px 20px;
}
.input_block.file_input .file_label span {
	color: #fff;
	display: block;
	font-size: 14px;
	padding: 14px 20px 14px 10px;
}
.input_block.row {
	align-items: center;
	display: flex;
}
@media screen and (max-width: 780px) {
	.input_block.row {
		align-items: flex-start;
		flex-direction: column;
	}
}
.input_block.row label {
	margin: 0 20px 0 0;
}
@media screen and (max-width: 780px) {
	.input_block.row label {
		font-size: 14px;
		margin: 10px 0 -8px;
	}
}
.input_block.row .react-select,
.input_block.with_label .react-select {
	width: 100%;
}
.input_block input,
.input_block textarea {
	background-clip: padding-box, border-box;
	background-color: #060f0f;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin: 10px 0;
	padding: 20px 16px;
	transition: border-color 0.2s;
	width: 100%;
}
.input_block input:focus,
.input_block textarea:focus {
	border-color: #AF40E0;
}
@media screen and (max-width: 600px) {
	.input_block input,
	.input_block textarea {
		padding: 20px 10px;
	}
}
.input_block input.error,
.input_block textarea.error {
	border-color: red;
}
.input_block input::placeholder,
.input_block textarea::placeholder {
	color: #bbb;
	font-weight: 500;
}
.input_block textarea {
	resize: vertical;
}
.input_subtext {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	margin-left: 10px;
}
.password_input {
	position: relative;
}
.password_input .password_toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.2s;
}
@media screen and (max-width: 600px) {
	.password_input .password_toggle {
		width: 24px;
	}
}
.password_input .password_toggle:hover {
	cursor: pointer;
	opacity: 0.9;
}
.double_input {
	align-items: center;
	display: flex;
	margin: 10px -5px;
}
@media screen and (max-width: 600px) {
	.double_input {
		flex-direction: column;
		margin: 0;
	}
}
.double_input .input_block {
	margin-left: 5px;
	margin-right: 5px;
	width: 100%;
}
@media screen and (max-width: 600px) {
	.double_input .input_block,
	.double_input .input_block .input_block {
		margin: 0;
	}
	.double_input .input_block .react-select__control,
	.double_input .input_block input {
		margin: 5px 0;
	}
	.double_input .input_error_massage {
		margin-top: -2px;
	}
}
.checkbox_block label {
	display: block;
	padding-left: 30px;
	position: relative;
	text-align: left;
	-webkit-user-select: none;
	user-select: none;
}
.checkbox_block label,
.checkbox_block label a,
.checkbox_block label span {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}
.checkbox_block label a {
	text-decoration: underline;
}
.checkbox_block label:hover {
	cursor: pointer;
}
.checkbox_block label:after,
.checkbox_block label:before {
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	position: absolute;
}
.checkbox_block label:after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTcuMTYyIDEzLjUgMi44ODcgOS4yMjVsMS4wNjgtMS4wNjkgMy4yMDcgMy4yMDYgNi44ODEtNi44ODEgMS4wNjkgMS4wNjktNy45NSA3Ljk1WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);
	background-position: 50%;
	height: 9px;
	left: 3px;
	opacity: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.2s;
	width: 12px;
}
.checkbox_block label:before {
	border: 2px solid #AF40E0;
	border-radius: 3px;
	height: 18px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.2s;
	width: 18px;
}
.checkbox_block input {
	display: none;
}
.checkbox_block input:checked + label:after {
	opacity: 1;
}
.checkbox_block input:checked + label:before {
	background-color: #3d0047;
}
.main_button {
	background: linear-gradient(0.37turn, #AF40E0 6.13%, #b27bf0 75.52%);
	border-radius: 100px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 20.8px;
	padding: 18px 64px;
	text-align: center;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s, border-width 0.2s;
}
@media screen and (max-width: 600px) {
	.main_button {
		padding-bottom: 18px;
		padding-top: 18px;
	}
}
.main_button.center {
	display: block;
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.main_button.bordered_button {
	background-clip: padding-box;
	background: #040c0d;
	border: 2px solid #0000;
	position: relative;
}
.main_button.bordered_button:before {
	background: linear-gradient(90deg, #AF40E0, #b27bf0);
	border-radius: inherit;
	bottom: 0;
	content: "";
	left: 0;
	margin: -4px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.main_button .bordered_button:hover,
.main_button:hover {
	background: linear-gradient(177.24deg, #a785ce 2.11%, #c39fec 227.35%);
	color: #2c2c2c;
}
.main_button .bordered_button:hover:before,
.main_button:hover:before {
	display: none;
}
.main_button:active {
	background-color: #3d0047;
	border-color: #3d0047;
}
.main_button:disabled {
	background: #d3d3d3;
	border-color: #d3d3d3;
	color: #717171;
}
.main_button.blue {
	background-color: #3d0047;
	border-color: #3d0047;
}
.main_button.blue:hover {
	background-color: #ff8413;
	border-color: #ff8413;
}
.main_button.blue:active {
	background-color: #2c2c2c;
	border-color: #2c2c2c;
}
body,
html {
	overflow-x: hidden;
}
body {
	font-family: Rubik, sans-serif;
}
#root {
	background-image: url(../image/9aaf72f2bd2bf8912648.jpg);
	background-size: 100%;
}
.rc-anchor-light {
	background-color: #2c2c2c !important;
	border-color: #2c2c2c !important;
}
video {
	-webkit-user-select: none;
	user-select: none;
}
p {
	color: #232323;
	letter-spacing: 0;
	line-height: 140%;
}
a,
p,
span {
	font-size: 16px;
	font-weight: 400;
}
.container {
	margin: 0 auto;
	max-width: 1180px;
	width: 100%;
}
.full_width {
	width: 100%;
}
.row_block {
	align-items: center;
	display: flex;
}
.row_block.with_subtext input {
	min-width: 230px;
	width: 100%;
}
.table {
	display: flex;
	flex-direction: column;
}
.table.full_table {
	left: -56px;
	margin-bottom: -40px;
	position: relative;
	width: calc(100% + 112px);
}
@media screen and (max-width: 1200px) {
	.table.full_table {
		left: -16px;
		margin-bottom: -32px;
		width: calc(100% + 32px);
	}
}
.table.full_table .table_header .cell {
	font-size: 14px;
}
.table .text_wrap {
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}
.table .row {
	background-color: #eff3ff;
	display: flex;
	flex-grow: 1;
}
.table .mobile_name {
	display: none;
}
@media screen and (max-width: 1200px) {
	.table.doublerow_mobile .row {
		flex-wrap: wrap;
		margin-bottom: 16px;
	}
	.table.doublerow_mobile .table_header {
		display: none;
	}
	.table.doublerow_mobile .mobile_name {
		display: inline-block;
	}
	.table.doublerow_mobile .cell {
		align-items: center;
		display: flex;
		flex: initial;
		justify-content: space-between;
		padding: 10px 14px;
		width: 50%;
	}
	.table.doublerow_mobile .cell span {
		font-size: 14px;
	}
	.table.doublerow_mobile .cell:first-child {
		background-color: #3d0047;
		margin-bottom: 10px;
		padding: 15px 14px;
		width: 100%;
	}
	.table.doublerow_mobile .cell:first-child span {
		color: #fff;
	}
	.table.doublerow_mobile .cell:first-child span:last-child {
		color: #ff8413;
	}
}
@media screen and (max-width: 780px) {
	.table.onerow_mobile .row {
		flex-direction: column;
		margin-bottom: 32px;
	}
	.table.onerow_mobile .table_header {
		display: none;
	}
	.table.onerow_mobile .mobile_name {
		display: inline-block;
	}
	.table.onerow_mobile .cell {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 10px 14px;
		width: 100%;
	}
	.table.onerow_mobile .cell span {
		font-size: 14px;
	}
	.table.onerow_mobile .cell:first-child {
		background-color: #3d0047;
		margin-bottom: 10px;
		padding: 15px 14px;
	}
	.table.onerow_mobile .cell:first-child span {
		color: #fff;
	}
	.table.onerow_mobile .cell:first-child span:last-child {
		color: #ff8413;
	}
	.table.onerow_mobile .cell:last-child {
		margin-bottom: 10px;
	}
}
.table .table_header {
	background-color: #3d0047;
}
.table .table_header .cell {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 16px 10px;
}
.table .cell {
	color: #2c2c2c;
	flex: 1 1;
	padding: 16px 10px;
	text-align: center;
}
.table .cell span {
	font-size: 14px;
}
.table .cell img {
	max-width: 80px;
	object-fit: cover;
	object-position: center;
}
@media screen and (min-width: 1201px) {
	.table.history_table .cell {
		padding: 16px 4px;
		width: 9%;
	}
	.table.history_table .cell.long {
		min-width: 11%;
	}
}
.paginate_wrapper {
	position: relative;
}
.pagination {
	align-items: center;
	bottom: -88px;
	display: flex;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.pagination li {
	-webkit-user-select: none;
	user-select: none;
}
.pagination li a {
	background-color: #eee;
	color: #3d0047;
	font-size: 16px;
	padding: 9px 17px;
	transition: background-color 0.2s, color 0.2s;
}
.pagination li a:hover {
	color: #ff8413;
	cursor: pointer;
}
.pagination li.selected a {
	background-color: #3d0047;
	color: #fff;
}
.pagination li.next,
.pagination li.previous {
	display: none;
}
.strength_1 .item:first-child,
.strength_2 .item:first-child {
	background-color: red !important;
}
.strength_3 .item:first-child,
.strength_3 .item:nth-child(2n),
.strength_4 .item:first-child,
.strength_4 .item:nth-child(2n) {
	background-color: #ff8413 !important;
}
.strength_5 .item {
	background-color: #30cb43 !important;
}
.swiper {
	padding-bottom: 40px !important;
}
.swiper .swiper-pagination-bullets {
	bottom: 0 !important;
}
.swiper .swiper-pagination-bullet {
	background-color: #fff;
	border-radius: 50px;
	transition: width 0.2s;
}
.swiper .swiper-pagination-bullet-active {
	background-color: #AF40E0;
	width: 72px;
}
video {
	background-color: #0000;
	border-bottom: 1px solid #0000;
}
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button {
	-webkit-appearance: none;
	display: none !important;
	opacity: 0;
	visibility: hidden;
}
video::-webkit-media-controls-start-playback-button {
	-webkit-appearance: none;
	display: none !important;
	opacity: 0;
	visibility: hidden;
}
.main_banner {
	align-items: center;
	display: flex;
	height: 100vh;
	justify-content: center;
	max-height: 744px;
	padding-top: 92px;
	position: relative;
}
@media screen and (max-width: 1200px) {
	.main_banner {
		max-height: 1040px;
		padding-top: 92px;
	}
}
@media screen and (max-width: 660px) {
	.main_banner {
		max-height: 700px;
	}
}
.main_banner.img_bottom img {
	object-position: bottom;
}
.main_banner.small_banner {
	height: auto;
	padding-top: 186px;
}
.main_banner.small {
	max-height: 400px;
}
@media screen and (max-width: 1200px) {
	.main_banner.small {
		max-height: 386px;
	}
}
@media screen and (max-width: 660px) {
	.main_banner.small {
		max-height: 334px;
	}
}
.main_banner img {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: 30%;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}
.main_banner .main_content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	/* height: 100%; */
	justify-content: flex-start;
	max-width: 610px;
	padding: 0 0 40px;
	position: relative;
	width: 100%;
	z-index: 1;
}
@media screen and (max-width: 1200px) {
	.main_banner .main_content {
		max-width: 520px;
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media screen and (max-width: 660px) {
	.main_banner .main_content {
		margin-right: 16px;
		max-width: 380px;
		padding-left: 16px;
	}
}
.main_banner .main_content.small {
	max-width: 460px;
}
.main_banner .main_content h1 {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	text-align: left;
}
@media screen and (max-width: 1200px) {
	.main_banner .main_content h1 {
		font-size: 55px;
	}
}
@media screen and (max-width: 660px) {
	.main_banner .main_content h1 {
		font-size: 40px;
	}
}
.main_banner .main_content h1 b,
.main_banner .main_content h1 strong {
	color: #AF40E0;
}
.main_banner .main_content p {
	color: #fff;
	display: block;
	margin-bottom: 32px;
	padding-top: 10px;
}
@media screen and (max-width: 660px) {
	.main_banner .main_content p {
		font-size: 14px;
		margin-bottom: 16px;
	}
}
.main_banner .main_content a {
	margin-top: 40px;
}
@media screen and (max-width: 660px) {
	.main_banner .main_content a {
		margin-top: 32px;
	}
}
.main_banner.with_video {
	align-items: center;
	max-height: 100vh;
}
.main_banner.with_video .container {
	max-width: 100%;
}
.main_banner.with_video video {
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: top;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: 0;
}
.main_banner.with_video .main_content {
	background-color: #0000;
	max-width: 690px;
	padding-left: 50px;
	padding-right: 50px;
}
@media screen and (max-width: 1200px) {
	.main_banner.with_video .main_content {
		padding: 0 32px;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}
@media screen and (max-width: 660px) {
	.main_banner.with_video .main_content {
		padding: 0 16px;
	}
}
@media screen and (max-width: 440px) {
	.main_banner.with_video .main_content {
		margin: 0;
	}
}
.privacy .content {
	padding: 40px 50px 110px;
}
@media screen and (max-width: 1200px) {
	.privacy .content {
		padding: 32px 32px 72px;
	}
}
@media screen and (max-width: 660px) {
	.privacy .content {
		padding: 24px 16px 72px;
	}
}
.privacy .content_item:not(:last-child) {
	margin-bottom: 16px;
}
.privacy .item_name {
	display: inline-block;
	margin-bottom: 10px;
}
@media screen and (max-width: 660px) {
	.privacy .item_name {
		margin-bottom: 8px;
	}
}
.privacy .item_name,
.privacy .item_name .special {
	font-size: 20px;
	font-weight: 600;
	line-height: 21.6px;
}
@media screen and (max-width: 660px) {
	.privacy .item_name,
	.privacy .item_name .special {
		font-size: 18px;
	}
}
.privacy .item_name .special {
	color: #ff8413;
}
.privacy a,
.privacy li,
.privacy p,
.privacy span {
	color: #2c2c2c;
	font-size: 16px;
	line-height: 22.4px;
	margin-bottom: 4px;
}
@media screen and (max-width: 660px) {
	.privacy a,
	.privacy li,
	.privacy p,
	.privacy span {
		font-size: 14px;
	}
}
.privacy li {
	list-style: inside;
}
.privacy a {
	text-decoration: underline;
}
.accounttype .books_wrapper,
.accounttype .cfds_wrapper,
.accounttype .types_wrapper,
.books_page .books_wrapper,
.books_page .cfds_wrapper,
.books_page .types_wrapper,
.vip_page .books_wrapper,
.vip_page .cfds_wrapper,
.vip_page .types_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.accounttype .books_wrapper,
	.accounttype .cfds_wrapper,
	.accounttype .types_wrapper,
	.books_page .books_wrapper,
	.books_page .cfds_wrapper,
	.books_page .types_wrapper,
	.vip_page .books_wrapper,
	.vip_page .cfds_wrapper,
	.vip_page .types_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
	}
}
@media screen and (max-width: 660px) {
	.accounttype .books_wrapper,
	.accounttype .cfds_wrapper,
	.accounttype .types_wrapper,
	.books_page .books_wrapper,
	.books_page .cfds_wrapper,
	.books_page .types_wrapper,
	.vip_page .books_wrapper,
	.vip_page .cfds_wrapper,
	.vip_page .types_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
	}
}
.questions_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.questions_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.questions_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.questions_wrapper .types_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
	justify-content: center;
}
.questions_wrapper .types_wrapper .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 12px 24px;
	padding: 40px 20px;
	width: calc(42.333% - 24px);
}
@media screen and (max-width: 1200px) {
	.questions_wrapper .types_wrapper .item {
		padding: 40px 17px;
		width: calc(50% - 24px);
	}
}
@media screen and (max-width: 660px) {
	.questions_wrapper .types_wrapper .item {
		margin: 0 5px 10px;
		padding: 26px 10px;
		width: calc(100% - 10px);
	}
}
.questions_wrapper .types_wrapper .name {
	color: #AF40E0;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}
@media screen and (max-width: 660px) {
	.questions_wrapper .types_wrapper .name {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.questions_wrapper .types_wrapper .text {
	line-height: 18.2px;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.questions_wrapper .types_wrapper .text {
		font-size: 14px;
	}
}
.specialties_wrapper .content_wrapper {
	align-items: center;
	display: flex;
	margin-bottom: 110px;
}
@media screen and (max-width: 1200px) {
	.specialties_wrapper .content_wrapper {
		flex-direction: column;
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.specialties_wrapper .content_wrapper {
		margin-bottom: 72px;
		padding: 0 16px;
	}
}
.specialties_wrapper .left_wrapper {
	margin-left: 82px;
	width: 50%;
}
@media screen and (max-width: 1200px) {
	.specialties_wrapper .left_wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-left: 0;
		margin-top: 24px;
		max-width: none;
		width: 100%;
	}
}
.specialties_wrapper .left_wrapper .item {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	padding: 20px 20px 34px;
}
.specialties_wrapper .left_wrapper .item:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
	.specialties_wrapper .left_wrapper .item {
		padding: 20px 20px 37px;
		width: 100%;
	}
	.specialties_wrapper .left_wrapper .item:not(:last-child) {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 660px) {
	.specialties_wrapper .left_wrapper .item {
		padding: 20px;
	}
}
.specialties_wrapper .left_wrapper .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.specialties_wrapper .left_wrapper .name {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.specialties_wrapper .left_wrapper .text {
	font-weight: 500;
	line-height: 20.8px;
}
.specialties_wrapper .right_part {
	width: 50%;
}
@media screen and (max-width: 1200px) {
	.specialties_wrapper .right_part {
		width: 100%;
	}
}
.specialties_wrapper .right_part img {
	border-radius: 16px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
.liquidity_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.liquidity_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.liquidity_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.liquidity_wrapper .liquidity_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -12px;
}
.liquidity_wrapper .liquidity_container .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 12px 24px;
	padding: 40px 20px;
	text-align: center;
	width: calc(33.333% - 24px);
}
@media screen and (max-width: 1200px) {
	.liquidity_wrapper .liquidity_container .item {
		padding: 40px 17px;
		width: calc(50% - 24px);
	}
}
@media screen and (max-width: 660px) {
	.liquidity_wrapper .liquidity_container .item {
		margin: 0 16px 10px;
		padding: 26px 10px;
		width: calc(100% - 10px);
	}
}
.liquidity_wrapper .liquidity_container img {
	margin-bottom: 24px;
}
@media screen and (max-width: 660px) {
	.liquidity_wrapper .liquidity_container img {
		margin-bottom: 10px;
		max-height: 50px;
		max-width: 50px;
		object-fit: contain;
		object-position: center;
	}
}
.liquidity_wrapper .liquidity_container .name {
	color: #AF40E0;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}
@media screen and (max-width: 660px) {
	.liquidity_wrapper .liquidity_container .name {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.liquidity_wrapper .liquidity_container .text {
	line-height: 18.2px;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.liquidity_wrapper .liquidity_container .text {
		font-size: 14px;
	}
}
.benefitsstatic_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
.benefitsstatic_wrapper .content_wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .content_wrapper {
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.benefitsstatic_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.benefitsstatic_wrapper .center_part {
	width: 20%;
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .center_part {
		width: calc(50% - 46px);
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .center_part {
		margin-top: 16px;
		order: 10;
		text-align: center;
		width: 100%;
	}
}
.benefitsstatic_wrapper .center_part img {
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .center_part img {
		height: 100%;
		max-height: 480px;
		width: auto;
	}
}
.benefitsstatic_wrapper .left_part,
.benefitsstatic_wrapper .right_part {
	display: flex;
	flex-direction: column;
	width: 40%;
}
.benefitsstatic_wrapper .left_part .item,
.benefitsstatic_wrapper .right_part .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 80px 24px;
	padding: 20px 30px;
	text-align: center;
	width: calc(100% - 160px);
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .left_part .item,
	.benefitsstatic_wrapper .right_part .item {
		margin: 0;
		padding: 26px 10px;
		width: 100%;
	}
}
@media screen and (min-width: 1201px) {
	.benefitsstatic_wrapper .left_part .item:not(:last-child),
	.benefitsstatic_wrapper .right_part .item:not(:last-child) {
		margin-bottom: 50px;
	}
}
.benefitsstatic_wrapper .left_part .item img,
.benefitsstatic_wrapper .right_part .item img {
	margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .left_part .item img,
	.benefitsstatic_wrapper .right_part .item img {
		max-height: 70px;
		max-width: 70px;
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .left_part .item img,
	.benefitsstatic_wrapper .right_part .item img {
		height: 50px;
		margin-bottom: 10px;
		object-fit: contain;
		object-position: center;
		width: 50px;
	}
}
.benefitsstatic_wrapper .left_part .item .text,
.benefitsstatic_wrapper .right_part .item .text {
	line-height: 18.2px;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .left_part .item .text,
	.benefitsstatic_wrapper .right_part .item .text {
		font-size: 14px;
	}
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .left_part {
		margin-right: 66px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .left_part {
		margin: 0 5px;
		order: 1;
		width: calc(50% - 10px);
	}
}
.benefitsstatic_wrapper .left_part .item:nth-of-type(2) {
	margin-left: 0;
	margin-right: 160px;
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .left_part .item:nth-of-type(2) {
		margin: 0 0 10px;
	}
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .left_part .item {
		margin: 0 0 16px;
		width: 100%;
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .left_part .item {
		margin: 0 0 10px;
	}
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .right_part {
		display: flex;
		flex-direction: row;
		margin: 0 -10px;
		width: 100%;
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .right_part {
		flex-direction: column;
		margin: 0 5px;
		order: 1;
		width: calc(50% - 10px);
	}
}
.benefitsstatic_wrapper .right_part .item:nth-of-type(2) {
	margin-left: 160px;
	margin-right: 0;
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .right_part .item:nth-of-type(2) {
		display: none;
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .right_part .item:nth-of-type(2) {
		display: flex;
		margin: 0 0 10px;
	}
}
@media screen and (max-width: 1200px) {
	.benefitsstatic_wrapper .right_part .item {
		margin: 0 10px;
		width: 50%;
	}
}
@media screen and (max-width: 660px) {
	.benefitsstatic_wrapper .right_part .item {
		margin: 0 0 10px;
		width: 100%;
	}
}
.partnership_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.partnership_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.partnership_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.partnership_wrapper .partnership_container {
	align-items: center;
	display: flex;
	margin: 0 -12px;
}
@media screen and (max-width: 660px) {
	.partnership_wrapper .partnership_container {
		flex-direction: column;
		margin: 0;
	}
}
.partnership_wrapper .partnership_container .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 12px;
	padding: 32px 24px;
	text-align: center;
	width: calc(50% - 24px);
}
@media screen and (max-width: 660px) {
	.partnership_wrapper .partnership_container .item {
		margin: 0;
		width: 100%;
	}
	.partnership_wrapper .partnership_container .item:not(:last-child) {
		margin-bottom: 24px;
	}
}
.partnership_wrapper .partnership_container .item img {
	display: block;
	margin-bottom: 24px;
}
.partnership_wrapper .partnership_container .item .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}
.partnership_wrapper .partnership_container .item li {
	color: #fff;
	font-weight: 500;
	line-height: 20.8px;
	list-style: inside;
}
.partnership_wrapper .partnership_container .item li::marker {
	margin-right: 2px;
}
.partnership_wrapper .partnership_container .item ul {
	margin-bottom: 24px;
}
.acquisition_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.acquisition_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.acquisition_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.acquisition_wrapper .content_wrapper {
	display: flex;
	margin: 0 -12px;
}
@media screen and (max-width: 1200px) {
	.acquisition_wrapper .content_wrapper {
		flex-direction: column;
		margin: 0;
	}
}
.acquisition_wrapper .left_part,
.acquisition_wrapper .right_part {
	margin: 0 12px;
	width: calc(50% - 24px);
}
@media screen and (max-width: 1200px) {
	.acquisition_wrapper .left_part,
	.acquisition_wrapper .right_part {
		margin: 0;
		width: 100%;
	}
	.acquisition_wrapper .left_part {
		margin-bottom: 24px;
	}
}
.acquisition_wrapper h4 {
	color: #fff;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.acquisition_wrapper h4 {
		font-size: 20px;
		margin-bottom: 8px;
	}
}
@media screen and (max-width: 660px) {
	.acquisition_wrapper h4 {
		font-size: 18px;
	}
}
.acquisition_wrapper h4 strong {
	color: #AF40E0;
}
.acquisition_wrapper p {
	display: block;
	font-weight: 500;
	margin-bottom: 22px;
}
@media screen and (max-width: 1200px) {
	.acquisition_wrapper p {
		margin-bottom: 16px;
	}
}
@media screen and (max-width: 660px) {
	.acquisition_wrapper p {
		font-size: 14px;
	}
}
.acquisition_wrapper p strong {
	color: #AF40E0;
	font-weight: 500;
}
.acquisition_wrapper img {
	border-radius: 10px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.acquisition_wrapper img {
		max-height: 350px;
	}
}
@media screen and (max-width: 660px) {
	.acquisition_wrapper img {
		max-height: 250px;
	}
}
.affiliate_wrapper .liquidity_container .item {
	padding: 18px 20px;
}
@media screen and (max-width: 660px) {
	.affiliate_wrapper .liquidity_container .item {
		margin: 0 10px 24px;
		padding: 27px 10px;
		width: calc(50% - 20px);
	}
}
.become_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.become_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.become_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.become_wrapper .content_wrapper {
	align-items: stretch;
	display: flex;
}
@media screen and (max-width: 1200px) {
	.become_wrapper .content_wrapper {
		flex-direction: column;
	}
}
.become_wrapper .content_wrapper .left_wrapper {
	margin-right: 24px;
	max-width: 510px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.become_wrapper .content_wrapper .left_wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 8px;
		margin-right: 0;
		max-width: none;
	}
}
.become_wrapper .content_wrapper .left_wrapper .item {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	padding: 20px 16px;
	position: relative;
}
.become_wrapper .content_wrapper .left_wrapper .item:before {
	bottom: 10px;
	color: #AF40E04d;
	content: "02";
	font-size: 70px;
	font-weight: 700;
	position: absolute;
	right: 16px;
}
@media screen and (max-width: 600px) {
	.become_wrapper .content_wrapper .left_wrapper .item:before {
		font-size: 55px;
	}
}
.become_wrapper .content_wrapper .left_wrapper .item:first-of-type:before {
	content: "01";
}
.become_wrapper .content_wrapper .left_wrapper .item:nth-of-type(3):before {
	content: "03";
}
.become_wrapper .content_wrapper .left_wrapper .item:nth-of-type(4):before {
	content: "04";
}
.become_wrapper .content_wrapper .left_wrapper .item:last-child:before {
	content: "05";
}
.become_wrapper .content_wrapper .left_wrapper .item:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
	.become_wrapper .content_wrapper .left_wrapper .item {
		margin: 0 0 16px;
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.become_wrapper .content_wrapper .left_wrapper .item {
		padding: 25px 16px;
		width: 100%;
	}
}
.become_wrapper .content_wrapper .left_wrapper .text {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 20.8px;
	margin-bottom: 16px;
}
.become_wrapper .content_wrapper .left_wrapper img {
	height: 50px;
	object-fit: contain;
	object-position: center;
	width: 50px;
}
@media screen and (max-width: 600px) {
	.become_wrapper .content_wrapper .left_wrapper img {
		height: 40px;
		width: 40px;
	}
}
.become_wrapper .content_wrapper .right_part {
	width: 100%;
}
.become_wrapper .content_wrapper .right_part img {
	border-radius: 16px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.become_wrapper .content_wrapper .right_part img {
		max-height: 350px;
	}
}
@media screen and (max-width: 600px) {
	.become_wrapper .content_wrapper .right_part img {
		max-height: 300px;
	}
	.disclaimer_wrapper.partners_wrapper .content {
		margin-right: 20px;
		padding-left: 20px;
	}
}
.disclaimer_wrapper.partners_wrapper .content .name,
.disclaimer_wrapper.partners_wrapper .content a {
	margin-bottom: 24px;
}
.disclaimer_wrapper.partners_wrapper .content .text {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
}
.dashlinks_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.dashlinks_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.dashlinks_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.dashlinks_wrapper .content_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -13px;
}
@media screen and (max-width: 1200px) {
	.dashlinks_wrapper .content_wrapper {
		justify-content: center;
	}
}
.dashlinks_wrapper .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 13px 26px;
	padding: 32px 24px 50px;
	text-align: center;
	width: calc(33.333% - 26px);
}
@media screen and (max-width: 1200px) {
	.dashlinks_wrapper .item {
		width: calc(50% - 26px);
	}
}
@media screen and (max-width: 660px) {
	.dashlinks_wrapper .item {
		margin: 0 13px 20px;
		padding: 20px 24px;
		width: calc(100% - 26px);
	}
}
.dashlinks_wrapper .item img {
	display: block;
	height: 70px;
	margin-bottom: 24px;
	object-fit: contain;
	object-position: center;
	width: 70px;
}
@media screen and (max-width: 660px) {
	.dashlinks_wrapper .item img {
		height: 50px;
		width: 50px;
	}
}
.dashlinks_wrapper .item .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}
@media screen and (max-width: 660px) {
	.dashlinks_wrapper .item .name {
		font-size: 18px;
	}
}
.dashlinks_wrapper .item .text {
	font-weight: 500;
	line-height: 20.8px;
}
@media screen and (max-width: 660px) {
	.dashlinks_wrapper .item .text {
		font-size: 14px;
	}
}
.guidelines_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.guidelines_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.guidelines_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.guidelines_wrapper.small {
	margin-top: -16px;
}
.guidelines_wrapper .item {
	margin-bottom: 24px;
}
@media screen and (max-width: 660px) {
	.guidelines_wrapper .item {
		margin-bottom: 20px;
	}
}
.guidelines_wrapper h4 {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.guidelines_wrapper h4 {
		font-size: 20px;
	}
}
@media screen and (max-width: 660px) {
	.guidelines_wrapper h4 {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.guidelines_wrapper p {
	font-weight: 500;
	line-height: 20.8px;
}
@media screen and (max-width: 660px) {
	.guidelines_wrapper p {
		font-size: 14px;
	}
}
.typestable_wrapper {
	display: flex;
	margin-bottom: 110px;
	margin-top: 80px;
	text-align: center;
}
@media screen and (min-width: 1201px) {
	.typestable_wrapper {
		background-clip: padding-box, border-box;
		background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
		background-origin: border-box;
		border: 1px solid #0000;
		border-radius: 16px 16px 0 0;
	}
}
@media screen and (max-width: 1200px) {
	.typestable_wrapper {
		flex-direction: column;
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.typestable_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.typestable_wrapper .item {
	width: 20%;
}
@media screen and (max-width: 1200px) {
	.typestable_wrapper .item {
		background-clip: padding-box, border-box;
		background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
		background-origin: border-box;
		border: 1px solid #0000;
		border-radius: 16px;
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 40px;
		width: 100%;
	}
}
.typestable_wrapper .block {
	align-items: center;
	border: 1px solid #ffffff3d;
	display: flex;
	font-weight: 500;
	justify-content: center;
	line-height: 20.8px;
	min-height: 108px;
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.typestable_wrapper .block {
		min-height: 70px;
		padding: 2px 5px;
		width: 33.333%;
	}
}
@media screen and (max-width: 660px) {
	.typestable_wrapper .block {
		font-size: 14px;
		min-height: 74px;
		width: 50%;
	}
}
.typestable_wrapper .block.tablet {
	color: #0000;
}
@media screen and (min-width: 1201px) {
	.typestable_wrapper .block.tablet {
		display: none;
	}
}
@media screen and (max-width: 660px) {
	.typestable_wrapper .block.tablet {
		display: none;
	}
}
.typestable_wrapper .block.tablet.mobile {
	color: #0000;
}
@media screen and (max-width: 660px) {
	.typestable_wrapper .block.tablet.mobile {
		display: flex;
	}
}
.typestable_wrapper .block.desk {
	color: #0000;
}
@media screen and (max-width: 660px) {
	.typestable_wrapper .block.desk {
		display: none;
	}
	.typestable_wrapper .block.button {
		width: 100%;
	}
}
.typestable_wrapper .block.name {
	color: #AF40E0;
	font-size: 22px;
	font-weight: 700;
}
@media screen and (max-width: 1200px) {
	.typestable_wrapper .block.name {
		width: 100%;
	}
}
@media screen and (max-width: 660px) {
	.typestable_wrapper .block.name {
		font-size: 20px;
	}
}
.specialbonus_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.specialbonus_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.specialbonus_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.specialbonus_wrapper .content_wrapper {
	display: flex;
	margin: 0 -11px;
}
@media screen and (max-width: 660px) {
	.specialbonus_wrapper .content_wrapper {
		flex-direction: column;
		margin: 0;
	}
}
.specialbonus_wrapper .content_wrapper .left_part,
.specialbonus_wrapper .content_wrapper .right_part {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 11px;
	padding: 40px 20px;
	text-align: center;
	width: calc(50% - 22px);
}
@media screen and (max-width: 660px) {
	.specialbonus_wrapper .content_wrapper .left_part,
	.specialbonus_wrapper .content_wrapper .right_part {
		margin: 0 0 20px;
		width: 100%;
	}
}
.specialbonus_wrapper .content_wrapper .left_part .name,
.specialbonus_wrapper .content_wrapper .right_part .name {
	display: block;
	font-size: 22px;
	font-weight: 700;
}
.specialbonus_wrapper .content_wrapper .left_part .count,
.specialbonus_wrapper .content_wrapper .right_part .count {
	color: #AF40E0;
	display: block;
	font-weight: 700;
}
.specialbonus_wrapper .content_wrapper .left_part .name {
	margin-bottom: 21px;
}
.specialbonus_wrapper .content_wrapper .left_part img {
	display: block;
	margin-bottom: 51px;
	max-width: 216px;
	width: 100%;
}
.specialbonus_wrapper .content_wrapper .left_part .count {
	font-size: 22px;
	margin-bottom: 16px;
}
.specialbonus_wrapper .content_wrapper .left_part .text {
	display: block;
	font-weight: 500;
	margin-bottom: 24px;
}
.specialbonus_wrapper .content_wrapper .right_part .name {
	margin-bottom: 16px;
}
.specialbonus_wrapper .content_wrapper .right_part .count {
	border-bottom: 2px solid #AF40E0;
	display: block;
	font-size: 40px;
	margin-bottom: 24px;
	max-width: 350px;
	padding-bottom: 16px;
	width: 100%;
}
.specialbonus_wrapper .content_wrapper .right_part .text {
	display: block;
	font-size: 18px;
	margin-bottom: 60px;
	max-width: 350px;
}
.specialbonus_wrapper .content_wrapper .right_part ul {
	margin-bottom: 38px;
}
.specialbonus_wrapper .content_wrapper .right_part ul li {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	text-align: left;
}
.specialbonus_wrapper .content_wrapper .right_part ul li img {
	margin-right: 13px;
}
.specialbonus_wrapper .content_wrapper .right_part .subtext {
	color: #AF40E0;
	display: block;
	font-size: 14px;
	max-width: 350px;
}
.examplestable_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.examplestable_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.examplestable_wrapper .slide_wrapper {
	margin-bottom: 16px;
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper .slide_wrapper {
		left: -16px;
		margin-left: 16px;
		overflow-x: auto;
		padding-right: 16px;
		position: relative;
		width: 100vw;
	}
}
.examplestable_wrapper .content_wrapper {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px 16px 0 0;
	display: flex;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper .content_wrapper {
		flex-direction: column;
		min-width: -webkit-max-content;
		min-width: max-content;
	}
}
.examplestable_wrapper .item {
	width: 25%;
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper .item {
		align-items: center;
		display: flex;
		width: -webkit-max-content;
		width: max-content;
	}
}
.examplestable_wrapper .block {
	align-items: center;
	border: 1px solid #ffffff3d;
	display: flex;
	font-weight: 500;
	justify-content: center;
	line-height: 20.8px;
	min-height: 90px;
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper .block {
		font-size: 14px;
		min-height: 74px;
		width: 170px;
	}
}
.examplestable_wrapper .block.name {
	color: #AF40E0;
	font-size: 22px;
	font-weight: 700;
}
@media screen and (max-width: 1200px) {
	.examplestable_wrapper .block.name {
		font-size: 18px;
	}
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper .block.name {
		font-size: 16px;
	}
}
.examplestable_wrapper .subinfo_wrapper {
	margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
	.examplestable_wrapper .subinfo_wrapper {
		margin-bottom: 24px;
	}
}
@media screen and (max-width: 660px) {
	.examplestable_wrapper .subinfo_wrapper {
		margin-bottom: 16px;
	}
}
.examplestable_wrapper .subinfo_wrapper p {
	display: block;
	font-size: 14px;
	font-weight: 500;
}
.examplestable_wrapper .subinfo_wrapper p:not(:last-child) {
	margin-bottom: 6px;
}
.examplestable_wrapper .main_button {
	display: block;
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.books_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.books_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.books_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.books_wrapper .content_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -11px;
}
@media screen and (max-width: 660px) {
	.books_wrapper .content_wrapper {
		flex-direction: column;
		margin: 0;
	}
}
.books_wrapper .content_wrapper .item {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	margin: 0 11px 20px;
	padding: 40px;
	width: calc(50% - 22px);
}
@media screen and (max-width: 1200px) {
	.books_wrapper .content_wrapper .item {
		padding: 32px 24px;
	}
}
@media screen and (max-width: 660px) {
	.books_wrapper .content_wrapper .item {
		margin: 0 0 20px;
		padding: 24px 16px;
		width: 100%;
	}
}
.books_wrapper .content_wrapper img {
	border-radius: 12px;
	display: block;
	height: 180px;
	margin: 0 auto 32px;
	object-fit: cover;
	object-position: center;
	width: 202px;
}
@media screen and (max-width: 1200px) {
	.books_wrapper .content_wrapper img {
		height: 170px;
		width: 190px;
	}
}
@media screen and (max-width: 660px) {
	.books_wrapper .content_wrapper img {
		height: 150px;
		width: 170px;
	}
}
.books_wrapper .content_wrapper .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.books_wrapper .content_wrapper .name {
		font-size: 20px;
	}
}
@media screen and (max-width: 660px) {
	.books_wrapper .content_wrapper .name {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.books_wrapper .content_wrapper .author_name {
	color: #AF40E0;
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}
.books_wrapper .content_wrapper p {
	display: block;
	font-weight: 500;
	margin-bottom: 6px;
}
.books_wrapper .content_wrapper ul li {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	list-style: inside;
	margin-bottom: 4px;
}
.partners_wrapper.reghere_wrapper {
	padding: 65px 40px;
}
.partners_wrapper.reghere_wrapper .content .name {
	margin-bottom: 24px;
}
.partners_wrapper.reghere_wrapper .content .actions_wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}
@media screen and (max-width: 660px) {
	.partners_wrapper.reghere_wrapper .content .actions_wrapper {
		flex-direction: column;
		margin-bottom: 14px;
	}
}
.partners_wrapper.reghere_wrapper .content .actions_wrapper .main_button {
	margin: 0 12px;
}
@media screen and (max-width: 660px) {
	.partners_wrapper.reghere_wrapper .content .actions_wrapper .main_button {
		margin: 0 0 10px;
	}
}
.partners_wrapper.reghere_wrapper .content .text {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
	text-align: left;
}
@media screen and (max-width: 660px) {
	.partners_wrapper.reghere_wrapper .content .text {
		font-size: 14px;
	}
}
.partners_wrapper.reghere_wrapper .content .text span {
	color: #AF40E0;
}
.withdrawal_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.withdrawal_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.withdrawal_wrapper.small {
	margin-top: -16px;
}
.withdrawal_wrapper .content_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}
@media screen and (max-width: 1200px) {
	.withdrawal_wrapper .content_wrapper {
		margin: 0 -10px;
	}
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper .content_wrapper {
		margin: 0;
	}
}
.withdrawal_wrapper .item {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	margin: 0 12px 48px;
	padding: 24px 40px 32px;
	width: calc(33.333% - 24px);
}
@media screen and (max-width: 1200px) {
	.withdrawal_wrapper .item {
		margin: 0 10px 32px;
		padding: 24px 30px 32px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper .item {
		margin: 0 0 24px;
		padding: 24px 37px;
		width: 100%;
	}
}
.withdrawal_wrapper .name {
	color: #AF40E0;
	display: block;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.withdrawal_wrapper .name {
		font-size: 24px;
	}
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper .name {
		font-size: 22px;
	}
}
.withdrawal_wrapper .subname {
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.withdrawal_wrapper .subname {
		font-size: 20px;
	}
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper .subname {
		font-size: 18px;
	}
}
.withdrawal_wrapper .table_item {
	border-bottom: 1px solid #ffffff3d;
	display: flex;
	margin: 0 -12px 32px;
	padding: 0 0 10px;
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper .table_item {
		margin-bottom: 20px;
	}
}
.withdrawal_wrapper .table_item:last-child {
	border-bottom: initial;
	margin-bottom: 0;
}
.withdrawal_wrapper .table_item .left,
.withdrawal_wrapper .table_item .right {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin: 0 12px;
	width: 50%;
}
@media screen and (max-width: 660px) {
	.withdrawal_wrapper .table_item .left,
	.withdrawal_wrapper .table_item .right {
		font-size: 16px;
	}
}
.cryptocurrency_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.cryptocurrency_wrapper {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.cryptocurrency_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.cryptocurrency_wrapper .content_block,
.cryptocurrency_wrapper .content_wrapper {
	display: flex;
	margin: 0 -6px;
}
@media screen and (max-width: 1200px) {
	.cryptocurrency_wrapper .content_block,
	.cryptocurrency_wrapper .content_wrapper {
		flex-direction: column-reverse;
		margin: 0;
	}
}
.cryptocurrency_wrapper .content_block {
	align-items: center;
}
.cryptocurrency_wrapper .left_part,
.cryptocurrency_wrapper .right_part {
	margin: 0 6px;
	width: 50%;
}
@media screen and (max-width: 1200px) {
	.cryptocurrency_wrapper .left_part,
	.cryptocurrency_wrapper .right_part {
		margin: 0;
		width: 100%;
	}
}
.cryptocurrency_wrapper .left_part p {
	font-weight: 500;
}
@media screen and (max-width: 660px) {
	.cryptocurrency_wrapper .left_part p {
		font-size: 14px;
	}
}
@media screen and (max-width: 1200px) {
	.cryptocurrency_wrapper .right_part {
		margin-bottom: 16px;
	}
}
.cryptocurrency_wrapper .right_part img {
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.cryptocurrency_wrapper .right_part img {
		border-radius: 16px;
		max-height: 350px;
	}
}
.market-table {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.market-table {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.market-table {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.table-wrapper {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	max-width: 100%;
	padding: 24px 50px 40px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.table-wrapper {
		font-size: 16px;
		font-weight: 500;
		padding: 16px 16px 56px;
	}
}
@media screen and (max-width: 660px) {
	.table-wrapper {
		font-size: 14px;
		padding: 16px 16px 44px;
	}
}
.table-wrapper .table-wrapper__inner {
	overflow-x: auto;
	overflow-y: hidden;
}
.table-wrapper .table {
	max-width: 100%;
	overflow-x: hidden;
	width: 100%;
}
.table-wrapper tr {
	flex-grow: 1;
	width: 100%;
}
.table-wrapper th {
	color: #AF40E0;
}
.table-wrapper td,
.table-wrapper th {
	padding: 20px 0;
	width: 12.5%;
}
.table-wrapper td.big,
.table-wrapper th.big {
	width: 20%;
}
.table-wrapper td.grow,
.table-wrapper th.grow {
	color: #30cb43;
}
.table-wrapper td.fall,
.table-wrapper th.fall {
	color: red;
}
@media screen and (max-width: 1200px) {
	.table-wrapper td,
	.table-wrapper th {
		text-wrap: nowrap;
		min-width: -webkit-max-content;
		min-width: max-content;
		padding: 20px 8px;
		width: 12.5%;
		width: -webkit-max-content;
		width: max-content;
	}
}
@media screen and (max-width: 660px) {
	.table-wrapper td,
	.table-wrapper th {
		padding: 12px 8px;
	}
}
.table-wrapper td a,
.table-wrapper th a {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin: 0 5px;
	transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
	.table-wrapper td a,
	.table-wrapper th a {
		font-size: 16px;
		font-weight: 500;
	}
}
@media screen and (max-width: 660px) {
	.table-wrapper td a,
	.table-wrapper th a {
		font-size: 14px;
	}
}
.table-wrapper td a:hover,
.table-wrapper th a:hover {
	color: #AF40E0;
	cursor: pointer;
}
header {
	align-items: center;
	-webkit-backdrop-filter: blur(40px);
	backdrop-filter: blur(40px);
	background-color: #141414;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 24px 50px 16px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 20;
}
@media screen and (max-width: 1200px) {
	header {
		padding: 52px 32px 24px;
	}
}
@media screen and (max-width: 600px) {
	header {
		padding: 24px 16px 24px;
	}
}
header .HeaderStyle_header_wrapper__t8OtC {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
header .HeaderStyle_container__47Tjb {
	max-width: 100%;
}
header .HeaderStyle_logo__lkBVj {
	display: inline-block;
	margin-right: 20px;
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_logo__lkBVj {
		margin-right: 10px;
	}
}
header .HeaderStyle_logo__lkBVj img {
	height: 44px;
	object-fit: contain;
	object-position: center;
	width: 100px;
}
header .HeaderStyle_burger_menu__7E8Ld svg {
	fill: #AF40E0;
	transition: fill 0.2s;
}
header .HeaderStyle_burger_menu__7E8Ld:hover {
	cursor: pointer;
}
header .HeaderStyle_burger_menu__7E8Ld:hover svg {
	fill: #AF40E0;
}

header .HeaderStyle_navigation__faWRK,
header nav {
	align-items: flex-start;
	background-color: #141414;
	border-left: 1px solid #AF40E0;
	display: flex;
	flex-direction: column;
	height: calc(100vh - 92px);
	justify-content: flex-start;
	max-width: 250px;
	overflow-y: auto;
	padding: 40px 46px 40px 32px;
	position: fixed;
	right: 0;
	top: 92px;
	transform: translateX(100%);
	transition: transform 0.3s;
	width: 100%;
	z-index: 10;
}
header .HeaderStyle_navigation__faWRK.HeaderStyle_active__mu4OW,
header nav.HeaderStyle_active__mu4OW {
	transform: translateX(0);
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_navigation__faWRK,
	header nav {
		height: calc(100vh - 120px);
		top: 120px;
	}
}
.HeaderStyle_navigation__faWRK {
	display: none;
}
header .HeaderStyle_action_wrapper__dH01V,
header .HeaderStyle_menu_wrapper__eXfoc {
	align-items: flex-start;
	flex-direction: column;
}
header .HeaderStyle_menu_wrapper__eXfoc {
	margin: 0 auto;
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_menu_wrapper__eXfoc {
		margin: 0 0 16px;
		width: 100%;
	}
}
header .HeaderStyle_account_logo__fW4Y6 {
	fill: #AF40E0;
}
header .HeaderStyle_account_logo__fW4Y6 svg {
	width: 34px;
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_account_logo__fW4Y6,
	header .HeaderStyle_navigation__faWRK {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_navigation__faWRK {
		border-left: initial;
		border-right: 1px solid #AF40E0;
		left: 0;
		max-width: 375px;
		padding: 32px;
		right: auto;
		transform: translateX(-100%);
	}
	header .HeaderStyle_navigation__faWRK span {
		font-weight: 500;
	}
	header .HeaderStyle_navigation__faWRK a {
		padding: 12px 0 !important;
	}
}
@media screen and (max-width: 375px) {
	header .HeaderStyle_navigation__faWRK {
		border-right: initial;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_action_wrapper__dH01V {
		width: 100%;
	}
}
header .HeaderStyle_item_wrapper__ZvkUG {
	position: relative;
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_item_wrapper__ZvkUG:hover .HeaderStyle_subitems_wrapper__Gq1cp {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_item_wrapper__ZvkUG {
		width: 100%;
	}
}
header a {
	color: #fff;
}
header .HeaderStyle_nav_item__\+74we,
header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 18px;
	font-weight: 600;
	justify-content: space-between;
	margin: 0;
	padding: 16px 0;
	transition: color 0.2s;
	width: 100%;
}
header .HeaderStyle_nav_item__\+74we.HeaderStyle_active__mu4OW,
header .HeaderStyle_nav_item__\+74we:hover,
header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt.HeaderStyle_active__mu4OW,
header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt:hover {
	color: #AF40E0;
	cursor: pointer;
}
header .HeaderStyle_nav_item__\+74we.HeaderStyle_active__mu4OW,
header .HeaderStyle_nav_item__\+74we.HeaderStyle_active__mu4OW svg,
header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt.HeaderStyle_active__mu4OW svg {
	fill: #AF40E0;
	/* transform: rotate(180deg); */
}
@media screen and (max-width: 600px) {
	header .HeaderStyle_nav_item__\+74we,
	header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt {
		font-size: 18px;
	}
}
header .HeaderStyle_nav_item__\+74we svg,
header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt svg {
	fill: #fff;
	margin: 2px 0 0 4px;
	min-height: 6px;
	min-width: 10px;
	transition: transform 0.2s, fill 0.2s;
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_nav_item__\+74we svg,
	header .HeaderStyle_navigation__faWRK .HeaderStyle_item__ryTIt svg {
		margin-top: 0;
	}
}
header .HeaderStyle_subitems_wrapper__Gq1cp {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}
header .HeaderStyle_subitems_wrapper__Gq1cp.HeaderStyle_active__mu4OW {
	max-height: 500px;
	transition: max-height 0.4s ease-in-out;
}
header .HeaderStyle_subitems_wrapper__Gq1cp a {
	color: #fff;
	display: block;
	line-height: 20.8px;
	padding: 4px 0;
	transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_subitems_wrapper__Gq1cp a {
		font-size: 18px;
		padding: 5px 0;
	}
	header .HeaderStyle_subitems_wrapper__Gq1cp a:first-child {
		padding-top: 0;
	}
	header .HeaderStyle_subitems_wrapper__Gq1cp a:last-child {
		padding-bottom: 16px;
	}
}
@media screen and (max-width: 600px) {
	header .HeaderStyle_subitems_wrapper__Gq1cp a {
		font-size: 16px;
	}
}
header .HeaderStyle_subitems_wrapper__Gq1cp a:hover {
	color: #AF40E0;
	cursor: pointer;
}
header .HeaderStyle_account_buttons__VTEGL {
	align-items: center;
	display: flex;
	margin-left: auto;
	margin-right: 35px;
}
@media screen and (max-width: 600px) {
	header .HeaderStyle_account_buttons__VTEGL {
		margin-right: 0;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_account_buttons__VTEGL.HeaderStyle_mobile__plPkE {
		display: none;
	}
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_account_buttons__VTEGL.HeaderStyle_desktop__pC6SG {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_account_buttons__VTEGL.HeaderStyle_desktop__pC6SG {
		flex-direction: column;
		width: 100%;
	}
	header .HeaderStyle_account_buttons__VTEGL.HeaderStyle_desktop__pC6SG .HeaderStyle_account_button__R7Mav {
		margin: 14px 0 2px;
		width: 100%;
	}
}
header .HeaderStyle_account_button__R7Mav {
	display: block;
	font-size: 14px;
	margin: 0 5px;
	padding: 14px 32px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_account_button__R7Mav {
		padding: 14px 4px;
	}
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_lang_wrapper__5yxo9.HeaderStyle_mobile__plPkE {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_lang_wrapper__5yxo9.HeaderStyle_desktop__pC6SG {
		display: none;
	}
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_lang_wrapper__5yxo9 {
		margin-right: 16px;
		position: relative;
	}
	header .HeaderStyle_lang_wrapper__5yxo9:hover {
		cursor: pointer;
	}
	header .HeaderStyle_lang_wrapper__5yxo9:hover .HeaderStyle_lang_list__Zp0TT {
		border-color: #AF40E0;
		opacity: 1;
		visibility: visible;
		z-index: 10;
	}
	header .HeaderStyle_lang_wrapper__5yxo9:hover span {
		color: #AF40E0;
	}
	header .HeaderStyle_lang_wrapper__5yxo9:hover svg {
		fill: #AF40E0;
		transform: rotate(180deg);
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_lang_wrapper__5yxo9 {
		width: 100%;
	}
}
header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_icon__LbyP7 {
	margin-right: 6px;
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT {
		background-color: #323232;
		border: 1px solid #AF40E0;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		left: -1px;
		opacity: 0;
		position: absolute;
		top: 100%;
		transition: opacity 0.2s, visibility 0.2s, border-color 0.2s;
		visibility: hidden;
		width: calc(100% + 2px);
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT {
		bottom: -84px;
		display: flex;
		justify-content: space-around;
		margin-top: 32px;
		width: 100%;
	}
}
header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT span {
	color: #fff;
	display: block;
	padding: 10px 4px;
	text-align: center;
	text-transform: lowercase;
	transition: color 0.2s;
}
header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT span:not(:last-child) {
	border-bottom: 1px solid #000;
}
header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT span.HeaderStyle_selected__eFyIW {
	display: none;
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT span.HeaderStyle_selected__eFyIW {
		color: #AF40E0;
		display: block;
	}
}
header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT span:first-letter {
	text-transform: uppercase;
}
header .HeaderStyle_lang_wrapper__5yxo9 .HeaderStyle_lang_list__Zp0TT span:hover {
	color: #AF40E0;
	cursor: pointer;
}
@media screen and (min-width: 1201px) {
	header .HeaderStyle_lang_header__VUBW7 {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 10px 0;
	}
	header .HeaderStyle_lang_header__VUBW7 span {
		color: #fff;
		display: inline-block;
		margin-right: 6px;
		text-transform: lowercase;
		transition: color 0.2s;
	}
	header .HeaderStyle_lang_header__VUBW7 span:first-letter {
		text-transform: uppercase;
	}
	header .HeaderStyle_lang_header__VUBW7 svg {
		fill: #fff;
		height: 8px;
		transition: fill 0.2s, transform 0.2s;
		width: 10px;
	}
}
@media screen and (max-width: 1200px) {
	header .HeaderStyle_lang_header__VUBW7 {
		display: none;
	}
}
.AccountStyle_account_wrapper__7NDLK {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 80px;
	padding-top: 122px;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK {
		flex-direction: column;
		padding: 150px 32px 0;
	}
}
@media screen and (max-width: 780px) {
	.AccountStyle_account_wrapper__7NDLK {
		padding: 150px 16px 0;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_header__mpqmF {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.AccountStyle_account_wrapper__7NDLK h2 {
	color: #fff;
	display: block;
	font-size: 50px;
	font-weight: 500;
	margin: 48px 0 24px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK h2 {
		font-size: 28px;
		margin-bottom: 16px;
		margin-top: 40px;
	}
}
@media screen and (max-width: 780px) {
	.AccountStyle_account_wrapper__7NDLK h2 {
		font-size: 26px;
		margin-bottom: 12px;
		margin-top: 32px;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_navigation__AR\+MV {
	margin-right: 24px;
	max-width: 282px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_navigation__AR\+MV {
		display: none;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy {
	margin: -4px 0;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy {
		background-clip: padding-box, border-box;
		background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
		background-origin: border-box;
		border: 1px solid #0000;
		border-radius: 10px;
		display: flex;
	}
}
@media screen and (max-width: 780px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy {
		flex-wrap: wrap;
		justify-content: center;
		margin: -2px;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa {
	align-items: center;
	background-clip: padding-box, border-box;
	background-color: #0000;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-size: 16px;
	margin: 8px 0;
	padding: 16px;
	transition: color 0.1s, border-color 0.1s, background-color 0.2s;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa {
		background: #0000 none repeat 0 0 / auto auto padding-box border-box scroll;
		background: initial;
		border: initial;
		border-radius: 0;
		border-radius: initial;
		height: 55px;
		justify-content: center;
		margin: 0;
		padding: 0 16px;
	}
}
@media screen and (max-width: 780px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa {
		height: 44px;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa span {
	font-weight: 600;
	transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa span {
		display: none;
	}
}
@media screen and (max-width: 780px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa span {
		font-size: 14px;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa svg {
	fill: #fff;
	height: 22px;
	margin-right: 16px;
	transition: fill 0.1s;
	width: 22px;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa svg {
		margin-right: 0;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa.AccountStyle_active__ZyYmV,
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa:hover {
	background: #AF40E0;
	border-color: #AF40E0;
	color: #AF40E0;
	cursor: pointer;
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa.AccountStyle_active__ZyYmV svg,
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa:hover svg {
	fill: #2c2c2c;
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa.AccountStyle_active__ZyYmV span,
.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa:hover span {
	color: #2c2c2c;
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa.AccountStyle_active__ZyYmV {
		text-align: center;
	}
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa.AccountStyle_active__ZyYmV span {
		display: inline-block;
		margin-left: 10px;
		margin-top: 2px;
	}
}
@media screen and (max-width: 780px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa.AccountStyle_active__ZyYmV {
		border-top-left-radius: 8px;
		border-top-right-radius: 8px;
		order: -1;
		width: 100%;
	}
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_items_wrapper__TvOiy .AccountStyle_item__oQXpa:not(.AccountStyle_active__ZyYmV) {
		margin: 2px;
		width: calc(20% - 4px);
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_content__a2Tmu {
	background-clip: padding-box, border-box;
	background-color: #0000;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px;
	padding: 40px 56px;
	width: calc(100% - 306px);
}
@media screen and (max-width: 1200px) {
	.AccountStyle_account_wrapper__7NDLK .AccountStyle_content__a2Tmu {
		margin-bottom: 80px;
		padding: 32px 16px;
		width: 100%;
	}
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_content__a2Tmu.AccountStyle_no_bg__smj4L {
	background-color: #0000;
	background-image: none;
	border: initial;
	padding: 0;
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_breadcrumbs_wrapper__rPwvN {
	color: #fff;
}
.AccountStyle_account_wrapper__7NDLK .AccountStyle_breadcrumbs_wrapper__rPwvN svg {
	fill: #fff;
	display: inline-block;
	margin: 0 10px;
}
.account_page .header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}
@media screen and (max-width: 780px) {
	.account_page .header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 10px;
	}
}
.account_page .header span {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
}
@media screen and (max-width: 780px) {
	.account_page .header span {
		font-size: 20px;
		margin-bottom: 10px;
	}
}
.account_page .header span b {
	color: #AF40E0;
}
.account_page .header .verified {
	align-items: center;
	display: flex;
}
.account_page .header .verified span {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
}
.account_page .header .verified svg {
	margin-left: 10px;
}
.account_page .subtext {
	color: #fff;
	display: block;
	margin-bottom: 24px;
}
@media screen and (max-width: 780px) {
	.account_page .subtext {
		font-size: 14px;
	}
}
.account_page .main_button {
	display: block;
	margin-left: auto;
	margin-top: 24px;
}
.account_page input,
.account_page textarea {
	padding: 18px 16px;
}
.account_page .react-select__control {
	padding: 6px;
}
.account_page .react-select__control .react-select__value-container {
	min-height: 33px;
}
.account_page .react-select__control .react-select__input-container {
	height: 33px;
}
.account_page .react-select__control .react-select__input {
	height: 30px;
}
.AccountHomeStyle_accounthome_wrapper__EK50S {
	width: 100%;
}
.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
	.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc {
		justify-content: center;
		margin-bottom: 32px;
	}
}
@media screen and (max-width: 780px) {
	.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc {
		align-items: normal;
		flex-direction: column;
		margin-bottom: 24px;
	}
}
.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc a {
	margin-left: 0;
}
.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc a:first-child {
	margin-top: 0;
}
.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc a:last-child {
	background-color: #0000;
	border-color: #3d0047;
	color: #3d0047;
	margin-top: 0;
}
@media screen and (max-width: 1200px) {
	.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc a:last-child {
		margin-left: 16px;
	}
}
@media screen and (max-width: 780px) {
	.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc a:last-child {
		margin-left: 0;
		margin-top: 10px;
	}
}
.AccountHomeStyle_accounthome_wrapper__EK50S .AccountHomeStyle_action_wrapper__bTBLc a:last-child:hover {
	background-color: #3d0047;
	color: #fff;
}
.PersonalDetailsStyle_personaldetails_wrapper__9R8zr {
	width: 100%;
}
.PersonalDetailsStyle_personaldetails_wrapper__9R8zr .PersonalDetailsStyle_phone_input__qCO\+l {
	display: flex;
	margin: 10px 0;
	width: 100%;
}
.PersonalDetailsStyle_personaldetails_wrapper__9R8zr .PersonalDetailsStyle_phone_input__qCO\+l .PersonalDetailsStyle_input_block__KYndB:first-child {
	margin-right: 10px;
	width: 40%;
}
@media screen and (max-width: 780px) {
	.PersonalDetailsStyle_personaldetails_wrapper__9R8zr .PersonalDetailsStyle_main_button__5idDi {
		margin: 24px auto 0;
	}
}
.UploadDocumentsStyle_uploaddocuments_wrapper__Y50bK {
	width: 100%;
}
.UploadDocumentsStyle_uploaddocuments_wrapper__Y50bK form {
	margin-bottom: 32px;
}
.UploadDocumentsStyle_uploaddocuments_wrapper__Y50bK .UploadDocumentsStyle_file_error__rcDxy {
	margin-top: 4px;
}
@media screen and (max-width: 780px) {
	.UploadDocumentsStyle_uploaddocuments_wrapper__Y50bK .UploadDocumentsStyle_file_error__rcDxy {
		margin-top: 10px;
	}
	.UploadDocumentsStyle_uploaddocuments_wrapper__Y50bK .UploadDocumentsStyle_file_input__yCq6x > label {
		margin-bottom: 2px;
	}
	.ChangePasswordStyle_changepassword_wrapper__Q\+-J5 .ChangePasswordStyle_main_button__lIhTl,
	.UploadDocumentsStyle_uploaddocuments_wrapper__Y50bK .UploadDocumentsStyle_main_button__SixK0 {
		margin: 24px auto 0;
	}
}
.ChangePasswordStyle_changepassword_wrapper__Q\+-J5 .ChangePasswordStyle_strength_wrapper__UoW5L {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-top: 20px;
}
.ChangePasswordStyle_changepassword_wrapper__Q\+-J5 .ChangePasswordStyle_strength_wrapper__UoW5L .ChangePasswordStyle_item__ZBmA4 {
	background-color: #323232;
	border: 1px solid #1313131a;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 20px;
	text-align: center;
	width: 33.333%;
}
@media screen and (max-width: 600px) {
	.ChangePasswordStyle_changepassword_wrapper__Q\+-J5 .ChangePasswordStyle_strength_wrapper__UoW5L .ChangePasswordStyle_item__ZBmA4 {
		padding-top: 72px;
	}
}
.HistoryStyle_history_wrapper__jGK7K .HistoryStyle_input_wrapper__t1iJF {
	margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
	.HistoryStyle_history_wrapper__jGK7K .HistoryStyle_header__UDAct {
		align-items: center;
		flex-direction: row;
	}
}
.HistoryStyle_history_wrapper__jGK7K .HistoryStyle_main_button__xjl0G {
	margin: 0;
	padding: 14px 40px;
}
.MonetaryTransactionsStyle_history_wrapper__jJChE .MonetaryTransactionsStyle_input_wrapper__yFZzV {
	margin-bottom: 20px;
}
.SignStyle_contactus__8vE8U,
.SignStyle_resetpassword__Cj3yo,
.SignStyle_signin__0wq5q,
.SignStyle_signup__Lu9CT {
	margin: 0 0 100px;
	padding: 186px 0 50px;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U,
	.SignStyle_resetpassword__Cj3yo,
	.SignStyle_signin__0wq5q,
	.SignStyle_signup__Lu9CT {
		margin: 0 32px 80px;
		padding: 184px 0 0;
	}
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U,
	.SignStyle_resetpassword__Cj3yo,
	.SignStyle_signin__0wq5q,
	.SignStyle_signup__Lu9CT {
		margin: 0 16px 48px;
		padding: 176px 0 0;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_container__0mxMR,
.SignStyle_resetpassword__Cj3yo .SignStyle_container__0mxMR,
.SignStyle_signin__0wq5q .SignStyle_container__0mxMR,
.SignStyle_signup__Lu9CT .SignStyle_container__0mxMR {
	display: flex;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_container__0mxMR,
	.SignStyle_resetpassword__Cj3yo .SignStyle_container__0mxMR,
	.SignStyle_signin__0wq5q .SignStyle_container__0mxMR,
	.SignStyle_signup__Lu9CT .SignStyle_container__0mxMR {
		align-items: center;
		flex-direction: column;
	}
}
.SignStyle_contactus__8vE8U h4,
.SignStyle_resetpassword__Cj3yo h4,
.SignStyle_signin__0wq5q h4,
.SignStyle_signup__Lu9CT h4 {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}
.SignStyle_contactus__8vE8U h4 b,
.SignStyle_contactus__8vE8U h4 strong,
.SignStyle_resetpassword__Cj3yo h4 b,
.SignStyle_resetpassword__Cj3yo h4 strong,
.SignStyle_signin__0wq5q h4 b,
.SignStyle_signin__0wq5q h4 strong,
.SignStyle_signup__Lu9CT h4 b,
.SignStyle_signup__Lu9CT h4 strong {
	color: #AF40E0;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U h4,
	.SignStyle_resetpassword__Cj3yo h4,
	.SignStyle_signin__0wq5q h4,
	.SignStyle_signup__Lu9CT h4 {
		font-size: 55px;
	}
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U h4,
	.SignStyle_resetpassword__Cj3yo h4,
	.SignStyle_signin__0wq5q h4,
	.SignStyle_signup__Lu9CT h4 {
		font-size: 40px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk,
.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk,
.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk,
.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk {
	align-items: center;
	background-image: url(../image/bg.3d0fc5cc25893d778dcb.jpg);
	background-size: cover;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 80px;
	max-width: 507px;
	padding: 20px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk {
		margin: 0;
		max-width: none;
		min-height: 400px;
		order: 1;
		padding: 24px 32px;
		padding: 20px 14px;
		width: 100%;
	}
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk.SignStyle_mobile_hidden__aBqXs,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk.SignStyle_mobile_hidden__aBqXs,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk.SignStyle_mobile_hidden__aBqXs,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk.SignStyle_mobile_hidden__aBqXs {
		display: none;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk h3,
.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk h3,
.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk h3,
.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk h3 {
	color: #fff;
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 40px;
	max-width: 340px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk h3,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk h3,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk h3,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk h3 {
		font-size: 28px;
	}
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk h3,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk h3,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk h3,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk h3 {
		font-size: 26px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk h3 span,
.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk h3 span,
.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk h3 span,
.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk h3 span {
	color: #AF40E0;
	font-size: 32px;
	font-weight: 500;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk h3 span,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk h3 span,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk h3 span,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk h3 span {
		font-size: 28px;
	}
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk h3 span,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk h3 span,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk h3 span,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk h3 span {
		font-size: 26px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk p,
.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk p,
.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk p,
.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk p {
	color: #fff;
}
.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk img,
.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk img,
.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk img,
.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk img {
	display: none;
}
@media screen and (min-width: 1201px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk img,
	.SignStyle_resetpassword__Cj3yo .SignStyle_info_wrapper__nv\+gk img,
	.SignStyle_signin__0wq5q .SignStyle_info_wrapper__nv\+gk img,
	.SignStyle_signup__Lu9CT .SignStyle_info_wrapper__nv\+gk img {
		bottom: -55px;
		display: block;
		left: 0;
		margin-bottom: -25px;
		margin-top: 25px;
		position: relative;
	}
}
.SignStyle_contactus__8vE8U form,
.SignStyle_resetpassword__Cj3yo form,
.SignStyle_signin__0wq5q form,
.SignStyle_signup__Lu9CT form {
	max-width: 482px;
	padding: 32px 0;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U form,
	.SignStyle_resetpassword__Cj3yo form,
	.SignStyle_signin__0wq5q form,
	.SignStyle_signup__Lu9CT form {
		order: 0;
		padding: 32px 14px 0;
	}
}
.SignStyle_contactus__8vE8U form .SignStyle_subheader__VdspF,
.SignStyle_resetpassword__Cj3yo form .SignStyle_subheader__VdspF,
.SignStyle_signin__0wq5q form .SignStyle_subheader__VdspF,
.SignStyle_signup__Lu9CT form .SignStyle_subheader__VdspF {
	color: #2c2c2c;
	display: block;
	margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U form .SignStyle_subheader__VdspF,
	.SignStyle_resetpassword__Cj3yo form .SignStyle_subheader__VdspF,
	.SignStyle_signin__0wq5q form .SignStyle_subheader__VdspF,
	.SignStyle_signup__Lu9CT form .SignStyle_subheader__VdspF {
		font-size: 14px;
		margin-bottom: 10px;
	}
}
.SignStyle_contactus__8vE8U form .SignStyle_password_wrapper__tQHv5,
.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5,
.SignStyle_signin__0wq5q form .SignStyle_password_wrapper__tQHv5,
.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 {
	display: flex;
	margin: 0;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U form .SignStyle_password_wrapper__tQHv5,
	.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5,
	.SignStyle_signin__0wq5q form .SignStyle_password_wrapper__tQHv5,
	.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 {
		flex-direction: column;
	}
}
.SignStyle_contactus__8vE8U form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
.SignStyle_signin__0wq5q form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM {
	margin: 0 5px;
	width: 50%;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
	.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
	.SignStyle_signin__0wq5q form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
	.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM {
		width: calc(100% - 10px);
	}
	.SignStyle_contactus__8vE8U form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM:first-child,
	.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM:first-child,
	.SignStyle_signin__0wq5q form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM:first-child,
	.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM:first-child {
		margin-bottom: -10px;
	}
}
.SignStyle_contactus__8vE8U form .SignStyle_action_wrapper__kIsck,
.SignStyle_resetpassword__Cj3yo form .SignStyle_action_wrapper__kIsck,
.SignStyle_signin__0wq5q form .SignStyle_action_wrapper__kIsck,
.SignStyle_signup__Lu9CT form .SignStyle_action_wrapper__kIsck {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}
.SignStyle_contactus__8vE8U form button,
.SignStyle_resetpassword__Cj3yo form button,
.SignStyle_signin__0wq5q form button,
.SignStyle_signup__Lu9CT form button {
	margin-top: 24px;
}
.SignStyle_contactus__8vE8U form .SignStyle_action_wrapper__kIsck a,
.SignStyle_resetpassword__Cj3yo form .SignStyle_action_wrapper__kIsck a,
.SignStyle_signin__0wq5q form .SignStyle_action_wrapper__kIsck a,
.SignStyle_signup__Lu9CT form .SignStyle_action_wrapper__kIsck a {
	color: #AF40E0;
	font-size: 16px;
	font-weight: 500;
	margin: 6px 0;
}
.SignStyle_contactus__8vE8U .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_resetpassword__Cj3yo .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_signin__0wq5q .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_signup__Lu9CT .SignStyle_captcha_wrapper__oNgh4 {
	margin: 6px auto 0;
	max-width: 302px;
}
.SignStyle_contactus__8vE8U .SignStyle_captcha_wrapper__oNgh4.SignStyle_captcha_signin__8Pw0y,
.SignStyle_resetpassword__Cj3yo .SignStyle_captcha_wrapper__oNgh4.SignStyle_captcha_signin__8Pw0y,
.SignStyle_signin__0wq5q .SignStyle_captcha_wrapper__oNgh4.SignStyle_captcha_signin__8Pw0y,
.SignStyle_signup__Lu9CT .SignStyle_captcha_wrapper__oNgh4.SignStyle_captcha_signin__8Pw0y {
	margin-top: 24px;
}
.SignStyle_contactus__8vE8U .SignStyle_captcha_wrapper__oNgh4 .SignStyle_captcha_error__2AShE,
.SignStyle_resetpassword__Cj3yo .SignStyle_captcha_wrapper__oNgh4 .SignStyle_captcha_error__2AShE,
.SignStyle_signin__0wq5q .SignStyle_captcha_wrapper__oNgh4 .SignStyle_captcha_error__2AShE,
.SignStyle_signup__Lu9CT .SignStyle_captcha_wrapper__oNgh4 .SignStyle_captcha_error__2AShE {
	margin-top: 2px;
}
.SignStyle_contactus__8vE8U .SignStyle_terms_error__uU\+qN,
.SignStyle_resetpassword__Cj3yo .SignStyle_terms_error__uU\+qN,
.SignStyle_signin__0wq5q .SignStyle_terms_error__uU\+qN,
.SignStyle_signup__Lu9CT .SignStyle_terms_error__uU\+qN {
	margin-top: 6px;
}
@media screen and (min-width: 1201px) {
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck,
	.SignStyle_resetpassword__Cj3yo .SignStyle_mobile_info__owAck,
	.SignStyle_signin__0wq5q .SignStyle_mobile_info__owAck,
	.SignStyle_signup__Lu9CT .SignStyle_mobile_info__owAck {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck,
	.SignStyle_resetpassword__Cj3yo .SignStyle_mobile_info__owAck,
	.SignStyle_signin__0wq5q .SignStyle_mobile_info__owAck,
	.SignStyle_signup__Lu9CT .SignStyle_mobile_info__owAck {
		background-color: #3d0047;
		padding: 24px 32px;
	}
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck p,
	.SignStyle_resetpassword__Cj3yo .SignStyle_mobile_info__owAck p,
	.SignStyle_signin__0wq5q .SignStyle_mobile_info__owAck p,
	.SignStyle_signup__Lu9CT .SignStyle_mobile_info__owAck p {
		color: #fff;
	}
}
@media screen and (max-width: 1200px) and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck p,
	.SignStyle_resetpassword__Cj3yo .SignStyle_mobile_info__owAck p,
	.SignStyle_signin__0wq5q .SignStyle_mobile_info__owAck p,
	.SignStyle_signup__Lu9CT .SignStyle_mobile_info__owAck p {
		font-size: 14px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_phone_input__qGVco,
.SignStyle_resetpassword__Cj3yo .SignStyle_phone_input__qGVco,
.SignStyle_signin__0wq5q .SignStyle_phone_input__qGVco,
.SignStyle_signup__Lu9CT .SignStyle_phone_input__qGVco {
	display: flex;
	margin: 20px 0 10px;
}
.SignStyle_contactus__8vE8U .SignStyle_phone_input__qGVco .SignStyle_input_block__x1BKM:first-child,
.SignStyle_resetpassword__Cj3yo .SignStyle_phone_input__qGVco .SignStyle_input_block__x1BKM:first-child,
.SignStyle_signin__0wq5q .SignStyle_phone_input__qGVco .SignStyle_input_block__x1BKM:first-child,
.SignStyle_signup__Lu9CT .SignStyle_phone_input__qGVco .SignStyle_input_block__x1BKM:first-child {
	margin-right: 10px;
	width: 40%;
}
.SignStyle_contactus__8vE8U .SignStyle_checkbox_wrapper__mp9ic,
.SignStyle_resetpassword__Cj3yo .SignStyle_checkbox_wrapper__mp9ic,
.SignStyle_signin__0wq5q .SignStyle_checkbox_wrapper__mp9ic,
.SignStyle_signup__Lu9CT .SignStyle_checkbox_wrapper__mp9ic {
	margin: 6px 0;
}
.SignStyle_contactus__8vE8U .SignStyle_checkbox_wrapper__mp9ic:first-child,
.SignStyle_resetpassword__Cj3yo .SignStyle_checkbox_wrapper__mp9ic:first-child,
.SignStyle_signin__0wq5q .SignStyle_checkbox_wrapper__mp9ic:first-child,
.SignStyle_signup__Lu9CT .SignStyle_checkbox_wrapper__mp9ic:first-child {
	margin-top: 16px;
}
.SignStyle_contactus__8vE8U .SignStyle_phone_input__qGVco {
	margin-bottom: 20px;
	margin-top: 10px;
}
.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk {
	padding: 50px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_wrapper__nv\+gk {
		margin: 0 auto;
	}
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck {
		padding: 48px 90px;
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck {
		padding: 32px 14px;
	}
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_mobile_info__owAck .SignStyle_info_content__6ETS7 {
		display: block;
		margin-top: 0;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 {
	margin-top: 56px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 {
		display: none;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_item__CjyJl {
	align-items: center;
	background-color: #eee;
	display: flex;
	justify-content: space-between;
	padding: 24px;
	text-align: left;
	width: 100%;
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_item__CjyJl:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_item__CjyJl {
		padding: 20px 16px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_item__CjyJl img {
	bottom: auto;
	height: 56px;
	left: auto;
	margin-bottom: 0;
	margin-top: 0;
	object-fit: cover;
	object-position: center;
	width: 56px;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_item__CjyJl img {
		height: 50px;
		width: 50px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_left_part__8hL8S {
	display: flex;
	flex-direction: column;
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_left_part__8hL8S .SignStyle_name__qeu0H {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 6px;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_left_part__8hL8S .SignStyle_name__qeu0H {
		font-size: 18px;
	}
}
.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_left_part__8hL8S .SignStyle_middle_text__nEzPx {
	margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
	.SignStyle_contactus__8vE8U .SignStyle_info_content__6ETS7 .SignStyle_left_part__8hL8S .SignStyle_middle_text__nEzPx {
		font-size: 14px;
	}
}
.SignStyle_resetpassword__Cj3yo form,
.SignStyle_signup__Lu9CT form,
.SignStyle_withdrawal__\+IcWj form {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
	max-width: none;
}
@media screen and (max-width: 660px) {
	.SignStyle_resetpassword__Cj3yo form,
	.SignStyle_signup__Lu9CT form,
	.SignStyle_withdrawal__\+IcWj form {
		flex-direction: column;
		margin: 0;
	}
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_input_block__x1BKM,
.SignStyle_signup__Lu9CT form .SignStyle_input_block__x1BKM,
.SignStyle_withdrawal__\+IcWj form .SignStyle_input_block__x1BKM {
	margin: 0 20px 14px;
	width: calc(50% - 40px);
}
@media screen and (max-width: 660px) {
	.SignStyle_resetpassword__Cj3yo form .SignStyle_input_block__x1BKM,
	.SignStyle_signup__Lu9CT form .SignStyle_input_block__x1BKM,
	.SignStyle_withdrawal__\+IcWj form .SignStyle_input_block__x1BKM {
		margin: 0 0 6px;
		width: 100%;
	}
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_input_block__x1BKM label,
.SignStyle_signup__Lu9CT form .SignStyle_input_block__x1BKM label,
.SignStyle_withdrawal__\+IcWj form .SignStyle_input_block__x1BKM label {
	margin-top: 0;
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_resetpassword__Cj3yo form .SignStyle_checkbox_container__6jChj,
.SignStyle_signup__Lu9CT form .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_signup__Lu9CT form .SignStyle_checkbox_container__6jChj,
.SignStyle_withdrawal__\+IcWj form .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_withdrawal__\+IcWj form .SignStyle_checkbox_container__6jChj {
	margin: 0 20px 24px;
	width: calc(100% - 40px);
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5,
.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5,
.SignStyle_withdrawal__\+IcWj form .SignStyle_password_wrapper__tQHv5 {
	width: 100%;
}
@media screen and (max-width: 660px) {
	.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5,
	.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5,
	.SignStyle_withdrawal__\+IcWj form .SignStyle_password_wrapper__tQHv5 {
		flex-direction: column;
	}
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
.SignStyle_withdrawal__\+IcWj form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM {
	margin: 0 20px 14px;
	width: calc(50% - 40px);
}
@media screen and (max-width: 660px) {
	.SignStyle_resetpassword__Cj3yo form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
	.SignStyle_signup__Lu9CT form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM,
	.SignStyle_withdrawal__\+IcWj form .SignStyle_password_wrapper__tQHv5 .SignStyle_input_block__x1BKM {
		margin: 0 0 6px;
		width: 100%;
	}
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_signup__Lu9CT form .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_withdrawal__\+IcWj form .SignStyle_captcha_wrapper__oNgh4 {
	margin-left: auto;
	margin-right: auto;
}
.SignStyle_resetpassword__Cj3yo .SignStyle_underbutton_text__bJZqO,
.SignStyle_signup__Lu9CT .SignStyle_underbutton_text__bJZqO,
.SignStyle_withdrawal__\+IcWj .SignStyle_underbutton_text__bJZqO {
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 16px;
	text-align: center;
	width: 100%;
}
.SignStyle_resetpassword__Cj3yo form {
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: 0;
}
.SignStyle_resetpassword__Cj3yo form .SignStyle_input_block__x1BKM {
	margin: 0 0 14px;
	max-width: 500px;
	width: 100%;
}
.SignStyle_signup__Lu9CT form .SignStyle_captcha_wrapper__oNgh4,
.SignStyle_withdrawal__\+IcWj form .SignStyle_captcha_wrapper__oNgh4 {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}
@media screen and (min-width: 661px) {
	.SignStyle_withdrawal__\+IcWj form .SignStyle_input_block__x1BKM.SignStyle_small_block__ByeDy {
		width: calc(33% - 40px);
	}
}
.SignStyle_withdrawal__\+IcWj form .SignStyle_input_block__x1BKM.SignStyle_small_block__ByeDy .SignStyle_hide__-Vbp9 {
	opacity: 0 !important;
}
@media screen and (max-width: 660px) {
	.SignStyle_withdrawal__\+IcWj form .SignStyle_input_block__x1BKM.SignStyle_small_block__ByeDy .SignStyle_hide__-Vbp9 {
		display: none !important;
	}
}
.SignStyle_withdrawal__\+IcWj .SignStyle_checkbox_credit__1xPiS {
	margin-bottom: 12px !important;
	margin-top: 24px !important;
}
@media screen and (max-width: 660px) {
	.SignStyle_withdrawal__\+IcWj .SignStyle_checkbox_credit__1xPiS {
		margin-bottom: 8px !important;
		margin-left: 0 !important;
		margin-top: 6px !important;
	}
}
.SignStyle_withdrawal__\+IcWj .SignStyle_terms_error__uU\+qN {
	margin-top: 8px !important;
}
.SignStyle_black_bg__i5kjp {
	background-color: #14141480;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 100;
}
.SignStyle_success_modal__dYIZv {
	background-color: #141414;
	border: 2px solid #AF40E0;
	border-radius: 16px;
	box-shadow: 0 0 10px 0 #AF40E0;
	left: calc(50% - 16px);
	margin: 0 16px;
	max-width: 500px;
	padding: 50px 40px;
	position: fixed;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 32px);
	z-index: 110;
}
.SignStyle_success_modal__dYIZv img {
	height: 22px;
	object-fit: contain;
	object-position: center;
	position: absolute;
	right: 18px;
	top: 18px;
	transition: opacity 0.2s;
	width: 20px;
}
.SignStyle_success_modal__dYIZv img:hover {
	cursor: pointer;
	opacity: 0.8;
}
.SignStyle_success_modal__dYIZv p {
	color: #fff;
	font-weight: 600;
}
.SignStyle_bottom_text_wrapper__1WACQ {
	margin: 6px 20px 0;
	width: 100%;
}
@media screen and (max-width: 660px) {
	.SignStyle_bottom_text_wrapper__1WACQ {
		margin: 6px 0 0;
	}
}
.SignStyle_bottom_text_wrapper__1WACQ p {
	color: #fff;
	display: block;
	font-weight: 500;
	line-height: 20.8px;
	margin: 8px 0;
}
@media screen and (max-width: 660px) {
	.SignStyle_bottom_text_wrapper__1WACQ p {
		font-size: 14px;
		line-height: 18.2px;
		margin: 4px 0;
	}
}
.ContactUsStyle_contactus_wrapper__4tKQA {
	width: 100%;
}
.ContactUsStyle_contactus_wrapper__4tKQA .ContactUsStyle_phone_input__3YWUT {
	display: flex;
}
.ContactUsStyle_contactus_wrapper__4tKQA .ContactUsStyle_phone_input__3YWUT .ContactUsStyle_input_block__QW4GJ:first-child {
	margin-left: 0;
	margin-right: 10px;
	width: 40%;
}
.ContactUsStyle_contactus_wrapper__4tKQA .ContactUsStyle_phone_input__3YWUT .ContactUsStyle_input_block__QW4GJ:last-child {
	margin-right: 0;
}
@media screen and (max-width: 600px) {
	.ContactUsStyle_contactus_wrapper__4tKQA textarea {
		margin-top: 15px;
	}
}
.ContactUsStyle_contactus_wrapper__4tKQA .ContactUsStyle_captcha_wrapper__KFmzp {
	display: block;
	margin: 24px auto 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.ContactUsStyle_contactus_wrapper__4tKQA .ContactUsStyle_captcha_wrapper__KFmzp .ContactUsStyle_captcha_error__U5tJU {
	margin-top: 2px;
}
.ContactUsStyle_contactus_wrapper__4tKQA .ContactUsStyle_submit_button__1fX98 {
	margin: 24px auto 0;
}
.ThankPageStyle_thankpage_wrapper__8TYXP {
	width: 100%;
}
.ThankPageStyle_thankpage_wrapper__8TYXP .ThankPageStyle_header__c7rpz {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 670px;
	text-align: center;
}
.ThankPageStyle_thankpage_wrapper__8TYXP .ThankPageStyle_header__c7rpz b,
.ThankPageStyle_thankpage_wrapper__8TYXP .ThankPageStyle_header__c7rpz span {
	font-size: 50px;
}
.ThankPageStyle_thankpage_wrapper__8TYXP .ThankPageStyle_subtext__XM7xP {
	display: block;
	font-size: 18px;
	line-height: 25.2px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	max-width: 670px;
	text-align: center;
}
.ThankPageStyle_thankpage_wrapper__8TYXP img {
	border-radius: 16px;
	height: auto;
	object-fit: cover;
	width: 100%;
}
.ThankPageStyle_withdrawal_page__x5Eiz li {
	font-size: 16px;
	line-height: 24px;
	list-style: inside;
}
footer {
	-webkit-backdrop-filter: blur(200px);
	backdrop-filter: blur(200px);
	padding: 32px 50px 0;
}
@media screen and (max-width: 1200px) {
	footer {
		padding: 32px 32px 0;
	}
}
@media screen and (max-width: 600px) {
	footer {
		padding: 30px 16px 0;
	}
}
.FooterStyle_footer_wrapper__bFdog {
	display: flex;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_footer_wrapper__bFdog {
		flex-direction: column;
	}
}
.FooterStyle_head_wrapper__4P2wO {
	margin-right: 38px;
	max-width: 240px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_head_wrapper__4P2wO {
		align-items: center;
		display: flex;
		justify-content: center;
		margin: 0 auto 32px;
	}
}
@media screen and (min-width: 1201px) {
	.FooterStyle_info_wrapper__4o31W.FooterStyle_mobile__UrbI3 {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	.FooterStyle_info_wrapper__4o31W.FooterStyle_desktop__qbsPT {
		display: none;
	}
}
.FooterStyle_info_wrapper__4o31W span {
	color: #fff;
	display: block;
}
.FooterStyle_info_wrapper__4o31W .FooterStyle_item__KL2Wz:not(:last-child) {
	margin-bottom: 10px;
}
.FooterStyle_info_wrapper__4o31W .FooterStyle_item__KL2Wz .FooterStyle_name__kGKgL {
	font-weight: 700;
	margin-bottom: 8px;
}
.FooterStyle_info_wrapper__4o31W .FooterStyle_item__KL2Wz .FooterStyle_text__u3RVF {
	font-weight: 500;
	line-height: 20.8px;
}
.FooterStyle_logo__W0fEq {
	display: inline-block;
	margin-bottom: 40px;
}
.FooterStyle_logo__W0fEq  img {
	width: 110px;
}
@media screen and (max-width: 600px) {
	.FooterStyle_logo__W0fEq {
		margin-bottom: 0;
	}
}
.FooterStyle_link_wrapper__S7V0g {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_link_wrapper__S7V0g {
		flex-direction: column;
		margin-bottom: 72px;
	}
}
@media screen and (max-width: 600px) {
	.FooterStyle_link_wrapper__S7V0g {
		margin-bottom: 50px;
	}
}
.FooterStyle_menu_wrapper__JV1ml {
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(1, 1fr);
	width: 100%;
	margin-top: 35px;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_menu_wrapper__JV1ml {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -8px;
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.FooterStyle_menu_wrapper__JV1ml {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X:first-child {
	grid-area: 1/1/2/2;
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X:nth-child(2) {
	grid-area: 1/2/2/3;
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X:nth-child(3) {
	grid-area: 1/4/1/4;
}
@media screen and (min-width: 1201px) {
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X:nth-child(4) {
	grid-area: 1/3/2/4;
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X:nth-child(5) {
	grid-area: 1/4/2/5;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.FooterStyle_menu_wrapper__JV1ml .FooterStyle_item_wrapper__twI-X {
		text-align: left;
	}
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_nav_item__7uBqR {
	color: #AF40E0;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
	.FooterStyle_menu_wrapper__JV1ml .FooterStyle_nav_item__7uBqR {
		font-size: 16px;
	}
}
@media screen and (max-width: 1200px) {
	.FooterStyle_menu_wrapper__JV1ml .FooterStyle_subitems_wrapper__0JINm {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -8px;
	}
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_subitems_wrapper__0JINm a {
	color: #fff;
	display: block;
	line-height: 20.8px;
	margin-bottom: 10px;
	transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_menu_wrapper__JV1ml .FooterStyle_subitems_wrapper__0JINm a {
		margin: 0 8px 16px;
	}
}
.FooterStyle_menu_wrapper__JV1ml .FooterStyle_subitems_wrapper__0JINm a:hover {
	color: #AF40E0;
	cursor: pointer;
}
.FooterStyle_copy__sB9LK {
	color: #fff;
	display: block;
	font-size: 14px;
	margin: 0 auto;
	opacity: 0.7;
	padding-bottom: 18px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.FooterStyle_copy__sB9LK {
		margin-top: 50px;
	}
}
.homepage h3,
.static_page h3 {
	display: block;
	margin: 0 auto 16px;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media screen and (max-width: 1200px) {
	.homepage h3,
	.static_page h3 {
		padding: 0 14px;
	}
}
.homepage h3,
.homepage h3 b,
.homepage h3 strong,
.static_page h3,
.static_page h3 b,
.static_page h3 strong {
	font-size: 40px;
	font-weight: 700;
}
@media screen and (max-width: 1200px) {
	.homepage h3,
	.homepage h3 b,
	.homepage h3 strong,
	.static_page h3,
	.static_page h3 b,
	.static_page h3 strong {
		font-size: 34px;
	}
}
@media screen and (max-width: 660px) {
	.homepage h3,
	.homepage h3 b,
	.homepage h3 strong,
	.static_page h3,
	.static_page h3 b,
	.static_page h3 strong {
		font-size: 28px;
	}
}
.homepage h3 b,
.homepage h3 strong,
.static_page h3 b,
.static_page h3 strong {
	color: #AF40E0;
}
.homepage h3,
.homepage p,
.homepage span,
.static_page h3,
.static_page p,
.static_page span {
	color: #fff;
}
.homepage .subheader,
.static_page .subheader {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 32px;
	margin-left: auto;
	margin-right: auto;
	max-width: 804px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.homepage .subheader,
	.static_page .subheader {
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.homepage .subheader,
	.static_page .subheader {
		font-size: 16px;
	}
}
.homepage .anyteam_wrapper,
.static_page .anyteam_wrapper {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	bottom: 48px;
	position: fixed;
	right: 50px;
	z-index: 40;
}
@media screen and (max-width: 1200px) {
	.homepage .anyteam_wrapper,
	.static_page .anyteam_wrapper {
		bottom: 48px;
		right: 32px;
	}
}
@media screen and (max-width: 660px) {
	.homepage .anyteam_wrapper,
	.static_page .anyteam_wrapper {
		bottom: 40px;
		right: 16px;
	}
}
.homepage .anyteam_wrapper .item,
.static_page .anyteam_wrapper .item {
	align-items: center;
	display: flex;
	padding: 10px 33px;
	transition: opacity 0.2s;
}
.homepage .anyteam_wrapper .item:first-child,
.static_page .anyteam_wrapper .item:first-child {
	border-bottom: 1px solid #ffffff3d;
}
.homepage .anyteam_wrapper .item:hover,
.static_page .anyteam_wrapper .item:hover {
	cursor: pointer;
	opacity: 0.8;
}
.homepage .anyteam_wrapper .item p,
.static_page .anyteam_wrapper .item p {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-right: 20px;
	text-align: center;
	width: 100%;
}
.homepage .anyteam_wrapper .item img,
.static_page .anyteam_wrapper .item img {
	height: 20px;
	object-fit: contain;
	object-position: center;
	position: relative;
	width: 20px;
}
.trading_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.trading_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.trading_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.trading_wrapper .types_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}
.trading_wrapper .types_wrapper .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 12px 24px;
	padding: 22px 20px 18px;
	width: calc(33.333% - 24px);
}
@media screen and (max-width: 1200px) {
	.trading_wrapper .types_wrapper .item {
		width: calc(50% - 24px);
	}
}
@media screen and (max-width: 660px) {
	.trading_wrapper .types_wrapper .item {
		margin: 0 5px 10px;
		padding: 36px 10px;
		width: calc(50% - 10px);
	}
}
.trading_wrapper .types_wrapper span {
	line-height: 18.2px;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.trading_wrapper .types_wrapper span {
		font-size: 14px;
	}
}
.trading_wrapper .types_wrapper img {
	margin-bottom: 24px;
}
@media screen and (max-width: 660px) {
	.trading_wrapper .types_wrapper img {
		margin-bottom: 10px;
		max-height: 50px;
		max-width: 50px;
		object-fit: contain;
		object-position: center;
	}
}
.trading_wrapper .main_button {
	display: block;
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media screen and (max-width: 660px) {
	.trading_wrapper .main_button {
		margin-top: 14px;
	}
}
.instrument_wrapper {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.instrument_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.instrument_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.instrument_wrapper .instrument_block {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.instrument_wrapper .instrument_block {
		margin: 0 -5px;
	}
}
.instrument_wrapper .instrument_block .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 12px 40px;
	width: calc(50% - 24px);
}
@media screen and (max-width: 1200px) {
	.instrument_wrapper .instrument_block .item {
		margin: 0 10px 40px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 660px) {
	.instrument_wrapper .instrument_block .item {
		margin: 0 5px 32px;
		width: calc(100% - 10px);
	}
}
.instrument_wrapper .instrument_block .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
.instrument_wrapper .instrument_block .text {
	font-weight: 700;
	line-height: 20.8px;
}
.instrument_wrapper .instrument_block img {
	border-radius: 16px;
	display: block;
	margin-bottom: 16px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.instrument_wrapper .instrument_block img {
		height: 236px;
	}
}
@media screen and (max-width: 660px) {
	.instrument_wrapper .instrument_block img {
		height: 180px;
		margin-bottom: 10px;
	}
}
.deposit_wrapper {
	align-items: flex-start;
	display: flex;
	margin-bottom: 110px;
}
@media screen and (max-width: 1200px) {
	.deposit_wrapper {
		flex-direction: column-reverse;
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.deposit_wrapper {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.deposit_wrapper .left_wrapper {
	margin-right: 32px;
	max-width: 380px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.deposit_wrapper .left_wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-right: 0;
		margin-top: 32px;
		max-width: none;
	}
}
.deposit_wrapper .left_wrapper .item {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	padding: 20px 20px 55px;
}
.deposit_wrapper .left_wrapper .item:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
	.deposit_wrapper .left_wrapper .item {
		margin: 0 10px 20px;
		padding: 16px 16px 67px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 600px) {
	.deposit_wrapper .left_wrapper .item {
		padding: 22px 16px;
		width: calc(100% - 20px);
	}
	.deposit_wrapper .left_wrapper .item:not(:last-child) {
		margin-bottom: 10px;
	}
}
.deposit_wrapper .left_wrapper .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.deposit_wrapper .left_wrapper .name {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.deposit_wrapper .left_wrapper .text {
	font-weight: 700;
	line-height: 20.8px;
}
.deposit_wrapper .right_part {
	width: 100%;
}
.deposit_wrapper .right_part img {
	object-fit: contain;
	object-position: center;
	width: 100%;
}
.partners_wrapper {
	/* background-image: url(../image/image_1.png); */
	display: flex;
	align-items: center;
	background-position: 50%;
	background-size: cover;
	border-radius: 16px;
	margin-bottom: 110px;
	padding: 100px 40px;
}
.partners_wrapper-img{
	max-width: 400px;
}
@media screen and (max-width: 1200px) {
	.partners_wrapper {
		margin: 0 32px 88px;
		padding: 100px 0;
		width: calc(100% - 64px);
	}
}
@media screen and (max-width: 810px) {
	.partners_wrapper-img{
		display: none;
	}
}
@media screen and (max-width: 660px) {
	.partners_wrapper {
		margin: 64px 16px 72px;
		padding: 170px 0;
		width: calc(100% - 32px);
	}
}
.partners_wrapper .content {
	margin-left: auto;
	max-width: 550px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.partners_wrapper .content {
		margin: 0 auto;
	}
}
.partners_wrapper .content .name {
	display: block;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 10px;
}
.partners_wrapper .content .name b,
.partners_wrapper .content .name strong {
	color: #AF40E0;
}
@media screen and (max-width: 1200px) {
	.partners_wrapper .content .name {
		font-size: 34px;
		margin-bottom: 8px;
	}
}
@media screen and (max-width: 600px) {
	.partners_wrapper .content .name {
		font-size: 28px;
	}
}
.partners_wrapper .content .text {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 20.7px;
	margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
	.partners_wrapper .content .text {
		font-size: 16px;
		margin-bottom: 32px;
	}
}
@media screen and (max-width: 600px) {
	.partners_wrapper .content .text {
		margin-bottom: 24px;
	}
}
.benefits_wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 110px;
}
@media screen and (max-width: 1200px) {
	.benefits_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.benefits_wrapper {
		margin-bottom: 72px;
		padding: 0 16px;
	}
}
.benefits_wrapper .text_wrapper {
	width: 100%;
}
@media screen and (min-width: 1201px) {
	.benefits_wrapper .text_wrapper {
		order: 3;
		width: 40%;
	}
}
.benefits_wrapper .item {
	align-items: center;
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	min-height: 197px;
}
@media screen and (min-width: 1201px) {
	.benefits_wrapper .item {
		margin: 40px 60px;
		width: calc(33.333% - 24px);
	}
	.benefits_wrapper .item:first-of-type,
	.benefits_wrapper .item:nth-of-type(0) {
		order: 1;
		width: calc(50% - 120px);
	}
	.benefits_wrapper .item:nth-of-type(3),
	.benefits_wrapper .item:nth-of-type(4),
	.benefits_wrapper .item:nth-of-type(5) {
		order: 4;
	}
	.benefits_wrapper .item:nth-of-type(3) {
		margin-right: 0;
		width: calc(30% - 60px);
	}
	.benefits_wrapper .item:nth-of-type(2) {
		margin-left: 0;
		order: 2;
		width: calc(30% - 60px);
	}
}
@media screen and (max-width: 1200px) {
	.benefits_wrapper .item {
		margin: 0 10px 24px;
		padding: 27px 10px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 660px) {
	.benefits_wrapper .item {
		margin: 0 5px 10px;
		padding: 36px 10px;
		width: calc(50% - 10px);
	}
}
.benefits_wrapper .item span {
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width: 660px) {
	.benefits_wrapper .item span {
		font-size: 14px;
	}
}
.benefits_wrapper .item img {
	margin-bottom: 20px;
}
@media screen and (max-width: 660px) {
	.benefits_wrapper .item img {
		margin-bottom: 10px;
		max-height: 50px;
		max-width: 50px;
		object-fit: contain;
		object-position: center;
	}
}
.tradingstart_wrapper {
	margin-bottom: 110px;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper {
		margin-bottom: 0;
	}
}
.tradingstart_wrapper .bg_wrapper {
	background-image: url(/static/media/bg_img2345324.697fd1e11e704ae6ae83.jpg);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper .bg_wrapper {
		background-image: none;
	}
}
.tradingstart_wrapper .content_wrapper {
	align-items: flex-start;
	display: flex;
	padding: 50px 0 0 43px;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper .content_wrapper {
		flex-direction: column;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.tradingstart_wrapper .content_wrapper {
		padding: 0 16px;
	}
}
.tradingstart_wrapper .content_wrapper .left_wrapper {
	margin-right: 126px;
	max-width: 480px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper .content_wrapper .left_wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 24px;
		margin-right: 0;
		margin-top: 32px;
		max-width: none;
	}
}
.tradingstart_wrapper .content_wrapper .left_wrapper .item {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	padding: 20px 20px 37px;
	position: relative;
}
.tradingstart_wrapper .content_wrapper .left_wrapper .item:before {
	bottom: 10px;
	color: #AF40E04d;
	content: "02";
	font-size: 70px;
	font-weight: 700;
	position: absolute;
	right: 16px;
}
@media screen and (max-width: 600px) {
	.tradingstart_wrapper .content_wrapper .left_wrapper .item:before {
		font-size: 55px;
	}
}
.tradingstart_wrapper .content_wrapper .left_wrapper .item:first-of-type:before {
	content: "01";
}
.tradingstart_wrapper .content_wrapper .left_wrapper .item:last-child:before {
	content: "03";
}
.tradingstart_wrapper .content_wrapper .left_wrapper .item:not(:last-child) {
	margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper .content_wrapper .left_wrapper .item {
		margin: 0 0 24px;
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.tradingstart_wrapper .content_wrapper .left_wrapper .item {
		padding: 20px 20px 50px;
		width: calc(100% - 20px);
	}
	.tradingstart_wrapper .content_wrapper .left_wrapper .item:not(:last-child) {
		margin-bottom: 10px;
	}
}
.tradingstart_wrapper .content_wrapper .left_wrapper .name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper .content_wrapper .left_wrapper .name {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.tradingstart_wrapper .content_wrapper .left_wrapper .text {
	display: block;
	font-weight: 500;
	line-height: 20.8px;
	max-width: 300px;
}
@media screen and (max-width: 600px) {
	.tradingstart_wrapper .content_wrapper .left_wrapper .text {
		font-size: 14px;
		max-width: 250px;
	}
}
.tradingstart_wrapper .content_wrapper .right_part {
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.tradingstart_wrapper .content_wrapper .right_part {
		position: relative;
		right: -32px;
	}
}
@media screen and (max-width: 600px) {
	.tradingstart_wrapper .content_wrapper .right_part {
		right: 16px;
		width: 100vw;
	}
}
.tradingstart_wrapper .content_wrapper .right_part img {
	object-fit: contain;
	object-position: center;
	width: 100%;
}
.reviews_wrapper {
	margin-bottom: 110px;
}
@media screen and (max-width: 1200px) {
	.reviews_wrapper {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.reviews_wrapper {
		margin-bottom: 72px;
		padding: 0 16px;
	}
}
.reviews_wrapper .content_wrapper {
	align-items: stretch;
	display: flex;
	margin: 0 -11px;
}
@media screen and (max-width: 660px) {
	.reviews_wrapper .content_wrapper {
		flex-direction: column;
		margin: 0;
	}
}
.reviews_wrapper .item_block {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 11px;
	padding: 40px 20px;
	text-align: center;
	width: calc(50% - 22px);
}
@media screen and (max-width: 660px) {
	.reviews_wrapper .item_block {
		margin: 0 0 16px;
		width: 100%;
	}
}
.reviews_wrapper .item_block .info_wrapper,
.reviews_wrapper .item_block .speciality {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-width: 350px;
	width: 100%;
}
.reviews_wrapper .item_block .name {
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}
.reviews_wrapper .item_block .rate {
	border-bottom: 1px solid #AF40E0;
	color: #AF40E0;
	display: block;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 24px;
	padding-bottom: 16px;
	width: 100%;
}
.reviews_wrapper .item_block .bonuses {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 70px;
}
.reviews_wrapper .item_block .speciality .speciality_name {
	color: #AF40E0;
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}
.reviews_wrapper .item_block .speciality li {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 16px;
}
.reviews_wrapper .item_block .speciality li:not(:last-child) {
	margin-bottom: 10px;
}
.reviews_wrapper .item_block .speciality li img {
	height: 14px;
	margin-right: 16px;
	object-fit: contain;
	object-position: center;
	widows: 19px;
}
.reviews_wrapper .item_block .speciality li span {
	font-weight: 500;
}
.NewsStyle_news_wrapper__53-o1 {
	margin-bottom: 110px;
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_wrapper__53-o1 {
		margin-bottom: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 {
		margin-bottom: 72px;
		padding: 0 16px;
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px 32px;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK {
		flex-direction: column;
		margin-bottom: 16px;
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 12px 48px;
	transition: opacity 0.2s;
	width: calc(50% - 24px);
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY:hover {
	opacity: 0.8;
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY img {
	border-radius: 16px;
	display: block;
	margin-bottom: 16px;
	max-height: 236px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY img {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY {
		width: calc(100% - 16px);
	}
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY:last-child {
		display: none;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_item__5hmBY {
		margin-bottom: 26px;
		width: calc(100% - 16px);
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_name__5BV7b {
	display: block;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_name__5BV7b {
		font-size: 18px;
		margin-bottom: 6px;
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_date__Pfl5G {
	display: block;
	font-weight: 500;
	margin-bottom: 10px;
	opacity: 0.7;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_date__Pfl5G {
		font-size: 14px;
		margin-bottom: 6px;
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_text__vr5Xt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	display: -webkit-box;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_text__vr5Xt {
		font-size: 14px;
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_info_wrapper__lw2EA {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_read_wrapper__aEEJ9 {
	align-items: center;
	display: flex;
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_read_wrapper__aEEJ9 span {
	color: #AF40E0;
	display: inline-block;
	font-weight: 500;
	margin-right: 8px;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_read_wrapper__aEEJ9 span {
		font-size: 14px;
	}
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_content_wrapper__XJACK .NewsStyle_read_wrapper__aEEJ9 img {
	margin-bottom: 0;
	width: 24px;
}
.NewsStyle_news_wrapper__53-o1 .NewsStyle_main_button__e-omz {
	display: block;
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.NewsStyle_news_page__HWPho .NewsStyle_news_wrapper__EtWvz {
	margin-bottom: 110px;
	margin-top: 80px;
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_page__HWPho .NewsStyle_news_wrapper__EtWvz {
		margin-bottom: 88px;
		margin-top: 88px;
		padding: 0 32px;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_news_wrapper__EtWvz {
		margin-bottom: 72px;
		margin-top: 64px;
		padding: 0 16px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk {
		margin-bottom: 32px;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk {
		margin-bottom: 22px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ {
	align-items: center;
	background-color: #eee;
	border-bottom: 3px solid #3d0047;
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
	min-width: -webkit-max-content;
	min-width: max-content;
	padding: 26px 16px;
	text-align: center;
	transition: background-color 0.2s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ {
		padding: 23px 16px;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ {
		margin-bottom: 10px;
		padding: 20px 12px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ span {
	color: #2c2c2c;
	font-size: 18px;
	font-weight: 500;
	transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ span {
		font-size: 16px;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ span {
		font-size: 14px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ.NewsStyle_active__htIX0,
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ:hover {
	background-color: #3d0047;
	cursor: pointer;
}
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ.NewsStyle_active__htIX0 span,
.NewsStyle_news_page__HWPho .NewsStyle_navigation__fGnAk .NewsStyle_item__s1FkZ:hover span {
	color: #AF40E0;
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px 32px;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt {
		flex-direction: column;
		margin-bottom: 16px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 8px 64px;
	width: calc(33.333% - 16px);
}
@media screen and (max-width: 1200px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ {
		margin-bottom: 48px;
		width: calc(50% - 16px);
	}
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ:last-child {
		display: none;
	}
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ {
		width: calc(100% - 16px);
	}
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ:last-child {
		display: block;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ img {
	display: block;
	margin-bottom: 16px;
	max-height: 300px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_item__s1FkZ img {
		margin-bottom: 10px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_name__aZbeq {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 16px;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_name__aZbeq {
		font-size: 18px;
		margin-bottom: 10px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_text__ZlA3B {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	margin-bottom: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_text__ZlA3B p {
	color: #fff;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_text__ZlA3B {
		margin-bottom: 10px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_date__wjG9O {
	color: #fff;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_date__wjG9O {
		font-size: 14px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_info_wrapper__d4vjH {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_read_wrapper__sPR0v {
	align-items: center;
	display: flex;
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_read_wrapper__sPR0v span {
	color: #AF40E0;
	display: inline-block;
	font-weight: 500;
	margin-right: 8px;
}
@media screen and (max-width: 660px) {
	.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_read_wrapper__sPR0v span {
		font-size: 14px;
	}
}
.NewsStyle_news_page__HWPho .NewsStyle_content_wrapper__q2xzt .NewsStyle_read_wrapper__sPR0v img {
	margin-bottom: 0;
	width: 24px;
}
.NewsItemStyle_newsitem_page__IwiHU {
	display: flex;
	padding: 138px 32px 0;
}
@media screen and (max-width: 1200px) {
	.NewsItemStyle_newsitem_page__IwiHU {
		flex-direction: column;
	}
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU {
		margin-bottom: 72px;
		margin-top: 30px;
		padding: 110px 16px 0;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN {
	margin-right: 40px;
	width: calc(68% - 40px);
}
@media screen and (max-width: 1200px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN {
		margin-right: 0;
		width: 100%;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN h3 {
	color: #fff;
	font-size: 50px;
	font-weight: 500;
	margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN h3 {
		font-size: 44px;
		margin-bottom: 16px;
	}
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN h3 {
		color: #fff;
		font-size: 26px;
		margin-bottom: 10px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN .NewsItemStyle_info_block__e3Hem {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN .NewsItemStyle_info_block__e3Hem span {
	color: #fff;
	display: inline-block;
	margin-bottom: 4px;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN .NewsItemStyle_info_block__e3Hem span:not(:last-child) {
	font-weight: 500;
	margin-right: 8px;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN .NewsItemStyle_info_block__e3Hem span:last-child {
	font-size: 14px;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN img {
	display: block;
	margin-bottom: 16px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN img {
		max-height: 200px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN p {
	color: #fff;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_content_wrapper__63gAN p {
		font-size: 14px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh {
	display: flex;
	flex-direction: column;
	width: 32%;
}
@media screen and (max-width: 1200px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh {
		margin-top: 56px;
		width: 100%;
	}
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh {
		margin-top: 48px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh h3 {
		margin-bottom: 10px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh h3 b {
	color: #AF40E0;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_item__daAzE {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 64px;
}
@media screen and (max-width: 1200px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_item__daAzE {
		margin-bottom: 32px;
	}
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_item__daAzE {
		margin-bottom: 24px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_name__6Iei3 {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 16px;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_name__6Iei3 {
		font-size: 18px;
		margin-bottom: 10px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_text__W7Pis {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	margin-bottom: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_text__W7Pis p {
	color: #fff;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_text__W7Pis {
		margin-bottom: 10px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_date__6IGkF {
	color: #fff;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_date__6IGkF {
		font-size: 14px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_info_wrapper__8KggK {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_read_wrapper__XbYBN {
	align-items: center;
	display: flex;
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_read_wrapper__XbYBN span {
	color: #AF40E0;
	display: inline-block;
	font-weight: 500;
	margin-right: 8px;
}
@media screen and (max-width: 660px) {
	.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_read_wrapper__XbYBN span {
		font-size: 14px;
	}
}
.NewsItemStyle_newsitem_page__IwiHU .NewsItemStyle_news_wrapper__2iASh .NewsItemStyle_read_wrapper__XbYBN img {
	margin-bottom: 0;
	width: 24px;
}
.contactus_page .container {
	align-items: flex-start;
}
@media screen and (max-width: 1200px) {
	.contactus_page .container {
		flex-direction: column-reverse;
	}
}
.contactus_page .info_wrapper {
	background-image: none;
	padding: 0;
	text-align: left;
}
.contactus_page .info_wrapper h3 {
	margin-bottom: 10px;
	margin-right: auto;
	max-width: none;
}
.contactus_page .info_wrapper h3,
.contactus_page .info_wrapper h3 span {
	font-size: 60px;
	font-weight: 700;
	text-align: left;
}
@media screen and (max-width: 1200px) {
	.contactus_page .info_wrapper h3,
	.contactus_page .info_wrapper h3 span {
		font-size: 55px;
	}
}
@media screen and (max-width: 660px) {
	.contactus_page .info_wrapper h3,
	.contactus_page .info_wrapper h3 span {
		font-size: 40px;
	}
}
.contactus_page .info_wrapper .subheader {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 32px;
	margin-right: auto;
}
@media screen and (max-width: 660px) {
	.contactus_page .info_wrapper .subheader {
		font-size: 16px;
	}
}
.contactus_page .info_wrapper img {
	border-radius: 16px;
	bottom: auto;
	display: block;
	left: auto;
	margin-bottom: 16px;
	margin-top: 0;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.contactus_page .info_wrapper img {
		max-height: 350px;
	}
}
@media screen and (max-width: 660px) {
	.contactus_page .info_wrapper img {
		max-height: 250px;
	}
}
.contactus_page .info_wrapper .text {
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
}
@media screen and (max-width: 660px) {
	.contactus_page .info_wrapper .text {
		font-size: 14px;
	}
}
.contactus_page .info_wrapper .address_wrapper {
	margin-right: auto;
}
.contactus_page .info_wrapper .address_wrapper .item {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}
.contactus_page .info_wrapper .address_wrapper .name {
	color: #AF40E0;
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}
@media screen and (max-width: 660px) {
	.contactus_page .info_wrapper .address_wrapper .name {
		font-size: 16px;
	}
}
.contactus_page .info_wrapper .address_wrapper .address_text {
	color: #fff;
	font-weight: 500;
}
.contactus_page .info_wrapper .address_wrapper .address_text:not(:last-child) {
	margin-bottom: 8px;
}
@media screen and (max-width: 660px) {
	.contactus_page .info_wrapper .address_wrapper .address_text {
		font-size: 14px;
	}
}
@media screen and (max-width: 1200px) {
	.contactus_page form {
		margin: 0 auto;
	}
}
.contactus_page form .captcha_wrapper {
	margin-top: 16px;
}
.markets_page {
	margin: 0 0 100px;
	padding: 186px 0 50px;
}
@media screen and (max-width: 1200px) {
	.markets_page {
		margin: 0 32px 80px;
		padding: 184px 0 0;
	}
}
@media screen and (max-width: 600px) {
	.markets_page {
		margin: 0 16px 48px;
		padding: 176px 0 0;
	}
}
.markets_page .top_block {
	display: flex;
	margin-bottom: 48px;
}
@media screen and (max-width: 1200px) {
	.markets_page .top_block {
		flex-direction: column;
		margin-bottom: 72px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .top_block {
		margin-bottom: 32px;
		margin-bottom: 56px;
	}
}
.markets_page .menu_wrapper {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	margin-right: 72px;
	max-width: 300px;
	min-width: 300px;
}
@media screen and (max-width: 1200px) {
	.markets_page .menu_wrapper {
		margin-bottom: 48px;
		margin-right: 0;
		max-height: 65px;
		max-width: none;
		overflow: hidden;
		position: relative;
		transition: max-height 0.2s;
		width: 100%;
	}
	.markets_page .menu_wrapper:before {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABISURBVHgBjc7bDQAQDIVhoxjdJh3FKEeLB4meXpI+kP8TDcDQnbq9JWPNbcUOgjMhftBuvwsP0ybC6cNeUPkNwzkiuIYcTNEClW/f4Bvc590AAAAASUVORK5CYII=);
		background-position: 50%;
		background-repeat: no-repeat;
		content: "";
		height: 26px;
		position: absolute;
		right: 12px;
		top: 18px;
		transition: transform 0.2s;
		width: 44px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .menu_wrapper {
		max-height: 58px;
	}
}
@media screen and (max-width: 1200px) {
	.markets_page .menu_wrapper.active_menu {
		max-height: 1000px;
	}
	.markets_page .menu_wrapper.active_menu:before {
		transform: rotate(180deg);
	}
}
.markets_page .menu_wrapper .menu_item {
	align-items: center;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.239);
	display: flex;
	padding: 16px 32px;
}
@media screen and (max-width: 600px) {
	.markets_page .menu_wrapper .menu_item {
		padding: 16px;
	}
}
.markets_page .menu_wrapper .menu_item svg {
	fill: #fff;
	height: 32px;
	margin-right: 20px;
	transition: fill 0.2s;
	width: 32px;
}
@media screen and (max-width: 600px) {
	.markets_page .menu_wrapper .menu_item svg {
		height: 24px;
		width: 24px;
	}
}
.markets_page .menu_wrapper .menu_item span {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	transition: color 0.2s;
}
@media screen and (max-width: 600px) {
	.markets_page .menu_wrapper .menu_item span {
		font-size: 16px;
	}
}
@media screen and (max-width: 1200px) {
	.markets_page .menu_wrapper .menu_item.active {
		order: -1;
	}
}
.markets_page .menu_wrapper .menu_item.active svg,
.markets_page .menu_wrapper .menu_item:hover svg {
	fill: #AF40E0;
}
.markets_page .menu_wrapper .menu_item.active span,
.markets_page .menu_wrapper .menu_item:hover span {
	color: #AF40E0;
}
.markets_page .menu_wrapper .main_button {
	margin: 24px 32px;
	padding: 18px 50px;
}
.markets_page .info_wrapper {
	width: calc(100% - 372px);
}
@media screen and (max-width: 1200px) {
	.markets_page .info_wrapper {
		width: 100%;
	}
}
.markets_page .info_wrapper h3 {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.markets_page .info_wrapper h3 {
		font-size: 55px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .info_wrapper h3 {
		font-size: 40px;
	}
}
.markets_page .info_wrapper p {
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 500;
	line-height: 25.2px;
	margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
	.markets_page .info_wrapper p {
		font-size: 16px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .info_wrapper p {
		font-size: 14px;
		margin-bottom: 16px;
	}
}
.markets_page .info_wrapper p strong {
	color: #AF40E0;
	font-weight: 500;
}
.markets_page .info_wrapper .items_wrapper {
	display: flex;
	margin: 0 -56px;
}
@media screen and (max-width: 1200px) {
	.markets_page .info_wrapper .items_wrapper {
		margin: 0 -50px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .info_wrapper .items_wrapper {
		flex-direction: column;
		margin: 0;
	}
}
.markets_page .info_wrapper .items_wrapper .item {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 56px;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.markets_page .info_wrapper .items_wrapper .item {
		margin: 0 50px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .info_wrapper .items_wrapper .item {
		align-items: flex-start;
		justify-content: flex-start;
		margin: 0 0 16px;
		text-align: left;
	}
}
.markets_page .info_wrapper .items_wrapper .item .count {
	color: #AF40E0;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
	.markets_page .info_wrapper .items_wrapper .item .count {
		font-size: 24px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .info_wrapper .items_wrapper .item .count {
		font-size: 20px;
		margin-bottom: 6px;
	}
}
.markets_page .info_wrapper .items_wrapper .item .text {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
@media screen and (max-width: 600px) {
	.markets_page .info_wrapper .items_wrapper .item .text {
		font-size: 16px;
	}
}
.markets_page .table_block {
	background-clip: padding-box, border-box;
	background-image: linear-gradient(#060f0f, #060f0f), linear-gradient(180deg, #AF40E0, #AF40E033);
	background-origin: border-box;
	border: 1px solid #0000;
	border-radius: 16px;
}
.markets_page .table_block.curr_table .row img {
	max-height: 32px;
	max-width: 94px;
}
.markets_page .table_block.curr_table .row .exname {
	margin-bottom: 0;
}
@media screen and (max-width: 600px) {
	.markets_page .table_block.small_table .row {
		align-items: center;
		display: flex;
	}
}
.markets_page .table_block .row {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 20px 90px;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row {
		padding: 16px 40px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row {
		grid-column-gap: 12px;
		grid-row-gap: 8px;
		align-items: start;
		display: grid;
		grid-template-columns: 1.2fr 0.8fr;
		grid-template-rows: repeat(1, 1fr);
		padding: 16px 12px;
	}
}
.markets_page .table_block .row img {
	display: block;
	max-height: 45px;
	max-width: 120px;
	object-fit: contain;
	object-position: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row img {
		margin-right: 24px;
		max-height: 24px;
		max-width: 75px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row img {
		grid-area: 1/1/2/3;
		object-position: left;
	}
}
.markets_page .table_block .row:not(:last-child) {
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.239);
}
.markets_page .table_block .row span {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row span {
		font-size: 16px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row span {
		font-size: 14px;
	}
}
.markets_page .table_block .row .double {
	display: flex;
	flex-direction: column;
	max-width: 336px;
	width: 100%;
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row .double {
		grid-area: 2/1/3/2;
	}
}
.markets_page .table_block .row .exname {
	display: block;
	margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row .exname {
		font-size: 16px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row .exname {
		font-size: 14px;
	}
}
.markets_page .table_block .row .sub_exname {
	font-size: 16px;
	opacity: 0.7;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row .sub_exname {
		font-size: 14px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row .sub_exname {
		font-size: 12px;
	}
}
.markets_page .table_block .row .state {
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin: 0 12px;
	max-width: 200px;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row .state {
		font-size: 14px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row .state {
		font-size: 12px;
		grid-area: 3/1/4/2;
		margin: 0;
		text-align: left;
	}
}
.markets_page .table_block .row .fee {
	display: block;
	max-width: 180px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	.markets_page .table_block .row .fee {
		font-size: 14px;
	}
}
@media screen and (max-width: 600px) {
	.markets_page .table_block .row .fee {
		font-size: 12px;
		grid-area: 2/2/4/3;
	}
}
/*# sourceMappingURL=968.3df4cd76.chunk.css.map*/

.burgerActive {
	transform: translateX(0);
}
.burger-ico-close {
	display: none;
}

.your-class-name {
	display: none;
	transition: display 0.4s ease-in-out;
}
.burger-item-color {
	color: #AF40E0;
}
.rotate-icon {
	transform: rotate(180deg);
}

.footer-box{
	display: flex;
	margin-top: 10px;

}
.row{
	display: flex;
	align-items: center;
	flex-wrap: wrap	;
}
.secured{
	display: flex;
	align-items: center;
	/* flex-wrap: wrap	; */
}
.featured{
	display: flex;
	align-items: center;
	/* flex-wrap: wrap	; */
}
.text-md-left{
	margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
	color: #fff;
}
.vertical-divider {
    border-right: 1px solid silver;
    height: 120px;
}
.partners a, .audited a, .secured a, .featured a, .social a {
    display: block;
	
}
.footer-icon-light{
	max-width: 100%;
    width: 75px;
    height: 100%;
    margin: 0 10px;
    padding-bottom: 20px;
}
.footer-icon{
	max-width: 100%;
    width: 85px;
    height: 100%;
    margin: 0 10px;
    padding-bottom: 20px;
}
.payment-footer-icon{
	max-width: 100%;
    width: 75px;
    height: 100%;
    margin: 0 10px;
    padding-bottom: 20px;
}
.col-ft{
	padding: 0px 15px;
}
@media screen and (max-width: 1100px) {
.footer-box{
	flex-direction: column;
}
.vertical-divider{
	display: none;
}
.footer-icon-light{
    max-width: 55px;
	max-height: 75px;
}
.footer-icon{
    max-width: 65px;
	max-height: 63px;
}
.payment-footer-icon{
    max-width: 55px;
	max-height: 55px;
}
}

.error {
	border: 2px solid red;
	outline: none;
}

/* CSS for error messages */
.error-message {
	color: red;
	font-size: 12px;
	margin-top: 5px;
}

#toast-container {
	margin-right: 20px !important;
}

.info_description_footer {
	padding: 20px;
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 25.2px;
	margin-bottom: 32px;
}

#toast-container {
	bottom: 20px;
	right: 20px;
}