/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

body {
	font-family: "SF Pro Display", sans-serif;
	line-height: normal;
	background: #070707;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.btn-main {
	background: #0079ec;
	border-radius: 16px;
	padding: 24px 10px;

	transition: all .2s ease;
}

.btn-main:active {
	background: #00519c;
}

@media(hover:hover) {
	.btn-main:hover {
		background: #00519c;
	}
}

.btn-black {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	text-align: center;

	display: inline-block;
	border-radius: 12px;
	padding: 16px;
	background: rgba(10, 10, 10, 0.7);

	transition: all .2s ease;
}

.btn-black:active {
	background: rgb(0, 0, 0);
}

@media(hover:hover) {
	.btn-black:hover {
		background: rgb(0, 0, 0);
	}
}

.title-h1 {
	font-weight: 500;
	font-size: 32px;
	color: #fff;
}

.title-h2 {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
}

/* -------------------------header------------------------- */

.header {
	padding: 26px 0 15px 0;
	margin: 0px 0px 48px 0px;
	border-bottom: 1px solid #222;
}

.header__container {}

.header__inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
	white-space: nowrap;
	position: relative;
}

.header__left {
	max-width: 737px;
	width: 100%;
	margin: 1px 0px 0px 0px;

	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 40px;
}

.header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header__logo-name {
	font-weight: 600;
	font-size: 24px;
	color: #fff;
}

.header__list {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 10px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.header__item {}

.header__item-link {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);

	display: flex;
	align-items: center;
	gap: 8px;

	transition: all .2s ease;
}

.header__item-link path {
	fill: rgb(255, 255, 255, .5);
	transition: all .2s ease;
}

.header__item-link--active path {
	fill: #fff;
}

.header__item-link:active {
	color: rgba(255, 255, 255);
}

.header__item-link:active path {
	fill: rgba(255, 255, 255);
}

@media(hover:hover) {
	.header__item-link:hover {
		color: rgba(255, 255, 255);
	}

	.header__item-link:hover path {
		fill: rgba(255, 255, 255);
	}
}

.header__item-link--active {
	color: #fff;
}

.header__right {}

.header__right-cotent {
	display: flex;
	align-items: center;
}

.header__notofication {
	padding: 0px 16px 0px 0px;
	margin: 0px 16px 0px 0px;
	border-right: 1px solid #1f1f1f;

	transition: all .2s ease;
}

.header__notofication:active {
	opacity: .7;
}

@media(hover:hover) {
	.header__notofication:hover {
		opacity: .7;
	}
}

.header__profile {
	display: flex;
	align-items: center;
	gap: 12px;

	cursor: pointer;
}

.header__profile-img {
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	width: 42px;
	height: 42px;
}

.header__profile-image {
	padding: 1.7px;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header__profile-cotent {
	margin: 0px 4px 0px 0px;

	display: flex;
	flex-direction: column;
	gap: 4px;
}

.header__profile-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.header__profile-uid {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.header__lang {
	padding: 0px 0px 0px 16px;
	margin: 0px 0px 0px 12px;
	border-left: 1px solid #1f1f1f;

	transition: all .2s ease;
}

.header__lang:active {
	opacity: .7;
}

@media(hover:hover) {
	.header__lang:hover {
		opacity: .7;
	}
}

.burger-btn {
	width: 25px;
	height: 16px;

	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.burger-btn-line {
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: all .2s ease;
}

.burger-btn--active .b1 {
	transform: translate(0px, 7px) rotate(45deg);
}

.burger-btn--active .b2 {
	opacity: 0;
}

.burger-btn--active .b3 {
	transform: translate(0px, -7px) rotate(-45deg);
}

.main-padd {
	padding: 0px 0px 40px 0px;
}

/* -------------------------burger-menu------------------------- */

.burger-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 72px);
	z-index: 30;

	backdrop-filter: blur(7px);
	background: rgba(0, 0, 0, 0.5);

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;

	display: none;
}

.burger-menu--visible {
	opacity: 1;
	pointer-events: all;
}

.burger-menu__window {
	max-width: 400px;
	width: 100%;
	padding: 30px 40px;
	background: #070707;
	height: 100%;
	overflow: auto;

	transform: translateX(-100%);
	transition: all .3s ease;
}

.burger-menu--visible .burger-menu__window {
	transform: translateX(0%);
}

.burger-menu__window::-webkit-scrollbar {
	width: 0;
	height: 0;
}

/* -------------------------create-store------------------------- */

.page__create-store {}

.create-store__container {}

.create-store__inner {}

.create-store__back {
	display: flex;
	align-items: center;
	gap: 12px;

	margin: 0px 0px 48px 0px;
}

.create-store__back-text {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

.create-store__content {
	max-width: 600px;
	width: 100%;
}

.create-store-request {}

.create-store-request__head {
	display: flex;
	flex-direction: column;
	gap: 8px;

	margin: 0px 0px 32px 0px;
}

.create-store__subtitle {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

.create-store__warning {
	border: 1px solid rgba(0, 121, 236, 0.25);
	border-radius: 16px;
	padding: 20px 15px 19px 23px;
	background: rgba(0, 121, 236, 0.1);

	display: flex;
	align-items: start;
	gap: 12px;
	margin: 0px 0px 16px 0px;
}

.create-store__warning svg {
	min-width: 19px;
}

.create-store__warning-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: #0079ec;
}

.create-store-request__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.create-store-request__label {
	padding: 16px 23px 19px 23px;
	border: 1px solid #222;
	border-radius: 16px;
	background: #111;
	display: block;
}

.create-store-request__label-name {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);

	display: block;
	margin: 0px 0px 6px 0px;
}

.create-store-request__input {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
	width: 100%;
	background-color: transparent;
}

.create-store-request__label-check {
	display: flex;
	align-items: start;
	gap: 16px;
	cursor: pointer;

	margin: 12px 0 36px 0;
}

.create-store-request__label-checkbox {
	appearance: none;
	-webkit-appearance: none;
}

.create-store-request__label-checkbox {
	appearance: none;
	border-radius: 8px;
	min-width: 22px;
	width: 22px;
	height: 22px;
	border: 1px solid #0079ec;
	background-color: transparent;
	cursor: pointer;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	margin: 0;
}

.create-store-request__label-checkbox:checked {
	background-color: #0079ec;
	background-image: url("../img/check.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.create-store-request__label-check-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: rgba(255, 255, 255, 0.7);
}

.label-check-text-link {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #fff;
}

.create-store-request__btn {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	margin: 0px 0px 12px 0px;

	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.create-store-request__bottom-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: rgba(255, 255, 255, 0.5);
}

.create-store-request__bottom-text-sp {
	color: #fff;
}




.create-store-domain {}

.create-store-domain__head {
	margin: 0px 0px 24px 0px;

	display: flex;
	flex-direction: column;
	gap: 8px;
}

.create-store-domain__tabs {
	display: flex;
	gap: 12px;
	margin: 0px 0px 32px 0px;

	border: 1px solid #222;
	border-radius: 12px;
	padding: 3px;
	background: #111;
}

.create-store-domain__tab {
	width: 100%;
	padding: 12px;
	border-radius: 10px;

	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
	cursor: pointer;

	transition: all .2s ease;
}

.create-store-domain__tab:active {
	color: #fff;
}

@media(hover:hover) {
	.create-store-domain__tab:hover {
		color: #fff;
	}
}

.create-store-domain__tab--active {
	background: #0079ec;
	color: #fff;
}

.create-store-domain__item {
	display: none;
	flex-direction: column;
	gap: 14px;
}

.create-store-domain__item--active {
	display: flex;
}

.create-store-domain__content {
	border: 1px solid #222;
	border-radius: 16px;
	padding: 17px 23px;
	margin: 0px 0px 34px 0px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.create-store-domain__value {
	font-weight: 400;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);

	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.create-store-domain__btn-copy {
	transition: all .2s ease;
}

.create-store-domain__btn-copy:active {
	opacity: .7;
}

@media(hover:hover) {
	.create-store-domain__btn-copy:hover {
		opacity: .7;
	}
}

.create-store-domain__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;

	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

/* -------------------------notification------------------------- */

.page__notification {}

.notification__container {}

.notification__inner {}

.notification__title {
	margin: 0px 0px 24px 0px;
}

.notification__tabs {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;

	margin: 0px 0px 48px 0px;
}

.notification__tab {
	border-radius: 8px;
	padding: 10px 12px;
	background: #111;
	cursor: pointer;

	font-weight: 500;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);

	transition: all .2s ease;
}

.notification__tab:active {
	color: #fff;
}

@media(hover:hover) {
	.notification__tab:hover {
		color: #fff;
	}
}

.notification__tab--active {
	color: #fff;
	background: #0079ec;
}

.notification__column {
	max-width: 880px;

	display: none;
	flex-direction: column;
	gap: 32px;
}

.notification__column--active {
	display: flex;
}

.notification__box {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.notification__box-date {
	font-weight: 500;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

.notification__card {
	display: flex;
	gap: 24px;
	align-items: start;
}

.notification__card:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.notification__card-img {
	min-width: 56px;
	border-radius: 12px;
}

.notification__card-content {}

.notification__card-date {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);

	display: block;
	margin: 0px 0px 8px 0px;
}

.notification__card-title {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	color: #fff;

	margin: 0px 0px 16px 0px;
}

.notification__card-subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.5);
}

/* -------------------------pagination------------------------- */

.pagination {
	margin: 0px 0px 16px 0px;
}

.pagination__container {}

.pagination__inner {}

.pagination__list {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.pagination__item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.pagination__item:not(:last-child)::after {
	content: '/';

	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

.pagination__item-link {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);

	transition: all .2s ease;
}

.pagination__item-link:active {
	color: #FFF;
}

@media(hover:hover) {
	.pagination__item-link:hover {
		color: #FFF;
	}
}

/* -------------------------my-servers------------------------- */

.page__my-servers {}

.my-servers__container {}

.my-servers__inner {}

.my-servers__head {
	margin: 0px 0px 32px 0px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.my-servers__title {}

.my-servers__btn {
	display: flex;
	align-items: center;
	gap: 12px;

	border-radius: 12px;
	padding: 14px 16px;

	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.my-servers__table {}

.my-servers__table-head {
	margin: 0px 0px 16px 0px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 24px;
}

.my-servers__table-head-box {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
}

.my-servers__table-name {
	width: 554px;
}

.my-servers__table-status {
	width: 192px;
}

.my-servers__table-date {
	width: 188px;
}

.my-servers__table-action {
	width: 186px;
}

.my-servers__table-main {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.my-servers__table-row {
	padding: 16px 23px;
	border: 1px solid #111;
	border-radius: 16px;
	background: #0a0a0a;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.my-servers__table-box {}

.my-servers__table-name-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.my-servers__table-name-img {
	min-width: 50px;
}

.my-servers__table-name-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.my-servers__table-name-title {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.my-servers__table-name-link {
	display: flex;
	align-items: center;
	gap: 8px;

	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);

	transition: all .2s ease;
}

.my-servers__table-name-link:active {
	color: #fff;
}

@media(hover:hover) {
	.my-servers__table-name-link:hover {
		color: #fff;
	}
}

.my-servers__table-box-mob {
	display: none;
}

.my-servers__table-status-value {
	border-radius: 8px;
	padding: 8px;
	display: inline-block;

	font-weight: 500;
	font-size: 14px;
}

.status-active {
	color: #0079ec;
	background: rgba(0, 121, 236, 0.1);
}

.my-servers__table-date-value {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.my-servers__table-action-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	font-weight: 500;
	font-size: 14px;
	color: #fff;

	border: 1px solid #222;
	border-radius: 10px;
	padding: 13px 15px;
	background: #111;

	transition: all .2s ease;
}

.my-servers__table-action-link:active {
	background: rgb(26, 26, 26);
}

@media(hover:hover) {
	.my-servers__table-action-link:hover {
		background: rgb(26, 26, 26);
	}
}

.status-moder {
	color: #ffd27d;
	background: rgba(255, 210, 125, 0.1);
}

.status-rejected {
	color: #ff0d25;
	background: rgba(255, 13, 37, 0.1);
}

/* -------------------------dropdown------------------------- */

.dropdown {
	position: relative;
}

.dropdown-head {
	padding: 9px 7px 9px 11px;
	border: 1px solid #222;
	border-radius: 8px;
	background: #111;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;

	transition: all .2s ease;
}

.dropdown-head:active {}

@media(hover:hover) {
	.dropdown-head:hover {
		background: rgb(26, 26, 26)
	}
}

.dropdown-head-cotent {
	pointer-events: none;
}

.dropdown-head-value {
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.dropdown-head-icon {
	pointer-events: none;
	min-width: 10px;
}

.dropdown-content {
	position: absolute;
	top: 110%;
	left: 0;
	width: 100%;
	z-index: 2;
	overflow: hidden;

	transform: translateY(-20px);
	opacity: 0;
	pointer-events: none;
	transition: all .2s ease;

	border: 1px solid #222;
	border-radius: 8px;
	background: #111;
}

.dropdown-content--active {
	transform: translateY(0px);
	opacity: 1;
	pointer-events: all;
}

.dropdown-list {}

.dropdown-item {
	cursor: pointer;
	padding: 9px 7px 9px 11px;

	font-weight: 500;
	font-size: 14px;
	color: #fff;

	background-color: #111;
}

.dropdown-item:active {
	background: rgb(26, 26, 26);
}

@media(hover:hover) {
	.dropdown-item:hover {
		background: rgb(26, 26, 26);
	}
}

.dropdown-item:not(:last-child) {
	border-bottom: 1px solid #222;
}

/* -------------------------dashboard------------------------- */

.page__dashboard {}

.dashboard__container {}

.dashboard__inner {}

.dashboard__title {
	margin: 0px 0px 32px 0px;
}

.dashboard__head {
	display: flex;
	gap: 24px;
	margin: 0px 0px 34px 0px;
}

.dashboard__wallet {
	max-width: 576px;
	width: 100%;

	border: 1px solid #111;
	border-radius: 16px;
	padding: 23px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);

	display: flex;
	flex-direction: column;
	gap: 48px;
	justify-content: space-between;
}

.dashboard__wallet-top {}

.dashboard__wallet-text {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);

	display: block;
	margin: 0px 0px 16px 0px;
}

.dashboard__wallet-balance {
	display: flex;
	align-items: end;
	flex-wrap: wrap;
	gap: 16px;

	margin: 0px 0px 8px 0px;
}

.dashboard__wallet-balance-box {
	font-weight: 600;
	font-size: 36px;
	color: #fff;
}

.dashboard__wallet-balance-value {}

.dashboard__wallet-balance-value-dl {
	font-weight: 400;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.35);
}

.dashboard__wallet-balance-value-sp {
	font-weight: 500;
	font-size: 20px;
}

.dashboard__wallet-profit {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dashboard__wallet-profit-percent {
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #92ec00;

	display: inline-block;
	border-radius: 6px;
	padding: 5px 6px;
	background: rgba(146, 236, 0, 0.1);
}

.dashboard__wallet-profit-text {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.dashboard__wallet-bottom {
	display: flex;
	gap: 16px;
}

.dashboard__wallet-btn {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
}

.dashboard__wallet-btn-withdrawal {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.dashboard__wallet-btn-history {}

.dashboard__head-cards {
	display: flex;
	gap: 24px;

	max-width: 600px;
	width: 100%;
}

.dashboard__head-card {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 23px;
	flex: 1 1 50%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.dashboard__head-card-income {
	background: #0079ec;
	border: 1px solid #0079ec;
}

.dashboard__head-card-top {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dashboard__head-card-icon {}

.dashboard__head-card-text {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.dashboard__head-card-bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dashboard__head-card-value {
	font-weight: 500;
	font-size: 32px;
	color: #fff;
}

.dashboard__head-card-profit {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dashboard__head-card-profit-precent {
	font-weight: 500;
	font-size: 12px;
	text-align: center;
	color: #92ec00;

	border-radius: 6px;
	padding: 3px 6px;
	background: rgba(146, 236, 0, 0.1);
	display: inline-block;
}

.dashboard__head-card-profit-text {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.dashboard__head-card-check {
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);
}



.merchants {
	max-width: 384px;
	width: 100%;

	border: 1px solid #111;
	border-radius: 16px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);
	padding: 27px 23px 25px 23px;

	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: space-between;
}

.merchants__title {}

.merchants__items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.merchants__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px 10px;
	flex-wrap: wrap;
}

.merchants__item:not(:last-child) {
	padding: 0px 0px 16px 0px;
	border-bottom: 1px solid #222;
}

.merchants__item-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.merchants__item-img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.merchants__item-desc {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.merchants__item-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.merchants__item-status {
	font-weight: 400;
	font-size: 12px;
}

.merchants__item-right {}

.merchants__item-value {
	font-weight: 500;
	font-size: 16px;
	text-align: right;
	color: #fff;
}

.moder {
	color: #0079ec;
}

.active {
	color: #76b80d;
}

.dashboard__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.dashboard__content-row {
	display: flex;
	gap: 24px;
}

.dynamics-receipts {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 21px 23px 23px 23px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.dynamics-receipts__head {
	margin: 0px 0px 32px 0px;

	display: flex;
	align-items: start;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.dynamics-receipts__title {}

.dynamics-receipts__tabs {
	border: 1px solid #222;
	border-radius: 8px;
	padding: 3px;
	background: #111;

	display: flex;
	align-items: center;
	gap: 12px;
}

.dynamics-receipts__tab {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.25);

	border-radius: 8px;
	padding: 6.5px 8px;
	transition: all .2s ease;
	cursor: pointer;

	transition: all .2s ease;
}

.dynamics-receipts__tab:active {
	color: #fff;
}

@media(hover:hover) {
	.dynamics-receipts__tab:hover {
		color: #fff;
	}
}

.dynamics-receipts__tab--active {
	color: #fff;
	background: #0079ec;
}

.dynamics-receipts__grpah {
	width: 100%;
}

.dynamics-receipts__grpah-cotent {
	position: relative;
	z-index: 1;
	margin: 0px 0px 15px 0px;
}

.dynamics-receipts__grpah-svg {
	width: 100%;
	height: auto;
}

.dynamics-receipts__grpah-balloon {
	position: absolute;
	bottom: 40px;
	right: 40px;
	max-width: 231px;
	width: 100%;

	border: 1px solid #222;
	border-radius: 8px;
	padding: 13px;
	background: #111;

	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dynamics-receipts__grpah-balloon-row {
	display: flex;
	align-items: start;
	gap: 10px;
	justify-content: space-between;
}

.dynamics-receipts__grpah-balloon-row-left {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dynamics-receipts__grpah-balloon-text {
	font-weight: 400;
	font-size: 12px;
	color: #fff;
}

.dynamics-receipts__grpah-balloon-date {
	font-weight: 400;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
}

.dynamics-receipts__grpah-balloon-row-right {}

.dynamics-receipts__grpah-balloon-price {
	font-weight: 500;
	font-size: 16px;
	text-align: right;
	color: #fff;
}

.dynamics-receipts__grpah-time {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.dynamics-receipts__grpah-time-item {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
}




.currency-distribution {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 21px 23px 24px 23px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);

	display: flex;
	flex-direction: column;
	gap: 45px;
	justify-content: space-between;
	overflow: hidden;

	max-width: 793px;
	width: 100%;
}

.currency-distribution__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.currency-distribution__title {}

.currency-distribution__tabs {
	border: 1px solid #222;
	border-radius: 8px;
	padding: 3px;

	background: #111;

	display: flex;
	align-items: center;
	gap: 12px;
}

.currency-distribution__tab {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.25);

	border-radius: 8px;
	padding: 6.5px 8px;
	transition: all .2s ease;
	cursor: pointer;
}

.currency-distribution__tab:active {
	color: #fff;
}

@media(hover:hover) {
	.currency-distribution__tab:hover {
		color: #fff;
	}
}

.currency-distribution__tab--active {
	color: #fff;
	background: #0079ec;
}

.currency-distribution__graph {
	position: relative;
	z-index: 1;
	height: 319px;

	overflow: auto;

	display: flex;
	align-items: end;
}

.currency-distribution__graph::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.currency-distribution__graph-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 31px);
	object-fit: cover;
	z-index: -1;
}

.currency-distribution__graph-columns {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-width: 484px;
}

.currency-distribution__graph-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	width: 100%;
	max-width: 93px;
}

.currency-distribution__graph-column-content {
	display: flex;
	align-items: end;
	gap: 5px;
	width: 100%;
}

.currency-distribution__graph-column-last {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
	max-width: 44px;
}

.currency-distribution__graph-column-last-line {
	border-radius: 8px;
	width: 100%;
	height: 4px;
	background: rgba(0, 121, 236, 0.25);
}

.currency-distribution__graph-column-last-progress {
	width: 100%;
	height: 180px;
	background: linear-gradient(180deg, rgba(0, 121, 236, 0.25) 0%, rgba(0, 121, 236, 0.02) 100%);
}

.currency-distribution__graph-column-now {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
	max-width: 44px;
}

.currency-distribution__graph-column-now-line {
	border-radius: 8px;
	width: 100%;
	height: 4px;
	background: #0079ec;
}

.currency-distribution__graph-column-now-progress {
	background: linear-gradient(180deg, #0079ec 0%, #00519e 100%);
	border-radius: 8px 8px 0 0;
	width: 100%;
	height: 235px;
}

.currency-distribution__graph-column-valuta {
	display: flex;
	align-items: center;
	gap: 5px;
}

.currency-distribution__graph-column-valuta-name {
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}



.transactions {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 20px 23px 24px 23px;

	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);

	max-width: 384px;
	width: 100%;
}

.transactions__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;

	margin: 0px 0px 29px 0px;
}

.transactions__title {}

.transactions__dropdown {}

.transactions__dropdown-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.transactions__dropdown-head-cotent {
	display: flex;
	align-items: center;
	gap: 8px;
}

.transactions__dropdown-head-value {
	font-weight: 400;
	font-size: 14px;
	color: #fff;
}

.transactions__dropdown-content {}

.transactions__dropdown-list {}

.transactions__dropdown-item {
	font-weight: 400;
	font-size: 14px;
	color: #fff;
}

.transactions__graph {
	position: relative;

	padding: 128px 60px;
}

.transactions__graph-svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.transactions__graph-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
}

.transactions__graph-name {
	font-weight: 500;
	font-size: 48px;
	color: #fff;
}

.transactions__graph-desc {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

/* -------------------------slider-track------------------------- */

.slider-container {
	position: relative;
	width: calc(100% - 34px);
	margin: 0 auto;
	padding: 20px 0;
}

.slider-track {
	position: relative;
	width: 100%;
	height: 6px;
	background-color: #e0e0e0;
	border-radius: 3px;
	background-color: #111;
}

.slider-progress {
	position: absolute;
	left: 0;
	height: 100%;
	width: 50%;
	background: #0079ec;
	border-radius: 3px;
	z-index: 1;
}

.slider-point {
	position: absolute;
	width: 18px;
	height: 18px;
	background-color: #222;
	border-radius: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	cursor: pointer;
}

.slider-point.start-point {
	left: 0;
	border-color: #4a90e2;
}

.slider-point.end-point {
	left: 100%;
}

.slider-point.middle-point {
	border-color: #9e9e9e;
}

.slider-point.active {
	border-color: #0079ec;
	background-color: #0079ec;
}

.slider-point.start-point {
	width: 30px;
	height: 30px;
	background-color: #111;
	border: 6px solid #0079ec;
}

.slider-point.end-point {
	width: 30px;
	height: 30px;
	background-color: #111;
	border: 6px solid #222;
}

.slider-point.end-point.active {
	border: 6px solid #0079ec;
}

.slider-input {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 3;
	cursor: pointer;
	background: #111;
}

.slider-tooltip {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	z-index: 4;
	white-space: nowrap;

	border-radius: 8px;
	padding: 6px 8px;
	width: 46px;
	height: 35px;
	background: #0079ec;

	font-weight: 500;
	font-size: 16px;
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: center;
}



/* -------------------------action------------------------- */

.action {
	position: relative;
}

.action-head {
	border: 1px solid #222;
	border-radius: 12px;
	background: #111;
	padding: 13px 15px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;

	font-weight: 500;
	font-size: 16px;
	color: #fff;

	transition: all .2s ease;
}

.action-head:active {
	background-color: rgb(26, 26, 26);
}

@media(hover:hover) {
	.action-head:hover {
		background-color: rgb(26, 26, 26);
	}
}

.action-cotent {
	position: absolute;
	top: 110%;
	left: 0;
	width: 100%;
	z-index: 2;

	opacity: 0;
	pointer-events: none;
	transform: translateY(-20px);
	transition: all .2s ease;
}

.dropdown-content--active {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0px);
}

.action-list {
	border: 1px solid #222;
	border-radius: 12px;
	background: #111;
	overflow: hidden;
}

.action-item {}

.action-item:not(:last-child) {
	border-bottom: 1px solid #222;
}

.action-item-link {
	display: block;
	padding: 13px 15px;

	font-weight: 500;
	font-size: 16px;
	color: #fff;

	background: #111;
}

.action-item-link:active {
	background-color: rgb(26, 26, 26);
}

@media(hover:hover) {
	.action-item-link:hover {
		background-color: rgb(26, 26, 26);
	}
}

/* -------------------------store-managment------------------------- */

.page__store-managment {}

.store-managment__container {}

.store-managment__inner {}

.store-managment__head {
	margin: 0px 0px 32px 0px;

	display: flex;
	flex-direction: column;
	gap: 27px;
}

.store-managment__head-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.store-managment__title {}

.store-managment__action {}

.store-managment__action-head {}

.store-managment__action-cotent {}

.store-managment__action-list {}

.store-managment__action-item {}

.store-managment__action-item-link {}

.store-managment__main {}

.store-managment__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.store-managment__card {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 19px 17px 23px 23px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);

	display: flex;
	flex-direction: column;
	gap: 17px;
	justify-content: space-between;
}

.store-managment__card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.store-managment__card-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.store-managment__card-percent {
	font-weight: 500;
	font-size: 14px;

	border-radius: 6px;
	padding: 5px 6px;
}

.card-percent-incr {
	color: #92ec00;
	background: rgba(146, 236, 0, 0.1);
}

.card-percent-decr {
	color: #ec0000;
	background: rgba(236, 0, 0, 0.1);
}

.card-percent-conversion {
	color: #ebebeb;
	background: rgba(235, 235, 235, 0.1);
}

.store-managment__card-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.store-managment__card-value {
	font-weight: 500;
	font-size: 32px;
	color: #fff;
}




.store-managment__content {
	display: flex;
	gap: 32px;
}

.store-managment__sidebar {
	max-width: 215px;
	min-width: 215px;
}

.store-managment__sidebar-list {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 23px 15px;
	background: #0a0a0a;

	position: sticky;
	top: 20px;
	left: 0;

	display: flex;
	flex-direction: column;
	gap: 8px;
}

.store-managment__sidebar-item {}

.store-managment__sidebar-link {
	display: flex;
	align-items: center;
	gap: 10px;

	font-weight: 500;
	font-size: 14px;
	color: #646464;

	border-radius: 8px;
	padding: 10px 12px;

	transition: all .2s ease;
}

.store-managment__sidebar-link:active {
	color: #0079ec;
}

.store-managment__sidebar-link:active svg path {
	fill: #0079ec;
}

@media(hover:hover) {
	.store-managment__sidebar-link:hover {
		color: #0079ec;
	}

	.store-managment__sidebar-link:hover svg path {
		fill: #0079ec;
	}
}

.store-managment__sidebar-link--active {
	color: #0079ec;
	background: rgba(0, 121, 236, 0.1);
}

.store-managment__sidebar-link--active svg path {
	fill: #0079ec;
}

.store-managment__sidebar-link svg path {
	transition: all .2s ease;
}




.store-managment-main {
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.store-managment-main__row {
	display: flex;
	gap: 24px;
}

.store-managment-main .transactions {
	max-width: 354px;
	padding: 21px 23px 27px 23px;
}

.store-managment-main .transactions__graph {
	padding: 112px 40px;
}

.store-managment-main .transactions__head {
	margin: 0px 0px 26px 0px;
}

.currency-distr-main {
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: space-between;

	max-width: 576px;
	width: 100%;

	border: 1px solid #111;
	border-radius: 16px;
	padding: 20px 23px 23px 23px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);
}

.currency-distr-main__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.currency-distr-main__title {}

.currency-distr-main__dropdown {}

.currency-distr-main__dropdown-head {
	min-width: 108px;
}

.currency-distr-main__dropdown-head-cotent {}

.currency-distr-main__dropdown-head-value {}

.currency-distr-main__dropdown-content {}

.currency-distr-main__dropdown-list {}

.currency-distr-main__dropdown-item {}

.currency-distr-main__rows {
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.currency-distr-main__row {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.currency-distr-main__row-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.currency-distr-main__row-valute {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.currency-distr-main__row-value {
	font-weight: 500;
	font-size: 14px;
	text-align: right;
	color: #fff;
}

.currency-distr-main__row-progress {
	width: 100%;
	height: 12px;
	border-radius: 4px;
	background-color: #111;
	position: relative;
	overflow: hidden;
}

.currency-distr-main__row-progress::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);

	background: linear-gradient(90deg, #0079ec 0%, #00519f 100%);
	border-radius: 4px;
}

.currency-distr-main__row-progress-1::after {
	transform: translateX(-43%);
}

.currency-distr-main__row-progress-2::after {
	transform: translateX(-80%);
}

.currency-distr-main__row-progress-3::after {
	transform: translateX(-82%);
}

.currency-distr-main__row-progress-4::after {
	transform: translateX(-96%);
}

.currency-distr-main__row-progress-5::after {
	transform: translateX(-97%);
}

/* -------------------------store-management-transactions------------------------- */

.store-management-transactions {
	width: 100%;
}

.store-management-transactions__head {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin: 0px 0px 32px 0px;
}

.store-management-transactions__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.store-management-title {
	font-weight: 500;
	font-size: 28px;
	color: #fff;
}

.store-management-subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: rgba(255, 255, 255, 0.5);
}

.store-management-transactions__form {
	display: flex;
	gap: 16px;
}

.store-management-transactions__search {
	width: 100%;

	border: 1px solid #111;
	border-radius: 12px;
	padding: 15px 19px;
	background: #0a0a0a;

	display: flex;
	align-items: center;
	gap: 16px;
}

.store-management-transactions__search svg {
	min-width: 19px;
}

.store-management-transactions__search-input {
	width: 100%;

	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255);
	background-color: transparent;
}

.store-management-transactions__search-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.store-management-transactions__dropdown {}

.store-management-transactions__dropdown-head {
	display: flex;
	align-items: center;
	gap: 12px;

	background: #0a0a0a;
	border: 1px solid #111;
	border-radius: 12px;
	padding: 15px;
}

.store-management-transactions__dropdown-head-cotent {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.store-management-transactions__dropdown-head-value {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

.store-management-transactions__dropdown-head-value-sp {
	color: #fff;
}

.store-management-transactions__accordions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.store-management-transactions__accordion {
	border: 1px solid #111;
	border-radius: 16px;
	background: #0a0a0a;
	overflow: hidden;

	transition: all .3s ease;

	position: relative;
	z-index: 1;

	transition: all .2s ease;
}

.store-management-transactions__accordion:active {
	background: rgb(26, 26, 26);
}

@media(hover:hover) {
	.store-management-transactions__accordion:hover {
		background: rgb(26, 26, 26);
	}
}

.store-management-transactions__accordion::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .3s ease;

	z-index: -1;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);
}

.accordion__item-wrapper--show::after {
	opacity: 1;
}

.store-management-transactions__accordion-head {
	padding: 19px 23px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;

	transition: all .2s ease;
}

.store-management-transactions__accordion-head-left {
	max-width: 734px;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.store-management-transactions__accordion-content-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.store-management-transactions__accordion-content-head>svg {
	min-width: 48px;
}

.store-management-transactions__accordion-content-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.store-management-transactions__accordion-content-name {
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.store-management-transactions__accordion-content-status {
	font-weight: 400;
	font-size: 12px;
	color: #76b80d;
}

.store-management-transactions__accordion-head-list {
	max-width: 390px;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.store-management-transactions__accordion-head-item {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.store-management-transactions__accordion-head-right {
	display: flex;
	flex-direction: column;
	gap: 6px;
	white-space: nowrap;
}

.store-management-transactions__accordion-btc {
	font-weight: 500;
	font-size: 14px;
	text-align: right;
	color: #fff;
}

.store-management-transactions__accordion-usdt {
	font-weight: 400;
	font-size: 12px;
	text-align: right;
	color: rgba(255, 255, 255, 0.5);
}

.store-management-transactions__accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.store-management-transactions__accordion-body {
	padding: 13px 23px 19px 23px;
}

.store-management-transactions__accordion-title {
	font-weight: 400;
	font-size: 14px;
	color: #fff;

	margin: 0px 0px 16px 0px;
}

.store-management-transactions__accordion-rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.store-management-transactions__accordion-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	height: 14px;
}

.store-management-transactions__accordion-row-name {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);

	white-space: nowrap;
}

.store-management-transactions__accordion-row-value {
	font-weight: 400;
	font-size: 12px;
	text-align: right;
	color: #fff;

	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}

.store-management-transactions__accordion-row-status {
	border-radius: 4px;
	padding: 5px 6px;

	font-weight: 400;
	font-size: 12px;
	text-align: center;
}

.accordion-row-success {
	background: rgba(118, 184, 13, 0.1);
	color: #76b80d;
}

.accordion-row-waiting {
	color: #f7931a;
	background: rgba(247, 147, 26, 0.1);
}

.accordion-row-error {
	color: #ef5252;
	background: rgba(239, 82, 82, 0.1);
}


.accordion-content-waiting {
	color: #f7931a;
}

.accordion-content-error {
	color: #ef5252;
}

/* -------------------------store-managment-settings------------------------- */

.store-managment-settings {}

.store-managment-settings__head {
	margin: 0px 0px 32px 0px;
}

.store-management-title {}

.store-management-subtitle {}

.store-managment-settings__info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0px 0px 48px 0px;
}

.store-managment-settings__info-title {
	margin: 0px 0px 8px 0px;
}

.store-managment-settings__info-row {
	display: flex;
	gap: 16px;
}

.store-managment-settings__info-box {
	width: 100%;

	padding: 13px 19px 15px 19px;
	border: 1px solid #222;
	border-radius: 16px;
}

.store-managment-settings__info-box-shop {}

.store-managment-settings__info-box-name {
	display: block;
	margin: 0px 0px 6px 0px;

	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
}

.store-managment-settings__info-box-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.store-managment-settings__info-box-value {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);

	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}

.store-managment-settings__info-copy {}

.store-managment-settings__info-box-status {
	display: flex;
	align-items: center;
	gap: 6px;

	font-weight: 500;
	font-size: 16px;
	color: #76b80d;
}

.store-managment-settings__info-box-url {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.store-managment-settings__info-box-shop {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	background: #0a0a0a;

	position: relative;
}

.store-managment-settings__info-box-shop-btn {
	font-weight: 500;
	font-size: 14px;
	color: #fff;

	border-radius: 10px;
	padding: 8px 10px;

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}

.store-managment-settings__info-box-api {
	background: #0a0a0a;
}

.store-managment-settings__info-box-api .store-managment-settings__info-box-value {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.store-managment-settings__api {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0px 0px 48px 0px;
}

.store-managment-settings__info-box-api {}

.store-managment-settings__info-copy {}

.store-managment-settings__api-btns {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.store-managment-settings__api-btn-key {
	width: 100%;

	font-weight: 500;
	font-size: 16px;
	color: #fff;

	padding: 20px;
	border-radius: 16px;
}

.btn-border {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 19px;
	background: #0a0a0a;

	font-weight: 500;
	font-size: 16px;
	color: #fff;

	transition: all .2s ease;
}

.btn-border:active {
	background-color: rgb(26, 26, 26);
}

@media(hover:hover) {
	.btn-border:hover {
		background-color: rgb(26, 26, 26);
	}
}

.store-managment-settings__api-btn-api {
	width: 100%;
}

.store-managment-settings__payment {}

.store-managment-settings__payment-title {
	margin: 0px 0px 24px 0px;
}

.store-managment-settings__payment-warning {
	padding: 15px 27px 15px 19px;
	border: 1px solid rgba(0, 121, 236, 0.25);
	border-radius: 16px;
	background: rgba(0, 121, 236, 0.1);

	display: flex;
	align-items: start;
	gap: 12px;
	margin: 0px 0px 60px 0px;
}

.store-managment-settings__payment-warning svg {
	min-width: 19px;
}

.store-managment-settings__payment-warning-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
	color: #0079ec;
}

/* -------------------------store-managment-conversion------------------------- */

.store-managment-conversion {
	width: 100%;
}

.store-managment-conversion__head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0px 0px 32px 0px;
}

.store-managment-conversion__title {}

.store-managment-conversion__subtitle {}

.store-managment-conversion__rows {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.store-managment-conversion__row {
	display: flex;
	gap: 16px;
}

.store-managment-conversion__box {
	width: 100%;
	border: 1px solid #111;
	border-radius: 16px;
	padding: 15px 19px;
	background: #0a0a0a;

	display: flex;
	align-items: center;
	gap: 16px;

	position: relative;
}

.store-managment-conversion__box-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.store-managment-conversion__box-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;

	display: flex;
	align-items: center;
	gap: 8px;
}

.store-managment-conversion__box-percent {
	font-weight: 500;
	font-size: 12px;

	border-radius: 6px;
	padding: 3px 6px;
}

.store-managment-conversion__box-sub {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.store-managment-conversion__box-icon {
	position: absolute;
	top: 50%;
	right: -21px;
	transform: translateY(-50%);
	z-index: 2;
}

.store-managment-conversion__dropdown {
	width: 100%;
}

.store-managment-conversion__dropdown-head {
	border: 1px solid #111;
	border-radius: 16px;
	background: #0a0a0a;
	padding: 15px 19px 15px 23px;
}

.store-managment-conversion__dropdown-head .dropdown-head-icon {
	min-width: 24px;
}

.store-managment-conversion__dropdown-head-cotent {
	display: flex;
	align-items: center;
	gap: 14px;
	pointer-events: none;
}

.store-managment-conversion__dropdown-head-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.store-managment-conversion__dropdown-head-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.store-managment-conversion__dropdown-head-sub {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.store-managment-conversion__dropdown-content {
	z-index: 10;
	border: 1px solid #111;
	border-radius: 16px;
	background: #0a0a0a;
}

.store-managment-conversion__dropdown-list {}

.store-managment-conversion__dropdown-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.box-percent-blue {
	color: #0079ec;
	background: rgba(0, 121, 236, 0.1);
}

.box-percent-white {
	color: #ebebeb;
	background: rgba(235, 235, 235, 0.1);
}

.box-percent-red {
	color: #ec0000;
	background: rgba(236, 0, 0, 0.1);
}

/* ------------------------- ------------------------- */

.store-managment-payment__card-check {
	position: relative;
	width: 33px;
	height: 21px;
	-webkit-appearance: none;
	outline: none;
	background: #070707;
	border-radius: 30px;
	transition: .5s;
}

.store-managment-payment__card-check:checked[type="checkbox"] {
	background: #0079ec;
}

.store-managment-payment__card-check[type="checkbox"]:before {
	content: '';
	position: absolute;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-52%);
	left: 10%;
	background: rgba(255, 255, 255, 0.35);
	transition: .5s;
}

.store-managment-payment__card-check:checked[type="checkbox"]:before {
	transform: translateX(10px) translateY(-52%);
	background: rgba(255, 255, 255);
}

/* -------------------------store-managment-payment------------------------- */

.store-managment-payment {}

.store-managment-payment__head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0px 0px 32px 0px;
}

.store-managment-payment__title {}

.store-managment-payment__subtitle {}

.store-managment-payment__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.store-managment-payment__card {
	border: 1px solid #111;
	border-radius: 16px;
	background: #0a0a0a;
	padding: 15px 19px;

	transition: all .2s ease;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;

	position: relative;
}

.store-managment-payment__card:active {
	border: 1px solid rgba(0, 121, 236, 0.25);
	background: #10161c;
}

@media(hover:hover) {
	.store-managment-payment__card:hover {
		border: 1px solid rgba(0, 121, 236, 0.25);
		background: #10161c;
	}
}

.store-managment-payment__card::after {
	content: '';

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 3px;
	height: 29px;

	transition: all .2s ease;
	opacity: 0;

	border-radius: 0 2px 2px 0;
	background: #0079ec;
}

.store-managment-payment__card:has(.store-managment-payment__card-check:checked) {
	border: 1px solid rgba(0, 121, 236, 0.25);
	background: #10161c;
}

.store-managment-payment__card:has(.store-managment-payment__card-check:checked)::after {
	opacity: 1;
}

.store-managment-payment__card-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.store-managment-payment__card-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.store-managment-payment__card-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.store-managment-payment__card-sub {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.store-managment-payment__card-right {}

.store-managment-payment__card-check {}

/* -------------------------settings------------------------- */

.page__settings {}

.settings__container {}

.settings__inner {}

.settings__title {
	margin: 0px 0px 32px 0px;
}

.settings__profile {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 23px;
	background: #0a0a0a;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	margin: 0px 0px 24px 0px;
}

.settings__profile-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.settings__profile-icon {
	min-width: 67px;
}

.settings__profile-cotent {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.settings__profile-name {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
}

.settings__profile-uid-row {
	display: flex;
	align-items: center;
	gap: 6px;
}

.settings__profile-uid {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.35);
}

.settings__profile-uid-value {
	color: #fff;
}

.settings__profile-uid-btn {
	transition: all .2s ease;
}

.settings__profile-uid-btn:active {
	opacity: .7;
}

.btn-copy {
	transition: all .2s ease;
}

.btn-copy:active {
	opacity: .7;
}

@media(hover:hover) {
	.btn-copy:hover {
		opacity: .7;
	}
}

@media(hover:hover) {
	.settings__profile-uid-btn:hover {
		opacity: .7;
	}
}

.settings__profile-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.settings__profile-change {
	border-radius: 10px;
	padding: 12px 20px 12px 16px;

	display: flex;
	align-items: center;
	gap: 10px;

	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.settings__profile-delete {
	display: flex;
	align-items: center;
	gap: 10px;

	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.settings__profile-delete path {
	transition: all .2s ease;
}

.settings__profile-delete:active path {
	fill: #ec0000;
	fill-opacity: 1;
}

@media(hover:hover) {
	.settings__profile-delete:hover path {
		fill: #ec0000;
		fill-opacity: 1;
	}

	.settings__profile-delete:hover {
		color: #ec0000;
	}
}

.btn-transp {
	border: 1px solid #222;
	border-radius: 10px;
	padding: 11px 19px 11px 15px;

	transition: all .2s ease;
}

.btn-transp:active {
	background-color: rgb(26, 26, 26);
}

@media(hover:hover) {
	.btn-transp:hover {
		background-color: rgb(26, 26, 26);
	}
}

.settings__content {
	display: flex;
	gap: 24px;
	margin: 0px 0px 37px 0px;
}

.settings__info {
	max-width: 495px;
	width: 100%;

	border: 1px solid #111;
	border-radius: 16px;
	background: linear-gradient(150deg, #0a0a0a 30%, #041a2f 100%);
	padding: 23px;

	display: flex;
	flex-direction: column;
	gap: 20px;
}

.settings__info-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0px 0px 12px 0px;
}

.settings__info-title {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.settings__info-change {
	display: flex;
	align-items: center;
	gap: 8px;

	font-weight: 400;
	font-size: 14px;
	color: #0079ec;

	transition: all .2s ease;
}

.settings__info-change:active {
	opacity: .7;
}

@media(hover:hover) {
	.settings__info-change:hover {
		opacity: .7;
	}
}

.settings__info-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.settings__info-name {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
}

.settings__info-desc {
	display: flex;
	align-items: center;
	gap: 10px;

	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.settings__security {
	max-width: 680px;
	width: 100%;
	border: 1px solid #111;
	border-radius: 16px;
	padding: 23px;
	background: #0a0a0a;
}

.settings__security-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;

	margin: 0px 0px 32px 0px;
}

.settings__security-title {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.settings__security-lvl {
	font-weight: 500;
	font-size: 14px;
	color: #f7931a;

	border-radius: 6px;
	padding: 5px 8px;
	background: rgba(247, 147, 26, 0.1);
}

.settings__security-rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.settings__security-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.settings__security-row:not(:last-child) {
	padding: 0px 0px 13px 0px;
	border-bottom: .5px solid #111;
}

.settings__security-row-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.settings__security-row-left svg {
	min-width: 50px;
}

.settings__security-row-cotent {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.settings__security-row-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.settings__security-row-desc {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
}

.settings__security-row .btn-transp {
	font-weight: 500;
	font-size: 14px;
	color: #fff;

	border: 1px solid #222;
	border-radius: 8px;
	padding: 8px 12px;
}

.settings__security-row .btn-main {
	font-weight: 500;
	font-size: 14px;
	color: #fff;

	border-radius: 8px;
	padding: 8px 12px;
}

.settings__security-row-right {}

.settings__security-row-btn-pass {}

.settings__security-row-desc-value {
	color: rgba(255, 255, 255, 0.7);
}

.settings__security-row-btn-email {}

.settings__security-row-btn-2fa {}

.settings__security-row-btn-tg {}



.settings__sessions {
	border: 1px solid #111;
	border-radius: 16px;
	padding: 17px 24px 24px 24px;
	background: #0a0a0a;
}

.settings__sessions-head {
	margin: 0px 0px 26px 0px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.settings__sessions-title {
	font-weight: 500;
	font-size: 18px;
	color: #fff;
}

.settings__sessions-value {
	color: rgba(255, 255, 255, 0.35);
}

.settings__sessions-head-btn {
	font-weight: 500;
	font-size: 14px;
	color: #fff;

	border-radius: 8px;
	padding: 8px 12px;
}

.settings__sessions-rows {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.settings__sessions-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.settings__sessions-row:not(:last-child) {
	padding: 0px 0px 15px 0px;
	border-bottom: .5px solid #111;
}

.settings__sessions-row-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.settings__sessions-row-left svg {
	min-width: 50px;
}

.settings__sessions-row-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.settings__sessions-row-name {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.settings__sessions-row-desc {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.settings__sessions-row-right {}

.settings__sessions-row-current {
	font-weight: 500;
	font-size: 14px;
	color: #0079ec;

	border-radius: 8px;
	padding: 8px 12px;
	background: rgba(0, 121, 236, 0.1);
}

.settings__sessions-row-complete {
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);

	border: 1px solid #222;
	border-radius: 8px;
	padding: 7px 11px;
	background: #111;
}

/* -------------------------modal------------------------- */

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 20;

	backdrop-filter: blur(4px);
	background: rgba(0, 0, 0, 0.5);

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	pointer-events: none;
	transition: all .3s ease;
}

.modal--visible {
	opacity: 1;
	pointer-events: all;
}

.modal-password {}

.modal__window {
	background: #0a0a0a;
	width: 100%;
	max-width: 560px;
	padding: 31px;
	border: 1px solid #111;
	border-radius: 16px;

	max-height: 100%;
	overflow: auto;

	position: relative;
}

.modal__window::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.modal__btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.modal__btn-close path {
	transition: all .2s ease;
}

.modal__btn-close:active path {
	fill: #fff;
	fill-opacity: 1;
}

@media(hover:hover) {
	.modal__btn-close:hover path {
		fill: #fff;
		fill-opacity: 1;
	}
}

.modal__title {
	font-weight: 500;
	font-size: 24px;
	color: #fff;

	margin: 0px 0px 32px 0px;
	padding: 0px 25px 0px 0px;
}

.modal-form {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 16px;
}

.modal-form__label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	cursor: pointer;

	border: 1px solid #222;
	border-radius: 12px;
	padding: 13px 19px 15px 19px;
	background: #111;
}

.modal-form__name {
	font-weight: 400;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
}

.modal-form__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.modal-form__row-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.modal-form__input {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	background-color: transparent;
}

.modal-form__input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.modal-form__row-right {}

.modal-form__row-pass-status {
	font-weight: 500;
	font-size: 11px;
	color: #76b80d;

	border-radius: 6px;
	padding: 4px 6px;
	background: rgba(118, 184, 13, 0.1);
}

.modal-form__row-btn-pass {
	transition: all .2s ease;
}

.modal-form__row-btn-pass:active {
	opacity: .7;
}

@media(hover:hover) {
	.modal-form__row-btn-pass:hover {
		opacity: .7;
	}
}

.modal .modal-form__btn-submit {

	font-weight: 500;
	font-size: 16px;
	color: #fff;
	display: inline-flex;
	gap: 12px;

	border-radius: 10px;
	padding: 16px 20px;
}

.modal__warning {
	margin: 0px 0px 16px 0px;

	border: 1px solid rgba(0, 121, 236, 0.25);
	border-radius: 12px;
	padding: 15px 19px;
	background: rgba(0, 121, 236, 0.1);

	display: flex;
	align-items: start;
	gap: 12px;
}

.modal__warning-yellow {
	border: 1px solid rgba(247, 147, 26, 0.25);
	background: rgba(247, 147, 26, 0.1);
}

.modal__warning svg {
	min-width: 19px;
}

.modal__warning-text {
	font-weight: 400;
	font-size: 14px;
	line-height: 135%;
	color: #0079ec;
}

.modal__warning-yellow .modal__warning-text {
	color: #f7931a;
}

.modal-form__btns {
	display: flex;
	gap: 12px;
	margin: 16px 0px 0px 0px;
	flex-wrap: wrap;
}

.modal-form__btn-later {
	font-weight: 500;
	font-size: 16px;
	color: #646464;

	border-radius: 12px;
	padding: 16px 20px;
	background: #111;
}

.modal__qr {
	margin: 24px 0px;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.modal__qr-img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal__qr-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.modal__qr-line {
	height: 0.5px;
	width: 100%;
	background-color: #222;
}

.modal__qr-text {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	white-space: nowrap;
}

.modal__qr-image {
	max-width: 100%;
}


.modal-form-code {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	justify-content: center;
}

.modal-form-code__inputs {
	display: flex;
	align-items: center;
	gap: 12px;
}

.modal-form-code__input {
	width: 65px;
	height: 80px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: 500;
	font-size: 32px;
	color: rgba(255, 255, 255);
	background: #111;

	border: 1px solid #222;
	border-radius: 12px;
}

.modal-form-code__input:focus {
	background-color: #10161C;
	border: 1px solid #0079ec;
}

.modal-form-code__input:active {
	background-color: #10161C;
	border: 1px solid #0079ec;
}

@media(hover:hover) {
	.modal-form-code__input:hover {
		background-color: #10161C;
		border: 1px solid #0079ec;
	}
}

.modal-form-code__input--active {
	background-color: #10161C;
	border: 1px solid #0079ec;
}

.modal-form-code__inputs-line {
	height: 2px;
	min-width: 26px;
	background-color: #222;
}

.modal-form-code__input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}





.modal-form__dropdown-head {
	padding: 0;
	border: none;
	border-radius: 0;
}

.modal-form__dropdown-head-value {
	display: flex;
	align-items: center;
	gap: 10px;

	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.modal-form__dropdown-content {
	top: 220%;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% + 38px);
}

.modal-form__dropdown-item {
	padding: 11px 9px 11px 13px;
}

.modal-form__dropdown-head-value-fee {
	border-radius: 6px;
	padding: 3px 6px;
	background: rgba(0, 121, 236, 0.1);

	font-weight: 500;
	font-size: 12px;
	color: #0079ec;
}

.modal-form__row-text {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.modal-withdrawal-funds .modal-form__row-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.modal-form__row-valute {
	padding-right: 16px;
	border-right: 1px solid #222;

	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.35);
}

.modal-form__row-btn-all {
	font-weight: 500;
	font-size: 16px;
	color: #0079ec;
}





.modal-withdrawal-success__content {}

.modal-withdrawal-success__img {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px 0px 16px 0px;
}

.modal-withdrawal-success-image {
	max-width: 100%;
}

.modal-withdrawal-success__text {
	font-weight: 400;
	font-size: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);

	display: block;
	margin: 0px 0px 10px 0px;
}

.modal-withdrawal-success__value {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	margin: 0px 0px 32px 0px;
}

.modal-withdrawal-success__value-sp {
	font-weight: 600;
	font-size: 48px;
	text-align: center;
	color: #fff;
}

.modal-withdrawal-success__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-withdrawal-success .modal-withdrawal-success__link {
	font-weight: 500;
	font-size: 16px;
	color: #fff;

	border-radius: 12px;
	padding: 16px 20px;
}

/* -------------------------modal-conclusion-history------------------------- */

.modal-conclusion-history {}

.modal-conclusion-history .modal__window {
	max-width: 870px;
}

.conclusion-history-value {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.35);
}

.modal-conclusion-history__table {
	margin: 46px 0px 0px 0px;
}

.modal-conclusion-history__table-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;

	padding: 0px 0px 16px 0px;
	border-bottom: 1px solid #222;
}

.modal-conclusion-history__table-head-box {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
}

.modal-conclusion-history__table-summ {
	width: 182px;
}

.modal-conclusion-history__table-date {
	width: 204px;
}

.modal-conclusion-history__table-adress {
	width: 252px;
}

.modal-conclusion-history__table-status {
	width: 138px;
}

.modal-conclusion-history__table-main {}

.modal-conclusion-history__table-row {
	padding: 18px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.modal-conclusion-history__table-row:not(:last-child) {
	border-bottom: 1px solid #222;
}

.modal-conclusion-history__table-box {
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.modal-conclusion-history__table-row .modal-conclusion-history__table-date {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
}

.modal-conclusion-history__table-box-mob {
	display: none;
}

.modal-conclusion-history__table-box-content {}

.modal-conclusion-history__table-adress-link {
	font-weight: 400;
	font-size: 16px;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #0079ec;
}

.modal-conclusion-history__table-status-text {
	font-weight: 500;
	font-size: 14px;
	border-radius: 6px;
	padding: 8px 12px;
	display: inline-block;
	white-space: nowrap;
}

.table-status-text-process {
	color: #f7931a;
	background: rgba(247, 147, 26, 0.1);
}

.table-status-text-success {
	color: #0079ec;
	background: rgba(0, 121, 236, 0.1);
}

.table-status-text-error {
	color: #ff0d25;
	background: rgba(255, 13, 37, 0.1);
}

/* -------------------------authorization------------------------- */

.authorization {
	max-height: 100vh;
	overflow: hidden;
}

.authorization__container {
	max-width: 1840px;
	margin: 0 auto;
	padding: 0 40px;
}

.authorization__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;

	max-width: 1700px;
}

.authorization__img {
	max-width: 1082px;
}

.authorization__image {
	max-width: 100%;
}

.authorization__content {
	min-width: 480px;
	max-width: 480px;
	width: 100%;
	padding: 64px 0;
	height: 100vh;
}

.authorization__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;

	margin: 0px 0px 98px 0px;
}

.authorization__logo-text {
	font-weight: 600;
	font-size: 32px;
	color: #fff;
}

.authorization__head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0px 0px 48px 0px;
}

.authorization__title {
	text-align: center;
}

.authorization__subtitle {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

.authorization__form {}

.authorization__form-inputs {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0px 0px 32px 0px;
}

.modal-form__label {}

.modal-form__name {}

.modal-form__row {}

.modal-form__row-left {}

.modal-form__input {}

.modal-form__row-right {}

.authorization .authorization__form-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	margin: 0px 0px 24px 0px;

	font-weight: 500;
	font-size: 18px;
	color: #fff;

	border-radius: 16px;
	padding: 24px 10px;
}

.authorization__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.authorization__text {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.35);
}

.authorization__link {
	font-weight: 500;
	font-size: 14px;
	color: #fff;

	border: 1px solid #222;
	border-radius: 8px;
	padding: 8px 10px;

	transition: all .2s ease;
}

.authorization__link:active {
	background: #0079ec;
	border-color: #0079ec;
}

@media(hover:hover) {
	.authorization__link:hover {
		background: #0079ec;
		border-color: #0079ec;
	}
}

.send-new {
	font-weight: 500;
	font-size: 14px;
	text-align: right;
	color: #0079ec;

	transition: all .2s ease;
}

.send-new:active {
	color: #024583;
}

@media(hover:hover) {
	.send-new:hover {
		color: #024583;
	}
}

/* -------------------------loader------------------------- */

.loader {
	height: 100vh;
	position: relative;
	padding: 64px 40px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.loader__content {
	width: 100%;
	max-width: 580px;
	max-height: 470px;
	height: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.loader-logo {
	margin: 0px 0px 48px 0px;
}

.loader__title {
	margin: 0px 0px 16px 0px;
	text-align: center;
}

.loader__text {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);

	margin: 0px 0px 64px 0px;
}

.loader-line {
	max-width: 310px;
	width: 100%;
	height: 8px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.loader-line::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);

	animation: loaderLine 3s ease-in-out forwards;

	border-radius: 3px;
	background: linear-gradient(90deg, rgba(0, 121, 236, 0.7) 0%, rgba(166, 211, 255, 0.7) 100%);
}

.loader-line::before {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);

	animation: loaderLine 3s ease-in-out forwards;

	filter: blur(8px);
	border-radius: 3px;
	background: linear-gradient(90deg, rgba(0, 121, 236, 0.7) 0%, rgba(166, 211, 255, 0.7) 100%);
}

@keyframes loaderLine {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0%);
	}
}

.loader-text-pos {
	position: absolute;
	bottom: 64px;
	left: 50%;
	transform: translateX(-50%);

	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #fff;
}

/* -------------------------media------------------------- */

@media(max-width:1120px) {
	/* header */

	.header {
		padding: 20px 0;
	}

	.header .header__profile,
	.header .header__list {
		display: none;
	}

	.header .header__lang {
		display: none;
	}

	.burger-btn {
		display: flex;
	}

	.header__left {
		margin: 0;
	}

	.header__inner {
		align-items: center;
	}

	.header__list {
		position: static;
		transform: none;
		left: auto;
		top: auto;
		flex-direction: column;
		align-items: start;
		margin: 0px 0px 40px 0px;
	}

	.header__profile {
		margin: 0px 0px 40px 0px;
	}

	.header__item-link {
		font-size: 18px;
	}

	.header__lang {
		padding: 0;
		border: none;
		margin: 0;
	}

	.burger-menu {
		display: block;
	}

	/* header */

	/* .dashboard */

	.dashboard__head {
		flex-direction: column;
	}

	.dashboard__wallet,
	.dashboard__head-cards {
		max-width: unset;
	}

	.dashboard__content-row {
		flex-direction: column;
	}

	.merchants {
		max-width: unset;
	}

	.currency-distribution {
		max-width: unset;
	}

	.transactions {
		max-width: unset;
	}

	/* .dashboard */

	/* .store-managment */

	.store-managment__content {
		flex-direction: column;
		gap: 20px;
	}

	.store-managment__sidebar {
		max-width: unset;
		min-width: unset;
		width: 100%;
	}

	.store-managment__sidebar-list {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.store-managment-main {
		gap: 20px;
	}

	.store-managment-main__row {
		gap: 20px;
	}

	.currency-distr-main {
		max-width: 640px;
	}

	.store-managment__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.store-managment__head {
		margin: 0px 0px 20px 0px;
	}

	/* .store-managment */

	/* .authorization */

	.authorization {
		position: relative;
	}

	.authorization__img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		opacity: .2;
		z-index: -1;
		filter: blur(8px);

		display: flex;
		align-items: center;
		justify-content: center;
	}

	.authorization__image {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.authorization__content {
		min-width: unset;
	}

	.authorization__inner {
		justify-content: center;
	}

	/* .authorization */
}

@media(max-width:920px) {
	/* header */

	.header {
		margin: 0px 0px 30px 0px;
	}

	.header .header__list {
		display: none;
	}

	.container {
		padding: 0 20px;
	}

	.burger-menu__window {
		padding: 30px 20px;
	}

	/* header */

	/* create-store */

	.create-store__back {
		margin: 0px 0px 20px 0px;
	}

	.create-store__content {
		max-width: unset;
	}

	/* create-store */

	/* .create-store-domain */

	.create-store-domain__tabs {
		margin: 0px 0px 20px 0px;
	}

	.create-store-domain__item {
		gap: 4px;
	}

	.create-store-domain__content {
		margin: 0px 0px 22px 0px;
	}

	/* .create-store-domain */

	/* .store-management-transactions */

	.store-management-transactions__accordion-head-left {
		flex-direction: column;
		align-items: start;
		gap: 20px;
	}

	.store-management-transactions__accordion-head {
		align-items: start;
		gap: 20px;
	}

	/* .store-management-transactions */

	/* .settings */

	.settings__content {
		flex-direction: column;
		margin: 0px 0px 24px 0px;
	}

	.settings__info {
		max-width: unset;
	}

	.settings__security {
		max-width: unset;
	}

	/* .settings */

	/* modal */

	.modal-conclusion-history__table-head {
		display: none;
	}

	.modal-conclusion-history__table-row {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.modal-conclusion-history__table {
		margin: 32px 0px 0px 0px;
	}

	.modal-conclusion-history__table-box-mob {
		display: block;

		font-weight: 400;
		font-size: 14px;
		color: rgba(255, 255, 255, 0.35);
	}

	.modal-conclusion-history__table-box {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		width: 100%;
	}

	/* modal */
}

@media(max-width:768px) {

	.btn-main {
		padding: 20px 10px;
		font-size: 16px;
	}

	/* .create-store */

	.title-h1 {
		font-size: 24px;
	}

	.create-store-request__head {
		margin: 0px 0px 20px 0px;
	}

	.create-store-request__label-check {
		margin: 12px 0;
	}

	.create-store__warning {
		padding: 16px;
	}

	.create-store-request__label {
		padding: 16px;
	}

	/* .create-store */

	/* .create-store-domain */

	.create-store-domain__content {
		padding: 16px;
	}

	.create-store-domain__value {
		font-size: 16px;
	}

	/* .create-store-domain */

	/* .dashboard */

	.dashboard__head,
	.dashboard__head-cards {
		gap: 20px;
	}

	.dashboard__head {
		margin: 0px 0px 20px 0px;
	}

	.dashboard__content-row,
	.dashboard__content {
		gap: 20px;
	}

	.dashboard__wallet {
		gap: 24px;
	}

	.dashboard__wallet-btn {
		padding: 16px;
	}

	.dashboard__wallet,
	.dashboard__head-card,
	.merchants,
	.dynamics-receipts,
	.currency-distribution,
	.transactions {
		padding: 20px;
	}

	.dashboard__wallet-balance-box {
		font-size: 32px;
	}

	.dashboard__wallet-balance-value-dl {
		font-size: 16px;
	}

	.dashboard__head-card-value {
		font-size: 28px;
	}

	.dashboard__head-card-icon svg {
		width: 38px;
		height: 38px;
	}

	.dynamics-receipts__tabs,
	.currency-distribution__tabs {
		gap: 4px;
	}

	.dynamics-receipts__grpah-balloon-price {
		font-size: 12px;
	}

	.dynamics-receipts__grpah-balloon {
		max-width: 190px;
		gap: 10px;
	}

	.currency-distribution {
		gap: 24px;
	}

	.transactions__graph-name {
		font-size: 38px;
	}

	.transactions__graph-svg {
		max-width: 280px;
		height: auto;
	}

	.currency-distribution__graph {
		height: 290px;
	}

	/* .dashboard */

	/* .store-managment */

	.store-managment-main__row {
		flex-direction: column;
	}

	.currency-distr-main {
		max-width: unset;
	}

	.store-managment-main .transactions {
		max-width: unset;
	}

	.store-managment__sidebar-list,
	.store-managment__card,
	.store-managment-main .transactions,
	.currency-distr-main {
		padding: 20px;
	}

	.store-managment__card-value {
		font-size: 26px;
	}

	.store-managment__card-row svg {
		width: 30px;
		height: 30px;
	}

	/* .store-managment */

	/* .store-management-transactions */

	.store-management-transactions__accordion-head {
		padding: 19px;
	}

	.store-management-transactions__accordion-body {
		padding: 10px 19px 19px 19px;
	}

	.store-management-transactions__accordion-content-head>svg {
		width: 38px;
		height: 38px;
		min-width: 38px;
	}

	.store-management-transactions__form {
		flex-direction: column;
		gap: 10px;
	}

	.store-management-transactions__accordion-head {
		position: relative;
	}

	.store-management-transactions__accordion-head-right {
		position: absolute;
		top: 19px;
		right: 19px;
	}

	.store-management-transactions__head {
		gap: 20px;
		margin: 0px 0px 20px 0px;
	}

	.store-management-title {
		font-size: 24px;
	}

	/* .store-management-transactions */

	/* .store-managment-settings */

	.store-managment-settings__info-row {
		flex-direction: column;
	}

	.store-managment-settings__info-box-shop-btn {
		padding: 8px 10px;
		font-size: 14px;
	}

	.store-managment-settings__head {
		margin: 0px 0px 20px 0px;
	}

	.store-managment-settings__info {
		margin: 0px 0px 32px 0px;
	}

	.store-managment-settings__api {
		margin: 0px 0px 32px 0px;
	}

	.slider-point.start-point,
	.slider-point.end-point {
		width: 20px;
		height: 20px;
		border-width: 3px !important;
	}

	.slider-point {
		width: 10px;
		height: 10px;
	}

	.slider-progress {
		height: 60%;
		top: 1px;
	}

	.store-managment-settings__payment-warning {
		margin: 0px 0px 50px 0px;
	}

	.store-managment-settings__info-box {
		padding: 14px;
	}

	/* .store-managment-settings */

	/* .store-managment-conversion */

	.store-managment-conversion__row {
		flex-direction: column;
		gap: 10px;
	}

	.store-managment-conversion__box-icon {
		bottom: -21px;
		top: auto;
		left: 50%;
		right: auto;
		transform: translateX(-50%) translateY(0) rotate(90deg);
	}

	.store-managment-conversion__rows {
		gap: 20px;
	}

	/* .store-managment-conversion */

	/* .store-managment-payment */

	.store-managment-payment__cards {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	/* .store-managment-payment */

	/* .settings */

	.settings__profile-change {
		padding: 11px 19px 11px 15px;
	}

	.settings__profile {
		padding: 19px;
		flex-direction: column;
		align-items: stretch;
		margin: 0px 0px 20px 0px;
	}

	.settings__profile-right>* {
		width: 100%;
		justify-content: center;
	}

	.settings__info {
		padding: 19px;
	}

	.settings__content {
		margin: 0px 0px 20px 0px;
		gap: 20px;
	}

	.settings__security {
		padding: 19px;
	}

	.settings__sessions-head-btn {
		padding: 8px 12px;
	}

	.settings__sessions {
		padding: 19px;
	}

	/* .settings */

	/* modal */

	.modal {
		align-items: end;
		padding: 80px 0px 0px 0px;
	}

	.modal__window {
		max-width: unset;
		padding: 19px;
	}

	.modal-form__btns {
		margin: 0;
	}

	.modal__btn-close {
		top: 10px;
		right: 10px;
	}

	.modal-withdrawal-success__value-sp {
		font-size: 38px;
	}

	/* modal */

	/* .authorization */

	.authorization__logo {
		margin: 0px 0px 40px 0px;
	}

	.authorization__head {
		margin: 0px 0px 30px 0px;
	}

	.authorization__container {
		padding: 0 20px;
	}

	.authorization__content {
		padding: 0;
	}

	.authorization {
		overflow: auto;
		max-height: unset;
		padding: 40px 0;
	}

	.authorization__content {
		height: unset;
	}

	/* .authorization */

	/* loader */

	.loader {
		padding: 40px 20px;
	}

	/* loader */
}

@media(max-width:640px) {
	/* .store-managment */

	.store-managment__cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.store-managment__sidebar-list {
		grid-template-columns: repeat(1, 1fr);
	}

	/* .store-managment */

	/* .settings */

	.settings__security-row,
	.settings__sessions-row {
		flex-direction: column;
		align-items: stretch;
	}

	.settings__security-row-btn-pass,
	.settings__security-row-btn-email,
	.settings__security-row-btn-2fa,
	.settings__security-row-btn-tg {
		width: 100%;
	}

	.modal__title {
		font-size: 20px;
	}

	/* .settings */

	/* .modal */

	.modal-form-code__input {
		width: 50px;
		height: 54px;
		font-size: 24px;
	}

	.modal-code .modal-form__btns {
		flex-direction: column;
		width: 100%;
	}

	.modal-code .modal-form__btns>* {
		width: 100%;
		justify-content: center;
	}

	.modal-form-code {
		gap: 8px;
	}

	.modal-form-code__inputs-line {
		height: 2px;
		min-width: 8px;
	}

	/* .modal */
}


@media(max-width:620px) {
	/* .dashboard */

	.dashboard__head-cards {
		flex-direction: column;
	}

	/* .dashboard */

	/* .store-management-transactions */

	.store-management-transactions__accordion-content-head {
		flex-direction: column;
		align-items: start;
	}

	.store-management-transactions__accordion-head-list {
		flex-direction: column;
		align-items: start;
		gap: 10px;
	}

	.settings__sessions-row-current,
	.settings__sessions-row-complete {
		width: 100%;
	}

	.settings__sessions-head {
		flex-direction: column;
		align-items: stretch;
	}

	/* .store-management-transactions */
}

@media(max-width:520px) {
	/* .create-store */

	.create-store__warning-text {
		font-size: 14px;
	}

	.create-store-request__label-check-text {
		font-size: 14px;
	}

	/* .create-store */

	/* .notification */

	.notification__tabs {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 8px;

		margin: 0px 0px 30px 0px;
	}

	.notification__tab {
		text-align: center;
	}

	.notification__card {
		gap: 16px;
	}

	.notification__card-title {
		font-size: 16px;
	}

	.notification__card-subtitle {
		font-size: 14px;
	}

	.notification__card-img {
		min-width: 40px;
	}

	.notification__card-img svg {
		width: 40px;
		height: 40px;
	}

	.notification__column {
		gap: 24px;
	}

	/* .notification */

	/* .store-managment-settings */

	.store-managment-settings__info-box-shop-btn {
		position: unset;
		transform: unset;
	}

	.store-managment-settings__info-box-shop .store-managment-settings__info-box-content {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	/* .store-managment-settings */
}

@media(max-width:440px) {
	.create-store-domain__tabs {
		flex-direction: column;
		gap: 8px;
	}

	.dashboard__wallet-bottom {
		flex-direction: column;
		gap: 10px;
	}

	.dashboard__wallet-balance {
		flex-direction: column;
		align-items: start;
		gap: 0px;
		margin: 0px 0px 16px 0px;
	}

	.dashboard__wallet-balance-box {
		font-size: 28px;
	}

	.merchants__item {
		flex-direction: column;
		align-items: start;
	}

	.dynamics-receipts__tabs,
	.currency-distribution__tabs {
		gap: 0;
		justify-content: space-between;
		width: 100%;
	}

	.dynamics-receipts__tab,
	.currency-distribution__tab {
		padding: 6px;
	}

	.dynamics-receipts__grpah-balloon {
		bottom: 0;
		right: 0;
	}

	.dynamics-receipts__grpah-time {
		gap: 2px;
	}

	.dynamics-receipts__grpah-time-item {
		font-size: 12px;
	}

	.currency-distr-main__head {
		flex-direction: column;
		align-items: stretch;
	}

	.store-managment__head-top {
		flex-direction: column;
		align-items: stretch;
	}

	/* modal */

	.modal-form-code__inputs {
		gap: 6px;
	}

	.modal-form-code__input {
		width: 40px;
		height: 44px;
		font-size: 20px;
	}

	.modal-form-code {
		gap: 4px;
	}

	/* modal */

}

@media(max-width:400px) {
	/* .notification */

	.notification__card {
		flex-direction: column;
	}

	.transactions__graph-svg {
		max-width: 250px;
	}

	.transactions__graph-name {
		font-size: 32px;
	}

	.transactions__graph-desc {
		font-size: 14px;
	}

	.transactions__graph {
		padding: 100px 50px;
	}

	/* .notification */
}

@media(max-width:380px) {

	.dynamics-receipts__tab,
	.currency-distribution__tab {
		font-size: 12px;
	}

	.dynamics-receipts__grpah-time-item {
		font-size: 10px;
	}
}