@charset "utf-8";
@font-face {
		font-family: 'Neue Plak';
		src: url('../fonts/neueplak-light.woff') format('woff'), url('../fonts/neueplak-light.ttf') format('truetype');
		font-weight: 300;
		font-style: normal;
		font-display: swap;
}
@font-face {
		font-family: 'Neue Plak';
		src: url('../fonts/monotype__-_neue_plak_semibold.woff') format('woff'), url('../fonts/monotype__-_neue_plak_semibold.ttf') format('truetype');
		font-weight: 600;
		font-style: normal;
		font-display: swap;
}
@font-face {
		font-family: 'Neue Plak';
		src: url('../fonts/monotype__-_neue_plak_bold.woff') format('woff'), url('../fonts/monotype__-_neue_plak_bold.ttf') format('truetype');
		font-weight: bold;
		font-style: normal;
		font-display: swap;
}
:root {
		--font: "Neue Plak", -apple-system, system-ui, "sans-serif";
		--side-padding: 32px;
}
@media only screen and (min-width: 840px) {
		:root {
				--side-padding: 57px;
		}
}
html, body {
		height: 100%;
		box-sizing: border-box;
		text-rendering: optimizeLegibility !important;
		-webkit-font-smoothing: antialiased;
}
body {
		margin: 0;
		padding: 0;
		background: #551e5f;
		font: 300 12px var(--font);
		color: #fff;
		-webkit-text-size-adjust: none;
		display: flex;
		flex-direction: column;
}
*, *:before, *:after {
		box-sizing: border-box;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
form, fieldset {
		margin: 0;
		padding: 0;
		border: 0;
}
input::-ms-clear {
		display: none;
}
button::-moz-focus-inner {
		border: 0;
}
textarea {
		resize: none;
}
video {
		-webkit-mask-image: -webkit-radial-gradient(white, black);
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
}
header, nav, section, article, aside, footer, menu, time, figure, figcaption, main {
		display: block;
}
img, svg, picture {
		border: 0;
		vertical-align: top;
}
a {
		user-select: none;
		color: inherit;
		cursor: pointer;
		outline: none;
		text-decoration: underline;
}
.mainwrap {
		flex: 1 0 auto;
		width: 100%;
		position: relative;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		background: url("../img/p66_qr_bg-1.jpg") no-repeat 50% 50%;
		background-size: cover;
		gap: 32px;
		padding-bottom: 80px;
}
.container {
		flex: 0 0 auto;
		width: 100%;
		margin: 0 auto;
		max-width: 834px;
		padding: 0 var(--side-padding);
}
.popup {
		flex: 0 0 auto;
		width: 100%;
		max-width: calc(408px + var(--side-padding) * 2);
		padding: 0 var(--side-padding);
		display: flex;
		flex-direction: column;
		margin: auto;
}
.popup > * {
		flex: 0 0 auto;
		width: 100%;
}
.popup .bottom {
		padding-top: 52px;
		display: flex;
		align-items: center;
		justify-content: center;
}
.popup .top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 28px;
}
.popup .user {
		flex: 0 0 auto;
		text-transform: uppercase;
		position: relative;
		padding-right: 24px;
}
.popup .user:after {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 16px;
		height: 16px;
		background: url("../img/user.svg") no-repeat 50% 50%;
		background-size: contain;
		margin: -8px 0;
}
.popup .close {
		cursor: pointer;
		user-select: none;
		flex: 0 0 auto;
		width: 24px;
		height: 24px;
		position: relative;
		background: url("../img/cross-small.svg") no-repeat 50% 50%;
		background-size: contain;
}
.popup .close:before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		margin: -16px;
}
.popup .center {
		margin-top: auto;
		margin-bottom: auto;
		display: flex;
		flex-direction: column;
		gap: 27px;
}
.popup .center > * {
		flex: 0 0 auto;
		width: 100%;
}
.input {
		position: relative;
}
.input input, .input select, .input textarea, .input .label, .jcf-select-text {
	font: 300 21px Arial, -apple-system, system-ui, "sans-serif";
	color: #000;
	background: #fff;
	border: 1px solid #fff;
	outline: none;
	border-radius: 15px;
	box-shadow: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	padding: 9px 16px;
	position: relative;
}
.input input.invalid {
	border: 1px solid red;
    outline: 1px solid #ff000050;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
		opacity: 1;
		color: #919396;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
		opacity: 1;
		color: #919396;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
		opacity: 1;
		color: #919396;
}
.jcf-option-placeholder {
		color: #919396;
}
.input .label {
		position: absolute;
		top: 0;
		left: 0;
		pointer-events: none;
		color: #919396;
		border: 0;
		background: none;
		pointer-events: none;
		z-index: 2;
		border: 0;
		backface-visibility: hidden;
		transform: scale(1);
		transform-origin: -17px -54px;
		transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
		display: none;
}
.input input:focus ~ .label, .input input:not(:placeholder-shown) ~ .label {
		transform: scale(0.57);
		font-weight: normal;
		color: #fff;
}
.input .input-invalid-info {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		pointer-events: none;
		margin: 8px 0 0 0;
		padding: 0 0 0 24px;
		line-height: 16px;
		transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
		opacity: 0;
}
.input .input-invalid-info:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 16px;
		height: 16px;
		background: url("../img/alert-fill.svg") no-repeat 50% 50%;
}
.input .invalid ~ .input-invalid-info, .input .jcf-select-invalid ~ .input-invalid-info {
		opacity: 1;
}
.select-state {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
}
.select-state > *:nth-child(1) {
		width: calc(100% - 112px);
}
.select-state > *:nth-child(2) {
		width: 80px;
}
.input select {
		background-image: url("../img/angle-small-down.svg");
		background-repeat: no-repeat;
		background-size: 16px auto;
		background-position: 100% calc(100% - 4px);
}
.jcf-select-text:after {
		content: '';
		position: absolute;
		width: 16px;
		height: 16px;
		right: 0;
		bottom: 4px;
		background: url("../img/angle-small-down.svg") no-repeat 50% 50%;
		background-size: contain;
}
.jcf-drop-active .jcf-select-text:after {
		transform: scale(1, -1);
}
.jcf-select {
		display: block;
		position: relative;
}
.jcf-select select {
		cursor: pointer;
		z-index: 5;
}
.jcf-select-text {
		cursor: pointer;
		user-select: none;
}
.jcf-select-drop {
		background: #fff;
		font: 600 15px var(--font);
		text-align: left;
		color: #000;
		border-style: solid;
		border-color: #fff;
		border-radius: 15px;
		border-width: 1px 0;
		box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.20);
		z-index: 1000;
}
.jcf-list-content {
		display: block;
		overflow: hidden;
		overflow-y: auto;
		max-height: 40vh !important;
}
.jcf-list-content {
		scrollbar-color: #695FE6 #fff;
		scrollbar-width: thin;
}
.jcf-list-content::-webkit-scrollbar {
		width: 12px;
}
.jcf-list-content::-webkit-scrollbar-track {
		background-color: #fff;
}
.jcf-list-content::-webkit-scrollbar-thumb {
		border-radius: 6px;
		background: #695FE6;
		border: 4px solid #fff;
}
.jcf-select-drop ul, .jcf-select-drop li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.jcf-select-drop ul {
		padding: 8px 0;
}
.jcf-select-drop .jcf-option {
		display: block;
		cursor: pointer;
		user-select: none;
		padding: 8px 16px;
}
.jcf-select-drop .jcf-option-placeholder {
		display: none !important;
}
.jcf-select-drop .jcf-option.jcf-selected {
		opacity: 0.5;
		cursor: default;
}
.btn {
		-webkit-appearance: none;
		cursor: pointer;
		user-select: none;
		outline: none;
		box-shadow: 0 0 20px #fff;
		text-decoration: none;
		font: 600 22px var(--font);
		display: inline-flex;
		vertical-align: top;
		align-items: center;
		justify-content: center;
		padding: 0 24px;
		flex: 0 0 auto;
		max-width: 100%;
		min-width: 222px;
		height: 54px;
		text-align: center;
		color: #fff;
		border-radius: 15px;
		border: 0;
		background: #990000;
		transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
		transform: translate3d(0, 0, 0);
}
.btn[disabled] {
		color: #bbb;
		background: #660000;
}
@media (pointer:fine) {
		.btn:hover {
				box-shadow: 0 0 30px #fff;
				transform: translate3d(0, -1px, 0);
		}
}
.head {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 36px 0;
}

.head img {
    width: 90%;
    max-width: 100%;
    height: auto;
    transform: none;
}
.foot {
		flex: 0 0 auto;
		width: 100%;
		overflow: hidden;
		border-top: 12px solid #dcfae6;
		font-size: 24px;
		line-height: 1.1;
		padding: 40px 0;
}
.foot .container {
		display: flex;
		align-items: flex-end;
		gap: 12px;
}
.foot img {
		flex: 0 0 auto;
		width: auto;
		height: auto;
		max-width: 50%;
		max-height: 130px;
		transform: translate3d(0, 7%, 0);
}
.form-check {
		display: inline-block;
		vertical-align: top;
		flex: 0 0 auto;
		max-width: 100%;
		text-align: left;
		font-weight: bold;
		font-size: 15px;
		line-height: 1;
		padding-left: 16px;
		position: relative;
		cursor: pointer;
		user-select: none;
		margin: 30px 0;
		left: 5px;
}
.form-check input {
		position: absolute;
		transform: scale(0);
		opacity: 0;
}
.form-check input + span {
		position: absolute;
		top: 50%;
		left: -6px;
		width: 21px;
		height: 21px;
		border-radius: 50%;
		background: #fff;
		border: 3px solid #fff;
		transform: translate3d(-50%, -50%, 0);
		transition: border 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.form-check input + span:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		margin: 3px;
		border-radius: 50%;
		background: #990000;
		transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
		opacity: 0;
}
.form-check input:checked + span {
		border-color: #990000;
}
.form-check input:checked + span:before {
		opacity: 1;
}