* {
	padding: 0;
	margin: 0;
	border: none;
}

*,*:before,*:after {
	box-sizing: border-box;
}

a,a:link,a:visited,a:hover {
	text-decoration: none;
}

aside,nav,footer,header,section,main {
	display: block;
}

input,textarea,button,select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

button,input[type=submit] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,input:active,button:focus,button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/Gilroy-Regular.ttf) format("truetype");font-weight:400;font-style:normal;
}

@font-face {
	font-family:Gilroy;src:url(/../fonts/Gilroy-Medium.ttf) format("truetype");font-weight:500;font-style:normal;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/Gilroy-SemiBold.ttf) format("truetype");font-weight:600;font-style:normal;
}

body {
	background-image: url(images/bg.png);
	color: #fff;
}

body:after {
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	z-index: -1;
	opacity: .5;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
}

.payment-page {
	max-width: 1200px;
	margin: 20px auto 50px;
	padding: 0 20px;
}

.payment-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.payment-title {
	font-weight: 600;
	font-size: 28px;
	color: #fff;
	margin: 30px 0;
}

.bank-list-container {
	position: fixed;
	bottom: 0;
	left: 0;
	margin: 0 auto;
	max-width: 430px;
	right: 0;
	background-color: #00000080;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	animation-duration: .3s;
	animation-fill-mode: forwards;
}

.bank-list {
	background-color: #fff;
	border-radius: 10px 10px 0 0;
	padding: 20px;
	width: 100%;
	height: 600px;
	max-width: 100%;
	box-shadow: 0 -4px 8px #0000001a;
}

.bank-list h3 {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 28px;
	color: #000;
}

.bank-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bank-list ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow-x: scroll;
	height: 400px;
	margin-top: 20px;
}

.bank-list input[type=radio] {
	position: absolute;
	right: 20px;
}

.payment-button.pay-now.spb-pay:after {
	content: "";
	background-image: url(/icons/spb_w.svg);
	width: 70px;
	height: 38px;
}

.hidden {
	display: none;
}

#mainPaymentInterface {
	display: flex;
	gap: 30px;
	align-items: stretch;
}

#mainPaymentInterface>a {
	display: flex;
	align-items: stretch;
}

#cardPaymentInterface {
	width: 100%;
}

.payment-button.pay-now.spb-pay {
	gap: 10px;
}

.bank-list li>label {
	border-radius: 15px;
	padding: 10px 10px 10px 20px;
	width: 100%;
	background: #ebebeb;
	position: relative;
	font-weight: 500;
	font-size: 18px;
	color: #000;
	min-height: 73px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.bank-list li:last-child {
	border-bottom: none;
}

.close-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 18px;
	color: #000;
	cursor: pointer;
}

.payment-button.tpay:after {
	content: "";
	width: 70px;
	display: block;
	background-image: url(/icons/tpay.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	height: 29px;
}

.payment-button.tpay {
	background-color: #ffdd2d;
	grid-row-start: 2;
}

.payment-button.mir:before {
	content: "";
	width: 70px;
	display: block;
	background-image: url(/icons/mir.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	height: 25px;
}

.payment-button.mir {
	background: #0f754e;
	color: #fff;
	font-weight: 300;
	grid-row-start: 2;
}

.payment-button.sber:before {
	content: "";
	width: 30px;
	display: block;
	background-image: url(/icons/sber.svg);
	background-size: contain;
	background-repeat: no-repeat;
	height: 29px;
}

.payment-button.sber {
	background: #21a038;
	color: #fff;
	font-weight: 300;
	grid-row-start: 3;
}

.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
}

.toast {
	background: #333;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	margin-bottom: 10px;
	opacity: 0;
	transition: opacity .3s ease;
	font-family: Gilroy,sans-serif;
	max-width: 300px;
}

.toast.error {
	background: #d32f2f;
}

.toast.success {
	background: #2e7d32;
}

.toast.show {
	opacity: 1;
}

@keyframes slide-up {
	0% {
		transform: translateY(100%);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes slide-down {
	0% {
		transform: translateY(0);
	}

	to {
		transform: translateY(100%);
	}
}

.slide-up {
	animation-name: slide-up;
}

.slide-down {
	animation-name: slide-down;
}

.pay-with-bank {
	margin-top: 20px;
}

.pay-with-bank p {
	margin-bottom: 10px;
	font-size: 16px;
}

.search-container input {
	border-radius: 15px;
	padding: 10px 10px 10px 20px;
	width: 100%;
	color: #000;
	background: #ebebeb;
	height: 73px;
	position: relative;
}

.search-container {
	position: relative;
}

.payment-button.spb {
	grid-row-start: 3;
}

.spb-pay {
	width: 100%;
	background: linear-gradient(360deg,#9378ff,#5c3cdb);
	border-radius: 15px;
	padding: 10px;
	height: 70px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	z-index: 999999;
	position: relative;
	bottom: 90px;
	left: 0;
}

.bank-list .close-button {
	background-image: url(/icons/close_pay.svg);
	width: 20px;
	height: 20px;
	background-size: contain;
	position: absolute;
	top: 26px;
	right: 20px;
}

.search-container:after {
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(-50%,-50%);
	display: block;
	background-image: url(/icons/search_bar.svg);
}

.search-container input::placeholder {
	font-weight: 500;
	font-size: 18px;
	color: #8d8d8d;
}

.discounted-price {
	font-weight: 600;
	font-size: 48px;
	color: #fff;
}

.original-price {
	font-weight: 500;
	font-size: 28px;
	text-decoration: line-through;
	color: #fd4a76;
}

.discount {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	border-radius: 50px;
	padding: 9px 13px;
	background: radial-gradient(766.78% 137.07% at 100% 6.25%,#ff3b83,#f68944);
}

.payment-price {
	display: flex;
	align-items: center;
	gap: 15px;
}

.payment-email {
	display: flex;
	flex-direction: column;
}

.payment-email label {
	font-weight: 500;
	font-size: 18px;
	color: #7d7d7d;
	margin-bottom: 10px;
}

.payment-email input {
	border-radius: 15px;
	padding: 10px 10px 10px 20px;
	width: 100%;
	background: #ebebeb;
	color: #000;
	height: 73px;
	font-weight: 500;
	font-size: 18px;
}

.payment-email input::placeholder {
	font-weight: 500;
	font-size: 18px;
	color: #8d8d8d;
}

.payment-terms {
	margin-top: 20px;
}

.terms-block label {
	font-weight: 400;
	font-size: 14px;
	color: #7d7d7d;
}

.terms-block a {
	color: #fd4c74!important;
}

input[type=checkbox] {
	-ms-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	accent-color: #FD4A76;
	position: relative;
	transform: scale(1.5);
	padding: 10px;
	top: 5px;
}

.terms-block {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 15px;
}

.terms-block label a {
	font-weight: 400;
	font-size: 14px;
	color: #fd4c74;
}

.payment-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
}

.tbank-widget-container {
	width: 100%;
	margin: 0!important;
	padding: 0!important;
}

.tbank-widget-container[data-locked=true] {
	opacity: .5!important;
}

.tbank-widget-container>div {
	display: grid!important;
	grid-template-columns: repeat(2,1fr)!important;
	gap: 15px!important;
	width: 100%!important;
	margin: 0!important;
	padding: 0!important;
}

.tbank-widget-container>* {
	margin: 0!important;
	padding: 0!important;
}

.tbank-widget-container button,.tbank-widget-container>div>button,.tbank-widget-container>div>div,.tbank-widget-container>div>div>button {
	margin: 0!important;
	padding: 0!important;
}

.tbank-widget-container[data-locked=true] button,.tbank-widget-container[data-locked=true]>div>button,.tbank-widget-container[data-locked=true]>div>div>button,.tbank-widget-container button[disabled],.tbank-widget-container button[aria-disabled=true],.tbank-widget-container>div>button[disabled],.tbank-widget-container>div>button[aria-disabled=true],.tbank-widget-container[data-locked=true]>div>div,.tbank-widget-container[data-locked=true]>div>div>* {
	opacity: .5!important;
}

.payment-button:not(fist-child) {
	font-weight: 600;
	font-size: 18px;
	color: #000;
	border-radius: 15px;
	padding: 10px;
	width: 100%;
	display: flex;
	height: 70px;
	background: #fff;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.payment-button.spb:after {
	content: "";
	width: 70px;
	height: 38px;
	display: block;
	background-image: url(/icons/spb.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.card-form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.payment-button.card {
	background: radial-gradient(766.78% 137.07% at 100% 6.25%,#ff3b83,#f68944);
	border-radius: 15px;
	padding: 10px;
	width: 100%;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	height: 70px;
	grid-column: span 2 / span 2;
}

.payment-image {
	flex: 0 0 auto;
	height: 100%;
	max-height: 100%;
	max-width: 520px;
	width: auto;
	object-fit: contain;
	align-self: stretch;
}

.payment-block {
	flex: 1;
}

.card-form-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.back-button {
	font-weight: 500;
	font-size: 18px;
	display: flex;
	gap: 10px;
	align-items: center;
	color: #7d7d7d;
}

.back-button:before {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url(/icons/close.svg);
	display: block;
}

.card-form .card-input:first-child {
	background-image: url(https://lover-check.ru/l/assets/img/backcard.webp);
	background-size: cover;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	height: 340px;
	justify-content: flex-end;
	padding: 120px 15px 15px;
	position: relative;
	width: 50%;
	z-index: 9;
	left: 81px;
}

.payment-buttons button:disabled {
	opacity: .5;
}

.payment-buttons button {
	opacity: 1;
	transition: .2s;
}

.card-form .card-input:first-child label {
	margin-bottom: 5px;
}

.card-form .card-input:nth-child(2) {
	background: #1d1d1d;
	border-radius: 15px 0 0 15px;
	flex: 1 1;
	padding: 15px;
	position: relative;
	width: 270px;
	z-index: 1;
	top: 130px;
	left: -79px;
}

.card-form .card-input:nth-child(2) input {
	background: #ebebeb;
	border-radius: 15px;
	height: 72px;
	color: #000;
	padding: 0 0 0 15px;
	width: 100%;
}

.card-form .card-input:nth-child(2) label {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 5px;
	color: #fff;
	margin-top: 49px;
}

.card-form .card-input:nth-child(3) {
	background: #1d1d1d;
	border-radius: 0 15px 15px 0;
	flex: 1 1;
	padding: 15px;
	position: relative;
	width: 280px;
	z-index: 1;
	top: 130px;
	left: -79px;
}

.total-amount {
	color: #7d7d7d;
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	left: 81px;
	position: relative;
}

#cardPayButton {
	margin-top: 100px;
}

.total-amount .amount {
	font-weight: 600;
	font-size: 48px;
	color: #fff;
}

.pay-now {
	width: 100%;
	background: linear-gradient(360deg,#9378ff,#5c3cdb);
	border-radius: 15px;
	padding: 10px;
	height: 70px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.card-form .card-input:nth-child(3) input {
	background: #ebebeb;
	border-radius: 15px;
	width: 100%;
	color: #000;
	height: 72px;
	padding: 0 0 0 15px;
}

.cvv-input {
	position: relative;
}

.show-cvv {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%,-50%);
}

.card-form .card-input:nth-child(3) label {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 5px;
	color: #fff;
	margin-top: 49px;
}

.card-input {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

#card-number {
	background: #ebebeb;
	border-radius: 15px;
	padding: 0 10px 0 20px;
	height: 72px;
	color: #000;
}

.card-form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.footer__container {
	display: flex;
	max-width: 1200px;
	justify-content: space-between;
	margin: 0 auto;
	padding: 60px 0;
	flex-wrap: wrap;
	background: #1d1d1d;
}

.footer__right {
	display: flex;
	flex-direction: column;
}

.footer__right a {
	font-family: Gilroy;
	font-weight: 400;
	font-size: 18px;
	line-height: 21.6px;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: 0%;
}

.footer__left {
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-family: inherit;
}

.footer__left {
	font-family: Gilroy;
	font-weight: 400;
	font-size: 18px;
	line-height: 21.6px;
	color: #fff;
	letter-spacing: 0%;
}

@media (max-width: 768px) {
	.footer__container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 0 auto;
		max-width: 1200px;
		padding: 60px 15px;
		gap: 60px;
	}

	footer {
		background: #1d1d1d;
	}

	#cardPayButton {
		margin-top: 20px;
	}

	.payment-image {
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.payment-container {
		display: flex;
		gap: 20px;
		flex-direction: column;
	}

	.payment-title {
		font-weight: 600;
		font-size: 28px;
		color: #fff;
		margin: 30px 0;
	}

	.discounted-price {
		font-weight: 600;
		font-size: 48px;
		color: #fff;
	}

	.original-price {
		font-weight: 500;
		font-size: 28px;
		text-decoration: line-through;
	}

	.discount {
		font-weight: 500;
		font-size: 16px;
		color: #fff;
		border-radius: 50px;
		padding: 9px 13px;
	}

	.payment-price {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.payment-email {
		display: flex;
		flex-direction: column;
	}

	.payment-email label {
		font-weight: 500;
		font-size: 18px;
		color: #7d7d7d;
		margin-bottom: 10px;
	}

	.payment-email input {
		border-radius: 15px;
		padding: 10px 10px 10px 20px;
		width: 100%;
		background: #ebebeb;
		color: #000;
		height: 73px;
		font-weight: 500;
		font-size: 18px;
	}

	.payment-email input::placeholder {
		font-weight: 500;
		font-size: 18px;
		color: #8d8d8d;
	}

	.payment-terms {
		margin-top: 20px;
	}

	.terms-block label {
		font-weight: 400;
		font-size: 14px;
		color: #7d7d7d;
	}

	input[type=checkbox] {
		-ms-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		accent-color: #F68944;
		position: relative;
		transform: scale(1.5);
		padding: 10px;
		top: 5px;
	}

	#mainPaymentInterface {
		display: flex;
		gap: 30px;
		align-items: center;
		flex-direction: column;
	}

	#mainPaymentInterface>a {
		width: 100%;
		justify-content: center;
	}

	.terms-block {
		display: flex;
		align-items: flex-start;
		gap: 14px;
		margin-bottom: 15px;
	}

	.terms-block label a {
		font-weight: 400;
		font-size: 14px;
		color: #fd4c74;
	}

	.payment-button.spb {
		font-weight: 600;
		font-size: 18px;
		color: #000;
		border-radius: 15px;
		padding: 10px;
		width: 100%;
		display: flex;
		height: 70px;
		background: #fff!important;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	.payment-button.spb:after {
		content: "";
		width: 70px;
		height: 38px;
		display: block;
		background-image: url(/icons/spb.svg);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.payment-button.card {
		border-radius: 15px;
		padding: 10px;
		width: 100%;
		font-weight: 600;
		font-size: 18px;
		color: #fff;
		height: 70px;
	}

	.card-form-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.back-button {
		font-weight: 500;
		font-size: 18px;
		display: flex;
		gap: 10px;
		align-items: center;
		color: #7d7d7d;
	}

	.back-button:before {
		content: "";
		width: 16px;
		height: 16px;
		background-image: url(/icons/close.svg);
		display: block;
	}

	.card-form .card-input:first-child {
		background-image: url(https://lover-check.ru/l/assets/img/backcard.webp);
		background-size: cover;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		max-height: fit-content;
		padding: 120px 15px 15px;
		position: relative;
		z-index: 9;
		left: auto;
		width: 100%;
		height: 230px;
	}

	.payment-buttons button:disabled {
		opacity: .5;
	}

	.payment-buttons button:not(:first-child):not(.quick) {
		font-size: 0!important;
		gap: 0;
		transition: .2s;
	}

	.payment-button.quick {
		font-size: 18px!important;
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
	}

	.payment-button.mir:before {
		content: "";
		width: 70px;
		display: block;
		background-image: url(/icons/mir.svg);
		background-size: 100%;
		background-repeat: no-repeat;
		height: 25px;
	}

	.payment-button.tpay:after {
		content: "";
		width: 70px;
		display: block;
		background-image: url(/icons/tpay.svg);
		background-size: 100%;
		background-repeat: no-repeat;
		height: 29px;
	}

	.payment-button.sber:before {
		content: "";
		width: 30px;
		display: block;
		background-image: url(/icons/sber.svg);
		background-size: contain;
		background-repeat: no-repeat;
		height: 29px;
	}

	.card-form .card-input:first-child label {
		margin-bottom: 5px;
	}

	.card-form .card-input:nth-child(2) {
		background: #1d1d1d;
		padding: 15px;
		border-radius: 0 0 0 15px;
		position: relative;
		width: 48%;
		top: -15px;
		flex: 1;
		left: auto;
		z-index: 1;
	}

	.card-form .card-input:nth-child(2) input {
		background: #ebebeb;
		border-radius: 15px;
		height: 72px;
		color: #000;
		padding: 0 0 0 15px;
		width: 100%;
	}

	.card-form .card-input:nth-child(2) label {
		font-weight: 500;
		font-size: 18px;
		margin-bottom: 5px;
		color: #fff;
		margin-top: 49px;
	}

	.card-form .card-input:nth-child(3) {
		background: #1d1d1d;
		padding: 15px;
		border-radius: 0 0 15px;
		position: relative;
		top: -15px;
		z-index: 1;
		left: auto;
		flex: 1;
		width: 48%;
	}

	.total-amount {
		width: 100%;
		display: flex;
		flex-direction: column;
		font-weight: 500;
		font-size: 18px;
		left: auto;
		color: #7d7d7d;
	}

	.total-amount .amount {
		font-weight: 600;
		font-size: 48px;
		color: #fff;
	}

	.pay-now {
		width: 100%;
		background: linear-gradient(360deg,#9378ff,#5c3cdb);
		border-radius: 15px;
		padding: 10px;
		height: 70px;
		font-weight: 600;
		font-size: 18px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 40px;
	}

	.card-form .card-input:nth-child(3) input {
		background: #ebebeb;
		border-radius: 15px;
		width: 100%;
		color: #000;
		height: 72px;
		padding: 0 0 0 15px;
	}

	.cvv-input {
		position: relative;
	}

	.show-cvv {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(-50%,-50%);
	}

	.card-form .card-input:nth-child(3) label {
		font-weight: 500;
		font-size: 18px;
		margin-bottom: 5px;
		color: #fff;
		margin-top: 49px;
	}

	.card-input {
		display: flex;
		flex-direction: column;
	}

	#card-number {
		background: #ebebeb;
		border-radius: 15px;
		padding: 0 10px 0 20px;
		height: 72px;
		color: #000;
	}

	.card-form {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.bank-list-container {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #00000080;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		animation-duration: .3s;
		animation-fill-mode: forwards;
	}

	.bank-list {
		background-color: #fff;
		border-radius: 10px 10px 0 0;
		padding: 20px;
		width: 100%;
		height: 600px;
		max-width: 100%;
		box-shadow: 0 -4px 8px #0000001a;
	}

	.bank-list h3 {
		margin-bottom: 15px;
		font-weight: 600;
		font-size: 28px;
		color: #000;
	}

	.bank-list ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.bank-list ul {
		display: flex;
		flex-direction: column;
		gap: 10px;
		overflow-x: scroll;
		height: 400px;
		margin-top: 20px;
	}

	.bank-list input[type=radio] {
		position: absolute;
		right: 20px;
	}

	.payment-button.pay-now.spb-pay:after {
		content: "";
		background-image: url(/icons/spb_w.svg);
		width: 70px;
		height: 38px;
	}

	.payment-button.pay-now.spb-pay {
		gap: 10px;
	}

	.bank-list li {
		border-radius: 15px;
		padding: 10px 10px 10px 20px;
		width: 100%;
		background: #ebebeb;
		position: relative;
		font-weight: 500;
		font-size: 18px;
		color: #000;
		min-height: 73px;
		cursor: pointer;
		display: flex;
		align-items: center;
	}

	.bank-list li:last-child {
		border-bottom: none;
	}

	.close-button {
		position: absolute;
		top: 10px;
		right: 10px;
		background: none;
		border: none;
		font-size: 18px;
		color: #000;
		cursor: pointer;
	}@	keyframes slide-up {
		0%{transform: translateY(100%);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes slide-down {
	0% {
		transform: translateY(0);
	}

	to {
		transform: translateY(100%);
	}
}

.slide-up {
	animation-name: slide-up;
}

.slide-down {
	animation-name: slide-down;
}

.pay-with-bank {
	margin-top: 20px;
}

.pay-with-bank p {
	margin-bottom: 10px;
	font-size: 16px;
}

.search-container input {
	border-radius: 15px;
	padding: 10px 10px 10px 20px;
	width: 100%;
	color: #000;
	background: #ebebeb;
	height: 73px;
	position: relative;
}

.search-container {
	position: relative;
}

.spb-pay {
	width: 100%;
	background: linear-gradient(360deg,#9378ff,#5c3cdb);
	border-radius: 15px;
	padding: 10px;
	height: 70px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	z-index: 999999;
	position: relative;
	bottom: 90px;
	left: 0;
}

.bank-list .close-button {
	background-image: url(/icons/close_pay.svg);
	width: 20px;
	height: 20px;
	background-size: contain;
	position: absolute;
	top: 26px;
	right: 20px;
}

.search-container:after {
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(-50%,-50%);
	display: block;
	background-image: url(/icons/search_bar.svg);
}

.search-container input::placeholder {
	font-weight: 500;
	font-size: 18px;
	color: #8d8d8d;
}}

.spinner-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000080;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s ease-in-out,visibility .3s;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255,255,255,.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.document-page {
	padding: 40px 20px 80px;
	background-color: #f7f8fa;
}

.document-container {
	max-width: 960px;
	margin: 0 auto;
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px #0f172a14;
	color: #111827;
}

.document-container h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 32px;
	text-align: center;
}

.document-section+.document-section {
	margin-top: 28px;
}

.document-section h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}

.document-section p {
	margin-bottom: 12px;
	line-height: 1.6;
	font-size: 16px;
}

.document-section strong {
	font-weight: 600;
	margin-right: 6px;
}

.document-section a {
	color: #2563eb;
	text-decoration: underline;
}

.document-section a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

@media (max-width: 640px) {
	.document-container {
		padding: 24px;
		border-radius: 16px;
	}

	.document-container h1 {
		font-size: 26px;
	}

	.document-section h2 {
		font-size: 20px;
	}
}/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */@layer properties {
@	supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
		*,: before,:after,::backdrop{--tw-rotate-x:initial;
		--tw-rotate-y: initial;
		--tw-rotate-z: initial;
		--tw-skew-x: initial;
		--tw-skew-y: initial;
		--tw-space-y-reverse: 0;
		--tw-border-style: solid;
		--tw-gradient-position: initial;
		--tw-gradient-from: #0000;
		--tw-gradient-via: #0000;
		--tw-gradient-to: #0000;
		--tw-gradient-stops: initial;
		--tw-gradient-via-stops: initial;
		--tw-gradient-from-position: 0%;
		--tw-gradient-via-position: 50%;
		--tw-gradient-to-position: 100%;
		--tw-font-weight: initial;
		--tw-tracking: initial;
		--tw-shadow: 0 0 #0000;
		--tw-shadow-color: initial;
		--tw-shadow-alpha: 100%;
		--tw-inset-shadow: 0 0 #0000;
		--tw-inset-shadow-color: initial;
		--tw-inset-shadow-alpha: 100%;
		--tw-ring-color: initial;
		--tw-ring-shadow: 0 0 #0000;
		--tw-inset-ring-color: initial;
		--tw-inset-ring-shadow: 0 0 #0000;
		--tw-ring-inset: initial;
		--tw-ring-offset-width: 0px;
		--tw-ring-offset-color: #fff;
		--tw-ring-offset-shadow: 0 0 #0000;
		--tw-outline-style: solid;
		--tw-blur: initial;
		--tw-brightness: initial;
		--tw-contrast: initial;
		--tw-grayscale: initial;
		--tw-hue-rotate: initial;
		--tw-invert: initial;
		--tw-opacity: initial;
		--tw-saturate: initial;
		--tw-sepia: initial;
		--tw-drop-shadow: initial;
		--tw-drop-shadow-color: initial;
		--tw-drop-shadow-alpha: 100%;
		--tw-drop-shadow-size: initial;
		--tw-duration: initial;
		--tw-ease: initial;
	}
}}

@layer theme {
	:root,:host {
		--font-sans: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
		--font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
		--color-red-50: oklch(97.1% .013 17.38);
		--color-red-100: oklch(93.6% .032 17.717);
		--color-red-400: oklch(70.4% .191 22.216);
		--color-red-600: oklch(57.7% .245 27.325);
		--color-red-900: oklch(39.6% .141 25.723);
		--color-orange-50: oklch(98% .016 73.684);
		--color-purple-600: oklch(55.8% .288 302.321);
		--color-purple-700: oklch(49.6% .265 301.924);
		--color-pink-600: oklch(59.2% .249 .584);
		--color-pink-700: oklch(52.5% .223 3.958);
		--color-gray-200: oklch(92.8% .006 264.531);
		--color-gray-300: oklch(87.2% .01 258.338);
		--color-gray-600: oklch(44.6% .03 256.802);
		--color-gray-700: oklch(37.3% .034 259.733);
		--color-gray-800: oklch(27.8% .033 256.848);
		--color-gray-900: oklch(21% .034 264.665);
		--color-black: #000;
		--color-white: #fff;
		--spacing: .25rem;
		--container-md: 28rem;
		--container-lg: 32rem;
		--container-7xl: 80rem;
		--text-sm: .875rem;
		--text-sm--line-height: calc(1.25/.875);
		--text-base: 1rem;
		--text-base--line-height: 1.5;
		--text-lg: 1.125rem;
		--text-lg--line-height: calc(1.75/1.125);
		--text-xl: 1.25rem;
		--text-xl--line-height: calc(1.75/1.25);
		--text-3xl: 1.875rem;
		--text-3xl--line-height: 1.2;
		--text-4xl: 2.25rem;
		--text-4xl--line-height: calc(2.5/2.25);
		--text-5xl: 3rem;
		--text-5xl--line-height: 1;
		--text-6xl: 3.75rem;
		--text-6xl--line-height: 1;
		--font-weight-normal: 400;
		--font-weight-medium: 500;
		--font-weight-semibold: 600;
		--font-weight-bold: 700;
		--tracking-tight: -.025em;
		--radius-lg: .5rem;
		--radius-2xl: 1rem;
		--ease-in-out: cubic-bezier(.4,0,.2,1);
		--default-transition-duration: .15s;
		--default-transition-timing-function: cubic-bezier(.4,0,.2,1);
		--default-font-family: var(--font-sans);
		--default-mono-font-family: var(--font-mono);
	}
}

@layer base {
	*,:after,:before,::backdrop {
		box-sizing: border-box;
		border: 0 solid;
		margin: 0;
		padding: 0;
	}

	::file-selector-button {
		box-sizing: border-box;
		border: 0 solid;
		margin: 0;
		padding: 0;
	}

	html,:host {
		-webkit-text-size-adjust: 100%;
		-moz-tab-size: 4;
		tab-size: 4;
		line-height: 1.5;
		font-family: var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");
		font-feature-settings: var(--default-font-feature-settings,normal);
		font-variation-settings: var(--default-font-variation-settings,normal);
		-webkit-tap-highlight-color: transparent;
	}

	hr {
		height: 0;
		color: inherit;
		border-top-width: 1px;
	}

	abbr:where([title]) {
		-webkit-text-decoration: underline dotted;
		text-decoration: underline dotted;
	}

	h1,h2,h3,h4,h5,h6 {
		font-size: inherit;
		font-weight: inherit;
	}

	a {
		color: inherit;
		-webkit-text-decoration: inherit;
		text-decoration: inherit;
	}

	b,strong {
		font-weight: bolder;
	}

	code,kbd,samp,pre {
		font-family: var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);
		font-feature-settings: var(--default-mono-font-feature-settings,normal);
		font-variation-settings: var(--default-mono-font-variation-settings,normal);
		font-size: 1em;
	}

	small {
		font-size: 80%;
	}

	sub,sup {
		vertical-align: baseline;
		font-size: 75%;
		line-height: 0;
		position: relative;
	}

	sub {
		bottom: -.25em;
	}

	sup {
		top: -.5em;
	}

	table {
		text-indent: 0;
		border-color: inherit;
		border-collapse: collapse;
	}

	:-moz-focusring {
		outline: auto;
	}

	progress {
		vertical-align: baseline;
	}

	summary {
		display: list-item;
	}

	ol,ul,menu {
		list-style: none;
	}

	img,svg,video,canvas,audio,iframe,embed,object {
		vertical-align: middle;
		display: block;
	}

	img,video {
		max-width: 100%;
		height: auto;
	}

	button,input,select,optgroup,textarea {
		font: inherit;
		font-feature-settings: inherit;
		font-variation-settings: inherit;
		letter-spacing: inherit;
		color: inherit;
		opacity: 1;
		background-color: #0000;
		border-radius: 0;
	}

	::file-selector-button {
		font: inherit;
		font-feature-settings: inherit;
		font-variation-settings: inherit;
		letter-spacing: inherit;
		color: inherit;
		opacity: 1;
		background-color: #0000;
		border-radius: 0;
	}

	:where(select:is([multiple],[size])) optgroup {
		font-weight: bolder;
	}

	:where(select:is([multiple],[size])) optgroup option {
		padding-inline-start: 20px;
	}

	::file-selector-button {
		margin-inline-end: 4px;
	}

	::placeholder {
		opacity: 1;
	}@	supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px) {
		:: placeholder{color:currentColor;
	}@	supports (color:color-mix(in lab,red,red)) {
		:: placeholder{color:color-mix(in oklab,currentcolor 50%,transparent);
	}
}}

textarea {
	resize: vertical;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-date-and-time-value {
	min-height: 1lh;
	text-align: inherit;
}

::-webkit-datetime-edit {
	display: inline-flex;
}

::-webkit-datetime-edit-fields-wrapper {
	padding: 0;
}

::-webkit-datetime-edit {
	padding-block: 0;
}

::-webkit-datetime-edit-year-field {
	padding-block: 0;
}

::-webkit-datetime-edit-month-field {
	padding-block: 0;
}

::-webkit-datetime-edit-day-field {
	padding-block: 0;
}

::-webkit-datetime-edit-hour-field {
	padding-block: 0;
}

::-webkit-datetime-edit-minute-field {
	padding-block: 0;
}

::-webkit-datetime-edit-second-field {
	padding-block: 0;
}

::-webkit-datetime-edit-millisecond-field {
	padding-block: 0;
}

::-webkit-datetime-edit-meridiem-field {
	padding-block: 0;
}

:-moz-ui-invalid {
	box-shadow: none;
}

button,input:where([type=button],[type=reset],[type=submit]) {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}

::file-selector-button {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}

::-webkit-inner-spin-button {
	height: auto;
}

::-webkit-outer-spin-button {
	height: auto;
}

[hidden]:where(:not([hidden=until-found])) {
	display: none!important;
}}

@layer components;

@layer utilities {
	.pointer-events-none {
		pointer-events: none;
	}

	.collapse {
		visibility: collapse;
	}

	.absolute {
		position: absolute;
	}

	.fixed {
		position: fixed;
	}

	.relative {
		position: relative;
	}

	.sticky {
		position: sticky;
	}

	.container {
		width: 100%;
	}@	media (min-width:40rem) {
		.container{max-width: 40rem;
	}
}

@media (min-width:48rem) {
	.container {
		max-width: 48rem;
	}
}

@media (min-width:64rem) {
	.container {
		max-width: 64rem;
	}
}

@media (min-width:80rem) {
	.container {
		max-width: 80rem;
	}
}

@media (min-width:96rem) {
	.container {
		max-width: 96rem;
	}
}

.mx-0 {
	margin-inline: calc(var(--spacing)*0);
}

.mx-4 {
	margin-inline: calc(var(--spacing)*4);
}

.mx-auto {
	margin-inline: auto;
}

.my-2 {
	margin-block: calc(var(--spacing)*2);
}

.mt-2 {
	margin-top: calc(var(--spacing)*2);
}

.mt-4 {
	margin-top: calc(var(--spacing)*4);
}

.mt-8 {
	margin-top: calc(var(--spacing)*8);
}

.mb-4 {
	margin-bottom: calc(var(--spacing)*4);
}

.mb-6 {
	margin-bottom: calc(var(--spacing)*6);
}

.ml-2 {
	margin-left: calc(var(--spacing)*2);
}

.block {
	display: block;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

.hidden {
	display: none;
}

.inline {
	display: inline;
}

.inline-block {
	display: inline-block;
}

.h-6 {
	height: calc(var(--spacing)*6);
}

.h-12 {
	height: calc(var(--spacing)*12);
}

.h-20 {
	height: calc(var(--spacing)*20);
}

.h-auto {
	height: auto;
}

.h-screen {
	height: 100vh;
}

.min-h-screen {
	min-height: 100vh;
}

.\!w-full {
	width: 100%!important;
}

.w-6 {
	width: calc(var(--spacing)*6);
}

.w-12 {
	width: calc(var(--spacing)*12);
}

.w-20 {
	width: calc(var(--spacing)*20);
}

.w-auto {
	width: auto;
}

.w-full {
	width: 100%;
}

.max-w-7xl {
	max-width: var(--container-7xl);
}

.max-w-fit {
	max-width: fit-content;
}

.max-w-full {
	max-width: 100%;
}

.max-w-lg {
	max-width: var(--container-lg);
}

.max-w-md {
	max-width: var(--container-md);
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.flex-grow {
	flex-grow: 1;
}

.basis-1 {
	flex-basis: calc(var(--spacing)*1);
}

.basis-1\/5 {
	flex-basis: 20%;
}

.transform {
	transform: var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,);
}

.cursor-pointer {
	cursor: pointer;
}

.resize {
	resize: both;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.justify-start {
	justify-content: flex-start;
}

.gap-1 {
	gap: calc(var(--spacing)*1);
}

.gap-2 {
	gap: calc(var(--spacing)*2);
}

.gap-3 {
	gap: calc(var(--spacing)*3);
}

.gap-4 {
	gap: calc(var(--spacing)*4);
}

:where(.space-y-4>:not(:last-child)) {
	--tw-space-y-reverse: 0;
	margin-block-start: calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));
	margin-block-end: calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)));
}

.rounded-2xl {
	border-radius: var(--radius-2xl);
}

.rounded-full {
	border-radius: 3.40282e38px;
}

.rounded-lg {
	border-radius: var(--radius-lg);
}

.border {
	border-style: var(--tw-border-style);
	border-width: 1px;
}

.bg-gray-200 {
	background-color: var(--color-gray-200);
}

.bg-red-100 {
	background-color: var(--color-red-100);
}

.bg-transparent {
	background-color: #0000;
}

.bg-white {
	background-color: var(--color-white);
}

.bg-gradient-to-b {
	--tw-gradient-position: to bottom in oklab;
	background-image: linear-gradient(var(--tw-gradient-stops));
}

.bg-gradient-to-br {
	--tw-gradient-position: to bottom right in oklab;
	background-image: linear-gradient(var(--tw-gradient-stops));
}

.bg-gradient-to-r {
	--tw-gradient-position: to right in oklab;
	background-image: linear-gradient(var(--tw-gradient-stops));
}

.from-\[\#00b7fa\] {
	--tw-gradient-from: #00b7fa;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-\[\#5EA2EF\] {
	--tw-gradient-from: #5ea2ef;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-\[\#6FEE8D\] {
	--tw-gradient-from: #6fee8d;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-\[\#FF1CF7\] {
	--tw-gradient-from: #ff1cf7;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-\[\#FF72E1\] {
	--tw-gradient-from: #ff72e1;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-\[\#FF705B\] {
	--tw-gradient-from: #ff705b;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-purple-600 {
	--tw-gradient-from: var(--color-purple-600);
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.from-red-50 {
	--tw-gradient-from: var(--color-red-50);
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-\[\#01cfea\] {
	--tw-gradient-to: #01cfea;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-\[\#17c964\] {
	--tw-gradient-to: #17c964;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-\[\#0072F5\] {
	--tw-gradient-to: #0072f5;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-\[\#F54C7A\] {
	--tw-gradient-to: #f54c7a;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-\[\#FFB457\] {
	--tw-gradient-to: #ffb457;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-\[\#b249f8\] {
	--tw-gradient-to: #b249f8;
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-orange-50 {
	--tw-gradient-to: var(--color-orange-50);
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.to-pink-600 {
	--tw-gradient-to: var(--color-pink-600);
	--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
}

.bg-clip-text {
	-webkit-background-clip: text;
	background-clip: text;
}

.p-8 {
	padding: calc(var(--spacing)*8);
}

.px-0 {
	padding-inline: calc(var(--spacing)*0);
}

.px-6 {
	padding-inline: calc(var(--spacing)*6);
}

.px-px {
	padding-inline: 1px;
}

.py-3 {
	padding-block: calc(var(--spacing)*3);
}

.py-8 {
	padding-block: calc(var(--spacing)*8);
}

.pt-16 {
	padding-top: calc(var(--spacing)*16);
}

.pt-px {
	padding-top: 1px;
}

.pb-12 {
	padding-bottom: calc(var(--spacing)*12);
}

.pl-4 {
	padding-left: calc(var(--spacing)*4);
}

.text-center {
	text-align: center;
}

.text-3xl {
	font-size: var(--text-3xl);
	line-height: var(--tw-leading,var(--text-3xl--line-height));
}

.text-4xl {
	font-size: var(--text-4xl);
	line-height: var(--tw-leading,var(--text-4xl--line-height));
}

.text-base {
	font-size: var(--text-base);
	line-height: var(--tw-leading,var(--text-base--line-height));
}

.text-lg {
	font-size: var(--text-lg);
	line-height: var(--tw-leading,var(--text-lg--line-height));
}

.text-sm {
	font-size: var(--text-sm);
	line-height: var(--tw-leading,var(--text-sm--line-height));
}

.text-\[2\.3rem\] {
	font-size: 2.3rem;
}

.font-bold {
	--tw-font-weight: var(--font-weight-bold);
	font-weight: var(--font-weight-bold);
}

.font-normal {
	--tw-font-weight: var(--font-weight-normal);
	font-weight: var(--font-weight-normal);
}

.font-semibold {
	--tw-font-weight: var(--font-weight-semibold);
	font-weight: var(--font-weight-semibold);
}

.tracking-tight {
	--tw-tracking: var(--tracking-tight);
	letter-spacing: var(--tracking-tight);
}

.break-all {
	word-break: break-all;
}

.text-current {
	color: currentColor;
}

.text-gray-600 {
	color: var(--color-gray-600);
}

.text-gray-800 {
	color: var(--color-gray-800);
}

.text-gray-900 {
	color: var(--color-gray-900);
}

.text-inherit {
	color: inherit;
}

.text-red-600 {
	color: var(--color-red-600);
}

.text-transparent {
	color: #0000;
}

.text-white {
	color: var(--color-white);
}

.uppercase {
	text-transform: uppercase;
}

.underline {
	text-decoration-line: underline;
}

.accent-black {
	accent-color: var(--color-black);
}

.shadow {
	--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
	box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
}

.shadow-xl {
	--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);
	box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
}

.outline {
	outline-style: var(--tw-outline-style);
	outline-width: 1px;
}

.filter {
	filter: var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,);
}

.transition {
	transition-property: color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;
	transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
	transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.transition-all {
	transition-property: all;
	transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
	transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.transition-opacity {
	transition-property: opacity;
	transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
	transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.duration-200 {
	--tw-duration: .2s;
	transition-duration: .2s;
}

.ease-in-out {
	--tw-ease: var(--ease-in-out);
	transition-timing-function: var(--ease-in-out);
}

.group-data-\[selected\=true\]\:bg-transparent:is(:where(.group)[data-selected=true] *) {
	background-color: #0000;
}

@media (hover:hover) {
	.hover\:bg-gray-300:hover {
		background-color: var(--color-gray-300);
	}

	.hover\:from-purple-700:hover {
		--tw-gradient-from: var(--color-purple-700);
		--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
	}

	.hover\:to-pink-700:hover {
		--tw-gradient-to: var(--color-pink-700);
		--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
	}

	.hover\:opacity-80:hover {
		opacity: .8;
	}
}

.data-\[active\=true\]\:font-medium[data-active=true] {
	--tw-font-weight: var(--font-weight-medium);
	font-weight: var(--font-weight-medium);
}

@media (min-width:40rem) {
	.sm\:flex {
		display: flex;
	}

	.sm\:hidden {
		display: none;
	}

	.sm\:basis-full {
		flex-basis: 100%;
	}
}

@media (min-width:48rem) {
	.md\:flex {
		display: flex;
	}

	.md\:w-1\/2 {
		width: 50%;
	}

	.md\:py-10 {
		padding-block: calc(var(--spacing)*10);
	}
}

@media (min-width:64rem) {
	.lg\:flex {
		display: flex;
	}

	.lg\:inline-block {
		display: inline-block;
	}

	.lg\:text-4xl {
		font-size: var(--text-4xl);
		line-height: var(--tw-leading,var(--text-4xl--line-height));
	}

	.lg\:text-5xl {
		font-size: var(--text-5xl);
		line-height: var(--tw-leading,var(--text-5xl--line-height));
	}

	.lg\:text-6xl {
		font-size: var(--text-6xl);
		line-height: var(--tw-leading,var(--text-6xl--line-height));
	}

	.lg\:text-xl {
		font-size: var(--text-xl);
		line-height: var(--tw-leading,var(--text-xl--line-height));
	}
}

@media (prefers-color-scheme:dark) {
	.dark\:bg-gray-700 {
		background-color: var(--color-gray-700);
	}

	.dark\:bg-gray-800 {
		background-color: var(--color-gray-800);
	}

	.dark\:bg-red-900 {
		background-color: var(--color-red-900);
	}

	.dark\:from-\[\#FFFFFF\] {
		--tw-gradient-from: #fff;
		--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
	}

	.dark\:from-gray-900 {
		--tw-gradient-from: var(--color-gray-900);
		--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
	}

	.dark\:to-\[\#4B4B4B\] {
		--tw-gradient-to: #4b4b4b;
		--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
	}

	.dark\:to-gray-800 {
		--tw-gradient-to: var(--color-gray-800);
		--tw-gradient-stops: var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position));
	}

	.dark\:text-gray-200 {
		color: var(--color-gray-200);
	}

	.dark\:text-gray-300 {
		color: var(--color-gray-300);
	}

	.dark\:text-red-400 {
		color: var(--color-red-400);
	}

	.dark\:text-white {
		color: var(--color-white);
	}@	media (hover:hover) {
		.dark\: hover\:bg-gray-600:hover{background-color:var(--color-gray-600);
	}
}}}

:root {
	--toastify-color-light: #fff;
	--toastify-color-dark: #121212;
	--toastify-color-info: #3498db;
	--toastify-color-success: #07bc0c;
	--toastify-color-warning: #f1c40f;
	--toastify-color-error: #e74d3c;
	--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-container-width: fit-content;
	--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-padding: 14px;
	--toastify-toast-min-height: 64px;
	--toastify-toast-max-height: 800px;
	--toastify-toast-bd-radius: 6px;
	--toastify-toast-shadow: 0px 4px 12px #0000001a;
	--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: .2;
}

.Toastify__toast-container {
	box-sizing: border-box;
	color: #fff;
	-webkit-transform: translateZ(9999px);
	-webkit-transform: translateZ(var(--toastify-z-index));
	width: fit-content;
	width: var(--toastify-container-width);
	z-index: 9999;
	z-index: var(--toastify-z-index);
	flex-direction: column;
	display: flex;
	position: fixed;
}

.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);
	align-items: center;
	transform: translate(-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);
	align-items: end;
}

.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);
	align-items: center;
	left: 50%;
	transform: translate(-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);
	align-items: end;
}

.Toastify__toast {
	--y: 0;
	border-radius: 6px;
	border-radius: var(--toastify-toast-bd-radius);
	box-shadow: 0 4px 12px #0000001a;
	box-shadow: var(--toastify-toast-shadow);
	box-sizing: border-box;
	font-family: sans-serif;
	font-family: var(--toastify-font-family);
	max-height: 800px;
	max-height: var(--toastify-toast-max-height);
	min-height: 64px;
	min-height: var(--toastify-toast-min-height);
	padding: 14px;
	padding: var(--toastify-toast-padding);
	touch-action: none;
	width: 320px;
	width: var(--toastify-toast-width);
	word-break: break-word;
	z-index: 0;
	flex: auto;
	align-items: center;
	margin-bottom: 1rem;
	display: flex;
	position: relative;
}

@media only screen and (max-width:480px) {
	.Toastify__toast-container {
		left: env(safe-area-inset-left);
		width: 100vw;
		margin: 0;
	}

	.Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
		top: env(safe-area-inset-top);
		transform: translate(0);
	}

	.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
		bottom: env(safe-area-inset-bottom);
		transform: translate(0);
	}

	.Toastify__toast-container--rtl {
		left: auto;
		right: env(safe-area-inset-right);
	}

	.Toastify__toast {
		--toastify-toast-width: 100%;
		border-radius: 0;
		margin-bottom: 0;
	}
}

.Toastify__toast-container[data-stacked=true] {
	width: 320px;
	width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
	transform: translate3d(0,var(--y),0)scale(var(--s));
	width: 100%;
	transition: transform .3s;
	position: absolute;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__close-button,.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
	transition: opacity .1s;
}

.Toastify__toast--stacked[data-collapsed=false] {
	overflow: visible;
}

.Toastify__toast--stacked[data-collapsed=true]:not(:last-child)>* {
	opacity: 0;
}

.Toastify__toast--stacked:after {
	content: "";
	height: calc(var(--g)*1px);
	position: absolute;
	bottom: 100%;
	left: 0;
	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 {
	content: "";
	z-index: -1;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transform: scaleY(3);
}

.Toastify__toast--rtl {
	direction: rtl;
}

.Toastify__toast--close-on-click {
	cursor: pointer;
}

.Toastify__toast-icon {
	-webkit-margin-end: 10px;
	flex-shrink: 0;
	width: 22px;
	margin-inline-end: 10px;
	display: flex;
}

.Toastify--animate {
	animation-duration: .5s;
	animation-fill-mode: both;
}

.Toastify--animate-icon {
	animation-duration: .3s;
	animation-fill-mode: both;
}

.Toastify__toast-theme--dark {
	background: #121212;
	background: var(--toastify-color-dark);
	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: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
	background: #3498db;
	background: var(--toastify-color-info);
	color: var(--toastify-text-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
	background: #07bc0c;
	background: var(--toastify-color-success);
	color: var(--toastify-text-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
	background: #f1c40f;
	background: var(--toastify-color-warning);
	color: var(--toastify-text-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
	background: #e74d3c;
	background: var(--toastify-color-error);
	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: #e74d3c;
	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 {
	color: #fff;
	cursor: pointer;
	opacity: .7;
	z-index: 1;
	background: 0 0;
	border: none;
	outline: none;
	padding: 0;
	transition: all .3s;
	position: absolute;
	top: 6px;
	right: 6px;
}

.Toastify__toast--rtl .Toastify__close-button {
	left: 6px;
	right: auto;
}

.Toastify__close-button--light {
	color: #000;
	opacity: .3;
}

.Toastify__close-button>svg {
	fill: currentColor;
	width: 14px;
	height: 16px;
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
	opacity: 1;
}

@keyframes Toastify__trackProgress {
	0% {
		transform: scaleX(1);
	}

	to {
		transform: scaleX(0);
	}
}

.Toastify__progress-bar {
	opacity: .7;
	transform-origin: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.Toastify__progress-bar--animated {
	animation: linear forwards Toastify__trackProgress;
}

.Toastify__progress-bar--controlled {
	transition: transform .2s;
}

.Toastify__progress-bar--rtl {
	transform-origin: 100%;
	border-bottom-left-radius: 0;
	left: auto;
	right: 0;
}

.Toastify__progress-bar--wrp {
	border-bottom-left-radius: 6px;
	border-bottom-left-radius: var(--toastify-toast-bd-radius);
	border-bottom-right-radius: 6px;
	border-bottom-right-radius: var(--toastify-toast-bd-radius);
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.Toastify__progress-bar--wrp[data-hidden=true] {
	opacity: 0;
}

.Toastify__progress-bar--bg {
	opacity: .2;
	height: 100%;
	opacity: var(--toastify-color-progress-bgo);
	width: 100%;
}

.Toastify__spinner {
	border: 2px solid #e0e0e0;
	border-color: var(--toastify-spinner-color-empty-area);
	border-right-color: #616161;
	border-right-color: var(--toastify-spinner-color);
	box-sizing: border-box;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	animation: .65s linear infinite Toastify__spin;
}

@keyframes Toastify__bounceInRight {
	0%,60%,75%,90%,to {
		animation-timing-function: cubic-bezier(.215,.61,.355,1);
	}

	0% {
		opacity: 0;
		transform: translate(3000px);
	}

	60% {
		opacity: 1;
		transform: translate(-25px);
	}

	75% {
		transform: translate(10px);
	}

	90% {
		transform: translate(-5px);
	}

	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(.215,.61,.355,1);
	}

	0% {
		opacity: 0;
		transform: translate(-3000px);
	}

	60% {
		opacity: 1;
		transform: translate(25px);
	}

	75% {
		transform: translate(-10px);
	}

	90% {
		transform: translate(5px);
	}

	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(.215,.61,.355,1);
	}

	0% {
		opacity: 0;
		transform: translateY(3000px);
	}

	60% {
		opacity: 1;
		transform: translateY(-20px);
	}

	75% {
		transform: translateY(10px);
	}

	90% {
		transform: translateY(-5px);
	}

	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: translateY(-2000px);
	}
}

@keyframes Toastify__bounceInDown {
	0%,60%,75%,90%,to {
		animation-timing-function: cubic-bezier(.215,.61,.355,1);
	}

	0% {
		opacity: 0;
		transform: translateY(-3000px);
	}

	60% {
		opacity: 1;
		transform: translateY(25px);
	}

	75% {
		transform: translateY(-10px);
	}

	90% {
		transform: translateY(5px);
	}

	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: translateY(2000px);
	}
}

.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(.3,.3,.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes Toastify__zoomOut {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		transform: translate3d(0,var(--y),0)scale3d(.3,.3,.3);
	}

	to {
		opacity: 0;
	}
}

.Toastify__zoom-enter {
	animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
	animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
	0% {
		opacity: 0;
		animation-timing-function: ease-in;
		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% {
		visibility: visible;
		transform: translate(110%);
	}

	to {
		transform: translate3d(0,var(--y),0);
	}
}

@keyframes Toastify__slideInLeft {
	0% {
		visibility: visible;
		transform: translate(-110%);
	}

	to {
		transform: translate3d(0,var(--y),0);
	}
}

@keyframes Toastify__slideInUp {
	0% {
		visibility: visible;
		transform: translateY(110%);
	}

	to {
		transform: translate3d(0,var(--y),0);
	}
}

@keyframes Toastify__slideInDown {
	0% {
		visibility: visible;
		transform: translateY(-110%);
	}

	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 {
		visibility: hidden;
		transform: translateY(500px);
	}
}

@keyframes Toastify__slideOutUp {
	0% {
		transform: translate3d(0,var(--y),0);
	}

	to {
		visibility: hidden;
		transform: translateY(-500px);
	}
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
	animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
	animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
	animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
	animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
	animation-name: Toastify__slideOutLeft;
	animation-duration: .3s;
	animation-timing-function: ease-in;
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
	animation-name: Toastify__slideOutRight;
	animation-duration: .3s;
	animation-timing-function: ease-in;
}

.Toastify__slide-exit--top-center {
	animation-name: Toastify__slideOutUp;
	animation-duration: .3s;
	animation-timing-function: ease-in;
}

.Toastify__slide-exit--bottom-center {
	animation-name: Toastify__slideOutDown;
	animation-duration: .3s;
	animation-timing-function: ease-in;
}

@keyframes Toastify__spin {
	0% {
		transform: rotate(0);
	}

	to {
		transform: rotate(1turn);
	}
}

.footer__container {
	background: #1d1d1d;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0;
	display: flex;
}

footer {
	background: #1d1d1d;
}

.footer__right {
	flex-direction: column;
	display: flex;
}

.footer__right a {
	color: #fff;
	letter-spacing: 0;
	margin-bottom: 15px;
	font-family: Gilroy;
	font-size: 18px;
	font-weight: 400;
	line-height: 21.6px;
}

.footer__left {
	color: #fff;
	letter-spacing: 0;
	flex-direction: column;
	gap: 15px;
	font-family: Gilroy;
	font-size: 18px;
	font-weight: 400;
	line-height: 21.6px;
	display: flex;
}

.footer__left a {
	color: #fff;
}

@media (max-width:768px) {
	.footer__container {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 60px;
		max-width: 1200px;
		margin: 0 auto;
		padding: 60px 15px;
		display: flex;
	}

	footer {
		background: #1d1d1d;
	}
}

body {
	color: #fff;
	background-color: #101010;
	height: 100vh;
}

html {
	scroll-behavior: smooth;
}

body:after {
	content: "";
	opacity: .5;
	z-index: -1;
	background-image: url(/static/media/back.ddaeed1e4dac33b35e98.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 940px;
	display: block;
	position: absolute;
	top: 0;
}

:root {
	font-family: Gilroy,sans-serif;
}

.nav__item {
	cursor: pointer;
}

.Toastify {
	z-index: 2147483647;
	position: relative;
}

.burger {
	display: none;
}

#logout-button {
	color: #000;
	justify-content: center;
	align-items: center;
	gap: 15px;
	display: flex;
	background: #fff!important;
}

#logout-button:before {
	content: "";
	background-image: url(/static/media/exit.ce49055c3a4714aefbc0.svg);
	width: 24px;
	height: 24px;
	display: block;
}

.header__container {
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
	display: flex;
}

.nav__list {
	gap: 50px;
	display: flex;
}

.nav__link {
	color: #fff;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 500;
	display: flex;
}

.nav__item:not(:first-child) .nav__link img {
	filter: invert();
}

.nav__item:nth-child(5) .nav__link img {
	filter: invert(0);
}

.header__button {
	color: #fff;
	cursor: pointer;
	background: #fd4c74;
	border-radius: 10px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 160px;
	height: 60px;
	padding: 10px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
}

.header__block {
	display: contents;
}

.header__block--unauth .nav__item>a {
	font-size: 20px;
}

@media (max-width:1100px) {
	.nav__list {
		gap: 20px;
		display: flex;
	}

	.header__logo {
		max-width: 130px;
	}

	.nav__link {
		gap: 10px;
		font-weight: 500;
	}

	.header__button,.nav__link {
		color: #fff;
		align-items: center;
		font-size: 14px;
		display: flex;
	}

	.header__button {
		cursor: pointer;
		background: #fd4c74;
		border-radius: 10px;
		flex-direction: row;
		justify-content: center;
		gap: 15px;
		width: 99px;
		height: 50px;
		padding: 10px;
		font-weight: 600;
	}
}

@media (max-width:768px) {
	.burger {
		cursor: pointer;
		z-index: 10;
		flex-direction: column;
		display: flex;
	}

	.header__actions {
		padding: 0 15px;
	}

	.header__block--unauth .nav__item:first-child a {
		color: #000;
	}

	#logout-button:before {
		filter: invert();
	}

	.header__block--unauth .header__button {
		border-radius: 57px;
		width: 100%;
		height: 70px;
	}

	.header__block {
		display: none;
	}

	.nav__list {
		text-align: center;
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}

	.nav__list .nav__item:first-child a {
		background: #fd4c74;
		border-radius: 57px;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 73px;
		font-size: 18px;
		display: flex;
	}

	.header_nav {
		order: 2;
	}

	.header__block--unauth .nav__item:first-child a,.nav__list .nav__item:not(:first-child) a {
		background: #fff;
		border-radius: 57px;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 73px;
		font-size: 18px;
		display: flex;
	}

	.nav__list .nav__item:not(:first-child) a {
		color: #000;
	}

	.nav__list .nav__item:not(:first-child) a>img {
		filter: invert(0);
	}

	#logout-button {
		color: #fff;
		border-radius: 57px;
		width: 100%;
		height: 73px;
		font-size: 18px;
		background: #1d1d1d!important;
	}

	#logout-button img {
		filter: invert();
	}

	.nav__link {
		text-align: center;
	}

	.header__block.active {
		z-index: 9;
		background: #000;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: 100vh;
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
	}

	.header__logo {
		z-index: 99999;
		position: relative;
	}

	.header_block {
		display: none!important;
	}

	.profile-analysis__container {
		flex-direction: column;
		gap: 20px!important;
	}

	.profile-analysis__description {
		margin-bottom: 20px!important;
		font-size: 28px!important;
	}

	.profile-analysis__input {
		height: 70px!important;
		padding: 0 20px!important;
	}

	.profile-analysis__input::placeholder {
		font-size: 18px!important;
	}

	.header__logo img {
		max-width: 185px!important;
	}

	.burger__line {
		background-color: #fff;
		border-radius: 100px;
		width: 36px;
		height: 5px;
		margin: 4px 0;
		transition: all .2s;
	}

	.burger .burger__line.active:first-child {
		background-color: #ff3b83;
		transform: rotate(45deg)translate(14px,10px);
	}

	.burger .burger__line.active:nth-child(2) {
		opacity: 0;
		background-color: #ff3b83;
	}

	.burger .burger__line.active:nth-child(3) {
		background-color: #ff3b83;
		transform: rotate(-45deg)translate(8px,-5px);
	}

	.header__container {
		padding: 20px!important;
	}

	.profile-analysis__button {
		font-weight: 800;
		height: 70px!important;
		font-size: 18px!important;
	}

	.features__container {
		padding: 0 15px!important;
	}

	.feature {
		flex-direction: column;
	}

	.profile-analysis__image {
		border-radius: 20px;
		height: 300px;
		overflow: hidden;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes zoomIn {
	0% {
		opacity: .8;
		transform: scale(.5);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.popup {
	opacity: 0;
	z-index: 9999;
	background: #000000b3;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	animation: .3s forwards fadeIn;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
}

.popup-content {
	background: #1d1d1d;
	border-radius: 12px;
	width: min(500px,90%);
	max-height: 90vh;
	padding: 30px;
	animation: .5s forwards zoomIn;
	position: relative;
	overflow-y: auto;
	transform: scale(.95);
	box-shadow: 0 10px 30px #00000040;
}

.close-button {
	color: #888;
	cursor: pointer;
	background: 0 0;
	border: none;
	font-size: 28px;
	line-height: 1;
	transition: color .2s;
	position: absolute;
	top: 12px;
	right: 12px;
}

.close-button:hover {
	color: #000;
}

.vk-auth-popup__content {
	flex-direction: column;
	display: flex;
}

.vk-auth-popup__title {
	text-align: center;
	margin: 0 0 20px;
	font-size: 20px;
}

.vk-auth-popup__content>p {
	text-align: start;
	margin: 0 0 15px;
}

@keyframes react-loading-skeleton {
	to {
		transform: translate(100%);
	}
}

.react-loading-skeleton {
	--base-color: #ebebeb;
	--highlight-color: #f5f5f5;
	--animation-duration: 1.5s;
	--animation-direction: normal;
	--pseudo-element-display: block;
	background-color: var(--base-color);
	-webkit-user-select: none;
	user-select: none;
	border-radius: .25rem;
	width: 100%;
	line-height: 1;
	display: inline-flex;
	position: relative;
	overflow: hidden;
}

.react-loading-skeleton:after {
	animation-direction: var(--animation-direction);
	animation-duration: var(--animation-duration);
	background-image: linear-gradient(90deg,var(--base-color)0,var(--highlight-color)50%,var(--base-color)100%);
	background-image: var(--custom-highlight-background,linear-gradient(90deg,var(--base-color)0,var(--highlight-color)50%,var(--base-color)100%));
	content: " ";
	display: var(--pseudo-element-display);
	background-repeat: no-repeat;
	height: 100%;
	animation-name: react-loading-skeleton;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: translate(-100%);
}

@media (prefers-reduced-motion) {
	.react-loading-skeleton {
		--pseudo-element-display: none;
	}
}

.profile-history {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.profile-history__title {
	color: #fff;
	align-items: center;
	gap: 10px;
	margin-bottom: 38px;
	font-size: 28px;
	font-weight: 600;
	display: flex;
}

.profile-history__item {
	cursor: pointer;
	border-radius: 8px;
	padding: 10px;
}

.profile-history__header {
	justify-content: space-between;
	align-items: center;
	display: flex;
}

.profile-history__name {
	font-weight: 700;
}

.profile-history__date {
	color: #666;
}

.profile-history__arrow {
	font-size: 18px;
	transition: transform .3s;
}

.profile-history__content {
	padding-top: 10px;
	display: none;
}

.profile-history__button {
	color: #fff;
	background: #fd4c74;
	border-radius: 10px;
	width: 100%;
	height: 50px;
	padding: 10px;
	font-size: 14px;
	font-weight: 600;
}

.profile-history__item.active .profile-history__arrow {
	transform: rotate(180deg);
}

.profile-history__item.active .profile-history__content {
	display: block;
}

.image-prof {
	border-radius: 100px;
	width: 48px;
	height: 48px;
}

.block-name {
	flex-direction: column;
	flex: 1;
	gap: 10px;
	margin-left: 20px;
	display: flex;
}

.profile-history {
	margin-bottom: 50px;
}

.profile-history__arrow.active {
	transform: rotate(180deg);
}

.profile-analysis__container {
	align-items: center;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
}

.profile-analysis__description {
	color: #fff;
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 600;
}

.profile-analysis__form {
	flex-direction: column;
	display: flex;
}

.profile-analysis__input::placeholder {
	color: #8d8d8d;
	font-size: 24px;
	font-weight: 500;
}

.profile-analysis__form {
	width: 100%;
}

.profile-analysis__input {
	color: #101010;
	background: #ebebeb;
	border-radius: 57px;
	width: 100%;
	height: 90px;
	padding: 0 40px;
	font-size: 24px;
	font-weight: 400;
	display: flex;
}

.profile-analysis__image {
	width: 100%;
	max-width: 500px;
}

.profile-analysis__button {
	background: #fd4c74;
	border-radius: 57px;
	gap: 15px;
	height: 90px;
	margin-top: 20px;
	padding: 10px;
	font-size: 24px;
}

.loading-screen,.profile-analysis__button {
	color: #fff;
	justify-content: center;
	align-items: center;
	width: 100%;
	display: flex;
}

.loading-screen {
	text-align: center;
	z-index: 2147483647;
	background-color: #101010;
	background-image: url(/static/media/back.ddaeed1e4dac33b35e98.png);
	flex-direction: column;
	height: 100vh;
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
}

.loading-screen p:nth-child(2) {
	margin-bottom: 90px;
	font-size: 24px;
	font-weight: 600;
}

.profile-analysis__button:disabled {
	cursor: not-allowed;
	opacity: .5;
}

.loading-screen p {
	font-size: 24px;
	font-weight: 800;
}

.spinner-container {
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	display: flex;
}

.spinner {
	border: 6px solid #e0e0e0;
	border-top-color: #ff3b83;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: 1s linear infinite spin;
}

.service-description {
	background-color: #fff;
}

.service-description__container {
	max-width: 1200px;
	margin: 50px auto;
	padding: 50px 0;
}

.service-description__title {
	color: #ff3b83;
	margin-bottom: 15px;
	font-size: 36px;
	font-weight: 600;
}

.service-description__text {
	color: #000;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 500;
}

.features__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

.feature {
	gap: 40px;
	margin-bottom: 80px;
	display: flex;
}

.feature__icon {
	min-width: 112px;
}

.feature__title {
	color: #fff;
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 600;
}

.feature__description {
	color: #fff;
	font-size: 24px;
	font-weight: 500;
}

.faq {
	background-color: #f8f9fa;
}

.faq__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}

.faq__item {
	margin-bottom: 20px;
}

.faq__question {
	color: #000;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	font-size: 24px;
	font-weight: 600;
	display: flex;
}

.faq__question h3 {
	margin: 0;
}

.loading-screen>div:first-child {
	mix-blend-mode: lighten;
	width: 100%;
	max-width: 460px;
}

.faq__arrow {
	transition: transform .3s;
}

.faq__arrow:hover {
	transform: rotate(10deg);
}

.faq__answer {
	max-height: 0;
	transition: max-height .3s;
	overflow: hidden;
}

.faq__answer p {
	color: #000;
	margin: 15px 0;
	font-size: 24px;
	font-weight: 500;
}

.mt-4 {
	max-width: 730px;
}

.faq__item.active .faq__answer {
	max-height: 200px;
}

.faq__item.active .faq__arrow {
	transform: rotate(180deg);
}

.faq__title span {
	color: #ff3b83;
}

.faq__title {
	color: #000;
	margin-bottom: 40px;
	font-size: 36px;
	font-weight: 600;
}

.faq__question span {
	color: #ff3b83;
	font-size: 24px;
	font-weight: 600;
}

@media (max-width:768px) {
	.service-description__container {
		max-width: 1200px;
		margin: 50px auto;
		padding: 30px 15px;
	}

	.service-description__title {
		color: #ff3b83;
		margin-bottom: 15px;
		font-size: 28px;
		font-weight: 600;
	}

	.service-description__text {
		color: #000;
		margin-bottom: 15px;
		font-size: 18px;
		font-weight: 500;
	}

	.feature__icon img {
		width: 70px;
	}

	.feature__title {
		font-size: 24px;
	}

	.feature__description {
		font-size: 18px;
	}

	.loading-screen>div:first-child {
		mix-blend-mode: lighten;
		width: 100%;
		max-width: 240px;
	}

	.loading-screen p:nth-child(2) {
		margin-bottom: 60px;
		font-size: 18px;
		font-weight: 500;
	}

	.faq__container {
		max-width: 1200px;
		margin: 0 15px;
		padding: 30px 0;
	}

	.faq__title {
		color: #000;
		margin-bottom: 10px;
		font-size: 28px;
		font-weight: 600;
	}

	.faq__question h3 {
		margin: 0;
		font-size: 18px;
	}

	.faq__item {
		margin-bottom: 10px;
	}

	.loading-screen p {
		font-size: 18px;
		font-weight: 800;
	}

	.faq__answer p {
		color: #000;
		margin: 0;
		font-size: 14px;
		font-weight: 500;
	}

	.spinner-container {
		justify-content: center;
		align-items: center;
		margin-top: 20px;
		display: flex;
	}

	.spinner {
		border: 4px solid #e0e0e0;
		border-top-color: #ff3b83;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		animation: 1s linear infinite spin;
	}
}

.auth__title {
	color: #fff;
}

.auth__subtitle,.auth__title {
	font-size: 28px;
	font-weight: 600;
}

.auth__subtitle {
	color: #f68944;
	margin-bottom: 30px;
}

.auth__form-group {
	flex-direction: column;
	display: flex;
}

.auth__container {
	max-width: 500px;
	margin: 50px auto;
}

.auth__label {
	color: #7d7d7d;
	font-size: 18px;
	font-weight: 500;
}

.auth__input {
	color: #1d1d1d;
	background: #fff;
	width: 330px;
	margin: 5px 0;
	padding: 10px 10px 10px 20px;
}

.auth__button,.auth__input {
	border-radius: 57px;
	width: 100%;
	height: 73px;
}

.auth__button {
	color: #e8e8f1;
	background: #fd4c74;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	padding: 10px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
}

.auth__form-group {
	margin-top: 15px;
}

.auth__footer {
	color: #fff;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 25px;
	font-size: 18px;
	font-weight: 500;
	display: flex;
}

.auth__footer button {
	color: #f68944;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	flex-direction: column;
	font-weight: 600;
	text-decoration: underline;
	display: flex;
}

@media (max-width:768px) {
	.auth__container {
		max-width: 1200px;
		margin: 50px 15px;
	}
}

.profile__greeting-text {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
}

.profile__greeting-name {
	color: #ff3b83;
	font-size: 28px;
	font-weight: 600;
}

.profile__actions {
	flex-direction: row;
	gap: 10px;
	margin: 20px 0;
	display: flex;
}

.profile__button {
	border-radius: 57px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	height: 73px;
	padding: 10px 40px;
	display: flex;
}

.profile__button:first-child {
	color: #000;
	background-color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.profile__button:last-child {
	color: #fff;
	background: #fd4c74;
	font-size: 18px;
	font-weight: 600;
}

.hidder-r {
	background: #1d1d1d;
	border-radius: 57px;
	height: 495px;
	padding: 15px;
	display: block;
	position: relative;
}

.react-loading-skeleton {
	opacity: .5!important;
}

.like-item-text a {
	color: #ff3b83;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-decoration: underline;
}

.no-data {
	background: #101010;
	border-radius: 57px;
	gap: 7px;
	min-height: 60px;
	margin-bottom: 10px;
	padding: 27px 15px;
}

.no-data,.title-h2 {
	align-items: center;
	width: 100%;
	display: flex;
}

.title-h2 {
	color: #e1e1e1;
	gap: 10px;
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}

@media (max-width:768px) {
	.profile__actions {
		flex-direction: column;
		gap: 10px;
		width: 100%;
		margin: 20px 0;
		display: flex;
	}
}

.profile {
	max-width: 1200px;
	margin: 0 auto 50px;
	padding: 0 20px;
}

#profile-photo {
	border-radius: 100px;
	width: 128px;
	height: 128px;
}

.profile__name {
	flex-wrap: wrap;
	gap: 10px;
	display: flex;
	font-size: 48px!important;
}

.profile__hidden-friend-name a,.profile__hidden-friend-name a:visited {
	color: #fff;
}

.profile__name>h1 {
	font-size: 48px!important;
}

.data-container {
	display: block;
	position: relative;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-spinner {
	border: 4px solid #f3f3f3;
	border-top-color: #f68944;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	animation: 1s linear infinite spin;
}

.loading-text {
	color: #fff;
	text-align: center;
	margin: 20px 0;
	font-size: 32px;
	font-weight: 600;
}

.fake_list {
	margin-top: 28px;
	height: 495px!important;
	overflow-y: hidden!important;
}

.profile__section-title-prof {
	color: #7d7d7d;
	width: 100%;
	font-size: 24px;
	font-weight: 500;
}

.profile__section-title img {
	width: 24px;
	height: 24px;
}

.profile_header-bloc {
	align-items: center;
	gap: 20px;
	margin: 20px 0 25px;
	display: flex;
}

.profile__name h1 {
	color: #e1e1e1;
	font-weight: 600;
}

.profile__stats {
	justify-content: space-between;
	gap: 100px;
	margin-bottom: 25px;
	display: flex;
}

.profile__stat-value {
	color: #e1e1e1;
	font-size: 28px;
	font-weight: 600;
}

.profile__activity-column {
	grid-gap: 9px;
	grid-template-rows: repeat(1,1fr);
	grid-template-columns: repeat(5,1fr);
	gap: 9px;
	margin-bottom: 9px;
	display: grid;
}

.profile__activity-item {
	text-align: center;
	background: #fd4c74;
	border-radius: 10px;
	padding: 10px 10px 15px;
	position: relative;
}

.gift-message {
	-webkit-line-clamp: 1;
	color: #fff;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
}

.profile__activity-item>img {
	text-align: center;
	margin-bottom: 5px;
}

.info {
	position: absolute;
	top: 5px;
	left: 5px;
}

.profile__section-title {
	color: #e1e1e1;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
}

.tab-active {
	leading-trim: Cap height;
	letter-spacing: 0;
	background: #fd4c74;
	border-radius: 57px;
	gap: 12px;
	width: 270px;
	height: 60px;
	padding: 15px;
	font-family: Gilroy;
	font-size: 18px;
	font-weight: 500;
	line-height: 21.83px;
}

.tabs>* {
	flex: 1;
}

.tabs {
	align-items: center;
	gap: 15px;
	display: flex;
}

.tabs-container {
	height: 495px;
}

.grad-container,.tabs-container {
	background: #1d1d1d;
	border-radius: 57px;
	padding: 15px;
	position: relative;
}

.grad-container {
	align-items: center;
	height: 495px;
	margin-top: 28px;
	display: flex;
}

.grad-container canvas {
	width: 300px!important;
	height: 410px!important;
}

.tab-content {
	height: 390px;
	margin: 20px 0;
	padding-right: 5px;
	overflow-y: scroll;
}

.profile__likes-list {
	height: 462px;
	padding-right: 5px;
	overflow-y: auto;
}

.profile__likes {
	background: #1d1d1d;
	border-radius: 57px;
	height: 495px;
	padding: 15px;
	position: relative;
}

.tab-content::-webkit-scrollbar-track {
	background: #000;
}

.profile__likes-list::-webkit-scrollbar {
	width: 5px;
}

.profile__likes-list::-webkit-scrollbar-track {
	background: #000;
}

.profile__likes-list::-webkit-scrollbar-thumb {
	background: #ff3b83;
	border-radius: 10px;
}

.profile__likes-list::-webkit-scrollbar-thumb:hover {
	background: #302f31;
}

.comment-item-photo,.like-item-photo {
	border-radius: 100px;
	min-width: 38px;
	height: 38px;
}

.comment-item,.like-item {
	background: #101010;
	border-radius: 57px;
	align-items: center;
	gap: 7px;
	width: 100%;
	min-height: 60px;
	margin-bottom: 10px;
	padding: 27px 15px;
	display: flex;
}

.comment-item a,.like-item a {
	color: #ff3b83;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-decoration: underline;
}

.tab {
	leading-trim: Cap height;
	letter-spacing: 0;
	background: #0d0d15;
	border-radius: 57px;
	gap: 12px;
	width: 270px;
	height: 60px;
	padding: 15px;
	font-family: Gilroy;
	font-size: 18px;
	font-weight: 500;
	line-height: 21.83px;
}

.profile__likes-item {
	background: #101010;
	border-radius: 57px;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 60px;
	margin-bottom: 10px;
	padding: 27px 15px;
	display: flex;
}

.profile__hidden-friend-name {
	font-size: 18px;
}

.profile__hidden-friend {
	align-items: center;
	gap: 10px;
	display: flex;
}

.profile__hidden-friend-photo {
	background: #fd4c74;
	border-radius: 100px;
	width: 36px;
	height: 36px;
}

.wrapper-block {
	grid-gap: 40px 30px;
	grid-template-rows: repeat(3,1fr);
	grid-template-columns: repeat(2,1fr);
	gap: 40px 30px;
	margin-top: 50px;
	display: grid;
}

.profile__actions button:first-child:before {
	background-image: url(/static/media/refresh.baf48f9dad3b0bb5b51c.svg);
}

.profile__actions button:first-child:before,.profile__actions button:last-child:before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	display: block;
}

.profile__actions button:last-child:before {
	background-image: url(/static/media/search.67ec8ca3b26c77de666f.svg);
}

.payment-placeholder {
	align-items: left;
}

.loading-placeholder,.payment-placeholder {
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	background: #1f1f1fcc;
	border: 2px solid #1d1d1d;
	border-radius: 57px;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 495px;
	padding: 50px;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
}

.loading-placeholder {
	align-items: center;
}

.text-blur {
	margin-bottom: 20px;
	font-size: 32px;
}

.btn-blur,.text-blur {
	color: #fff;
	font-weight: 600;
}

.btn-blur {
	cursor: pointer;
	text-align: center;
	background: #fd4c74;
	border-radius: 57px;
	justify-content: center;
	width: 100%;
	height: 90px;
	padding: 10px;
	font-size: 18px;
}

.btn-blur,.profile__header {
	align-items: center;
	display: flex;
}

.profile__header {
	flex-flow: wrap;
	justify-content: space-between;
	gap: 20px;
}

.profile__stat-value {
	font-size: 48px;
}

.profile__stat-label {
	font-size: 24px;
}

.wrpapeer-block {
	grid-gap: 30px;
	grid-template-rows: repeat(1,1fr);
	grid-template-columns: repeat(2,1fr);
	gap: 30px;
	margin-top: 50px;
	display: grid;
}

@media (max-width:768px) {
	.profile__stats {
		gap: inherit;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 25px;
		display: flex;
	}

	.data-container {
		height: 90%;
		display: block;
		position: relative;
	}

	.profile__activity-column {
		grid-gap: 9px;
		grid-template-rows: repeat(2,1fr);
		grid-template-columns: repeat(3,1fr);
		gap: 9px;
		margin-bottom: 9px;
		display: grid;
	}

	.wrapper-block {
		grid-gap: 40px 30px;
		grid-template-columns: repeat(1,1fr);
		gap: 40px 30px;
		margin-top: 50px;
		display: grid;
	}

	.profile__name {
		flex-direction: column;
		gap: 10px;
		display: flex;
	}

	.profile__name,.profile__name>h1 {
		font-size: 28px!important;
	}

	#profile-photo {
		border-radius: 100px;
		width: 90px;
		height: 90px;
	}

	.profile__section-title-prof {
		color: #7d7d7d;
		width: 100%;
		font-size: 18px;
		font-weight: 500;
	}

	.profile__activity-value {
		color: #fff;
		text-align: center;
		margin-top: 5px;
		font-size: 15px;
		font-weight: 600;
	}

	.profile__stat-label {
		font-size: 18px;
	}

	.profile__stat-value {
		font-size: 28px;
	}

	.profile__activity-label {
		font-size: 12px;
	}

	.grad-container {
		align-items: center;
		height: auto;
		min-height: 440px;
		display: flex;
	}

	.tabs-container {
		height: 420px;
	}

	.tab-content {
		height: 317px;
	}

	.payment-placeholder {
		align-items: left;
	}

	.loading-placeholder,.payment-placeholder {
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
		background: #101010cc;
		border: 2px solid #1d1d1d;
		border-radius: 57px;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 10px;
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
	}

	.loading-placeholder {
		align-items: center;
	}

	.text-blur {
		margin-bottom: 20px;
		font-size: 19px;
	}

	.btn-blur {
		cursor: pointer;
		text-align: center;
		background: #fd4c74;
		border-radius: 57px;
		justify-content: center;
		width: 100%;
		height: 60px;
		padding: 10px;
		font-size: 18px;
	}

	.fake_list {
		margin-top: 28px;
		height: 355px!important;
		overflow-y: hidden!important;
	}

	.profile__likes-item {
		gap: 10px;
	}

	.comment-item,.like-item,.profile__likes-item {
		align-items: center;
		width: 100%;
		min-height: 60px;
		margin-bottom: 10px;
		padding: 16px 10px;
		display: flex;
	}

	.comment-item,.like-item {
		background: #101010;
		border-radius: 57px;
		gap: 7px;
		font-size: 14px;
	}

	.tab-content {
		height: 303px;
		margin: 20px 0;
		padding-right: 5px;
		overflow-y: scroll;
	}
}

.settings-page {
	max-width: 1200px;
	margin: 0 auto 100px;
	padding: 0 20px;
}

.settings-page h1 {
	align-items: center;
	gap: 10px;
	display: flex;
}

.date-to,.settings-page h1 {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
}

.date-to {
	margin-top: 15px;
}

.date-to span {
	-webkit-text-fill-color: #0000;
	background: radial-gradient(766.78% 137.07% at 100% 6.25%,#ff3b83 0,#f68944);
	-webkit-background-clip: text;
	background-clip: text;
}

.settings-page h1:before {
	content: "";
	filter: invert();
	background-image: url(/static/media/option.89cd88cc2c6213b9c280.svg);
	width: 24px;
	height: 24px;
	display: block;
}

.settings-form {
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 20px;
	margin-top: 25px;
	display: flex;
}

.form-group {
	flex-wrap: wrap;
	flex: 1;
	gap: 10px;
	display: flex;
}

.settings-form label {
	color: #8d8d8d;
	font-size: 18px;
	font-weight: 500;
}

.settings-form input {
	background: #1d1d1d;
	border-radius: 57px;
	width: 100%;
	height: 73px;
	padding: 10px 10px 10px 20px;
}

.settings-form input::placeholder {
	color: #7d7d7d;
	font-size: 24px;
	font-weight: 500;
}

.save-button {
	color: #fff;
	background: #fd4c74;
	border-radius: 57px;
	align-items: center;
	gap: 5px;
	height: 73px;
	padding: 10px 30px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
}

.save-button:before {
	content: "";
	background-image: url(/static/media/save.e3c20508771b76718ad9.svg);
	width: 24px;
	height: 24px;
	display: block;
}

.more_info {
	color: #7d7d7d;
	font-weight: 500;
}

.history-button,.more_info {
	margin-top: 15px;
	font-size: 18px;
}

.history-button {
	color: #fff;
	background: #fd4c74;
	border-radius: 57px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 100%;
	height: 73px;
	font-weight: 600;
	display: flex;
}

.history-button:before {
	content: "";
	background-image: url(/static/media/svit.e58b33d8c4320859dece.svg);
	background-size: cover;
	width: 24px;
	height: 24px;
	display: block;
}

@media (max-width:768px) {
	.settings-form {
		flex-flow: column wrap;
		align-items: stretch;
		gap: 20px;
		margin-top: 25px;
		display: flex;
	}

	.save-button {
		color: #fff;
		background: #fd4c74;
		border-radius: 57px;
		justify-content: center;
		align-items: center;
		gap: 5px;
		height: 73px;
		padding: 10px 30px;
		font-size: 18px;
		font-weight: 600;
		display: flex;
	}
}

.success-icon {
	margin-top: 72px;
	margin-bottom: 35px;
}

.success-content {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: flex;
}

.success-page {
	margin: 0 15px;
}

.success-content>h1 {
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 600;
}

.success-content>p {
	color: #525280;
	text-align: center;
	margin-bottom: 94px;
	font-size: 18px;
	font-weight: 500;
}

.buttons {
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 460px;
	margin-bottom: 30px;
	display: flex;
}

.btn {
	border-radius: 57px;
	width: 100%;
	height: 70px;
	padding: 10px;
	font-weight: 600;
}

.btn.login-btn {
	background: #fd4c74;
}

.home-btn {
	color: #000;
	background: #fff;
}

* {
	border: none;
	margin: 0;
	padding: 0;
}

*,:after,:before {
	box-sizing: border-box;
}

a,a:hover,a:link,a:visited {
	text-decoration: none;
}

aside,footer,header,main,nav,section {
	display: block;
}

h1,h2,h3,h4,h5,h6,p {
	font-size: inherit;
	font-weight: inherit;
}

ul,ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img,svg {
	max-width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

button,input,select,textarea {
	background-color: initial;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
}

input::-ms-clear {
	display: none;
}

button,input[type=submit] {
	background-color: initial;
	box-shadow: none;
	cursor: pointer;
	background: 0 0;
	display: inline-block;
}

button:active,button:focus,input:active,input:focus {
	outline: none;
}

button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

.profile-photo {
	border-radius: 100px;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Thin.otf)format("opentype");font-weight:100;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-UltraLight.otf)format("opentype");font-weight:200;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Light.otf)format("opentype");font-weight:300;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Regular.otf)format("opentype");font-weight:400;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Medium.otf)format("opentype");font-weight:500;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-SemiBold.otf)format("opentype");font-weight:600;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Bold.otf)format("opentype");font-weight:700;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-ExtraBold.otf)format("opentype");font-weight:800;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Black.otf)format("opentype");font-weight:900;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-Heavy.otf)format("opentype");font-weight:950;font-style:normal;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-ThinItalic.otf)format("opentype");font-weight:100;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-UltraLightItalic.otf)format("opentype");font-weight:200;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-LightItalic.otf)format("opentype");font-weight:300;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-RegularItalic.otf)format("opentype");font-weight:400;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-MediumItalic.otf)format("opentype");font-weight:500;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-SemiBoldItalic.otf)format("opentype");font-weight:600;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-BoldItalic.otf)format("opentype");font-weight:700;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-ExtraBoldItalic.otf)format("opentype");font-weight:800;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-BlackItalic.otf)format("opentype");font-weight:900;font-style:italic;font-display:swap;
}

@font-face {
	font-family:Gilroy;src:url(../fonts/gilroy/Gilroy-HeavyItalic.otf)format("opentype");font-weight:950;font-style:italic;font-display:swap;
}

:root {
	--header-button-height: 48px;
	font-family: Gilroy,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
}

* {
	font-family: Gilroy,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
	box-sizing: border-box!important;
}

html {
	box-sizing: border-box!important;
	max-width: 100vw!important;
	overflow-x: hidden!important;
}

html,body {
	font-family: Gilroy,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
	box-sizing: border-box!important;
	width: 100%!important;
	max-width: 100vw!important;
	overflow-x: hidden!important;
}

main {
	box-sizing: border-box!important;
	max-width: 100vw!important;
	overflow-x: hidden!important;
}

body:after {
	content: "";
	opacity: .5;
	z-index: -1;
	background-image: url(/images/bg.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100vh;
	min-height: 100%;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
}

.header__logo img,.footer__logo img {
	height: auto;
	max-height: var(--header-button-height);
	width: auto;
	display: block;
}

.profile-analysis__image img {
	object-fit: contain;
	width: 100%;
	height: auto;
	max-height: 540px;
}

@media (max-width:768px) {
	.profile-analysis__image {
		max-width: 360px;
		margin: 0 auto;
		height: auto!important;
		overflow: visible!important;
	}

	.profile-analysis__image img {
		width: 100%;
		max-height: none;
	}
}

.profile {
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.profile__header {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	display: flex;
}

.profile_header-bloc {
	flex-wrap: wrap;
	flex-shrink: 0;
	align-items: center;
	gap: 30px;
	display: flex;
}

.profile_header-bloc img {
	object-fit: cover;
	border-radius: 50%;
	flex-shrink: 0;
	width: 128px;
	height: 128px;
}

.profile__name {
	flex-shrink: 0;
	min-width: 200px;
}

.profile__name h1 {
	color: #fff;
	margin: 0;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
}

.profile__stats {
	flex-shrink: 0;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 60px;
	width: auto;
	margin-left: auto;
	display: flex;
}

.profile__activity-column {
	gap: 9px;
	width: 100%;
	grid-template-columns: none!important;
	display: flex!important;
}

.profile__activity-item {
	text-align: center;
	background: #fd4c74;
	border-radius: 10px;
	min-width: 0;
	padding: 10px 10px 15px;
	flex: 1 1 0!important;
}

.profile__activity-label {
	color: #711130;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.profile__activity-value {
	color: #fff;
	text-align: center;
	margin-top: 5px;
	font-size: 32px;
	font-weight: 600;
}

.profile__stats>div {
	flex-direction: column;
	align-items: flex-start;
	display: flex;
}

.profile__stat-label {
	color: #ff3b83;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 500;
}

.profile__stat-value {
	color: #fff;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
}

.data-block-section {
	flex-direction: column;
	height: 100%;
	display: flex;
	position: relative;
}

.data-container {
	background: #1d1d1d;
	border-radius: 57px;
	height: 495px;
	margin-top: 28px;
	padding: 15px;
	position: relative;
	overflow: hidden;
}

.data-block-section:has(.gender-chart-container) {
	min-height: 550px;
}

.data-container.gender-chart-container {
	flex-direction: column!important;
	height: 550px!important;
	margin-top: 0!important;
	margin-bottom: 0!important;
	display: flex!important;
	overflow: hidden!important;
}

.wrapper-block {
	box-sizing: border-box;
	grid-template-rows: auto;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
	display: grid;
}

.fake-data-name {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

.payment-placeholder {
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	justify-content: center;
	align-items: left;
	z-index: 10;
	box-sizing: border-box;
	background: #1f1f1fcc;
	border: 2px solid #1d1d1d;
	border-radius: 57px;
	flex-direction: column;
	width: 100%;
	height: 495px;
	padding: 50px;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
}

.text-blur {
	color: #fff;
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: 600;
}

.btn-blur {
	color: #fff;
	cursor: pointer;
	text-align: center;
	border-radius: 57px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 90px;
	padding: 10px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	background: linear-gradient(90deg,#f68944,#ff3b83)!important;
}

@media (max-width:768px) {
	.wrapper-block {
		grid-template-rows: auto;
		grid-template-columns: repeat(1,1fr);
		gap: 40px 30px;
	}

	.data-block-section {
		min-height: 420px;
	}

	.data-container {
		height: 420px;
		overflow: hidden;
	}

	.payment-placeholder {
		box-sizing: border-box;
		background: #101010cc;
		height: 420px;
		padding: 10px;
	}

	.text-blur {
		margin-bottom: 20px;
		font-size: 19px;
	}

	.btn-blur {
		height: 60px;
	}

	.profile_header-bloc {
		flex-flow: row!important;
		align-items: center!important;
		gap: 15px!important;
	}

	.profile_header-bloc img {
		flex-shrink: 0!important;
		width: 80px!important;
		height: 80px!important;
	}

	.profile__name {
		flex: 1!important;
		min-width: 0!important;
	}

	.profile__header {
		flex-direction: column!important;
		justify-content: flex-start!important;
		align-items: flex-start!important;
		gap: 20px!important;
	}

	.profile_header-bloc {
		width: 100%!important;
	}

	.profile__stats {
		justify-content: space-around;
		gap: 20px;
		width: 100%;
		margin-left: 0!important;
	}

	.profile__name h1 {
		word-wrap: break-word;
		font-size: 24px;
		line-height: 1.2;
	}

	.profile__stat-label {
		font-size: 16px;
	}

	.profile__stat-value {
		font-size: 32px;
	}
}

.scrollable-card {
	box-sizing: border-box!important;
	background: #1d1d1d!important;
	border-radius: 57px!important;
	flex-direction: column!important;
	width: 100%!important;
	min-width: 0!important;
	height: 550px!important;
	padding: 15px!important;
	display: flex!important;
	position: relative!important;
	overflow: hidden!important;
}

.scrollable-card__content {
	flex-direction: column!important;
	flex: 1!important;
	width: 100%!important;
	min-height: 0!important;
	display: flex!important;
	overflow: hidden!important;
}

.data-container-content {
	-webkit-overflow-scrolling: touch!important;
	flex: 1!important;
	min-height: 0!important;
	padding-right: 5px!important;
	overflow: hidden auto!important;
}

.data-container-content::-webkit-scrollbar {
	width: 5px!important;
}

.data-container-content::-webkit-scrollbar-track {
	background: #000!important;
	border-radius: 10px!important;
}

.data-container-content::-webkit-scrollbar-thumb {
	background: #ff3b83!important;
	border-radius: 10px!important;
}

.data-container-content::-webkit-scrollbar-thumb:hover {
	background: #302f31!important;
}

.scrollable-card .tabs-container {
	background: 0 0!important;
	border-radius: 0!important;
	flex-direction: column!important;
	flex-shrink: 0!important;
	width: 100%!important;
	min-width: 0!important;
	height: 100%!important;
	padding: 0!important;
	display: flex!important;
	position: relative!important;
	overflow: visible!important;
}

.tabs {
	flex-shrink: 0!important;
	gap: 15px!important;
	width: 100%!important;
	margin-bottom: 0!important;
	display: flex!important;
}

.tab-content {
	-webkit-overflow-scrolling: touch!important;
	flex: auto!important;
	width: 100%!important;
	max-width: 100%!important;
	min-height: 0!important;
	margin: 20px 0!important;
	padding-right: 5px!important;
	overflow: hidden auto!important;
}

.tab-content::-webkit-scrollbar {
	width: 5px!important;
}

.tab-content::-webkit-scrollbar-track {
	background: #000!important;
	border-radius: 10px!important;
}

.tab-content::-webkit-scrollbar-thumb {
	background: #ff3b83!important;
	border-radius: 10px!important;
}

.tab-content::-webkit-scrollbar-thumb:hover {
	background: #302f31!important;
}

.profile__likes-list {
	height: auto!important;
	max-height: none!important;
	margin: 0!important;
	padding-right: 0!important;
	overflow: visible!important;
}

.profile__likes-item,.comment-item,.like-item {
	box-sizing: border-box!important;
	align-items: center!important;
	height: 80px!important;
	min-height: 80px!important;
	max-height: 80px!important;
	padding: 0 15px!important;
	display: flex!important;
}

.profile-history__list {
	flex-direction: column!important;
	gap: 10px!important;
	display: flex!important;
}

.profile-history__item {
	cursor: pointer!important;
	box-sizing: border-box!important;
	background: #101010!important;
	border: 2px solid #ff3b83!important;
	border-radius: 57px!important;
	align-items: center!important;
	width: 100%!important;
	min-height: 60px!important;
	margin-bottom: 0!important;
	padding: 27px 15px!important;
	transition: all .2s!important;
	display: flex!important;
}

.profile-history__item:hover {
	opacity: .9!important;
	border-color: #ff6ba3!important;
}

.profile-history__item:active {
	opacity: .8!important;
}

.profile-history__header {
	justify-content: space-between!important;
	align-items: center!important;
	gap: 15px!important;
	width: 100%!important;
	display: flex!important;
}

.profile-history__main {
	flex: 1!important;
	align-items: center!important;
	gap: 10px!important;
	min-width: 0!important;
	display: flex!important;
}

.profile-history__status-wrapper {
	flex-direction: column!important;
	flex-shrink: 0!important;
	align-items: flex-end!important;
	gap: 5px!important;
	display: flex!important;
}

.profile-history__hint {
	color: #666!important;
	white-space: nowrap!important;
	font-size: 10px!important;
}

.profile-history__name {
	color: #fff!important;
	font-size: 18px!important;
	font-weight: 600!important;
}

.profile-history__date {
	color: #666!important;
	margin-top: 5px!important;
	font-size: 14px!important;
}

.image-prof {
	object-fit: cover!important;
	border-radius: 50%!important;
	flex-shrink: 0!important;
	width: 48px!important;
	height: 48px!important;
}

.status-badge {
	white-space: nowrap!important;
	border-radius: 57px!important;
	align-items: center!important;
	gap: 6px!important;
	padding: 8px 16px!important;
	font-size: 16px!important;
	font-weight: 600!important;
	display: inline-flex!important;
}

.status-badge--completed {
	color: #4caf50!important;
	background: #2e7d3233!important;
}

.status-badge--failed {
	color: #f44336!important;
	background: #d32f2f33!important;
}

.status-badge--in-progress {
	color: #2196f3!important;
	background: #1976d233!important;
}

.status-badge--pending {
	color: #ff9800!important;
	background: #ed6c0233!important;
}

.status-badge svg {
	flex-shrink: 0!important;
}

#logout-button {
	text-align: center!important;
	justify-content: center!important;
	align-items: center!important;
	gap: 8px!important;
	display: flex!important;
}

#logout-button>* {
	flex-shrink: 0!important;
	margin: 0!important;
}

#logout-button:before {
	display: none!important;
}

#save-button {
	text-align: center!important;
	justify-content: center!important;
	align-items: center!important;
	gap: 8px!important;
	display: flex!important;
}

#save-button>* {
	flex-shrink: 0!important;
	margin: 0!important;
}

#save-button:before {
	display: none!important;
}

.save-button {
	text-align: center!important;
	justify-content: center!important;
	align-items: center!important;
	gap: 5px!important;
	display: flex!important;
}

.save-button>* {
	flex-shrink: 0!important;
	margin: 0!important;
}

.save-button:before {
	display: none!important;
}

@media (max-width:768px) {
	main {
		box-sizing: border-box!important;
		width: 100%!important;
		max-width: 100vw!important;
		overflow-x: hidden!important;
	}

	.profile {
		box-sizing: border-box!important;
		width: 100%!important;
		max-width: 100%!important;
		margin: 0 auto!important;
		padding: 0 15px!important;
		overflow-x: hidden!important;
	}

	.profile_header-bloc {
		flex-flow: row!important;
		align-items: center!important;
		gap: 15px!important;
	}

	.profile_header-bloc img {
		flex-shrink: 0!important;
		width: 80px!important;
		height: 80px!important;
	}

	.profile__name {
		flex: 1!important;
		min-width: 0!important;
	}

	.profile__name h1 {
		word-wrap: break-word!important;
		font-size: 24px!important;
		line-height: 1.2!important;
	}

	.scrollable-card {
		border-radius: 26px!important;
		height: 340px!important;
		margin-top: 20px!important;
		padding: 12px!important;
	}

	.scrollable-card .tabs-container {
		height: 100%!important;
	}

	.profile__likes-item,.comment-item,.like-item {
		height: 70px!important;
		min-height: 70px!important;
		max-height: 70px!important;
		padding: 0 10px!important;
	}

	.data-container-content {
		padding-right: 3px!important;
	}

	.profile-history__item,.scrollable-card,.data-container {
		box-sizing: border-box!important;
		width: 100%!important;
		max-width: 100%!important;
		margin-left: 0!important;
		margin-right: 0!important;
	}

	.profile-history__list {
		gap: 8px!important;
		width: 100%!important;
		max-width: 100%!important;
		padding: 0!important;
	}

	.profile-history {
		box-sizing: border-box!important;
		width: 100%!important;
		max-width: 100%!important;
		padding: 0 15px!important;
	}

	.data-block-section {
		box-sizing: border-box!important;
		width: 100%!important;
		max-width: 100%!important;
		margin: 0 0 15px!important;
		padding: 0!important;
	}

	.profile__section-title {
		margin-bottom: 20px!important;
		font-size: 18px!important;
	}

	.profile__activity-item {
		min-height: 80px!important;
		padding: 15px 10px 20px!important;
	}

	.profile__activity-label {
		font-size: 14px!important;
		font-weight: 500!important;
	}

	.profile__activity-value {
		margin-top: 8px!important;
		font-size: 24px!important;
		font-weight: 600!important;
	}

	.profile__stats>div {
		padding: 8px 0!important;
	}

	.profile__stat-label {
		margin-bottom: 12px!important;
		font-size: 18px!important;
	}

	.profile__stat-value {
		font-size: 36px!important;
	}

	.profile__header {
		margin-bottom: 15px!important;
	}

	.profile__stats {
		margin-bottom: 10px!important;
	}

	.profile__activity-column {
		flex-wrap: wrap!important;
		gap: 9px!important;
		width: 100%!important;
		margin-top: 10px!important;
		margin-bottom: 15px!important;
		display: flex!important;
	}

	.profile__activity-item {
		flex: auto!important;
		width: auto!important;
		min-width: min-content!important;
		padding: 15px 20px 20px!important;
	}

	.scrollable-card *,.data-container *,.scrollable-card__content * {
		box-sizing: border-box!important;
		max-width: 100%!important;
	}

	.tabs,.tab-content {
		box-sizing: border-box!important;
		width: 100%!important;
		max-width: 100%!important;
	}

	.scrollable-card,.data-container {
		overflow-x: hidden!important;
	}

	.data-block-section:has(.gender-chart-container) {
		overflow: visible!important;
	}

	.gender-chart-container {
		height: 100%!important;
		min-height: 100%!important;
		margin-top: 0!important;
		margin-bottom: 0!important;
		overflow: hidden!important;
	}

	.data-block-section {
		flex-direction: column!important;
		height: 100%!important;
		display: flex!important;
		overflow-x: hidden!important;
	}

	.profile-history__item {
		border-width: 1.5px!important;
		border-radius: 26px!important;
		min-height: auto!important;
		padding: 16px 12px!important;
	}

	.profile-history__header {
		flex-direction: column!important;
		align-items: stretch!important;
		gap: 12px!important;
	}

	.profile-history__main {
		width: 100%!important;
	}

	.profile-history__name {
		font-size: 16px!important;
	}

	.profile-history__date {
		margin-top: 4px!important;
		font-size: 12px!important;
	}

	.image-prof {
		width: 40px!important;
		height: 40px!important;
	}

	.profile-history__status-wrapper {
		align-items: stretch!important;
		width: 100%!important;
	}

	.status-badge {
		justify-content: center!important;
		gap: 6px!important;
		width: 100%!important;
		padding: 8px 16px!important;
		font-size: 16px!important;
	}

	.status-badge svg {
		width: 18px!important;
		height: 18px!important;
	}

	.profile-history__hint {
		text-align: center!important;
		width: 100%!important;
		font-size: 12px!important;
	}

	.gender-chart-container {
		max-width: 100%!important;
		height: 340px!important;
		max-height: 340px!important;
		margin-bottom: 0!important;
		padding: 15px!important;
		overflow: hidden!important;
	}

	.gender-chart-container svg {
		max-width: 100%!important;
		height: auto!important;
	}
}

@property --tw-rotate-x {
	syntax:"*";inherits:false;
}

@property --tw-rotate-y {
	syntax:"*";inherits:false;
}

@property --tw-rotate-z {
	syntax:"*";inherits:false;
}

@property --tw-skew-x {
	syntax:"*";inherits:false;
}

@property --tw-skew-y {
	syntax:"*";inherits:false;
}

@property --tw-space-y-reverse {
	syntax:"*";inherits:false;initial-value:0;
}

@property --tw-border-style {
	syntax:"*";inherits:false;initial-value:solid;
}

@property --tw-gradient-position {
	syntax:"*";inherits:false;
}

@property --tw-gradient-from {
	syntax:"<color>";inherits:false;initial-value:#0000;
}

@property --tw-gradient-via {
	syntax:"<color>";inherits:false;initial-value:#0000;
}

@property --tw-gradient-to {
	syntax:"<color>";inherits:false;initial-value:#0000;
}

@property --tw-gradient-stops {
	syntax:"*";inherits:false;
}

@property --tw-gradient-via-stops {
	syntax:"*";inherits:false;
}

@property --tw-gradient-from-position {
	syntax:"<length-percentage>";inherits:false;initial-value:0%;
}

@property --tw-gradient-via-position {
	syntax:"<length-percentage>";inherits:false;initial-value:50%;
}

@property --tw-gradient-to-position {
	syntax:"<length-percentage>";inherits:false;initial-value:100%;
}

@property --tw-font-weight {
	syntax:"*";inherits:false;
}

@property --tw-tracking {
	syntax:"*";inherits:false;
}

@property --tw-shadow {
	syntax:"*";inherits:false;initial-value:0 0 #0000;
}

@property --tw-shadow-color {
	syntax:"*";inherits:false;
}

@property --tw-shadow-alpha {
	syntax:"<percentage>";inherits:false;initial-value:100%;
}

@property --tw-inset-shadow {
	syntax:"*";inherits:false;initial-value:0 0 #0000;
}

@property --tw-inset-shadow-color {
	syntax:"*";inherits:false;
}

@property --tw-inset-shadow-alpha {
	syntax:"<percentage>";inherits:false;initial-value:100%;
}

@property --tw-ring-color {
	syntax:"*";inherits:false;
}

@property --tw-ring-shadow {
	syntax:"*";inherits:false;initial-value:0 0 #0000;
}

@property --tw-inset-ring-color {
	syntax:"*";inherits:false;
}

@property --tw-inset-ring-shadow {
	syntax:"*";inherits:false;initial-value:0 0 #0000;
}

@property --tw-ring-inset {
	syntax:"*";inherits:false;
}

@property --tw-ring-offset-width {
	syntax:"<length>";inherits:false;initial-value:0;
}

@property --tw-ring-offset-color {
	syntax:"*";inherits:false;initial-value:#fff;
}

@property --tw-ring-offset-shadow {
	syntax:"*";inherits:false;initial-value:0 0 #0000;
}

@property --tw-outline-style {
	syntax:"*";inherits:false;initial-value:solid;
}

@property --tw-blur {
	syntax:"*";inherits:false;
}

@property --tw-brightness {
	syntax:"*";inherits:false;
}

@property --tw-contrast {
	syntax:"*";inherits:false;
}

@property --tw-grayscale {
	syntax:"*";inherits:false;
}

@property --tw-hue-rotate {
	syntax:"*";inherits:false;
}

@property --tw-invert {
	syntax:"*";inherits:false;
}

@property --tw-opacity {
	syntax:"*";inherits:false;
}

@property --tw-saturate {
	syntax:"*";inherits:false;
}

@property --tw-sepia {
	syntax:"*";inherits:false;
}

@property --tw-drop-shadow {
	syntax:"*";inherits:false;
}

@property --tw-drop-shadow-color {
	syntax:"*";inherits:false;
}

@property --tw-drop-shadow-alpha {
	syntax:"<percentage>";inherits:false;initial-value:100%;
}

@property --tw-drop-shadow-size {
	syntax:"*";inherits:false;
}

@property --tw-duration {
	syntax:"*";inherits:false;
}

@property --tw-ease {
	syntax:"*";inherits:false;
}