@charset "utf-8";
@font-face {
		font-family: 'Gilroy';
		src: url('../fonts/Gilroy-Medium.woff') format('woff'), url('../fonts/Gilroy-Medium.ttf') format('truetype');
		font-weight: 500;
		font-style: normal;
		font-display: swap;
}
@font-face {
		font-family: 'Gilroy';
		src: url('../fonts/Gilroy-SemiBold.woff') format('woff'), url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
		font-weight: 600;
		font-style: normal;
		font-display: swap;
}
@font-face {
		font-family: 'Gilroy';
		src: url('../fonts/Gilroy-Bold.woff') format('woff'), url('../fonts/Gilroy-Bold.ttf') format('truetype');
		font-weight: bold;
		font-style: normal;
		font-display: swap;
}
@font-face {
		font-family: 'Gilroy';
		src: url('../fonts/Gilroy-ExtraBold.woff') format('woff'), url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
		font-weight: 800;
		font-style: normal;
		font-display: swap;
}
@font-face {
		font-family: 'Gilroy';
		src: url('../fonts/Gilroy-Black.woff') format('woff'), url('../fonts/Gilroy-Black.ttf') format('ttf');
		font-weight: 900;
		font-style: normal;
		font-display: swap;
}

.cashback {
	--font: Gilroy, -apple-system, "Open Sans", system-ui, "sans-serif";
	--black: #080610;
	--white: #fff;
	--grey: #A29DBA;
	--dark-grey: #484554;
	--grad-orange: radial-gradient(100% 2339.91% at 0% 0%, #E571FF 9.59%, #FF8933 100%);
	--grad-orange-second: radial-gradient(39.51% 911.39% at 50% 73%, #E571FF 9.59%, #FF8933 100%);
	--grad-orange-rev: linear-gradient(90deg, #FF8933 0%, #E975DF 100%);
	--grad-pink: linear-gradient(88.82deg, #E874E6 33.71%, #FA836B 106.19%);
	--block: #110E1C;
	--light-dark: #1D1B26;
	--rose-light: #FF51BC;
	--peach-light: #FF627E;
	--green-light: #4EED34;
	font-size: 1.111111vw;
}
.cashback, .cashback_body {
		height: 100%;
		box-sizing: border-box;
		text-rendering: optimizeLegibility !important;
		-webkit-font-smoothing: antialiased;
}
.cashback_body {
		margin: 0;
		padding: 0;
		background: var(--black);
		font: 500 16px/1.45 var(--font);
		color: var(--grey);
		-webkit-text-size-adjust: none;
		display: flex;
		flex-direction: column;
}
.cashback, .cashback *, .cashback *:before, .cashback *:after {
		box-sizing: border-box;
}
.cashback form, .cashback fieldset {
		margin: 0;
		padding: 0;
		border: 0;
}
.cashback_input {
		font: bold 18px/1.45 var(--font);
		color: var(--white);
		outline: none;
		text-align: left;
		-webkit-appearance: none;
		box-shadow: none;
		border: 1px solid transparent;
		background: var(--light-dark);
		margin: 0;
		padding: 16px 19px;
		border-radius: 16px;
		width: 100%;
		display: block;
}
.cashback_input_error {
	margin-top: 2px;
	font-size: 14px;
	color: #ff3f56;
}
.cashback_input::-webkit-input-placeholder {
		opacity: 1;
		color: var(--grey);
}
.cashback_input::-moz-placeholder {
		opacity: 1;
		color: var(--grey);
}
.cashback_input:-ms-input-placeholder {
		opacity: 1;
		color: var(--grey);
}
.cashback_input:focus::-webkit-input-placeholder {
		opacity: 0.5 !important;
}
.cashback_input:focus::-moz-placeholder {
		opacity: 0.5 !important;
}
.cashback_input:focus:-ms-input-placeholder {
		opacity: 0.5 !important;
}
.cashback_input::-ms-clear {
		display: none;
}
.cashback button::-moz-focus-inner {
		border: 0;
}
textarea.cashback_input {
		resize: none;
}
.mfp-hide {
		display: none !important;
}
.cashback img, .cashback svg, .cashback picture {
		border: 0;
		vertical-align: top;
}
.cashback a {
		text-decoration: underline;
		outline: none;
		cursor: pointer;
}
.cashback strong {
		font-weight: bold;
}
.cashback ol, .cashback ul, .cashback li {
		list-style: none;
}
.cashback_btn {
		flex: 0 0 auto;
		max-width: 100%;
		-webkit-appearance: none;
		cursor: pointer;
		user-select: none;
		text-decoration: none !important;
		text-align: center;
		border: 0;
		outline: none;
		margin: 0;
		padding: 0 15px;
		font: bold 16px/1.45 var(--font);
		transition-property: color;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
		position: relative;
		display: inline-flex;
		vertical-align: top;
		align-items: center;
		justify-content: center;
		border-radius: 15px;
		height: 55px;
}
.cashback_btn:active {
		transition: none;
		opacity: 0.7;
}
.cashback_btn > * {
		position: relative;
		z-index: 2;
}
@media (pointer:fine) {
		.cashback_btn:before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				bottom: 0;
				right: 0;
				z-index: 1;
				border-radius: inherit;
				opacity: 0;
				background: var(--grad-orange);
				transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
				transform: scale(-1, -1);
		}
		.cashback_btn:hover {
				color: var(--white) !important;
		}
		.cashback_btn:hover:before {
				opacity: 1;
		}
}
.cashback_btn-small {
		font-weight: 600;
		font-size: 14px;
		height: 40px;
		border-radius: 12px;
}
.cashback_btn-white {
		color: var(--black);
		background: var(--white);
}
.cashback_btn-dark {
		color: var(--white);
		background: var(--black);
}
.cashback_btn-grad {
		color: var(--white);
		background: var(--grad-orange);
}
.cashback_btn-grey {
		color: var(--white);
		background: #12101A;
}

.cashback span[data-text] {
		display: inline-block;
		vertical-align: top;
}

.cashback_h1, .cashback_h2 {
		color: var(--white);
		font-weight: 700;
		font-size: 36px;
		line-height: 1.15;
		margin: 0 0 20px 0;
}
.cashback_h3 {
		color: var(--white);
}
.cashback_mainwrap {
		flex: 0 0 auto;
		width: 100%;
		min-height: 100%;
		position: relative;
		display: flex;
		flex-direction: column;
}
.cashback_content {
		flex: 1 0 auto;
}
.cashback_header, .cashback_footer {
		flex: 0 0 auto;
}
.cashback_container {
		position: relative;
		z-index: 2;
		padding: 0 20px;
		flex: 0 0 auto;
		width: 100%;
		margin: 0 auto;
		max-width: 1320px;
}
.cashback_header {
		position: fixed;
		z-index: 100;
		top: 0;
		left: 0;
		width: 100%;
		background: var(--black);
		height: 60px;
}
.cashback_header .cashback_container {
		height: 100%;
		display: flex;
		align-items: center;
		gap: 15px;
}
.cashback_toggle-menu {
		flex: 0 0 auto;
		position: relative;
		width: 40px;
		height: 40px;
		background: var(--light-dark);
		border-radius: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		user-select: none;
		z-index: 3;
}
.cashback_toggle-menu:before, .cashback_toggle-menu:after {
		content: '';
		flex: 0 0 auto;
		width: 16px;
		height: 2px;
		margin: 3px 0;
		background: var(--white);
		border-radius: 1px;
		transform: translate3d(0, 0, 0) rotate(0deg);
		backface-visibility: hidden;
		transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		z-index: 2;
}
.cashback_toggle-menu div {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border-radius: inherit;
		background: var(--grad-orange);
		opacity: 0;
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (pointer:fine) {
		.cashback_toggle-menu:hover div {
				opacity: 1;
		}
}
.cashback_open-menu .cashback_toggle-menu div {
		opacity: 1;
}
.cashback_open-menu .cashback_toggle-menu:before {
		transform: translate3d(0, 4px, 0) rotate(-135deg);
}
.cashback_open-menu .cashback_toggle-menu:after {
		transform: translate3d(0, -4px, 0) rotate(135deg);
}
.cashback_head-logo {
	flex: 0 0 auto;
	width: 156px;
	/* height: 25px; */
	background-size: contain;
	text-align: left;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.cashback_head-logo img {
	max-width: 100%;
}
.cashback_head-links {
		color: var(--grey);
}
.cashback_head-links > * {
		text-decoration: none !important;
		color: var(--grey);
		transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		user-select: none;
}
@media (pointer:fine) {
		.cashback_head-links > a:hover {
				color: var(--white);
		}
}
.cashback_head-links > .cashback_active {
		color: var(--white);
		pointer-events: none;
}
.cashback_soc {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px;
}
.cashback_soc > * {
		flex: 0 0 auto;
		position: relative;
		width: 50px;
		height: 50px;
		border-radius: 14px;
		background: var(--light-dark);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 8px;
		user-select: none;
}
@media (pointer:fine) {
		.cashback_soc > *:before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				bottom: 0;
				right: 0;
				border-radius: inherit;
				background: var(--grad-orange);
				opacity: 0;
				transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		}
		.cashback_soc > a:hover:before {
				opacity: 1;
		}
}
.cashback_soc img {
		flex: 0 0 auto;
		width: auto;
		height: auto;
		position: relative;
		max-width: 100%;
		max-height: 100%;
}
@media only screen and (max-width: 1180px) {
		.cashback_menu {
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				position: fixed;
				z-index: 2;
				background: var(--black);
				overflow: hidden;
				overflow-y: auto;
				display: flex;
				flex-direction: column;
				gap: 30px;
				padding: 20px 20px 35px 20px;
				transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		}
		body.cashback_open-menu {
				overflow: hidden;
		}
		body:not(.cashback_open-menu) .cashback_menu {
				opacity: 0;
				pointer-events: none;
		}
		.cashback_menu:before {
				content: '';
				display: block;
				position: sticky;
				z-index: 5;
				background: var(--dark);
				margin: 0 -20px;
				height: 60px;
		}
		.cashback_head-links {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				font-weight: bold;
				font-size: 24px;
				line-height: 1.3;
				gap: 20px;
		}
		.cashback_head-soc {
				margin-top: auto;
				font-weight: 600;
				font-size: 12px;
				line-height: 14px;
				letter-spacing: 0.05em;
				text-transform: uppercase;
				color: var(--grey);
		}
		.cashback_head-soc .cashback_soc {
				margin: 10px 0 0 0;
		}
		.cashback_lang .cashback_toggle {
				display: none;
		}
		.cashback_lang .cashback_links {
				display: flex;
				align-items: center;
				flex-wrap: wrap;
				gap: 10px 30px;
				font-weight: 600;
				font-size: 18px;
				line-height: 1.45;
				color: var(--grey);
		}
		.cashback_lang .cashback_links > * {
				text-decoration: none !important;
				flex: 0 0 auto;
				color: var(--grey);
				transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
				user-select: none;
		}
		.cashback_lang .cashback_links > .cashback_active {
				color: var(--white);
		}
		.cashback_head-btns {
				display: none;
		}
}
.cashback_footer {
		font-weight: 600;
		font-size: 12px;
		line-height: 14px;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		color: var(--grey);
}
.cashback_footer .cashback_container {
		display: flex;
		flex-direction: column;
		gap: 40px;
		position: relative;
}
.cashback_foot-logo > * {
		display: block;
		overflow: hidden;
		text-align: left;
		text-indent: -100vw;
		width: 180px;
		height: 30px;
		background: url("https://anza-trading.com/images/logo.png") no-repeat 0 50%;
		background-size: contain;
		flex: 0 0 auto;
}
.cashback_foot-soc .cashback_soc {
		margin-top: 20px;
}
.cashback_foot-menu {
		display: flex;
		flex-direction: column;
		gap: 40px;
}
.cashback_foot-menu .cashback_links {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		font-weight: 600;
		font-size: 16px;
		line-height: 1.45;
		gap: 15px;
		text-transform: none;
		letter-spacing: normal;
		margin: 20px 0 0 0;
}

@media (pointer:fine) {
		.cashback_foot-menu a:not(.btn):hover:after, .cashback_foot-bottom a:not(.btn):hover:after {
				opacity: 1;
		}
}
.cashback_foot-bottom {
		font-weight: 500;
		font-size: 10px;
		line-height: 1.4;
		text-transform: none;
		letter-spacing: normal;
		margin: 20px 0 0 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 30px 0 40px 0;
		display: flex;
		flex-direction: column;
		gap: 10px;
}
@media only screen and (max-width: 768px) {
		.cashback_foot-bottom > *:nth-child(1) {
				font-weight: bold;
				font-size: 16px;
				line-height: 1.45;
				color: var(--white);
		}
		.cashback_foot-bottom > *:nth-child(3) {
				margin: 20px 0;
		}
		.cashback_foot-bottom > *:nth-child(4) {
				font-weight: 600;
				font-size: 12px;
				line-height: 1.4;
		}
}
.cashback_section {
		padding-top: 100px;
}
.cashback_top-title {
		text-align: center;
		color: var(--grey);
		font-weight: 600;
		font-size: 16px;
		line-height: 1.45;
		margin: 0 0 40px 0;
}
.cashback_top-block {
		padding-top: 85px;
		overflow: hidden;
		text-align: left;
}
.cashback_top-block .cashback_container > * {
		position: relative;
		z-index: 3;
}
.cashback_top-block .cashback_top-title {
		margin-bottom: 25px;
		text-align: inherit;
}
.cashback_top-block .cashback_btn {
		width: 100%;
}
.cashback_top-block .cashback_h1 {
		font-size: 30px;
		margin-bottom: 8px;
}
.cashback_top-block .cashback_h1 span {
		white-space: nowrap;
}
.cashback_top-block .cashback_text strong {
		font-weight: inherit;
		color: var(--white);
		white-space: nowrap;
}
.cashback_top-block ul {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 26px 20px;
		margin: 30px 0 0 0;
		padding: 0;
		text-align: left;
		color: var(--white);
		font-weight: 600;
		font-size: 13px;
		line-height: 1.45;
}
.cashback_top-block li:before {
		display: none;
}
.cashback_top-block li {
		flex: 0 0 auto;
		max-width: 100%;
		margin: 0;
		position: relative;
}
.cashback_top-block .cashback_single-icon-item {
	padding: 0 0 0 30px;
}
.cashback_top-block .cashback_double-icon-item {
	padding: 0 0 0 80px;
}
.cashback_top-block .cashback_exchange-icon {
	height: 20px;
	width: auto;
}
.cashback_single-icon-item .cashback_exchage-icon,
.cashback_double-icon-item .cashback_icon-group {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0, -50%, 0);
}
.cashback_top-block .cashback_icon-group {
	display: flex;
	gap: 5px;
}
.cashback_top-block .cashback_image {
		margin: 35px auto 0 auto;
		position: relative;
		width: 505px;
		z-index: 2;
}
.cashback_top-block .cashback_image:before, .cashback_top-block .cashback_image:after {
		content: '';
		position: absolute;
		z-index: 1;
		background: radial-gradient(100.74% 150.36% at 50% 0%, #E571FF 9.59%, #FF8933 100%);
		border-radius: 50%;
		backface-visibility: hidden;
}
@media only screen and (max-width: 1023px) {
		.cashback_top-block .cashback_image:before {
				width: 306.63px;
				height: 306.63px;
				top: 10px;
				left: 40px;
				filter: blur(40px);
				transform: rotate(-165deg) scale(1.2);
				opacity: 0.5;
		}
}
.cashback_top-block .cashback_image img {
		position: relative;
		z-index: 3;
		width: 100%;
		height: auto;
		border-radius: 10px 10px 0 0;
		background: var(--black);
		border-style: solid;
		border-width: 1px 1px 0 1px;
		border-color: #1C1A24;
		max-height: 294px;
		object-fit: cover;
		object-position: top center;
}
.cashback_how .cashback_top-title {
		text-align: left;
		margin-bottom: 0;
}
.cashback_how .cashback_h2 {
		margin-bottom: 10px;
}
.cashback_how ul {
		display: flex;
		flex-direction: column;
		font-weight: 600;
		font-size: 16px;
		line-height: 1.45;
		color: var(--grey);
		margin: -8px 0 -30px 0;
		padding: 0;
		pointer-events: none;
}
.cashback_how li:before {
		display: none;
}
.cashback_how li {
		position: relative;
		flex: 0 0 auto;
		width: 100%;
		margin: 0;
		padding: 0 0 0 60px;
		height: 170px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		pointer-events: all;
}
.cashback_how li:after {
		content: '';
		pointer-events: none;
		position: absolute;
		top: calc(50% + 38px);
		left: 20px;
		width: 1px;
		min-width: 0;
		height: calc(100% - 76px);
		display: block;
		background: var(--grad-orange);
		mask-image: url("../img/how/dash-vert.svg");
		mask-position: 50% 50%;
		border-radius: 1px;
}
.cashback_how li:nth-child(1):after {
		background: linear-gradient(to bottom, #FE5191 0%, #FEB1A1 100%);
}
.cashback_how li:nth-child(2):after {
		background: linear-gradient(to bottom, #FF8877 0%, #28A17F 100%);
}
.cashback_how li:last-child:before, .cashback_how li:last-child:after {
		display: none;
}
.cashback_how .cashback_pic {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		left: 0;
		margin: -20px 0;
}
.cashback_how li:nth-child(1) .cashback_pic {
		background: linear-gradient(33.23deg, #BFA8FF 0%, #FF51BC 47.16%, #FC4F49 100%);
}
.cashback_how li:nth-child(2) .cashback_pic {
		background: linear-gradient(38.61deg, #FCC4ED 0%, #FEA471 48.21%, #FF627E 100%);
}
.cashback_how li:nth-child(3) .cashback_pic {
		background: linear-gradient(24.93deg, #24C8DE 0%, #4EED34 100%);
}
.cashback_how .cashback_pic img {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: contain;
	object-position: center;
}
.cashback_how .cashback_pic div {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	opacity: 50%;
}
.cashback_how .cashback_h3 {
		font-weight: bold;
		font-size: 24px;
		line-height: 1.15;
		margin: 0 0 5px 0;
}
@media only screen and (max-width: 1023px) {
		.cashback_how br {
				display: none;
		}
}
.cashback_connection {
		text-align: center;
}
.cashback_connection .cashback_top-title {
		margin-bottom: 40px;
}
.cashback_connection .cashback_h2 {
		margin-bottom: 10px;
}
.cashback_connection .cashback_h2 strong {
		font-weight: inherit;
}
.cashback_connection ul {
		margin: 0 auto;
		max-width: 730px;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 30px;
}
.cashback_connection li:before {
		display: none;
}
.cashback_connection li {
		flex: 0 0 auto;
		width: 100%;
		background: var(--block);
		border: 0.5px solid #161321;
		border-radius: 17px;
		padding: 30px 20px;
		margin: 0;
}
.cashback_connection .cashback_image {
		margin: -30px -20px 30px -20px;
		border-radius: 16px 16px 0 0;
}
.cashback_connection .cashback_image img {
		width: 100%;
		height: auto;
		border-radius: inherit;
		border-radius: 16px 16px 0 0;
}
.cashback_connection .cashback_h3 {
		font-weight: 800;
		font-size: 20px;
		line-height: 1.2;
		margin: 0 auto 7px auto;
		max-width: 303px;
}
.cashback_trade .cashback_top-title {
		margin-bottom: 68px;
}
@media only screen and (max-width: 767px) {
		.cashback_trade .cashback_h2 br {
				display: none;
		}
}
.cashback_trade .cashback_image {
		position: relative;
		width: 258px;
		margin: 0 auto 67px auto;
}
.cashback_trade .cashback_image img {
		width: 100%;
		height: auto;
		position: relative;
		z-index: 2;
}
.cashback_trade .cashback_image:before, .cashback_trade .cashback_image:after {
		content: '';
		z-index: 1;
		position: absolute;
		top: 50%;
		left: 50%;
		backface-visibility: hidden;
}
.cashback_trade .cashback_image:before {
		width: 244.19px;
		height: 245px;
		border-radius: 50%;
		background: radial-gradient(100.74% 150.36% at 50% 0%, #E571FF 9.59%, #FF8933 100%), radial-gradient(100.74% 150.36% at 50% 0%, #EED490 9.59%, #0085FF 100%);
		filter: blur(226.367px);
		transform: translate3d(-50%, -50%, 0) rotate(90deg);
}
.cashback_trade .cashback_image:after {
		background: url("../img/trade/figures-mob.png") no-repeat 50% 50%;
		width: 332px;
		height: 258px;
		top: 53%;
		background-size: contain;
		transform: translate3d(-50%, -50%, 0);
}
.cashback_trade .cashback_h3 {
		font-weight: bold;
		font-size: 24px;
		line-height: 1.2;
		margin: 0 auto 30px auto;
		text-align: center;
}
.cashback_trade ul {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin: 0 auto;
		padding: 0;
		font-weight: 600;
		font-size: 18px;
		line-height: 1.15;
		color: var(--white);
}
.cashback_trade li:before {
		display: none;
}
.cashback_trade li {
		flex: 0 0 auto;
		width: 100%;
		margin: 0;
		padding: 1px;
		border-radius: 20px;
		background: linear-gradient(33.23deg, #C8CAFB 0%, #E7569A 100%);
		display: flex;
		flex-direction: column;
		position: relative;
}
.cashback_trade li > * {
		flex: 1 0 auto;
		width: 100%;
		background: var(--block);
		display: flex;
		align-items: center;
		gap: 10px;
		border-radius: 19px;
		padding: 14px;
}
.cashback_trade .cashback_pic {
		flex: 0 0 auto;
		width: 40px;
		height: 40px;
}
.cashback_trade .cashback_pic img {
		width: 100%;
		height: 100%;
		border-radius: 50%;
}
@media only screen and (max-width: 767px) {
		.cashback_trade li br {
				display: none;
		}
}
.cashback_trade .cashback_btn {
		width: 100%;
		margin-top: 25px;
		height: 60px;
}
.cashback_withdraw .cashback_image {
		margin: 0 auto 20px auto;
		max-width: 582px;
}
.cashback_withdraw .cashback_image img {
		width: 100%;
		height: auto;
		border-radius: 24px;
}
.cashback_withdraw .cashback_top-title {
		margin: 0;
}
.cashback_withdraw .cashback_h2 {
		font-size: 30px;
		line-height: 1.1;
		margin: 0 0 10px 0;
}
.cashback_referral {
	margin-top: 220px;
	margin-bottom: 150px;
	padding-top: 0;
	min-height: 462px;
	background-image: url("../img/referral/referral-bg.png");
	background-size: auto 462px;
	background-position: top center;
	background-repeat: no-repeat;
}
.cashback_referral .cashback_referral__img {
	display: block;
	margin: 0 auto;
	width: 163px;
	height: 160px;
}
.cashback_referral .cashback_referral__title {
	margin: 30px auto 0;
	max-width: 880px;
	font: 700 82px/1 var(--font);
	text-align: center;
	color: white;
}
.cashback_referral .cashback_referral__text {
	margin: 30px auto 0;
	max-width: 480px;
	font: 600 30/1.3 var(--font);
	color: var(--grey);
	text-align: center;
}
@media (max-width: 768px) {
	.cashback_referral {
		margin-top: 100px;
		margin-bottom: 0;
		min-height: 0;
		background-image: url("../img/referral/referral-bg.png");
		background-size: auto 300px;
		background-position: top center;
		background-repeat: no-repeat;
	}
	.cashback_referral .cashback_referral__img {
		width: 102px;
		height: 100px;
	}
	.cashback_referral .cashback_referral__title {
		margin: 30px auto 0;
		padding: 0 10px;
		font: 900 36px/1.1 var(--font);
	}
	.cashback_referral .cashback_referral__text {
		margin: 20px auto 0;
		padding: 0 20px;
		font: 600 16/1.2 var(--font);
		color: var(--grey);
		text-align: center;
	}
}
.cashback_platform .cashback_bg {
		position: relative;
		border-radius: 20px;
		background: var(--block);
		text-align: center;
		padding: 339px 30px 30px 30px;
}
.cashback_platform .cashback_bg > * {
		position: relative;
		z-index: 2;
}
.cashback_platform .cashback_image {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		overflow: hidden;
		border-radius: inherit;
		backface-visibility: hidden;
		transform: translate(0);
		z-index: 1;
}
.cashback_platform .cashback_image:before {
		content: '';
		position: absolute;
		top: -53px;
		left: 40%;
		transform: translate3d(-50%, 0, 0);
		transition-duration: 50%;
		background: conic-gradient(from 158.67deg at 42.14% 67.85%, #FFFFFF 0deg, #E571FF 186.02deg, #E571FF 324.77deg, #FFFFFF 360deg), #FF9C8B;
		opacity: 0.4;
		filter: blur(65.6829px);
		width: 441.39px;
		height: 284px;
		z-index: 1;
}
.cashback_platform .cashback_image:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: url("../img/platform/bg-mob.png") no-repeat 50% 0;
		z-index: 2;
		background-size: 554px auto;
}
.cashback_platform .cashback_image div {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: url("../img/platform/render-mob.png") no-repeat 50% 24px;
		background-size: 400px auto;
		z-index: 3;
		filter: drop-shadow(60px 24px 2.2px rgba(0, 0, 0, 0.4));
		backface-visibility: hidden;
		transform: translateZ(0);
}
.cashback_platform .cashback_links {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 15px 10px;
}
.cashback_platform .cashback_links .cashback_btn {
		flex: 1 1 auto;
		white-space: nowrap;
		gap: 0 10px;
		padding-left: 20px;
		padding-right: 20px;
		background: var(--white);
		color: var(--black);
		transition-property: color, background;
		transition-duration: 0.2s;
		transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cashback_platform .cashback_links .cashback_btn:before {
		display: none;
}
.cashback_platform .cashback_links .cashback_pic {
		flex: 0 0 auto;
		width: 30px;
		height: 30px;
		background: #F7F4F1;
		border-radius: 12px;
		position: relative;
		transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cashback_platform .cashback_links .cashback_btn-windows .cashback_pic:before, .cashback_platform .cashback_links .cashback_btn-windows .cashback_pic:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: 12px auto;
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cashback_platform .cashback_links .cashback_btn-windows .cashback_pic:before {
		background-image: url("../img/platform/windows.svg");
}
.cashback_platform .cashback_links .cashback_btn-windows .cashback_pic:after {
		background-image: url("../img/platform/windows-hover.svg");
		opacity: 0;
}
.cashback_platform .cashback_links .cashback_btn-appstore .cashback_pic {
		background-image: url("../img/platform/appstore.svg");
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: 18px auto;
		border-radius: 50%;
}
@media (pointer:fine) {
		.cashback_platform .cashback_links .cashback_btn:hover {
				color: var(--white);
		}
		.cashback_platform .cashback_links .cashback_btn-windows:hover {
				background-color: #2F82FF;
		}
		.cashback_platform .cashback_links .cashback_btn-windows:hover .cashback_pic {
				background-color: rgba(247, 244, 241, 0.1);
		}
		.cashback_platform .cashback_links .cashback_btn-windows:hover .cashback_pic:before {
				opacity: 0;
		}
		.cashback_platform .cashback_links .cashback_btn-windows:hover .cashback_pic:after {
				opacity: 1;
		}
		.cashback_platform .cashback_links .cashback_btn-appstore:hover {
				background-color: #4895f1;
		}
		.cashback_platform .cashback_links .cashback_btn-appstore:hover .cashback_pic {
				background-color: #3c78c4;
		}
}
.cashback_platform .cashback_top-title {
		margin-bottom: 30px;
}
.cashback_platform .cashback_h2 {
		font-weight: 900;
		line-height: 1.1;
		margin: 0 0 10px 0;
}
.cashback_users-value .cashback_top-title {
		margin-bottom: 30px;
}
.cashback_users-value ul {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin: 0;
		padding: 0;
		text-align: center;
		font-weight: 600;
		font-size: 18px;
		line-height: 1.4;
		color: var(--grey);
}
.cashback_users-value li {
		flex: 0 0 auto;
		width: 100%;
		background: var(--block) url("../img/users-value/bg.png") no-repeat 50% 0;
		background-size: cover;
		margin: 0;
		padding: 40px 30px;
		border-radius: 30px;
		min-height: 499px;
		display: flex;
		flex-direction: column;
		justify-content: center;
}
.cashback_users-value li:before {
		display: none;
}
.cashback_users-value .cashback_image {
		width: 80%;
		max-width: 226px;
		margin: 10px auto 32px auto;
		position: relative;
}
.cashback_users-value .cashback_image:before {
		content: '';
		display: block;
		padding-top: 100%;
		pointer-events: none;
}
.cashback_users-value .cashback_image img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
}
.cashback_users-value .cashback_h3 {
		font-weight: 900;
		font-size: 30px;
		line-height: 1.2;
		margin: 0 0 15px 0;
}
.cashback_steps {}
.cashback_steps .cashback_top-title {
		margin: 0;
}
.cashback_steps .cashback_h2 {
		display: inline-block;
		vertical-align: top;
		margin: 0;
}
.cashback_steps .cashback_h2:after {
		background-image: linear-gradient(88.82deg, #E874E6 33.71%, #FA836B 106.19%);
}
.cashback_steps .cashback_h3 {
		font-weight: 800;
		font-size: 24px;
		line-height: 1.3;
		margin: 0 0 10px 0;
}
.cashback_steps ol {
		background: url("../img/steps/figures-mob.png") no-repeat 50% 50%;
		background-size: contain;
		list-style: none;
		margin: 48px 0 -48px 0;
		padding: 8px 0 46px 0;
		display: flex;
		flex-direction: column;
		gap: 77px;
		pointer-events: none;
		font-weight: 600;
		font-size: 16px;
		line-height: 1.45;
		color: var(--grey);
		text-align: center;
}
.cashback_steps li {
		pointer-events: all;
		margin: 0 auto;
		padding: 0;
		position: relative;
		flex: 0 0 auto;
		width: 100%;
}
.cashback_steps li:before {
		content: '';
		display: block;
		margin: 0 auto 5px auto;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: contain;
		height: 147px;
		pointer-events: none;
}
@media only screen and (max-width: 767px) {
		.cashback_steps li:nth-child(1):before {
				background-image: url("../img/steps/01-mob.png");
		}
		.cashback_steps li:nth-child(2):before {
				background-image: url("../img/steps/02-mob.png");
		}
		.cashback_steps li:nth-child(3):before {
				background-image: url("../img/steps/03-mob.png");
		}
		.cashback_steps li:nth-child(4):before {
				background-image: url("../img/steps/04-mob.png");
		}
		.cashback_steps li:nth-child(5):before {
				background-image: url("../img/steps/05-mob.png");
		}
}
.cashback_join {
		text-align: center;
}
.cashback_join .cashback_bg {
		background: url("../img/join/bg-mob.png") no-repeat 50% 50%;
		background-size: contain;
}
.cashback_join .cashback_top-title {
		margin-bottom: 30px;
}
.cashback_join .cashback_h2 {
		margin-bottom: 10px;
		line-height: 1.1;
		margin: 0 auto 10px auto;
		max-width: 12em;
}
.cashback_join .cashback_max {
		margin: 0 auto;
		max-width: 270px;
}
.cashback_join .cashback_btn {
		min-width: 231px;
		height: 60px;
}
.cashback_faq {
		position: relative;
		z-index: 2;
}
.cashback_faq .cashback_top-title {
		margin-bottom: 40px;
}
.cashback_faq .cashback_h2 {
		font-weight: 900;
		font-size: 36px;
		line-height: 1.1;
}
.cashback_faq .cashback_el {
		font-weight: 600;
		font-size: 18px;
		line-height: 1.45;
		color: var(--grey);
		scroll-margin-top: 100px;
}
.cashback_faq .cashback_el:not(:last-child) {
		margin-bottom: 40px;
}
.cashback_faq .cashback_h3 {
		cursor: pointer;
		display: flex;
		align-items: center;
		min-height: 52px;
		font-weight: 600;
		font-size: 18px;
		line-height: 1.45;
		margin: 0;
		position: relative;
		padding: 0 65px 0 0;
}
.cashback_faq .cashback_arr {
		position: absolute;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		background: #1D192C;
		border-radius: 15px;
}
.cashback_faq .cashback_arr:before, .cashback_faq .cashback_arr:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border-radius: inherit;
		pointer-events: none;
}
.cashback_faq .cashback_arr:before {
		background: var(--grad-orange);
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		opacity: 0;
}
.cashback_faq .cashback_arr:after {
		background: url("../img/faq-arrow.svg") no-repeat 50% 50%;
		background-size: 20px auto;
		pointer-events: none;
		transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		transform: rotate(0deg);
}
@media (pointer:fine) {
		.cashback_faq .cashback_h3:hover .cashback_arr:before {
				opacity: 1;
		}
}
.cashback_faq .cashback_el.cashback_open .cashback_arr:before {
		opacity: 1;
}
.cashback_faq .cashback_el.cashback_open .cashback_arr:after {
		transform: rotate(-180deg);
}
.cashback_faq p, .cashback_faq ol, .cashback_faq ul, .cashback_faq li, .cashback_faq .cashback_table {
		margin: 15px 0;
}
.cashback_faq .cashback_table table {
		border-collapse: collapse;
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		text-align: inherit;
		outline: none;
		font-size: 18px;
		line-height: 1.45;
}
.cashback_faq .cashback_table th, .cashback_faq .cashback_table td {
		border: 0;
		text-align: left;
		vertical-align: middle;
		height: 48px;
		font: inherit;
		color: inherit;
}
.cashback_faq .cashback_table th:first-child, .cashback_faq .cashback_table td:first-child {
		padding-left: 15px;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
}
.cashback_faq .cashback_table th:last-child, .cashback_faq .cashback_table td:last-child {
		padding-right: 15px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
}
.cashback_faq .cashback_table th, .cashback_faq .cashback_table tr:nth-child(even) td {
		background: #12101A;
}
.cashback_faq .cashback_table .cashback_center {
		text-align: center;
}
.cashback_faq .cashback_table .cashback_right {
		text-align: right;
}
@media only screen and (max-width: 767px) {
		.cashback_faq .cashback_table .cashback_hide-mob {
				display: none;
		}
}
.cashback_faq .cashback_el:not(.cashback_open) .cashback_in {
	max-height: 0 !important;
	overflow: hidden;
	opacity: 0;
	transition: all .2s linear;
}
.cashback_faq .cashback_el.cashback_open .cashback_in {
	overflow: visible;
	opacity: 1;
	transition: all .2s linear;
}
.cashback_faq .cashback_ind {
		padding: 15px 0 0 0;
}
.cashback_faq .cashback_ind > *:first-child, .cashback_faq .cashback_ind li:first-child {
		margin-top: 0 !important;
}
.cashback_faq .cashback_ind > *:last-child, .cashback_faq .cashback_ind li:last-child {
		margin-bottom: 0 !important;
}
.cashback_contact {
		text-align: center;
		font-weight: bold;
		font-size: 24px;
		line-height: 1.15;
		padding-top: 82px;
		padding-bottom: 127px;
		position: relative;
}
.cashback_contact:before {
		content: '';
		position: absolute;
		top: -58px;
		left: 0;
		width: 100%;
		pointer-events: none;
		background: url("../img/contact/bg-mob.png") no-repeat 50% 50%;
		background-size: auto 100%;
		height: 422px;
}
.cashback_contact .cashback_h2 {
		font-weight: 600;
		font-size: 20px;
		line-height: 1.4;
		margin: 0 0 4px 0;
}
.cashback_contact a {
		text-decoration: none !important;
}
.cashback_contact *[data-text]:after {
		background-image: var(--grad-orange-rev);
		margin-bottom: 127px;
}
.cashback_contacts {
		padding-top: 80px;
		padding-bottom: 70px;
}
.cashback_contacts .cashback_btn-grey {
		background-color: #1D192C;
}
.cashback_contacts h1, .cashback_contacts .cashback_h1 {
		font-weight: bold;
		font-size: 36px;
		line-height: 1.15;
		margin: 0 0 30px 0;
}
.cashback_contacts h2, .cashback_contacts .cashback_h2 {
		font-weight: bold;
		font-size: 24px;
		line-height: 1.3;
		margin: 30px 0;
}
.cashback_contacts h3, .cashback_contacts .cashback_h3 {
		color: var(--grey);
		font-weight: bold;
		font-size: 14px;
		line-height: 1.45;
		margin: 30px 0 15px 0;
}
.cashback_contacts .cashback_address {
		color: var(--white);
		font-weight: bold;
		font-size: 24px;
		line-height: 1.3;
		max-width: 23em;
}
.cashback_contacts-links {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 10px;
}
.cashback_contacts-links .cashback_btn {
		font-weight: 600;
		font-size: 14px;
		height: 50px;
		border-radius: 13px;
		padding: 0 15px;
		gap: 0 15px;
		flex: 1 1 auto;
}
.cashback_contacts-links .cashback_btn svg {
		fill: var(--white);
		flex: 0 0 auto;
}
.cashback_contacts .cashback_right {
		margin-top: 40px;
}
.link{
	display: inline-block;
	vertical-align: top;
	text-decoration: none !important;
	color: var(--white);
	transition: all 0.2s;
}

.link:hover{
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: var(--grad-orange);
}
.gradient-text{
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: var(--grad-orange);
}

.gradient-text-second{
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: var(--grad-orange-second);
}

.cashback_head-logo-wrap {
	display: flex;
	align-items: center;
}

.cashback_head-logo-dropdown {
	padding: 0 0 0 15px;
}

[data-dropdown-toggle] {
	cursor: pointer;
}

.dropdown {
	position: relative;
	font: 600 14px/1.45 var(--font);
}

.dropdown_output {
	border-radius: 12px;
	padding: 10px 10px 10px 15px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	display: flex;
	align-items: center;
}

.dropdown_output-icon {
	margin-left: 5px;
	transition: transform .2s ease;
}

.dropdown._active .dropdown_output-icon {
	transform: rotate(180deg);
}

.dropdown_content-wrap {
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease;
	padding: 16px 0 0;
}

.dropdown_content {
	width: 324px;
	background: #1D192C;
	border-radius: 20px;
    padding: 17px 10px;
	box-shadow: 0px 6px 22px rgba(93, 98, 109, 0.1);
	color: #A29DBA;
}

.dropdown_content-item,
a.dropdown_content-item {
	text-decoration: none;
}

.dropdown_content-item {
	padding: 15px;
	display: flex;
	align-items: center;
	color: #A29DBA;
}

.dropdown_content-item__active {
	cursor: default;
}

.dropdown_content-item:hover .dropdown_content-item-text,
.dropdown_content-item__active .dropdown_content-item-text {
	opacity: 1;
}

.dropdown_content-item-image {
	width: 35px;
	height: 36px;
}

.dropdown_content-item-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.dropdown_content-item-text {
	padding: 0 0 0 15px;
	opacity: .5;
	transition: opacity .15s ease;
}

.dropdown_content-item-title,
.dropdown_content-item-subtitle {
	display: block;
}

.dropdown_content-item-title {
	line-height: 20px;
	color: #fff;	
}

.dropdown_content-item-subtitle {
	line-height: 17px;
	margin-top: 2px;
	font-size: 12px;
}

.dropdown._active .dropdown_content-wrap {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

.icon {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.icon-arrow {
	background-image: url(../img/icons/arrow.svg);
}
.cashback_grid {
	display: grid;
	gap: 30px;
	justify-content: center;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(4, 1fr);
	grid-template-areas:
		"re"
		"re"
		"ex"
		"sh";
}
.cashback_grid .cashback_grid-ex {
	grid-area: ex;
}
.cashback_grid .cashback_grid-sh {
	grid-area: sh;
}
.cashback_grid .cashback_grid-re {
	grid-area: re;
}
.cashback_grid .cashback_grid-image {
	position: relative;
	padding: 0;
	border: none;
	overflow: hidden;
	border-radius: 17px;
}
.cashback_grid-image .cashback_title {
	position: absolute;
	top: 17px;
	left: 17px;
	display: flex;
	flex-direction: column;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0px;
	text-align: left;
	color: var(--white);
}
.cashback_grid-image picture img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.cashback_grid-image .cashback_title_pt {
	top: 22px;
}
.cashback_title .cashback_description {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}
.cashback_title .cashback_percent {
	margin-top: 22px;
}
.cashback_percent .cashback_percent-number {
	font-size: 60px;
}