/*  Reset styles
    ------------------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none;}

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

a {
	color: #262626;
	outline: none;
	-webkit-transition: 0.3s;
			transition: 0.3s;
}

svg {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
}

button {
	padding: 0;
	font-size: 0;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

img {
	max-width: 100%;
}

/*  fonts
    ------------------------------------------------------- */
@font-face {
	font-family: 'Montserrat-Regular';
	src: url('../fonts/Montserrat-Regular.eot');
	src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		 url('../fonts/Montserrat-Regular.woff') format('woff'),
		 url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-Medium';
	src: url('../fonts/Montserrat-Medium.eot');
	src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Montserrat-Medium.woff2') format('woff2'),
		 url('../fonts/Montserrat-Medium.woff') format('woff'),
		 url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-SemiBold';
	src: url('../fonts/Montserrat-SemiBold.eot');
	src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
		 url('../fonts/Montserrat-SemiBold.woff') format('woff'),
		 url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-Bold';
	src: url('../fonts/Montserrat-Bold.eot');
	src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Montserrat-Bold.woff2') format('woff2'),
		 url('../fonts/Montserrat-Bold.woff') format('woff'),
		 url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-ExtraBold';
	src: url('../fonts/Montserrat-ExtraBold.eot');
	src: url('../fonts/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
		 url('../fonts/Montserrat-ExtraBold.woff') format('woff'),
		 url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*  body
    ------------------------------------------------------- */
html {
	-webkit-text-size-adjust: 100%;
}

html,
body {
	height: 100%;
}

body {
	position: relative;
	color: #262626;
	background-color: #fff;
	font-size: 14px;
	font-family: 'Montserrat-Regular';
	overflow-wrap: anywhere;
}

#page::after {
    content: '';
	position: fixed;
	z-index: 9001;
	top: 0;
	left: 0;
    height: 0;
    width: 0;
    opacity: 0;
	background-color: rgba(39, 39, 39, 0.8);
	-webkit-transition: opacity 0.4s ease-out 0s;
    		transition: opacity 0.4s ease-out 0s;
}

#page.modal-open {
	overflow: hidden;
}

#page.modal-open::after {
    height: 100%;
    width: 100%;
	opacity: 1;
}

.wrapper {
	overflow: hidden;
}

.wrap {
	margin: 0 auto;
	width: 100%;
	max-width: 1180px;
	padding: 0 20px;
	position: relative;
}

.row {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
}

.row2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	-webkit-align-items: center;
			align-items: center;
}

.wrap-items {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
}

.btn,
.btn-cancel {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	height: 50px;
	border-radius: 7px;
	padding: 0 30px;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	font-family: 'Montserrat-SemiBold';
}

.btn {
	color: #fff;
	background: #9A76B8;
}

.btn:hover {
	background: #363740;
}

.btn-cancel {
	margin-left: 10px;
	background: #F6F6F6;
}

.btn-cancel:hover {
	background-color: #e6e6e6;
}

.hidden {
	display: none!important;
}

.link {
	text-decoration: underline;
	font-family: 'Montserrat-Medium';
}

h1, h2, h3, h4, h5, h6 {
	color: #252733;
	line-height: 1.2;
	font-family: 'Montserrat-Bold';
}

h1 {
	font-size: 26px;
}

h2 {
	margin-bottom: 20px;
	font-size: 20px;
}

/*  main
    ------------------------------------------------------- */
.main {
	display: -webkit-flex;
	display: flex;
	min-height: 100vh;
}

/*  sidebar
    ------------------------------------------------------- */
.wrap-sidebar {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	width: 253px;
}

.sidebar {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 255px;
	height: 100vh;
	overflow: hidden;
	overflow-y: auto;
	background: #363740;
}

.sidebar-container {
	min-height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
			flex-direction: column;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	padding: 35px 0;
}

.sidebar-account {
	margin-bottom: 40px;
	padding: 0 20px;
}

.sidebar-account-login {
	margin-bottom: 15px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-family: 'Montserrat-Bold';
}

.sidebar-account-balance {
	border-radius: 7px;
	padding: 10px;
	text-align: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

.sidebar-account-balance-label {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.sidebar-account-balance-value {
	font-size: 20px;
	font-family: 'Montserrat-Bold';
}

.sidebar-nav-link {
	height: 56px;
	padding: 0 20px 0 30px;
	color: #A4A6B3;
	line-height: 1.3;
	font-family: 'Montserrat-SemiBold';
}

.sidebar-nav-link:hover {
	color: #fff;
}

.sidebar-nav-link.active {
	position: relative;
	color: #DDE2FF;
	background-color: rgba(159, 162, 180, 0.08);
}

.sidebar-nav-link.active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #DDE2FF;
}

.sidebar-nav-link-icon {
	margin-right: 20px;
	fill: #60626E;
	-webkit-transition: 0.3s;
			transition: 0.3s;
}

.sidebar-nav-link:hover .sidebar-nav-link-icon {
	fill: #fff;
}

.sidebar-nav-link.active .sidebar-nav-link-icon {
	fill: #DDE2FF;
}

.sidebar-logout {
	margin-top: 40px;
	padding: 0 20px;
}

.sidebar-logout-btn {
	-webkit-justify-content: center;
			justify-content: center;
	height: 40px;
	border-radius: 7px;
	color: #fff;
	background: #c64133;
}

.sidebar-logout-btn:hover {
	background: #e74c3c;
}

/*  content
    ------------------------------------------------------- */
.content {
	-webkit-flex-grow: 1;
			flex-grow: 1;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
			flex-direction: column;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	padding: 0 40px;
}

/*.page {*/
/*	max-width: 900px;*/
/*}*/

.description {
	line-height: 1.5;
}

.description p {
	margin-bottom: 12px;
}

.description p:last-child {
	margin: 0;
}

.form {
	margin: 20px 0 40px;
	padding-left: 40px;
	position: relative;
}

.form-input {
	margin-right: 10px;
	-webkit-flex-grow: 1;
			flex-grow: 1;
}

.form2,
.form3 {
	margin-top: 20px;
}

.hint {
	position: absolute;
	top: 10px;
	left: 0;
	width: 30px;
	height: 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
}

.hint-link {
	width: 28px;
	height: 28px;
	fill: #9A76B8;
}

.hint-link:hover {
	fill: #363740;
}

.hint-error {
	fill: #e74c3c;
}

.hint-success {
	fill: #1d9f51;
}

/*  loader
    ------------------------------------------------------- */
.hint-loader {
	margin: 0 auto;
	position: relative;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: rgba(154, 118, 184, 0.2);
	-webkit-animation: animationLoader .6s linear 0s infinite;
			animation: animationLoader .6s linear 0s infinite;
}

.hint-loader::before,
.hint-loader::after {
	content: '';
	display: block;
	position: absolute;
}

.hint-loader::before {
	border-radius: 0 15px 15px 0;
	height: 30px;
	width: 50%;
	top: 0;
	right: 0;
	background: #9A76B8;
}

.hint-loader::after {
	border-radius: 50%;
	height: 24px;
	width: 24px;
	top: 50%;
	left: 50%;
	background-color: #fff;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}

@-webkit-keyframes animationLoader {
	to {
		-webkit-transform: rotate(360deg);
				transform: rotate(360deg);
	}
}

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

.info-error {
	display: none;
	border-radius: 7px;
	padding: 20px;
	background: #fceaea;
	line-height: 1.5;
}

.info-error-icon {
	margin-right: 20px;
	fill: #e74c3c;
}

.info-error-title {
	margin-bottom: 5px;
	font-family: 'Montserrat-SemiBold';
}

.info-link {
	border-radius: 7px;
	padding: 20px;
	background: #F6F6F6;
	line-height: 1.5;
}

.info-status {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.4;
	font-family: 'Montserrat-Medium';
}

.pre-result {
	margin: 34px 0 20px;
	line-height: 1.5;
}

/*  header
    ------------------------------------------------------- */
.header {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
			align-items: flex-start;
	padding: 20px 0 50px;
}

/*  menu-trigger
    ------------------------------------------------------- */
.menu-trigger {
	display: none;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	margin-right: 20px;
	position: relative;
	width: 30px;
	height: 30px;
}

.menu-trigger > span {
	position: absolute;
	top: 14px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #363740;
}

.menu-trigger > span::after,
.menu-trigger > span::before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #363740;
}

.menu-trigger > span::before {
	top: -8px;
}

.menu-trigger > span::after {
	top: 8px;
}

/*  form UI
    ------------------------------------------------------- */
input[type=text],
input[type=email],
input[type=password],
textarea {
    -webkit-appearance: none;
    		appearance: none;
}

input,
textarea {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: transparent;
	-webkit-box-shadow: none;
			box-shadow: none;
}

input::-moz-placeholder {
	opacity: 1;
	color: #939393;
}

input::-webkit-input-placeholder {
	color: #939393;
}

input:-ms-input-placeholder {
	color: #939393;
}

input::-ms-input-placeholder {
	color: #939393;
}

input::placeholder {
	color: #939393;
}

:invalid {
	box-shadow: none;
}

.input,
.g-recaptcha {
    margin-bottom: 20px;
}

.input-label {
    margin-bottom: 7px;
    display: block;
    font-family: 'Montserrat-Bold';
}

.input-field {
	width: 100%;
	padding: 14px 15px;
	border-radius: 7px;
	border: 2px solid #DADDE2;
	font-size: 14px;
	line-height: 18px;
	font-family: 'Montserrat-Regular';
	-webkit-transition: 0.3s;
			transition: 0.3s;
}

.input-field.error {
	border-color: #e74c3c;
}

.input-field:focus {
	border-color: #9A76B8;
}

.input-text {
	height: 200px;
	line-height: 1.5;
	resize: none;
}

#upload {
	display: none;
}

/*  history orders
    ------------------------------------------------------- */
.table {
	margin-top: 40px;
	width: 100%;
	text-align: left;
	line-height: 1.5;
}

.table-row:nth-child(2n + 1) {
    background-color: #FAFAFA;
}

.table-head-col {
	padding: 20px 15px;
	font-family: 'Montserrat-SemiBold';
}

.table-col {
	padding: 20px 15px;
	word-break: break-all;
}

.table-col:nth-child(1) {
	min-width: 105px;
}

.table-col:nth-child(2) {
	min-width: 205px;
}

.table-col:nth-child(3) {
	min-width: 112px;
}

.table-col:nth-child(4) {
	/*min-width: 104px;*/
}

.table-col:nth-child(5) {
	min-width: 165px;
}

.table-col:nth-child(6) {
	min-width: 110px;
}



.history-empty {
	margin-top: 40px;
	line-height: 1.5;
	font-family: 'Montserrat-Medium';
}

/*  contacts
    ------------------------------------------------------- */
.contacts-item {
    margin-bottom: 25px;
}

.contacts-item:last-child {
	margin: 0;
}

.contacts-item-label {
	margin-bottom: 5px;
	font-family: 'Montserrat-SemiBold';
}

.contacts-item-value {
	line-height: 1.5;
}

.contacts-item-telegram {
	margin-top: 8px;
	display: block;
	width: 25px;
	height: 22px;
}

/*  FAQ
    ------------------------------------------------------- */
.faq {
    max-width: 800px;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-item:last-child {
	margin: 0;
}

.faq-question {
    position: relative;
    display: block;
	border-radius: 40px;
	padding: 20px 70px 20px 30px;
	background: #F7F8FA;
	font-size: 16px;
	line-height: 1.3;
	font-family: 'Montserrat-Medium';
}

.faq-question-icon {
	position: absolute;
    top: 50%;
    right: 20px;
	width: 40px;
	height: 40px;
	padding: 8px;
	border-radius: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    		transform: translateY(-50%) rotate(0);
	-webkit-transition: all ease-in-out .3s;
			transition: all ease-in-out .3s;
}

.faq-question.active .faq-question-icon {
    -webkit-transform: translateY(-50%) rotate(-45deg);
			transform: translateY(-50%) rotate(-45deg);
}

.faq-question:hover .faq-question-icon {
	background-color: rgba(0, 0, 0, 0.04);
}

.faq-question-icon > svg {
	position: absolute;
    top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
    		transform: translateX(-50%) translateY(-50%);
}

.faq-answer {
	display: none;
	padding: 20px 20px 40px 30px;
	line-height: 1.5;
}

/*  prices
    ------------------------------------------------------- */
/*.prices {*/
/*	max-width: 900px;*/
/*}*/

.prices-section {
	margin-bottom: 40px;
}

.prices-section:last-child {
	margin: 0;
}

.prices-list {
	margin-bottom: 20px;
	border-radius: 7px;
	padding: 20px;
	background: #F6F6F6;
}

.prices-list-item {
	margin-bottom: 25px;
}

.prices-list-item:last-child {
	margin: 0;
}

.prices-list-item-label {
	margin-bottom: 7px;
	font-family: 'Montserrat-SemiBold';
}

.prices-list-item-value {
    line-height: 1.5;
}

.prices-calculate {
	display: none;
	margin-top: 20px;
	line-height: 1.5;
}

/*  copyright page
    ------------------------------------------------------- */
.copyright-file {
	margin-top: 20px;
	line-height: 1.5;
}

.copyright-status {
	margin-top: 28px;
	position: relative;
	padding: 12px 0 0 40px;
	font-size: 20px;
	line-height: 1.4;
	font-family: 'Montserrat-Medium';
}

/*  seo
    ------------------------------------------------------- */
.counter {
	margin: 20px 0 40px;
	line-height: 1.5;
}

.counter span {
	font-family: 'Montserrat-SemiBold';
}

.counter .error {
	color: #e74c3c;
}

/*  footer
    ------------------------------------------------------- */
.footer {
	margin-top: 40px;
	border-top: 1px solid #DFDFDF;
	padding: 20px 0;
	font-size: 12px;
}

.footer-links {
	margin-bottom: 20px;
	-webkit-justify-content: center;
			justify-content: center;
}

.footer-links-item:first-child {
	margin-right: 20px
}

.footer-copyright {
	text-align: center;
	color: #787878;
}

/*  modal window
    ------------------------------------------------------- */
.modal-box {
	display: none;
    height: 100%;
    left: 0;
    overflow: hidden;
	overflow-y: auto;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
	z-index: 10000;
  	-webkit-animation-fill-mode: both;
    		animation-fill-mode: both;
}

.modal-box::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
	height: 100%;
}

.modal-section {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.modal {
    position: relative;
	z-index: 2;
    width: 100vw;
	max-width: 600px;
	border-radius: 7px;
	text-align: left;
	padding: 40px 20px;
	background-color: #fff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	fill: #262626;
}

.modal-title {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.2;
}

.modal-description {
	line-height: 1.5;
}

.modal-description span {
	font-family: 'Montserrat-Bold';
}

.modal-action {
	margin-top: 40px;
}

/*  modal login window
    ------------------------------------------------------- */
.modal-login {
	max-width: 480px;
}

.modal-login-container {
	margin: 0 auto;
	max-width: 300px;
}

.modal-switch {
	margin-bottom: 40px;
	position: relative;
}

.modal-switch::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #e6e6e6;
}

.modal-switch-item {
	position: relative;
	padding: 0 25px 12px;
	color: #ccc;
	font-size: 20px;
	font-family: 'Montserrat-Bold';
}

.modal-switch-item:last-child {
	margin: 0;
}

.modal-switch-item.active,
.modal-switch-item:hover {
	color: #252733;
}

.modal-switch-item::before {
	opacity: 0;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
}

.modal-switch-item.active::before {
	opacity: 1;
}

.modal-tab {
	display: none;
}

.modal-tab.active {
	display: block;
}

.modal-login-btn {
	width: 100%;
}

.restore-password-label {
	margin: 40px 0 10px;
	text-align: center;
	color: #787878;
	font-size: 12px;
}

.restore-password-support {
	text-align: center;
	font-size: 12px;
}

.personal-data {
	margin-bottom: 20px;
	color: #787878;
	font-size: 12px;
	line-height: 1.5;
}

/*  page 404
    ------------------------------------------------------- */
.page404 {
	margin: 60px 0;
	text-align: center;
}

.page404-title {
	margin-bottom: 10px;
	font-size: 20px;
	font-family: 'Montserrat-Bold';
}

.page404-error {
	font-size: 200px;
	color: #e74c3c;
	font-family: 'Montserrat-ExtraBold';
}

/*  page payment status
    ------------------------------------------------------- */
.pagePayment {
	margin: 60px 0;
	text-align: center;
}

.pagePayment-title {
	margin-top: 20px;
	font-size: 20px;
	font-family: 'Montserrat-Bold';
}

.pagePayment-success {
	fill: #1d9f51;
}

.pagePayment-error {
	fill: #e74c3c;
}

/*  modal payment window
    ------------------------------------------------------- */
.modal-payment {
	margin-top: 40px;
}

.modal-payment-item {
	margin-right: 20px;
	position: relative;
	width: calc((100% - 20px) / 2);
	max-width: 260px;
	/*height: 100px;*/
	border-radius: 7px;
	padding: 20px;
	background: #F6F6F6;
}

.modal-payment-item:last-child {
	margin: 0;
}

.modal-payment-item::before {
	opacity: 0;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 7px;
	border: 1px solid #9A76B8;
	-webkit-transition: 0.3s;
			transition: 0.3s;
}

.modal-payment-item:hover::before {
	opacity: 1;
}

/*  animation modal form
    ------------------------------------------------------- */
@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
			animation-name: zoomIn;
	-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
}

@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	to {
		opacity: 0;
	}
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	to {
		opacity: 0;
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
			animation-name: zoomOut;
	-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
}

/*  Popup info
    ------------------------------------------------------- */
.popup-info {
	position: fixed;
	z-index: 90006;
	top: 20px;
	left: 20px;
	width: calc(100vw - 40px);
	max-width: 400px;
	border-radius: 3px;
	padding: 20px 40px 20px 80px;
	color: #fff;
	background: #1d9f51;
	visibility: visible;
	-webkit-animation-name: bounceInDown;
			animation-name: bounceInDown;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
			animation-timing-function: ease-in-out;
}

.popup-info p {
	line-height: 1.5;
}

.popup-info > svg {
	position: absolute;
	left: 40px;
	width: 26px;
	height: 26px;
	fill: #fff;
}

.popup-info-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.4);
}

.popup-info-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 14px;
	height: 14px;
	fill: #fff;
}

.popup-error {
	background: #e74c3c;
}

/*  Modal window upload info
    ------------------------------------------------------- */
.popup-upload-info {
	position: fixed;
	z-index: 90006;
	top: 20px;
	left: 20px;
	width: calc(100vw - 40px);
	max-width: 400px;
	padding: 15px;
	background-color: #f5f7fd;
	border-radius: 3px;
	font-size: 14px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	visibility: visible;
	-webkit-animation-name: bounceInDown;
			animation-name: bounceInDown;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
			animation-timing-function: ease-in-out;
}

.popup-upload-info-title {
	margin-bottom: 20px;
	font-size: 16px;
	font-family: 'Montserrat-Medium';
}

.popup-upload-info-progress {
	margin-bottom: 10px;
	font-size: 12px;
}

.popup-upload-info-scale {
	width: 0;
	height: 3px;
	border-radius: 3px;
	background-color: #6041D9;
}

@-webkit-keyframes bounceInDown {
	from, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
				animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
				transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
				transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
				transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
				transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
				transform: none;
	}
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
				animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
				transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
				transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
				transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
				transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
				transform: none;
	}
}


.button-group {
    display: none;
    position: absolute;
    z-index: 100;
    top: -3px;
    left: 0;
    font-size: 0;
    width: 100px;
    max-height: 400px;
    text-align: left;
    background: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    overflow-y: auto;
}


.button-group > a {
    display: block;
    padding: 12px 30px;
    color: #000;
    font-size: 16px;
    line-height: 20px;
}

.button-group > a:hover {
    background: #e5e5e5;
}

.modal-overlay {
    font-family: 'Montserrat-Medium';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100001;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.modal-close-betatransfer {
    position: absolute;
    top: 20px;
    right: 20px;
    fill: #262626;
}

.currency-option {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd4d4;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.currency-option:hover, .currency-option.selected {
    background: #d5d5d5;
}

.currency-option img {
    vertical-align: middle;
    margin-right: 10px;
    width: 26px;
}

.submit-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #9A76B8;
    color: #fff;
    border-radius: 5px;
}

.submit-btn:hover{
    background: #363740;
}

.strong{
    font-family: 'Montserrat-Bold';
}

.track-text.is-ok {
    color: #1f9d55; /* зеленый */
    font-weight: 600;
}


