@charset "utf-8";


html, body {
	overflow-x: hidden;
	overflow-y: overlay;
	margin: 0!important;
}
body {
	background-color: #EEF3F7;
}
img.lazy {
	height: inherit;
	width: inherit;
	object-fit: cover;
	object-position: bottom;
	opacity: 0;
	transition: opacity .2s;
}
img.lazy.loaded {
	opacity: 1;
}
picture {
	width: 100%;
	height: 100%;
}


.Section {
	padding: 0 0 calc(80px - 64px) 0;
	position: relative;
	z-index: 1;
}
.Section__in {
	max-width: var(--width);
	margin: 0 auto;
	padding: 0 var(--indent);
}
@media (max-width: 500px) {
	.Section__in {
		width: 100%;
	}
}


.Section--form {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
	padding-bottom: 100px;
	min-height: calc(100vh - var(--header));
	box-sizing: border-box;
}
.Section__form {
	--width: 580px;
	--padding-vertical: 100px;

	display: block;
	border-radius: 8px;
	background-color: #FFFFFF;
	overflow: visible;
	position: relative;
	/* min-height: 422px; */
	width: var(--width);
}
.Login__form {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: inherit;
	padding: 64px var(--padding-vertical);
	box-sizing: border-box;
}
.Login__panels {
	display: flex;
	align-items: stretch;
	position: relative;
	height: 100%;
	width: 100%;
	box-sizing: content-box;
	margin-right: calc(var(--padding-vertical) * -1);
	margin-left: calc(var(--padding-vertical) * -1);
	padding-right: var(--padding-vertical);
	padding-left: var(--padding-vertical);
	overflow: visible;
	flex-grow: 1;
}
.Login__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: translateX(var(--padding-vertical));
	visibility: hidden;
	pointer-events: none;
	opacity: 0;
	z-index: 1;
}
.Login__panel--active {
	position: relative;
	visibility: visible;
	pointer-events: all;
	opacity: 1;
	transform: translateX(0);
	z-index: 5;
	transition: transform .4s, opacity .2s;
}
.Login__content {
	display: flex;
	flex-direction: column;
	max-height: 100%;
	width: inherit;
	height: fit-content;
}
.Login__content-header {
	color: #2D2D2E;
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
}
.Login__content-header + * {
	margin-top: 24px;
}
.Login__content-text {
	color: #2D2D2E;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}
.Login__content-text span {
	font-weight: 600;
}
.Login__content-text + * {
	margin-top: 24px;
}
.Login__content-header__button {
	display: block;
	padding: 11px 16px;
	flex-shrink: 0;
	position: relative;
	border-radius: 8px;
	border: 1px solid;
	border-color: #8A989D;
	color: #8A989D;
	background: transparent;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
	outline: none;
	cursor: pointer;
	user-select: none;
	transition: border-color .2s, color .2s;
	margin-left: var(--column-indent);
}
.Login__content-header__button:hover {
	border-color: #a3b4bb;
	color: #a3b4bb;
}
.Login__content-header__button:active {
	border-color: #727e81;
	color: #727e81;
}
.Login__content-form {
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 16px;
}
.Login__content-form > * {
	grid-column: span 1;
	margin: unset!important;
	width: 100%;
	height: 56px;
	box-sizing: border-box;
}
#confirmation.Login__panel .Login__content-form {
	display: grid;
	grid-template-columns: repeat(4, calc((100% - 20px * 3) / 4));
	grid-template-rows: min-content;
	grid-gap: 20px;
}
#confirmation.Login__panel .Login__content-form .order-form-input-placeholder {
	opacity: 0;
}
#confirmation.Login__panel .Login__content-form .order-form-input {
	padding: 18px 24px;
	line-height: calc(56px - 18px * 2);
	text-align: center;
}
.Login__content-alert {
	color: #C02739;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	margin-top: 8px;
}
.Login__content-alert:empty {
	display: none;
}
.Login__content-actions {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 40px;
}
.Login__content-actions .Button {
	flex-shrink: 0;
	box-sizing: border-box;
	width: 100%;
	margin-top: 12px;
	height: 48px;
}
.Login__content-actions .Button--timeout {
	cursor: not-allowed;
	background: #8A949D;
	color: #FFFFFF;
	box-shadow: unset!important;
}
.Login__content-actions__terms {
	color: #8A989D;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
	margin-top: 12px;
}
.Login__content-actions__terms a {
	color: #1E8DFB;
}
.Login__content-actions > *:first-child {
	margin-top: 0px;
}
#loading.Login__panel,
#success.Login__panel,
#error.Login__panel {
	height: auto;
	bottom: 0;
}
#loading.Login__panel .Login__content,
#success.Login__panel .Login__content,
#error.Login__panel .Login__content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#loading.Login__panel .Login__content-header,
#success.Login__panel .Login__content-header,
#error.Login__panel .Login__content-header {
	text-align: center;
}
#loading.Login__panel .Login__content-text,
#success.Login__panel .Login__content-text,
#error.Login__panel .Login__content-text {
	text-align: center;
}
.Login__content-spinner {
	display: block;
}
.Login__content-spinner svg {
	display: block;
	--button_icon: 50px;
	width: var(--button_icon);
	height: var(--button_icon);
	animation: purchase-spinner .7s linear infinite;
	transform-origin: 50% 50%;
	color: #0072BC;
	-webkit-transform: rotate(0deg) scale(1) translate3d(0, 0, 0);
	transform: rotate(0deg) scale(1) translate3d(0, 0, 0);
	will-change: transform;
}
.Login__content-spinner + .Login__content-header {
	text-align: center;
	margin-top: 12px;
}
@keyframes purchase-spinner {
	from {
		-webkit-transform: rotate(0deg) scale(1) translate3d(0, 0, 0);
		transform: rotate(0deg) scale(1) translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: rotate(360deg) scale(1) translate3d(0, 0, 0);
		transform: rotate(360deg) scale(1) translate3d(0, 0, 0);
	}
}
@-webkit-keyframes purchase-spinner {
	from {
		-webkit-transform: rotate(0deg) scale(1) translate3d(0, 0, 0);
		transform: rotate(0deg) scale(1) translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: rotate(360deg) scale(1) translate3d(0, 0, 0);
		transform: rotate(360deg) scale(1) translate3d(0, 0, 0);
	}
}
@media (max-width: 1200px) {
	.Section--form {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.Login__content-header {
		font-size: 28px;
		line-height: 34px;
	}
}
@media (max-width: 768px) {
	.Section--form {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.Section__form {
		--width: 508px;
		--padding-vertical: 64px;
	}
	.Login__form {
		padding: 40px var(--padding-vertical);
	}
	.Login__content-header {
		font-size: 24px;
		line-height: 30px;
	}
	.Login__content-text {
		font-size: 14px;
		line-height: 18px;
	}
	.Login__content-alert {
		font-weight: 400;
		line-height: 18px;
	}
}
@media (max-width: 500px) {
	.Section--form {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.Section__form {
		--width: 100%;
		--padding-vertical: 24px;
	}
	.Login__form {
		padding: 40px var(--padding-vertical);
	}
	#confirmation.Login__panel .Login__content-form {
		grid-template-columns: repeat(4, calc((100% - 12px * 3) / 4));
		grid-gap: 12px;
	}
	#confirmation.Login__panel .Login__content-form .order-form-input {
		padding: 18px 12px;
	}
}