@import 'reset.min.css';
@import 'font.css';
@import 'rtl.css';

html,
body {
	height: 100%;
}

body {
	font-family: 'Inter', sans-serif;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #ffeceb;
}

button,
input,
textarea {
	font-family: 'Inter', sans-serif;
}

input:-moz-autofill,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	background: #fff !important;
}

form * {
	outline: none;
}

/** --- General classes --- **/
.container {
	width: 100%;
	max-width: 1320px;
	padding: 0 30px;
	margin: 0 auto;
}

.mt-35 {
	margin-top: 35px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-15 {
	margin-top: 15px;
}

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.hidden {
	display: none !important;
}

.no-border {
	border: none !important;
}

.link {
	color: inherit;
	border-bottom: 1px solid currentColor;
}

.btn-gray {
	width: 100%;
	display: block;
	border-radius: 5px;
	padding: 14px 30px 12px;

	color: #fff;
	background: #777;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;

	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.btn-gray:hover {
	background: #7e7e7e;
}

.btn-billing {
	padding-top: 11px;
	padding-bottom: 11px;
}

.btn-sign {
	display: block;
	margin: 25px auto;
	width: 200px;
	height: 50px;
	font-size: 24px;
	line-height: 24px;
	color: #000;
}
/** --- General classes --- **/

/** --- Main classes --- **/
.header {
	width: 100%;
	height: 70px;
	padding: 0 30px;
	background: #fff;

	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.header__burger {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.header__burger-inner {
	width: 100%;
	height: 100%;
	position: relative;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__burger img {

	display: inline-block;
	-webkit-transition: opacity .15s, -webkit-transform .21s ease-out;
	transition: opacity .15s, -webkit-transform .21s ease-out;
	-o-transition: opacity .15s, transform .21s ease-out;
	transition: opacity .15s, transform .21s ease-out;
	transition: opacity .15s, transform .21s ease-out, -webkit-transform .21s ease-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.header__burger.show .header__burger_open {
	opacity: 0;
	visibility: hidden;
}

.header__burger.show .header__burger_close {
	opacity: 1;
	visibility: visible;
}

.header__burger_open {
	max-width: 15px;
}

.header__burger_close {
	opacity: 0;
	visibility: hidden;
	will-change: transform;
	max-width: 14px;
}

.header__burger_close:hover {
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	-ms-transform: translate(-50%, -50%) rotate(180deg);
	transform: translate(-50%, -50%) rotate(180deg);
}

.header__logo {
	display: block;
	max-width: 88px;
}

.header__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__action {
	width: 24px;
	height: 24px;
	margin: 0 20px;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.header__line {
	width: 1px;
	height: 26px;
	background: #d0d0d0;
	display: inline-block;
}

.header__search {
	max-width: 15px;
}

.header__mail {
	max-width: 17px;
}

.header__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.header__btn {
	padding: 4px 13px;
	border: 1px solid transparent;
	border-radius: 2px;

	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;

	-webkit-transition: all .2s ease-out;

	-o-transition: all .2s ease-out;

	transition: all .2s ease-out;
}

.header__btn.outline {
	color: #fff !important;
	background: #102039;
	/*border-color: #ECF3F7;*/
}

/*.header__btn.outline:hover {*/
/*	color: #fff;*/
/*	background: #ECF3F7;*/
/*}*/

.header__btn.filled {
	color: #fff !important;
	background: #102039;
}

/*.header__btn.filled:hover {*/
/*	background: #ECF3F7;*/
/*}*/

.header__profile {
	width: 24px;
	height: 80px;
	padding: 0 38px;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	border-right: 1px solid rgba(255, 255, 255, 0.25);

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header__profile img {
	max-width: 16px;
	display: inline-block;
}

.nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-right: 15px;
}

.nav__link {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #000;
}

.modal {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);

	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 100;
	overflow-y: auto;
	overflow-x: hidden;
	visibility: hidden;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.modal.pin,
.modal.open {
	opacity: 1;
	visibility: visible;
}

.modal.white {
	background: #ebebeb;
}

.modal__inner {
	min-height: 100vh;
	padding: 30px;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.modal__close {
	width: 16px;
	height: 16px;
	cursor: pointer;

	position: absolute;
	top: 25px;
	right: 25px;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.modal__close:hover {
	-webkit-transform: scale(1) rotate(180deg);
	-ms-transform: scale(1) rotate(180deg);
	transform: scale(1) rotate(180deg);
}

.modal__close img {
	width: 100%;
	display: inline-block;
}

.form {
	width: 100%;
	max-width: 600px;
	background: #fff;
	border-radius: 10px;
	padding: 40px;

	position: relative;
}

.form input[type="checkbox"],
.form input[type="radio"] {
	display: none;
}

.form.password {
	height: 368px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.form.password .footer__contact {
	padding: 15px 0;
	margin-top: auto;
	margin-bottom: -50px;
	border-top-color: #777;
}

.form.donation {
	padding-top: 50px;
	padding-bottom: 0;
}

.form.donation .footer__contact {
	padding: 15px 0 17px;
	border-top-color: #777;
}

.form.edit-mode input:not([disabled]):not(.error) {
	border-color: #777 !important;
}

.form__logo {
	padding: 5px 0 15px;
	margin-bottom: 35px;
	border-bottom: 1px solid #ebebeb;
}

.form__logo img {
	margin: 0 auto;
}

.form__title {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	text-align: center;
	color: #000;

	margin-bottom: 15px;
}

.form__heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.02em;
	color: #2f2f2f;
}

.form__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000;

	margin-bottom: auto;
}

.form__container {
	position: relative;
	margin-bottom: 25px;
}

.form__container.mb-15 {
	margin-bottom: 15px;
}

.form__container.mb-35 {
	margin-bottom: 35px;
}

.form__label {
	display: block;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.02em;
	font-family: 'Inter', sans-serif;
	color: #777;

	margin-bottom: 10px;
}

.form__input {
	height: 50px;
}

.form__input,
.form__textarea,
.form__custom,
.form__select {
	width: 100%;
	padding: 14px 14px 12px;

	background: #fff;
	border: 1px solid rgba(119, 119, 119, 0.3);
	border-radius: 5px;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	font-family: 'Inter', sans-serif;
	color: #2f2f2f;

	-webkit-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.form__input.error,
.form__textarea.error,
.form__custom.error {
	border-color: #db3b3b;
}

.form__input:not([disabled]):not(:focus):not([readonly]):hover,
.form__textarea:not([disabled]):not(:focus):not([readonly]):hover,
.form__custom:hover {
	border-color: rgba(119, 119, 119, 0.5);
}

.form__input:focus,
.form__textarea:focus {
	border-color: #777;
	/* border-color: rgba(119, 119, 119, 0.7); */
}

.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
	color: #2f2f2f;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
	color: #2f2f2f;
}

.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
	color: #2f2f2f;
}

.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
	color: #2f2f2f;
}

.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
	color: #2f2f2f;
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
	color: #2f2f2f;
}

.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
	color: #2f2f2f;
}

.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
	color: #2f2f2f;
}

.form__input::placeholder,
.form__textarea::placeholder,
.form__input[readonly],
.form__input[disabled] {
	color: #2f2f2f;
}

.form__input[readonly],
.form__input[disabled] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.show-password {
	width: 20px;
	height: 24px;
	cursor: pointer;
	position: absolute;
	top: 48px;
	right: 17px;
	background: url('../img/eye.svg') no-repeat center / contain;
	-webkit-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.show-password.hide {
	background-image: url('../img/eye-hidden.svg');
	-webkit-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.form__item {
	margin-top: 60px;
}

.form__item:first-of-type {
	margin-top: 30px;
}

.form__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.form__col {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
}

.form__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.form__options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 15px;
}

.form__option {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.form__option label {
	/* width: 160px; */
	height: 50px;

	background: #fff;
	border: 1px solid #d6d6d6;
	border-radius: 5px;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	font-family: 'Inter', sans-serif;
	text-align: center;
	color: #2f2f2f;

	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

.form__option label:hover,
.form__option input:checked+label {
	color: #fff;
	background: #102039;
	border-color: #102039;
}

.form__checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form__checkbox label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;

	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	font-family: 'Inter', sans-serif;
	color: #777;

	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form__checkbox label:before {
	content: '';
	width: 12px;
	height: 12px;
	border: 1px solid #777;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	-webkit-transition: background-image .1s linear;
	-o-transition: background-image .1s linear;
	transition: background-image .1s linear;
}

.form__checkbox input:checked+label:before {
	background: url('../img/check.svg') no-repeat center;
}

.form__textarea {
	width: 100%;
	resize: none;
}

.form__custom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;

	margin: 20px 0 15px;
}

.form__custom input[type="text"] {
	width: 100%;
	padding: 0 15px;
	display: inline-block;
	caret-color: #ebebeb;
}

.form__custom input[type="text"]::-webkit-input-placeholder {
	color: #2f2f2f;
	text-align: center;
}

.form__custom input[type="text"]::-moz-placeholder {
	color: #2f2f2f;
	text-align: center;
}

.form__custom input[type="text"]:-ms-input-placeholder {
	color: #2f2f2f;
	text-align: center;
}

.form__custom input[type="text"]::-ms-input-placeholder {
	color: #2f2f2f;
	text-align: center;
}

.form__custom input[type="text"]::placeholder {
	color: #2f2f2f;
	text-align: center;
}

.form__custom * {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	font-family: 'Inter', sans-serif;
	color: #2f2f2f;
}

.form__custom.focus {
	border-color: #777;
}

.form__custom.focus input[type="text"] {
	width: calc(100% - 180px);
}

.form__custom.focus input[type="text"]::-webkit-input-placeholder {
	opacity: 0;
}

.form__custom.focus input[type="text"]::-moz-placeholder {
	opacity: 0;
}

.form__custom.focus input[type="text"]:-ms-input-placeholder {
	opacity: 0;
}

.form__custom.focus input[type="text"]::-ms-input-placeholder {
	opacity: 0;
}

.form__custom.focus input[type="text"]::placeholder {
	opacity: 0;
}

.form__custom.focus .form__currency-wrap,
.form__custom.focus .form__custom-btn {
	opacity: 1;
}

.form__custom.focus .form__currency-wrap {
	pointer-events: all;
}

.form__currency-wrap,
.form__custom-btn {
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.form__custom-btn {
	width: 102px;
	height: calc(100% - 4px);

	color: #fff;
	background: rgba(219, 59, 59, 0.7);
	border-radius: 3px;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;

	position: absolute;
	top: 2px;
	right: 2px;
	z-index: 1;
}

.form__custom-btn.valid {
	color: #fff;
	background: #db3b3b;
	pointer-events: all;
}

.form__custom-btn:hover {
	background: #cf3838;
}

.form__currency-wrap {
	width: 102px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;

	background: #fff;
	border-radius: 5px 0 0 5px;
}

.form__currency-wrap:after {
	content: '';
	width: 1px;
	height: 100%;
	margin-right: -1px; /* bug with width display */
	position: absolute;
	top: 0;
	right: 0;
	background: #777;
}

.form__currency {
	width: 100%;
	height: 100%;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;

	position: relative;
	z-index: 1;
}

.form__currency select {
	display: none;
}

.form__currency h3 {
	margin-right: 5px;
}

.form__currency[data-state="active"] .form__currency-list {
	opacity: 1;
	pointer-events: all;
}

.form__currency-list {
	position: absolute;
	width: 100%;
	top: calc(100% + 5px);
	left: 0;
	opacity: 0;
	z-index: 99;
	pointer-events: none;
	-webkit-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;

	border-top: 0;
	background: #fff;
	border: 1px solid #777;
	border-radius: 5px;
}

.form__currency-list input {
	display: none;
}

.form__currency-list label {
	width: 100%;
	display: block;
	cursor: pointer;

	padding: 14px 15px 12px;
	border-bottom: 1px solid #777;
	-webkit-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

.form__currency-list label:hover {
	color: #fff;
	background: #777;
}

.form__currency-list label:last-child {
	border-bottom: 0;
}

.form__select {
	cursor: pointer;
	position: relative;
	z-index: 10;
}

/* .form__select:after {
	content: "";
	width: 100%;
	height: 100%;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	border-radius: inherit;
	border: 1px solid transparent;
} */

/* .form__select:hover:after {
	border-color: rgba(119, 119, 119, 0.5);
} */

.form__select:hover {
	border-color: rgba(119, 119, 119, 0.5);
}

.form__select h3 {
	width: 100%;
	font-weight: 400;
}

.form__select .form__arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.form__select[data-state="active"] {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/* .form__select[data-state="active"]:after {
	border-color: #777;
	border-bottom: 0;
	-webkit-transition: .01s;
	-o-transition: .01s;
	transition: .01s;
} */

.form__select[data-state="active"] {
	border-color: #777;
	border-bottom-color: transparent;
	-webkit-transition: .01s;
	-o-transition: .01s;
	transition: .01s;
}

.form__select[data-state="active"] .form__select-list {
	opacity: 1;
	pointer-events: all;
}

.form__select.readonly {
	color: #000000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.form__select.readonly:after {
	border-color: rgba(119, 119, 119, 0.3);
}

.form__select-list {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background: #fff;
	border: 1px solid #777;
	border-radius: 0 0 5px 5px;

	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.form__select-list label {
	width: 100%;
	height: 40px;
	padding: 0 14px;
	border-bottom: 1px solid #777;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000;

	cursor: pointer;
	overflow: hidden;
	-webkit-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

.form__select-list label:hover {
	color: #2f2f2f;
	background: rgba(214, 214, 214, 0.5);
}

.form__select-list label:last-child {
	border-bottom: 0;
}

.form__arrow {
	width: 24px;
	height: 24px;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events: none;
}

.form__arrow svg {
	fill: none;
	stroke: #d6d6d6;
	-webkit-transition: all .1s ease-out;
	-o-transition: all .1s ease-out;
	transition: all .1s ease-out;
}

.form__arrow.active svg {
	stroke: #000;
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.form__action {
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #777;

	margin-bottom: 25px;
}

.form__notice {
	margin-top: 15px;
}

.form__notice b {
	font-weight: 700;
}

.form__info {
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	font-family: 'Inter', sans-serif;
	color: #777;
}

.form__info span {
	color: #db3b3b;
}

.form__button {
	width: 100%;
	display: block;
	border-radius: 5px;
	padding: 10px 30px;

	color: #fff;
	background: #102039;

	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.02em;
	text-align: center;

	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.form__button:hover {
	background: #102039;
}

.form__message {
	display: block;

	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	font-family: 'Inter', sans-serif;
	text-align: center;
	color: #db3b3b;

	opacity: 0;
	visibility: hidden;
}

.form__message.show {
	margin-top: 15px;
	opacity: 1;
	visibility: visible;
}

.form__footer {
	margin-top: 20px;

	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	text-align: center;
	color: #000;
}

.form__step {
	height: 100%;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.form__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-bottom: 25px;

	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: #000;
}

.form__view-mode,
.form__edit-mode {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form__view-mode {
	width: 24px;
	height: 24px;
	padding-bottom: 1px;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form__view-mode img {
	max-width: 16px;
	display: inline-block;
}

.form__edit-mode {
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	color: #777;

	padding-bottom: 5px;
	-webkit-transition: all .15s ease;
	-o-transition: all .15s ease;
	transition: all .15s ease;
}

.form__edit-mode:hover {
	color: #000;
}

.form__plan {
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
	color: #777;

	margin: 19px 0 7px;
}

.form__content {
	margin: 50px 0;
}

.form__content.show {
	margin: 25px 0;
}

.form__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 17px;
}

.hero {
	padding: 120px 0 50px;
}

.hero.intro {
	padding-top: 70px;
}

.hero.intro .hero__title {
	color: #fff;
	max-width: 600px;
	margin: 0;
}

.hero.intro .form {
	position: relative;
	top: -60px;
	margin-bottom: -60px;
}

/*.hero__bg-image {*/
/*	width: 100vw;*/
/*	height: 500px;*/
/*	padding: 0 0 50px 0;*/
/*	background: url('../img/bg/magazine.jpg') no-repeat center / cover;*/

/*	display: -webkit-box;*/

/*	display: -ms-flexbox;*/

/*	display: flex;*/
/*	-webkit-box-align: end;*/
/*	    -ms-flex-align: end;*/
/*	        align-items: flex-end;*/
/*	position: relative;*/
/*}*/

.hero__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 60px;
}

.hero__content {
	max-width: 600px;
	padding-top: 30px;
}

.hero__title {
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	color: #252525;

	margin-bottom: 40px;
}

.hero__subtitle {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: #252525;

	margin-bottom: 15px;
}

.hero__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #252525;
}

.hero__text b {
	font-weight: 700;
}

.hero__article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.hero__read-more {
	display: none;
}

.content-block {
	width: 100%;
	max-width: 600px;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;

	background: #fff;
	padding: 40px 40px 64px;
	border-radius: 10px;

	position: relative;
	font-family: 'Inter', sans-serif;
}

.content-block h3 {
	font-weight: 700;
}

.content-block .hero__text {
	color: #000;
	line-height: 24px;
}

.content-block.reset {
	text-align: center;
	background: #fff;
}

.content-block.reset .form__text {
	margin-bottom: 25px;
}

.profile__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #d6d6d6;
}

.profile__nav-btn {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	font-family: 'Inter', sans-serif;
	color: #777;

	margin-right: 40px;
	padding-bottom: 15px;
	-webkit-transition: color .2s linear;
	-o-transition: color .2s linear;
	transition: color .2s linear;
}

.profile__nav-btn:last-of-type {
	margin-right: 0;
}

.profile__nav-btn.active {
	color: #000;
}

.profile__line {
	height: 2px;
	display: block;
	background: #db3b3b;
	position: absolute;
	bottom: -1px;

	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.profile__content {
	padding-top: 50px;
}

.profile__content-item {
	display: none;
}

.profile__content-item.active {
	display: block;
}

.profile__history {
	background: #fff;
	border: 1px solid rgba(119, 119, 119, 0.3);
	border-radius: 5px;
	padding: 20px;
}

.profile__history-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #d6d6d6;
}

.profile__history-item:last-of-type {
	margin-bottom: 20px;
}

.profile__history-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.profile__history-info p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #000;

	margin-bottom: 5px;
}

.profile__history-info b {
	font-weight: 700;
}

.profile__history-info span {
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	color: #777;
}

.profile__link {
	width: 24px;
	height: 24px;

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.profile__link img {
	display: inline-block;
}

.footer {
	margin-top: auto;
}

.footer__contact {
	padding: 15px 0;
	border-top: 1px solid rgba(119, 119, 119, 0.3);

	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__contact img {
	margin: 0 5px 0 0;
}

.footer__contact p {
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;
	font-family: 'Inter', sans-serif;
	color: #777;
}


@media screen and (max-width: 1199.98px) {
	.hero__inner {
		gap: 40px;
	}

	.hero__content {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 45%;
		flex: 1 0 45%;
	}
}

@media screen and (max-width: 991.98px) {
	.header {
		height: 50px;
		padding: 0 15px;
	}

	.header__inner {
		position: relative;
	}

	.header__burger {
		position: absolute;
		right: 0;
	}

	.header__logo {
		max-width: 70px;
	}

	.header__right,
	.header__actions {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

	.header__right {
		gap: 15px;
	}

	.header__action {
		margin: 0 30px 0 15px;
	}

	.header__btn.outline,
	.header__action:last-child {
		display: none;
	}

	.hero {
		padding-bottom: 30px;
	}

	.hero.intro {
		padding-top: 50px;
	}

	.hero.intro .hero__title {
		font-size: 40px;
		line-height: 48px;
		max-width: 345px;
	}

	.hero.intro .form {
		position: static;
		margin: 0;
	}

	.hero__bg-image {
		height: 300px;
		padding-bottom: 30px;
	}

	.hero__inner {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
	}

	.hero__content {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	.hero__subtitle {
		font-size: 19px;
		line-height: 28px;
	}

	.hero__article {
		max-height: 52px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		overflow: hidden;

		position: relative;
		gap: 20px;
	}

	.hero__article:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 25px;
		/*background: -webkit-gradient(linear, left bottom, left top, from(#ffeceb), to(rgba(255, 236, 235, 0)));*/
		/*background: -o-linear-gradient(bottom, #ffeceb 0%, rgba(255, 236, 235, 0) 100%);*/
		background: linear-gradient(360deg, #fff 0%, rgba(255, 236, 235, 0) 100%);
	}

	.hero__article.show {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		max-height: initial;
		overflow: visible;
	}

	.hero__article.show:after {
		display: none;
	}

	.hero__article .hero__text {
		/*display: inherit;*/
	}

	.hero__read-more {
		display: inline-block;

		font-size: 13px;
		font-weight: 400;
		line-height: 16px;
		font-family: 'Inter', sans-serif;
		color: #db3b3b;

		margin-top: 15px;
		-webkit-transition: all .2s ease-out;
		-o-transition: all .2s ease-out;
		transition: all .2s ease-out;
	}

	.hero__read-more:hover {
		color: #c53535;
	}

	.form__options {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 575.98px) {
	.modal__close {
		height: auto;
		max-width: 14px;
		top: 20px;
		right: 20px;
	}

	.form,
	.content-block {
		padding: 35px 30px;
	}

	.form.password {
		height: 320px;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.form.password .form__heading {
		margin-bottom: 5px;
	}

	.form.password .footer__contact {
		margin-bottom: -30px;
	}

	.form__header {
		margin-bottom: 20px;
	}

	.form__title {
		font-size: 28px;
		line-height: 30px;
		margin-bottom: 10px;
	}

	.form__option {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 33.3%;
		flex: 1 1 33.3%;
	}

	/* .form__label {
		font-size: 15px;
	} */

	/* .form__heading {
		font-size: 18px;
		line-height: 28px;
	} */

	/* .form__container {
		margin-bottom: 20px;
	} */

	/* .form__container.mb-35 {
		margin-bottom: 25px;
	} */

	/* .form__input,
	.form__textarea,
	.form__custom,
	.form__select,
	.form__option label {
		height: auto;
		font-size: 14px;
		padding: 12px 12px 10px;
	} */

	/* .form__select-list label {
		height: 45px;
		font-size: 14px;
		padding-left: 12px;
	} */

	.form__footer {
		margin-top: 15px;

		font-size: 13px;
		line-height: 14px;
	}

	.footer__contact {
		padding-bottom: 30px;
	}

	/* .footer__contact p {
		font-size: 12px;
		line-height: 14px;
	} */

	/* .form__container.mb-15 {
		margin-bottom: 10px;
	} */

	/* .form__action {
		font-size: 12px;
		margin-bottom: 20px;
	} */

	.form__message {
		font-size: 14px;
	}

	.hero {
		padding-top: 70px;
	}

	.btn-sign {
		font-size: 16px;
		line-height: 20px;
	}

	.profile__nav-btn {
		font-size: 14px;
		margin-right: 30px;
		padding-bottom: 10px;
	}

	.profile__content {
		padding-top: 40px;
	}
}

@media screen and (max-width: 480.98px) {
	.header {
		height: 60px;
	}

	.header__logo {
		max-width: 88px;
	}

	.header__btn.outline {
		display: block;
	}

	.header__actions,
	.header__burger {
		display: none;
	}

	.hero.intro {
		padding-top: 60px;
	}

	.modal__close {
		max-width: 12px;
		top: 15px;
		right: 15px;
	}

	.modal__inner {
		padding: 30px 15px;
	}

	.container {
		padding: 0 15px;
	}

	.hero__bg-image {
		height: 320px;
		padding-bottom: 10px;
	}

	.hero__title {
		font-size: 40px;
		line-height: 48px;
	}

	/* .hero__subtitle {
		font-size: 14px;
		line-height: 20px;
		padding: 0 5px;
		margin-bottom: 15px;
	} */

	.hero__article {
		gap: 15px;
	}

	/* .form,
	.content-block {
		padding: 25px;
		border-radius: 6px;
	} */

	.form,
	.content-block {
		padding: 30px 15px 22px;
	}

	.form.password {
		height: 300px;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	/* .form__item {
		margin-top: 40px;
	} */

	/* .form__title {
		font-size: 25px;
	} */

	/* .form__text {
		font-size: 13px;
		line-height: 20px;
	} */

	/* .form__container {
		margin-bottom: 15px;
	} */

	/* .form__container.mb-35 {
		margin-bottom: 20px;
	} */

	/* .form__label {
		font-size: 13px;
		margin-bottom: 3px;
	} */

	/* .form__input,
	.form__textarea,
	.form__custom,
	.form__select,
	.form__option label,
	.form__button {
		font-size: 13px;
		padding-top: 8px;
		padding-bottom: 8px;
		border-radius: 3px;
	} */

	/* .form__checkbox label {
		position: relative;
		padding-left: 20px;
	}

	.form__checkbox label:before {
		position: absolute;
		left: 0;
	} */

	/* .form__custom {
		margin-top: 10px;
	} */

	.form__custom.focus input[type="text"] {
		width: calc(100% - 140px);
		padding: 0 10px;
	}

	.form__currency-wrap,
	.form__custom-btn {
		width: 85px;
	}

	.form__currency-list {
		border-radius: 3px;
	}

	.form__currency-list label {
		height: 50px;
		padding: 0 0 0 8px;

		width: calc(100% + 1px);
		left: -1px;

		display: -webkit-box;

		display: -ms-flexbox;

		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.form__select-list label {
		height: 35px;
	}

	.form__arrow {
		width: 18px;
		height: 18px;
	}

	.form__arrow svg {
		max-width: 11px;
	}

	.form__footer {
		font-size: 12px;
		padding: 0 15px;
		margin-top: 12px;
	}

	.form__message {
		font-size: 13px;
		line-height: 13px;
	}

	.form__options {
		gap: 12px;
	}

	.form__options.mb-50 {
		margin-bottom: 30px;
	}

	.form__row {
		gap: 13px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.form__col {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 45%;
		flex: 1 0 45%;
	}

	.show-password {
		width: 18px;
		height: 20px;
		top: 49px;
		right: 14px;
	}

	.form__header {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.form__view-mode {
		width: 20px;
		height: 20px;
		padding-bottom: 5px;
	}

	.form__view-mode img {
		max-width: 14px;
	}

	.form__plan {
		margin: 12px 0 0 0;
	}

	.profile__history-item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 10px;
	}

	.btn-gray {
		font-size: 15px;
		padding: 8px 20px;
		border-radius: 3px;
	}

	.btn-gray.mt-35 {
		margin-top: 20px;
	}
}

@media screen and (max-width: 374.98px) {
	.hero__bg-image {
		height: 300px;
	}

	.hero.intro .hero__title {
		font-size: 35px;
		line-height: 45px;
		max-width: 305px;
	}

	.hero__subtitle {
		font-size: 18px;
		line-height: 27px;
	}

	.form__option label {
		font-size: 15px;
	}

	.form__button {
		font-size: 18px;
		line-height: 28px;
	}
}

@media screen and (max-width: 520px) {
	.profile__item.mySubscriptionBlock .form__label {
		height: 50px;
	}
}