@charset "UTF-8";
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
.form {
	position: relative;
	padding: 156px 24px 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: calc(100vh - 200px);
	min-height: 890px;
}
.form-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.form-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.form-wrap {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 18px;
	border: 1px solid var(--border-primary);
	background: var(--bg-primary);
	padding: 48px;
	width: 100%;
	max-width: 480px;
}
.form-wrap .h5 {
	margin-bottom: 18px;
	text-align: center;
}
.form-wrap > span {
	text-align: center;
}
.form-wrap span {
	color: var(--text-icon-transparent-white);
}
.form-wrap .label,
.form-wrap label {
	margin-top: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
	position: relative;
	width: 100%;
}
.form-wrap .pass-icon {
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 12px;
	right: 16px;
	cursor: pointer;
	z-index: 5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.form-wrap a:hover {
	color: var(--text-icon-accent-primary);
}
.form-wrap .custom-select {
	width: 100%;
	position: relative;
}
.form-wrap .custom-select::after {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	position: absolute;
	top: 12px;
	right: 16px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	z-index: 3;
}
.form-wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
}
.form-wrap select option:first-child {
	display: none;
}
.form-wrap .number-wrap {
	width: 100%;
	position: relative;
}
.form-wrap .number-wrap .plus {
	width: 16px;
	height: 16px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	top: 6px;
	right: 16px;
	position: absolute;
	z-index: 2;
	cursor: pointer;
}
.form-wrap .number-wrap .minus {
	width: 16px;
	height: 16px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	bottom: 6px;
	right: 16px;
	position: absolute;
	z-index: 2;
	cursor: pointer;
}
.form-wrap-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin-top: 24px;
}
.form-input {
	border-radius: 8px;
	border: 1px solid var(--border-primary);
	background: var(--bg-secondary);
	padding-left: 16px;
	color: var(--text-icon-primary);
	outline: 0;
	width: 100%;
	height: 44px;
	font-size: 16px;
	font-family: "PT Root UI";
	position: relative;
	z-index: 1;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.form-input::-webkit-input-placeholder {
	color: var(--text-icon-transparent-white);
}
.form-input::-moz-placeholder {
	color: var(--text-icon-transparent-white);
}
.form-input:-ms-input-placeholder {
	color: var(--text-icon-transparent-white);
}
.form-input::-ms-input-placeholder {
	color: var(--text-icon-transparent-white);
}
.form-input::placeholder {
	color: var(--text-icon-transparent-white);
}
.form-input.error-input {
	border: 1px solid var(--border-accentPrimary);
}
.form-input:focus,
.form-input:hover {
	background: var(--bg-primary);
}
.form .error-text {
	color: var(--text-icon-accent-primary);
}
.form .input-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	width: 100%;
}
.form .checkbox-input {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	gap: 0;
	margin: 0;
	width: auto;
}
.form .checkbox-input input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}
.form .checkbox-input p {
	width: calc(100% - 36px);
	display: inline !important;
	text-align: left !important;
}
.form .checkbox-input .checkmark {
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 4px;
	border: 1px solid var(--border-primary);
	background: var(--bg-secondary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 16px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.form .checkbox-input .checkmark::after {
	content: "";
	width: 12px;
	height: 12px;
	background: url(../img/checkbox.svg) no-repeat center;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.form .checkbox-input input:checked ~ .checkmark {
	background: var(--bg-accentPrimary);
	border-color: var(--bg-accentPrimary);
}
.form .checkbox-input input:checked ~ .checkmark::after {
	opacity: 1;
}
.form .main-btn {
	width: 100%;
	margin-top: 24px;
	margin-bottom: 24px;
}
.form p:last-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	text-align: center;
}
@media screen and (max-width: 1400px) {
	.form {
		padding-top: 172px;
		padding-bottom: 64px;
	}
	.form-wrap {
		padding: 36px;
	}
}
@media screen and (max-width: 768px) {
	.form {
		padding-top: 74px;
		height: auto;
		min-height: 1px;
	}
	.form-bg {
		display: none;
	}
	.form-wrap {
		padding: 0;
		border: none;
		border-radius: 0;
	}
	.form-wrap .h5 {
		margin-bottom: 18px;
	}
	.form-wrap label {
		margin-top: 16px;
	}
	.form-wrap-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 12px;
		margin-top: 16px;
	}
	.form-wrap > span {
		text-align: center;
	}
	.form-wrap .main-btn {
		margin-top: 16px;
		margin-bottom: 16px;
	}
	.form p:last-child {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 4px;
		text-align: center;
	}
}
.pass-btn {
	background: url(../img/eye.svg) no-repeat center/cover;
}
.prefix-btn {
	background: url(../img/refresh.svg) no-repeat center/cover;
}
.account {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
	padding-left: 94px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account .main-btn,
.account .primary-btn {
	padding: 12px 18px;
	border-radius: 8px;
}
.account .input-wrap {
	position: relative;
}
.account-nav {
	position: fixed;
	left: 0;
	top: 0;
	border-right: 1px solid var(--border-primary);
	background: var(--bg-primary);
	height: 100%;
	width: 100%;
	max-width: 260px;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-nav-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 24px;
	width: 260px;
}
.account-nav-head .logo {
	width: 46px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.account-nav-head .close {
	width: 20px;
	height: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: url(../img/dot-circle.svg) no-repeat center/cover;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
.account-nav-head .close::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--bg-primary, #000);
	z-index: 3;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-nav-head .close.active::after {
	opacity: 1;
}
.account-nav-devider {
	margin: 12px 0;
	height: 1px;
	width: 100%;
	background-color: var(--border-primary);
}
.account-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 12px;
	white-space: nowrap;
	position: relative;
}
.account-nav-list .custom-select {
	width: 100%;
	position: relative;
}
.account-nav-list .custom-select::after {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	position: absolute;
	top: 12px;
	right: 16px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	z-index: 3;
}
.account-nav-list select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
}
.account-nav-list span {
	color: var(--text-icon-tertiary);
	margin-bottom: 12px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-nav-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 4px;
	color: var(--text-icon-secondary);
	gap: 12px;
	cursor: pointer;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-nav-list-item p {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-nav-list-item svg {
	min-width: 20px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-nav-list-item path {
	fill: var(--text-icon-secondary);
}
.account-nav-list-item:hover {
	background: var(--bg-secondary, #141414);
}
.account-nav-list-item.active {
	background: var(--text-icon-accent-primary);
	-webkit-box-shadow: 0 0 32px 0 rgba(225, 47, 39, 0.64);
	box-shadow: 0 0 32px 0 rgba(225, 47, 39, 0.64);
	color: var(--text-icon-primary);
}
.account-nav-list-item.active path {
	fill: var(--text-icon-primary);
}
.account-nav-list-item.parrent-item {
	background: var(--bg-secondary, #141414);
}
.account-nav-list-item.parrent-item::after {
	content: "";
	width: 20px;
	height: 20px;
	margin-left: auto;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 3;
}
.account-nav-list-item.parrent-item.closed::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.account-nav-list .sub-menu {
	width: 100% !important;
	padding: 0 !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.account-nav-list .sub-menu-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 4px;
	cursor: pointer;
}
.account-nav-list .sub-menu-item::before {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../img/ring.svg) no-repeat center/cover;
	margin-right: 12px;
}
.account-nav-list .sub-menu-item .sum {
	margin-left: auto;
	padding: 4px 8px;
	border-radius: 60px;
	background: var(--bg-primaryInverse);
	color: var(--text-icon-primary-inverse);
}
.account-nav-list .sub-menu-item:hover {
	background: var(--bg-secondary, #141414);
}
@media screen and (min-width: 1400px) {
	.account-nav.hide {
		max-width: 94px;
		overflow: hidden;
	}
	.account-nav.hide .account-nav-head .close {
		opacity: 0;
		visibility: hidden;
	}
	.account-nav.hide .account-nav-list::before {
		content: "–";
		text-align: center;
		margin-bottom: 12px;
		color: var(--text-icon-tertiary, rgba(255, 255, 255, 0.4));
		font-size: 12px;
		font-weight: 500;
		line-height: 16px;
		letter-spacing: 0.48px;
		text-transform: uppercase;
		position: absolute;
		width: 46px;
		left: 24px;
		top: 12px;
	}
	.account-nav.hide .account-nav-list span {
		opacity: 0;
		visibility: hidden;
	}
	.account-nav.hide .account-nav-list-item svg {
		-webkit-transform: translateX(13px);
		transform: translateX(13px);
	}
	.account-nav.hide .account-nav-list-item p {
		opacity: 0;
		visibility: hidden;
	}
	.account-nav.hide .account-nav-list-item.parrent-item::after {
		opacity: 0;
		visibility: hidden;
	}
	.account-nav.hide .account-nav-list .sub-menu {
		display: none;
	}
	.account-nav.hide:hover {
		max-width: 260px;
		overflow: visible;
	}
	.account-nav.hide:hover .account-nav-head .close {
		opacity: 1;
		visibility: visible;
	}
	.account-nav.hide:hover .account-nav-list::before {
		display: none;
	}
	.account-nav.hide:hover .account-nav-list span {
		opacity: 1;
		visibility: visible;
	}
	.account-nav.hide:hover .account-nav-list-item svg {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.account-nav.hide:hover .account-nav-list-item p {
		opacity: 1;
		visibility: visible;
	}
	.account-nav.hide:hover .account-nav-list-item.parrent-item::after {
		opacity: 1;
		visibility: visible;
	}
	.account-nav.hide:hover .account-nav-list .sub-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.account-wrap {
	margin: 0 auto;
	padding: 24px 24px 48px;
	width: 100%;
	max-width: 1328px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.account-wrap > span {
	color: var(--text-icon-tertiary);
	margin-top: auto;
	padding-top: 24px;
}
.account-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	padding: 12px 24px;
	margin-bottom: 24px;
	background: var(--bg-secondary);
	position: relative;
}
.account-head .menu-account-btn {
	display: none;
}
.account-head a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.account-head .lang {
	margin-left: auto;
	margin-right: 16px;
}
.account-head .user {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
}
.account-head .user img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.account-head .user-modal {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	width: 320px;
	z-index: 3;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 12px;
	background: var(--bg-secondary);
}
.account-head .user-modal-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--border-primary);
	cursor: pointer;
}
.account-head .user-modal-head img {
	width: 40px;
	height: 40px;
}
.account-head .user-modal-head-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: calc(100% - 52px);
	gap: 4px;
}
.account-head .user-modal-head-content p {
	color: var(--text-icon-secondary);
}
.account-head .user-modal-head-content span {
	color: var(--text-icon-tertiary);
}
.account-head .user-modal-head:hover {
	background: var(--bg-transparentBlurGray);
}
.account-head .user-modal-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.account-head .user-modal-link {
	padding: 18px 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--border-primary);
}
.account-head .user-modal-link:hover {
	background: var(--bg-transparentBlurGray);
}
.account-head .user-modal-btn {
	padding: 12px;
}
.account-head .user-modal-btn .main-btn {
	width: 100%;
	padding: 12px 18px;
}
.account-head .user-modal.active {
	opacity: 1;
	pointer-events: auto;
}
.account-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 24px;
}
.account-main-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 12px;
	padding: 24px;
	width: calc(50% - 12px);
	background: var(--bg-secondary);
}
.account-main-item-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}
.account-main-item-head-icon {
	width: 44px;
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--bg-tertiary, #333);
}
.account-main-item-head .h6 {
	width: calc(100% - 60px);
}
.account-main-item > * {
	width: 100%;
}
.account-main-item .btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.account-main-item .btns > * {
	width: calc(50% - 4px);
}
.account-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	text-align: center;
	background: var(--bg-secondary);
	margin-bottom: 24px;
}
.account-list-head {
	padding: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.account .account-table {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding-bottom: 24px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.account .account-table-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 16px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-primary);
}
.account .account-table-item-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 0 12px;
	width: 33.3333333333%;
	text-align: left;
	position: relative;
}
.account .account-table-item_head {
	color: var(--text-icon-tertiary);
}
.account .account-table_free .account-table-item-inner {
	width: 170px;
	white-space: nowrap;
}
.account .account-table_free .account-table-item-inner:nth-child(3),
.account .account-table_free .account-table-item-inner:nth-child(5),
.account .account-table_free .account-table-item-inner:nth-child(6) {
	min-width: 72px;
	max-width: 100px;
}
.account .account-table_main .account-table-item-inner {
	width: calc(50% - 56px);
}
.account .account-table_main .account-table-item-inner:last-child {
	width: 44px;
}
.account .account-table .settings-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}
.account .account-table .settings-btn.active path,
.account .account-table .settings-btn:hover path {
	fill-opacity: 1;
}
.account .account-table .settings-wrap {
	position: absolute;
	top: calc(100% + 4px);
	width: 160px;
	right: 0;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: 5;
}
.account .account-table .settings-wrap__inner {
	border: 1px solid #1f1f1f;
	background: #000;
	border-radius: 12px;
}
.account .account-table .settings-wrap__link {
	padding: 12px;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.account .account-table .settings-wrap__link:not(:last-child) {
	border-bottom: 1px solid #1f1f1f;
}
.account .account-table .settings-wrap__link:hover {
	background-color: #141414;
}
.account .account-table .settings-wrap.active {
	pointer-events: auto;
	opacity: 1;
}
.account-help {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	padding: 48px 24px;
	text-align: center;
	background: var(--bg-secondary);
	margin-bottom: 24px;
}
.account-help-icon {
	width: 44px;
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--bg-tertiary, #333);
	margin-bottom: 24px;
}
.account-help .h6 {
	margin-bottom: 16px;
}
.account-help span {
	color: var(--text-icon-secondary);
	margin-bottom: 24px;
	display: block;
}
.account.open {
	padding-left: 260px;
}
.account .profile-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 24px;
	gap: 8px;
}
.account .profile-nav-item {
	padding: 12px 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account .profile-nav-item:hover {
	background: var(--bg-transparentBlurGray);
}
.account .profile-nav-item.active {
	background: var(--bg-accentPrimary);
	-webkit-box-shadow: 0 0 32px 0 rgba(225, 47, 39, 0.64);
	box-shadow: 0 0 32px 0 rgba(225, 47, 39, 0.64);
}
.account .profile-nav-item.active path {
	fill: var(--text-icon-primary);
}
@media screen and (max-width: 900px) {
	.account .profile-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 12px;
	}
	.account .profile-nav-item {
		width: 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.account .profile-tab-item .account-list {
	padding-top: 24px;
}
.account .profile-tab-item .account-list .h5 {
	padding-left: 24px;
	text-align: left;
	margin-bottom: 24px;
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.account .profile-tab-item .account-list .row-icon {
	gap: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.account .profile-tab-item .account-list .row-icon img {
	width: 20px;
	height: 20px;
}
.account .profile-tab-wrap {
	padding: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-radius: 12px;
	background: var(--bg-secondary);
}
.account .profile-tab-wrap:not(:last-child) {
	margin-bottom: 24px;
}
.account .profile-tab-wrap .h5 {
	margin-bottom: 24px;
}
.account .profile-tab-wrap form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
}
.account .profile-tab-wrap form .file-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-primary);
	margin-bottom: 24px;
}
.account .profile-tab-wrap form .file-wrap img {
	width: 96px;
	height: 96px;
	border-radius: 12px;
	margin-right: 24px;
}
.account .profile-tab-wrap form .file-wrap .input-file {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 18px;
	position: relative;
	width: calc(100% - 120px);
	max-width: 100%;
}
.account .profile-tab-wrap form .file-wrap .input-file input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.account .profile-tab-wrap form label {
	margin-bottom: 24px;
	width: 100%;
	max-width: 320px;
	gap: 12px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.account .profile-tab-wrap form label .pass-icon {
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 12px;
	right: 16px;
	cursor: pointer;
	z-index: 5;
}
.account .profile-tab-wrap form.form-pass label {
	width: calc(50% - 12px);
	max-width: 100%;
}
.account .profile-tab-wrap form .labels {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.account .profile-tab-wrap .req-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}
.account .profile-tab-wrap .req-info ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}
.account .profile-tab-wrap .req-info ul li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
}
.account .profile-tab-wrap .req-info ul li::before {
	content: "";
	margin: 10px;
	width: 6px;
	height: 6px;
	min-width: 6px;
	background: var(--text-icon-accent-primary);
}
.account .profile-tab-wrap .btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}
.account .profile-tab-wrap .alert-text {
	border-radius: 8px;
	background: rgba(225, 47, 39, 0.08);
	padding: 16px 24px;
	margin-bottom: 24px;
	width: 100%;
	color: var(--text-icon-accent-primary);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account .profile-tab-wrap .alert-text.active {
	background-color: rgba(255, 183, 0, 0.24);
	color: #ffae00;
}
.account .profile-tab-wrap .aut-btn {
	margin-top: 24px;
}
.account .profile-tab-wrap .aut-btn span:last-child {
	display: none;
}
.account-payment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.account-payment-wrap {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	background: var(--bg-secondary);
	padding: 24px;
	text-align: center;
	margin-bottom: 24px;
}
.account-payment-wrap .h6 {
	margin-bottom: 24px;
}
.account-payment-wrap .price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}
.account-payment-wrap .price svg {
	width: 64px;
	height: 64px;
}
.account-payment-wrap .price path {
	fill: var(--text-icon-primary);
}
.account-payment-wrap .number-wrap {
	width: 100%;
	max-width: 320px;
	height: 72px;
	position: relative;
	margin-bottom: 24px;
}
.account-payment-wrap .number-wrap .form-input {
	height: 100%;
	text-align: center;
}
.account-payment-wrap .number-wrap .plus {
	width: 16px;
	height: 16px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	top: 20px;
	right: 16px;
	position: absolute;
	z-index: 2;
	cursor: pointer;
}
.account-payment-wrap .number-wrap .minus {
	width: 16px;
	height: 16px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	bottom: 20px;
	right: 16px;
	position: absolute;
	z-index: 2;
	cursor: pointer;
}
.account-payment-wrap .total {
	text-align: center;
}
.account-payment-wrap .total span {
	color: var(--text-icon-accent-primary);
}
.account-payment .h7 {
	margin-bottom: 24px;
}
.account-payment .payments-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	gap: 8px;
	margin-bottom: 24px;
}
.account-payment .payments-list-item {
	width: 153px;
	height: 88px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid var(--border-primary);
	background: var(--bg-secondary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	text-align: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-payment .payments-list-item input {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	opacity: 0;
	pointer-events: none;
}
.account-payment .payments-list-item.active,
.account-payment .payments-list-item:hover {
	background: var(--bg-primary);
}
.account-payment .payments-list_col .payments-list-item {
	display: none;
}
.account-payment .payments-list_col .payments-list-item.show {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
.account-payment .prices {
	margin-top: 24px;
	margin-bottom: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}
.account-payment .prices .h8 span {
	color: var(--text-icon-tertiary);
}
.account-payment .payment-btn {
	padding: 21px 24px;
	min-width: 220px;
}
.account-chat {
	border-radius: 12px;
	border: 1px solid var(--border-primary);
	background: var(--bg-secondary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: calc(100vh - 204px);
}
.account-chat-left {
	border-right: 1px solid var(--border-primary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 360px;
}
.account-chat-left .chat-add {
	display: none;
}
.account-chat-left .search {
	padding: 24px;
	height: 93px;
	border-bottom: 1px solid var(--border-primary);
}
.account-chat-left .search .form-input {
	padding-left: 48px;
	background-image: url(../img/search.svg);
	background-repeat: no-repeat;
	background-position: 16px 12px;
	border-radius: 36px;
}
.account-chat-left-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}
.account-chat-left-wrap > span {
	color: var(--text-icon-transparent-white);
	padding: 24px;
}
.account-chat-left-wrap .account-chat-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: calc(100% - 156px);
	padding: 0 12px 24px;
	overflow: auto;
}
.account-chat-left-wrap .account-chat-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 8px;
	padding: 12px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-chat-left-wrap .account-chat-list-item-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 4px;
	margin-bottom: 4px;
}
.account-chat-left-wrap .account-chat-list-item-head p:last-child {
	white-space: nowrap;
}
.account-chat-left-wrap .account-chat-list-item .body-14m {
	color: var(--text-icon-secondary);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-chat-left-wrap .account-chat-list-item .body-14r {
	color: var(--text-icon-tertiary);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account-chat-left-wrap .account-chat-list-item:hover {
	background: var(--bg-transparentBlurGray);
}
.account-chat-left-wrap .account-chat-list-item.active {
	background: var(--bg-accentPrimary);
	color: var(--text-icon-primary);
}
.account-chat-left-wrap .account-chat-list-item.active .body-14r {
	color: var(--text-icon-primary);
}
.account-chat-left-wrap .account-chat-list::-webkit-scrollbar {
	width: 6px;
}
.account-chat-left-wrap .account-chat-list::-webkit-scrollbar-track {
	background: 0 0;
}
.account-chat-left-wrap .account-chat-list::-webkit-scrollbar-thumb {
	background: var(--bg-tertiary);
	border-radius: 4px;
}
.account-chat-right {
	width: calc(100% - 360px);
	height: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.account-chat-right.empty {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.account-chat-right-tab {
	width: 100%;
	height: 100%;
}
.account-chat-right-tab .chat-item {
	width: 100%;
	height: 100%;
	position: relative;
}
.account-chat-right-tab .chat-item-head {
	padding: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	width: 100%;
	height: 93px;
	border-bottom: 1px solid var(--border-primary);
}
.account-chat-right-tab .chat-item-head .back-chat {
	display: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-right: 2px;
}
.account-chat-right-tab .chat-item-head-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}
.account-chat-right-tab .chat-item-head-left p {
	color: var(--text-icon-secondary);
}
.account-chat-right-tab .chat-item-head-left span {
	color: var(--text-icon-tertiary);
}
.account-chat-right-tab .chat-item-head-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin-left: auto;
}
.account-chat-right-tab .chat-item-head-right .tag {
	border-radius: 60px;
	background: var(--bg-tertiary);
	padding: 6px 10px;
	margin-right: 12px;
}
.account-chat-right-tab .chat-item-head-right .settings {
	cursor: pointer;
}
.account-chat-right-tab .chat-item-content {
	width: 100%;
	height: calc(100% - 93px);
	padding: 12px 12px 144px;
	overflow: auto;
}
.account-chat-right-tab .chat-item-content .message {
	padding: 12px;
	gap: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.account-chat-right-tab .chat-item-content .message-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.account-chat-right-tab .chat-item-content .message-img img {
	width: 36px;
	height: 36px;
	margin-bottom: 6px;
}
.account-chat-right-tab .chat-item-content .message-img span {
	color: var(--text-icon-tertiary);
}
.account-chat-right-tab .chat-item-content .message-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(100% - 48px);
}
.account-chat-right-tab .chat-item-content .message-text-wrap {
	border-radius: 0 8px 8px 8px;
	background: var(--bg-tertiary);
	max-width: 500px;
	width: auto;
	padding: 12px;
	margin-bottom: 4px;
}
.account-chat-right-tab .chat-item-content .message-text span {
	color: var(--text-icon-tertiary);
}
.account-chat-right-tab .chat-item-content .message-self {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.account-chat-right-tab .chat-item-content .message-self .message-text {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.account-chat-right-tab .chat-item-content .message-self .message-text-wrap {
	border-radius: 8px 0 8px 8px;
	background: var(--bg-accentPrimary);
}
.account-chat-right-tab .chat-item-content::-webkit-scrollbar {
	width: 6px;
}
.account-chat-right-tab .chat-item-content::-webkit-scrollbar-track {
	background: 0 0;
}
.account-chat-right-tab .chat-item-content::-webkit-scrollbar-thumb {
	background: var(--bg-tertiary);
	border-radius: 4px;
}
.account-chat-right-tab .chat-item-send {
	position: absolute;
	bottom: 24px;
	left: 24px;
	width: calc(100% - 48px);
	height: 58px;
	background: var(--bg-secondary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 3;
	border-radius: 12px;
	overflow: hidden;
}
.account-chat-right-tab .chat-item-send .form-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-right: 140px;
	border-radius: 12px;
	background: var(--Bg-primary, #000);
}
.account-chat-right-tab .chat-item-send .main-btn {
	position: absolute;
	right: 8px;
	top: 8px;
	z-index: 5;
}
.account-chat-footer {
	display: none;
}
@media screen and (max-width: 1400px) {
	.account {
		padding-left: 0 !important;
		overflow: hidden;
	}
	.account-nav {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		z-index: 5;
	}
	.account-nav.open {
		-webkit-transform: none;
		transform: none;
	}
	.account-nav .close {
		background-image: url(../img/close-white.svg);
	}
	.account-nav .close::after {
		display: none;
	}
	.account-head .menu-account-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 20px;
		height: 20px;
		margin-right: 20px;
		background: url(../img/menu.svg) no-repeat center/cover;
	}
}
@media screen and (max-width: 991px) {
	.account-wrap {
		padding-bottom: 24px;
	}
	.account-main {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 12px;
		gap: 12px;
	}
	.account-main-item {
		width: 100%;
	}
	.account-main-item-head {
		gap: 12px;
	}
	.account-main-item-head-icon {
		width: 26px;
		height: 26px;
	}
	.account-main-item-head-icon img {
		width: 16px;
		height: 16px;
	}
	.account-main-item-head .h6 {
		width: calc(100% - 38px);
	}
	.account-main-item .btns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}
	.account-main-item .btns > * {
		width: 100%;
	}
	.account-list {
		margin-bottom: 12px;
	}
	.account-list-head {
		padding: 24px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
		gap: 24px;
	}
	.account .account-table_free {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow: auto;
	}
	.account .account-table_free .account-table-item {
		width: 1100px;
	}
	.account .account-table_main .account-table-item-inner {
		width: 33.3333333333%;
	}
	.account .account-table_main .account-table-item-inner:last-child {
		width: 33.3333333333%;
	}
	.account-help {
		padding: 24px;
	}
	.account-help-icon {
		width: 26px;
		height: 26px;
	}
	.account-help-icon img {
		width: 16px;
		height: 16px;
	}
	.account-help .h6 {
		margin-bottom: 16px;
	}
}
@media screen and (max-width: 768px) {
	.account .account-table {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow: auto;
	}
	.account .account-table-item {
		width: 700px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
	.account .profile-tab-wrap form .file-wrap img {
		width: 72px;
		height: 72px;
		margin-right: 18px;
	}
	.account .profile-tab-wrap form .file-wrap .input-file {
		gap: 12px;
		width: calc(100% - 90px);
		margin-bottom: 0;
	}
	.account .profile-tab-wrap form .file-wrap .input-file .primary-btn {
		color: transparent;
		width: 42px;
		height: 42px;
		overflow: hidden;
		background-image: url(../img/upload.svg);
		background-repeat: no-repeat;
		background-position: center;
	}
	.account .profile-tab-wrap form.form-pass label {
		width: 100%;
	}
	.account .profile-tab-wrap form .labels {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.account .profile-tab-wrap .btns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
	}
	.account .profile-tab-wrap .btns > * {
		width: 100%;
	}
	.account .profile-tab-wrap .alert-text {
		padding: 12px;
		margin-bottom: 24px;
	}
	.account .profile-tab-wrap .aut-btn {
		margin-top: 24px;
		width: 100%;
	}
	.account .profile-tab-wrap .aut-btn span:first-child {
		display: none;
	}
	.account .profile-tab-wrap .aut-btn span:last-child {
		display: block;
	}
	.account-chat {
		height: calc(100vh - 180px);
		overflow: hidden;
		position: relative;
	}
	.account-chat-left {
		border-right: none;
		width: 100%;
		position: relative;
		z-index: 3;
	}
	.account-chat-left .search {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.account-chat-left .search .form-input {
		width: calc(100% - 40px);
	}
	.account-chat-left .chat-add {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 20px;
		height: 20px;
		background: url(../img/plus.svg) no-repeat center/cover;
		background-size: 18px 18px;
	}
	.account-chat-right {
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	.account-chat-right.empty {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		display: none;
	}
	.account-chat-right.empty .chat-add {
		display: none;
	}
	.account-chat-right-tab {
		background: var(--bg-secondary);
	}
	.account-chat-right-tab.active {
		z-index: 10;
	}
	.account-chat-right-tab .chat-item-head {
		height: 106px;
	}
	.account-chat-right-tab .chat-item-head .back-chat {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.account-chat-right-tab .chat-item-content {
		height: calc(100% - 106px);
		padding: 12px 12px 82px;
	}
	.account-chat-right-tab .chat-item-send {
		bottom: 12px;
		left: 12px;
		width: calc(100% - 24px);
		height: 58px;
	}
	.account-chat-right-tab .chat-item-send .form-input {
		padding-right: 62px;
	}
	.account-chat-right-tab .chat-item-send .main-btn {
		width: 42px;
		height: 42px;
		overflow: hidden;
		color: transparent;
		background-image: url(../img/send.svg);
		background-repeat: no-repeat;
		background-position: center;
	}
	.account-chat-footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: absolute;
		width: 100%;
		border-top: 1px solid var(--border-primary);
		background: var(--bg-secondary);
		bottom: 0;
		left: 0;
		padding: 24px;
		z-index: 3;
	}
	.account .account-table_mobile .account-table-item {
		width: 1000px;
	}
	.account-payment .payments-list {
		gap: 8px;
	}
	.account-payment .payments-list-item {
		width: calc(50% - 4px);
	}
	.account-payment .payments-list_col .payments-list-item {
		width: 100%;
	}
	.account-payment .prices {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 12px 24px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		max-width: 250px;
	}
	.account-payment .prices p {
		width: 100px;
		text-align: center;
	}
	.account-payment .prices p:nth-child(1) {
		-webkit-box-ordinal-group: -1;
		-ms-flex-order: -2;
		order: -2;
	}
	.account-payment .prices p:nth-child(3) {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.account-payment .payment-btn {
		width: 100%;
	}
}
.label-box {
	position: relative;
}
.label-box label {
	width: 100%;
}
.box-modal {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
}
.menu-modal {
	width: 100%;
	height: 100%;
	background: var(--bg-primary);
	padding: 24px 48px 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.menu-modal-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin-bottom: 88px;
	gap: 8px;
}
.menu-modal-head .box-modal-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 16px;
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: var(--bg-transparentBlurBlack);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	cursor: pointer;
}
.menu-modal-head .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu-modal-head .lang-menu {
	margin-left: auto;
}
.menu-modal .modal-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	margin-bottom: 64px;
}
.menu-modal .modal-menu-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 24px;
}
.menu-modal .modal-menu-item.active,
.menu-modal .modal-menu-item:hover {
	color: var(--text-icon-accent-primary);
}
.menu-modal .socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	margin-top: auto;
}
.menu-modal .socials-item {
	border-radius: 12px;
	border: 1px solid var(--border-transparentBlack);
	background: var(--bg-transparentBlurBlack2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	width: calc(50% - 12px);
	padding: 18px;
}
.menu-modal .socials-item-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	text-align: left;
	gap: 8px;
}
.menu-modal .socials-item-inner span {
	opacity: 0.5;
}
.menu-modal .socials-item:hover {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}
.menu-modal .socials img {
	width: 36px;
	height: 36px;
}
@media screen and (max-width: 768px) {
	.menu-modal {
		padding: 16px 24px 48px;
	}
	.menu-modal-head {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 48px;
		gap: 8px;
	}
	.menu-modal-head .box-modal-close {
		margin-right: 0;
		width: 42px;
		height: 42px;
	}
	.menu-modal-head .logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-ordinal-group: -1;
		-ms-flex-order: -2;
		order: -2;
		width: calc(50% - 4px);
	}
	.menu-modal-head .logo img {
		width: 32px;
		height: auto;
	}
	.menu-modal-head .lang-menu {
		margin-left: auto;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		width: 42px;
		height: 42px;
	}
	.menu-modal-head .main-btn,
	.menu-modal-head .primary-btn {
		width: calc(50% - 4px);
		margin-top: 32px;
	}
	.menu-modal-head .primary-btn {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.menu-modal .modal-menu {
		margin-bottom: 48px;
	}
	.menu-modal .modal-menu-item {
		gap: 12px;
	}
	.menu-modal .socials {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 8px;
		width: 100%;
		margin-top: auto;
	}
	.menu-modal .socials-item {
		width: 100%;
	}
}
.stories-modal {
	padding: 130px 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.stories-modal-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 3;
}
.stories-modal-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	text-align: center;
	margin-bottom: 16px;
	cursor: pointer;
}
.stories-modal-close svg {
	width: 24px;
	height: 24px;
}
.stories-modal-close svg path {
	fill: var(--text-icon-primary);
}
.stories-modal-close span {
	color: var(--text-icon-transparent-white);
}
.stories-modal .stories-swiper {
	width: 100%;
	max-width: 384px;
	margin-bottom: 16px;
	overflow: visible;
	position: relative;
	z-index: 3;
	min-height: 680px;
	max-height: calc(100vh - 400px);
}
.stories-modal .stories-swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 16px;
	overflow: hidden;
}
.stories-modal .stories-swiper-slide::after {
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(rgba(0, 0, 0, 0.48)),
		to(rgba(0, 0, 0, 0.48))
	);
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.48) 0,
		rgba(0, 0, 0, 0.48) 100%
	);
	opacity: 0;
}
.stories-modal .stories-swiper-slide:not(.swiper-slide-active) {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}
.stories-modal .stories-swiper-slide:not(.swiper-slide-active) .secondary-btn {
	opacity: 0;
}
.stories-modal .stories-swiper-slide:not(.swiper-slide-active)::after {
	opacity: 1;
}
.stories-modal .stories-swiper-slide img,
.stories-modal .stories-swiper-slide video {
	border-radius: 16px;
	border: 1px solid var(--border-transparentBlack);
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.stories-modal .stories-swiper-slide .secondary-btn {
	position: absolute;
	z-index: 2;
	left: 12px;
	bottom: 12px;
	width: calc(100% - 24px);
}
.stories-modal .swiper-pagination {
	position: relative;
	bottom: auto;
	left: auto;
	top: auto;
	width: 384px;
	height: 4px;
	border-radius: 8px;
	background: var(--text-icon-tertiary);
	overflow: hidden;
}
.stories-modal .swiper-pagination-bullet {
	position: absolute;
	left: 0;
	top: 0;
	height: 4px;
	width: 100%;
	opacity: 0;
	background: var(--text-icon-primary);
	margin: 0 !important;
}
.stories-modal .swiper-pagination-bullet-active {
	opacity: 1;
	-webkit-animation: slide-progress 8s linear forwards;
	animation: slide-progress 8s linear forwards;
}
@-webkit-keyframes slide-progress {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes slide-progress {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@media screen and (max-width: 1400px) {
	.stories-modal {
		padding: 64px 24px;
	}
	.stories-modal-close {
		margin-bottom: 24px;
	}
	.stories-modal .stories-swiper {
		max-width: 294px;
		margin-bottom: 24px;
		max-height: calc(100vh - 300px);
	}
	.stories-modal .swiper-pagination {
		width: 294px;
	}
}
@media screen and (max-width: 768px) {
	.stories-modal {
		padding: 61px 24px;
	}
	.stories-modal .stories-swiper {
		overflow: hidden;
		max-width: 312px;
		width: 100%;
		height: 492px;
		min-height: 1px;
		max-height: 100%;
	}
	.stories-modal .swiper-pagination {
		max-width: 312px;
		width: 100%;
	}
}
.video-modal {
	padding: 130px 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.video-modal-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 3;
}
.video-modal-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	text-align: center;
	margin-bottom: 16px;
	cursor: pointer;
}
.video-modal-close svg {
	width: 24px;
	height: 24px;
}
.video-modal-close svg path {
	fill: var(--text-icon-primary);
}
.video-modal-close span {
	color: var(--text-icon-transparent-white);
}
.video-modal iframe {
	max-width: 100%;
}
@media screen and (max-width: 1400px) {
	.video-modal {
		padding: 64px 24px;
	}
	.video-modal-close {
		margin-bottom: 24px;
	}
	.video-modal iframe {
		height: 400px;
	}
}
@media screen and (max-width: 768px) {
	.video-modal {
		padding: 61px 24px;
	}
}
.form-modal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 24px;
}
.form-modal#autModal .form-wrap {
	width: 100%;
	max-width: 840px;
	padding-left: 48px !important;
	padding-right: 48px !important;
}
.form-modal#autModal .form-wrap img {
	width: 240px;
	height: 240px;
	margin: 24px 0;
}
.form-modal#autModal .form-wrap .warning-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-radius: 8px;
	background: rgba(255, 183, 0, 0.24);
	padding: 12px;
	gap: 10px;
	color: #ffae00;
	text-align: left;
}
.form-modal#autModal .form-wrap .btns {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 24px;
}
.form-modal#autModal .form-wrap .btns > * {
	margin: 0;
	width: auto;
	padding: 12px 18px;
}
.form-modal#chatModal .form-wrap {
	width: 100%;
	max-width: 860px;
	padding-left: 48px !important;
	padding-right: 48px !important;
}
.form-modal#chatModal .form-wrap .labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.form-modal#chatModal .form-wrap .labels label {
	width: calc(50% - 6px);
}
.form-modal#chatModal .form-wrap .custom-select {
	width: 100%;
	position: relative;
}
.form-modal#chatModal .form-wrap .custom-select::after {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../img/dropdown.svg) no-repeat center/cover;
	position: absolute;
	top: 12px;
	right: 16px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	z-index: 3;
}
.form-modal#chatModal .form-wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
}
.form-modal#chatModal .form-wrap select option:first-child {
	display: none;
}
.form-modal#chatModal .form-wrap .input-file {
	cursor: pointer;
	max-width: 100%;
}
.form-modal#chatModal .form-wrap .input-file input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	height: 0;
	width: 0;
}
.form-modal#chatModal .form-wrap .input-file .file-btn {
	border-radius: 8px;
	border: 1px solid var(--border-primary);
	background: var(--bg-secondary);
	width: 100%;
	padding: 0 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.form-modal#chatModal .form-wrap .input-file .file-btn .btn {
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 16px;
	border-right: 2px solid var(--border-primary);
}
.form-modal#chatModal .form-wrap .input-file .file-btn-text {
	padding-left: 16px;
	padding-top: 12px;
	padding-bottom: 12px;
	width: calc(100% - 140px);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-align: left;
}
.form-modal#chatModal .form-wrap__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.form-modal#chatModal .form-wrap__left {
	width: calc(50% - 12px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.form-modal#chatModal .form-wrap__left textarea.form-input {
	margin-bottom: 0;
}
.form-modal#chatModal .form-wrap__right {
	width: calc(50% - 12px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}
.form-modal#chatModal .form-wrap__right .file-btn {
	display: none !important;
}
.form-modal#chatModal .form-wrap__right .file-image {
	height: 276px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 56px 16px;
	gap: 16px;
	color: #ffffffa3;
	position: relative;
	overflow: hidden;
}
.form-modal#chatModal .form-wrap__right .file-image .form-input {
	background: 0 0 !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 12px 16px;
	width: auto;
	color: #ffffffa3;
}
.form-modal#chatModal .form-wrap__right .file-image.drag {
	background: var(--bg-primary);
}
.form-modal#chatModal .form-wrap__right .file-preview {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.form-modal#chatModal .form-wrap__right .file-preview.active {
	opacity: 1;
}
.form-modal#chatModal .form-wrap__right .file-remove {
	background: #7f7f7f29;
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	-webkit-backdrop-filter: blur(32px);
	backdrop-filter: blur(32px);
	position: absolute;
	z-index: 10;
	left: 50%;
	top: calc(50% + 24px);
	cursor: pointer;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	opacity: 0;
	pointer-events: none;
}
.form-modal#chatModal .form-wrap__right .file-remove.active {
	opacity: 1;
	pointer-events: auto;
}
.form-modal#chatModal .form-wrap__right .file-remove:hover {
	background-color: #1f1f1f;
}
.form-modal .form-wrap {
	padding: 66px 24px 24px !important;
	border: 1px solid var(--border-primary) !important;
	border-radius: 18px !important;
}
.form-modal .input-wrap {
	width: 100%;
}
.form-modal .labels {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.form-modal .labels label {
	margin-top: 6px;
}
.form-modal .labels label:first-child {
	width: 86px;
}
.form-modal .labels label:last-child {
	width: calc(100% - 108px);
}
.form-modal .suc-icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--bg-tertiary);
	margin-bottom: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.form-modal .grey {
	color: var(--text-icon-transparent-white);
}
.form-modal .form-wrap-close {
	position: absolute;
	right: 24px;
	top: 24px;
	width: 42px;
	height: 42px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--bg-secondary, #141414);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	cursor: pointer;
}
.form-modal textarea {
	height: 84px;
	width: 100%;
	resize: none;
	padding-top: 12px;
	margin-bottom: 24px;
	font-family: "PT Root UI";
}
.form-modal .main-btn {
	width: 100%;
	padding: 12px 18px;
	border-radius: 8px;
	margin-top: 24px;
	margin-bottom: 0;
}
.form-modal .main-btn.arcticmodal-close {
	width: auto;
}
@media screen and (max-width: 768px) {
	.form-modal {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.form-modal .form-wrap {
		padding-top: 102px !important;
	}
	.form-modal#autModal .form-wrap {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.form-modal#autModal .form-wrap .btns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.form-modal#autModal .form-wrap .btns > * {
		width: 100%;
	}
	.form-modal#chatModal .form-wrap {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.form-modal#chatModal .form-wrap .labels {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 24px;
	}
	.form-modal#chatModal .form-wrap .labels label {
		width: 100%;
	}
	.form-modal#chatModal .form-wrap .input-file .file-btn-text {
		width: calc(100% - 120px);
	}
	.form-modal#chatModal .form-wrap__box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.form-modal#chatModal .form-wrap__left {
		width: 100%;
	}
	.form-modal#chatModal .form-wrap__left textarea.form-input {
		margin-bottom: 0;
	}
	.form-modal#chatModal .form-wrap__right {
		width: 100%;
	}
	.form-modal#chatModal .form-wrap__right .file-btn {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.form-modal#chatModal .form-wrap__right .file-image {
		display: none;
	}
	.form-modal#chatModal .form-wrap__right .file-remove {
		display: none;
	}
}
.steps-modal {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.steps-modal-wrap {
	padding-bottom: 12px;
	width: 100%;
	max-width: 360px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 1;
	background: var(--bg-primary);
	border-right: 1px solid var(--border-primary);
}
.steps-modal-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px;
	padding: 32px;
}
.steps-modal-head .steps-modal-close {
	cursor: pointer;
}
.steps-modal-head svg {
	width: 24px;
	height: 24px;
}
.steps-modal-head svg path {
	fill: var(--text-icon-primary);
}
.steps-modal-list {
	overflow: auto;
	height: calc(100vh - 112px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-right: 32px;
	padding-left: 32px;
}
.steps-modal-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-primary);
	gap: 8px;
}
.steps-modal-list-item:first-child {
	border-top: 1px solid var(--border-primary);
}
.steps-modal-list-item > span {
	display: block;
	margin-bottom: 8px;
}
.steps-modal-list-item-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.steps-modal-list-item-inner p,
.steps-modal-list-item-inner span {
	text-align: left;
}
.steps-modal-list-item-inner img {
	width: 24px;
	height: 24px;
	margin-right: 12px;
}
.steps-modal-list-item-inner p {
	margin-right: 8px;
}
.steps-modal-list-item span {
	color: var(--text-icon-tertiary);
}
.steps-modal-list::-webkit-scrollbar {
	width: 6px;
}
.steps-modal-list::-webkit-scrollbar-track {
	border-radius: 4px;
	background: 0 0;
}
.steps-modal-list::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background: var(--bg-tertiary);
}
@media screen and (max-width: 768px) {
	.steps-modal-wrap {
		max-width: 100%;
	}
}
.modal-overlay {
	background: rgba(0, 0, 0, 0.48) !important;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.arcticmodal-overlay {
	background: rgba(0, 0, 0, 0.48) !important;
	opacity: 1 !important;
}
.arcticmodal-container_i2 {
	padding: 0;
}
.arcticmodal-container_i {
	width: 100%;
	border-spacing: 0;
}
.count-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	width: 100%;
}
.count-input .number-wrap {
	width: calc(100% - 60px);
}
.count-all {
	padding: 12px 14px;
	border: 1px solid var(--border-primary);
	background: var(--bg-secondary);
}
.count-all:focus,
.count-all:hover {
	background: var(--bg-primary);
	color: #fff;
}
