@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);

*,
html {
	margin: 0;
	padding: 0
}

body {
	background-color: #181818;
	color: #fff;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	position: relative
}

.main {
	height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	backdrop-filter: blur(80px);
	padding: 20px 16px;
	overflow: hidden;
	gap: 16px;
	transition: all .8s ease-in-out
}

.question-4,
.question-5,
.question-6,
.question-7,
.start-page {
	gap: 24px
}

.final-page,
.notice,
.question-1,
.question-2,
.question-3,
.question-4,
.question-5,
.question-6,
.question-7 {
	display: none
}

.header {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: center;
	font-weight: 500;
	font-size: 22px;
	line-height: 27px;
	padding-top: 56px;
	gap: 12px;
	width: 50vh;
	max-width: 100%;
	animation: appearance .8s forwards;
	position: relative
}

.header--first {
	padding-top: 36px;
	gap: 19px;
	font-weight: 400;
	font-size: 28px;
	line-height: 34px
}

.header--question {
	font-weight: 400
}

.header--choose {
	padding-top: 0;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	gap: 16px;
	height: 100%
}

.header--choose>p {
	font-style: italic;
	color: #9cf0e1
}

.header--final {
	padding-top: 36px;
	gap: 14px;
	font-weight: 500;
	font-size: 22px;
	line-height: 27px
}

h1 {
	font-weight: 600;
	font-size: 34px;
	line-height: 36px;
	margin: 0 auto
}

.header--first>h1 {
	max-width: 240px;
	border: 5px solid #9cf0e1;
	border-radius: 10px;
	padding: 10px
}

.question-6 h1 {
	font-size: 34px;
	line-height: 36px
}

.header--final>h1 {
	color: #9cf0e1;
	text-transform: uppercase
}

h2 {
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	color: #9cf0e1
}

h3 {
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	color: #9cf0e1
}

.image {
	max-width: calc(100vw - 32px);
	width: 50vh;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	animation: appearance .8s forwards
}

.girl {
	width: 100%;
	height: auto;
	border-radius: 10px
}

.shadow-overlay {
	backdrop-filter: blur(40px);
	display: flex;
	justify-content: center;
	position: relative;
	padding-left: 10%
}

.question {
	position: absolute;
	left: calc(43% - 19px);
	top: calc(50% - 27px)
}

.buttons-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	gap: 10px;
	width: 50vh;
	max-width: calc(100vw - 32px);
	animation: appearance .8s forwards;
    margin-top: 30px;
}

.buttons-block--start {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px
}

.button {
	background: #fc1c7a;
	border: none;
	border-radius: 10px;
	height: 61px;
	color: #fff;
	text-transform: uppercase;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 8px
}

.button:disabled {
	background: #848282
}

.button--no {
	background: #4100f5
}

.button--skip {
	background: #fff;
	color: #000
}

.buttons-block--grid {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.choose-block {
	display: flex;
	flex-direction: column;
	gap: 11px
}

.choose-line {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 10px
}

.choose-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	animation: appearance .8s forwards;
	text-align: center
}

.choose__image {
	width: 174px;
	max-height: 15vh;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer
}

.choose-item--active>.choose__image {
	width: 162px;
	max-height: calc(14vh - 3px);
	height: 138px;
	border: 6px solid #4100f5
}

form {
	display: flex;
	flex-direction: column;
	gap: 16px
}

input {
	border: 1px solid #8f66ff;
	border-radius: 12px;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	padding: 18px 18px 18px 56px;
	background-repeat: no-repeat;
	background-position: center;
	background-position-x: 18px
}

input:focus {
	outline: 0;
	border: 3px solid #4100f5;
	padding: 16px 16px 16px 54px;
	background-position-x: 16px;
	background-position-y: 17.5px
}

footer {
	text-align: center;
	display: block;
	left: 0;
	width: 100%;
	font-size: 11px;
	font-family: Arial, serif;
	position: absolute;
	background-color: #fff
}

footer a {
	text-decoration: none
}

@keyframes appearance {
	0% {
		transform: scale(0)
	}

	100% {
		transform: scale(1)
	}
}

@media screen and (width > 880px) {
	.main {
		flex-wrap: wrap;
		justify-content: center;
	}

	.image {
		order: 0;
		height: calc(100vh - 40px);
		width: 40vw;
		display: flex;
		align-items: center
	}

	.choose-block {
		order: 0;
		height: calc(100vh - 40px);
		width: 40vw;
		justify-content: center
	}

	.choose__image {
		height: calc(30vh - 20px);
		max-height: calc(30vh - 20px);
		width: calc(45vw / 2 - 20px);
		max-width: calc(40vh - 20px)
	}

	.choose-item--active>.choose__image {
		height: calc(30vh - 32px);
		max-height: calc(30vh - 32px);
		width: calc(45vw / 2 - 32px);
		max-width: calc(40vh - 32px);
		border: 6px solid #2566ff
	}

	.header--choose {
		height: auto
	}

	.header {
		order: 1
	}

	.buttons-block {
		order: 2
	}
}

#container-modal {
	font-size: 16px;
	font-family: Arial, serif
}

.blocker {
	z-index: 99999 !important
}

#container-modal * {
	font-family: Arial, serif;
	margin: 0;
	text-shadow: none
}

#container-modal p {
	margin: 1em 0;
	line-height: 20px;
	color: #000;
	background: 0 0
}

#container-modal blockquote,
#container-modal figure {
	margin: 1em 40px
}

#container-modal hr {
	border: 1px inset;
	box-sizing: border-box;
	margin: .5em auto
}

#container-modal h1 {
	font-size: 2em;
	font-weight: 700;
	margin: .67em 0;
	color: #000;
	background: 0 0;
	line-height: 1em
}

#container-modal h2 {
	font-size: 1.5em;
	font-weight: 700;
	margin: .83em 0;
	color: #000;
	background: 0 0;
	line-height: 1em
}

#container-modal h3 {
	font-size: 1.17em;
	font-weight: 700;
	margin: 1em 0;
	color: #000;
	background: 0 0;
	line-height: 1em
}

#container-modal h4 {
	font-size: 1em;
	font-weight: 700;
	margin: 1.33em 0;
	color: #000;
	background: 0 0
}

#container-modal h5 {
	font-size: .83em;
	font-weight: 700;
	margin: 1.67em 0;
	color: #000;
	background: 0 0
}

#container-modal h6 {
	font-size: .67em;
	font-weight: 700;
	margin: 2.33em 0;
	color: #000;
	background: 0 0
}

#container-modal table {
	border-collapse: separate;
	border-spacing: 2px;
	border-color: gray
}

#container-modal tbody,
#container-modal tfoot,
#container-modal thead,
#container-modal tr {
	border-color: inherit;
	vertical-align: middle
}

#container-modal td,
#container-modal th {
	padding: 1px;
	vertical-align: inherit
}

#container-modal th {
	font-weight: 700
}

#container-modal caption {
	text-align: center
}

#container-modal menu,
#container-modal ul {
	list-style-type: disc;
	margin: 1em 0;
	padding: 0 0 0 40px
}

#container-modal ol {
	list-style-type: decimal;
	margin: 1em 0;
	padding: 0 0 0 40px
}

#container-modal dd {
	margin: 0 0 0 40px
}

#container-modal dl {
	margin: 1em 0
}

#container-modal fieldset {
	border-style: groove;
	border-width: 2px;
	border: 2px groove ThreeDFace;
	margin: 0 2px;
	padding: 0 2px 3px;
	-webkit-padding-before: 0.35em;
	-webkit-padding-start: 0.75em;
	-webkit-padding-end: 0.75em;
	-webkit-padding-after: 0.625em
}

#container-modal b,
#container-modal strong {
	font-weight: 700
}

#container-modal address,
#container-modal cite,
#container-modal dfn,
#container-modal em,
#container-modal i,
#container-modal var {
	font-style: italic;
	font-weight: inherit
}

#container-modal abbr[title],
#container-modal dfn[title] {
	border-bottom: 0;
	cursor: default;
	font-weight: inherit
}

#container-modal code,
#container-modal kbd,
#container-modal samp,
#container-modal tt {
	font-family: monospace;
	font-weight: inherit
}

#container-modal pre {
	font-family: monospace;
	margin: 1em 0;
	white-space: pre
}

#container-modal mark {
	background-color: #ff0;
	color: #000;
	font-style: normal;
	font-weight: inherit
}

#container-modal big {
	font-size: larger;
	font-weight: inherit
}

#container-modal small {
	font-size: smaller;
	font-weight: inherit
}

#container-modal sub,
#container-modal sup {
	font-weight: inherit;
	line-height: inherit;
	position: static
}

#container-modal sub {
	font-size: smaller;
	bottom: 0;
	vertical-align: sub
}

#container-modal sup {
	font-size: smaller;
	top: 0;
	vertical-align: super
}

#container-modal iframe {
	border: 2px inset
}

.footer-links {
	text-align: center;
	display: block;
	left: 0;
	width: 100%;
	font-size: 11px;
	font-family: Arial, serif;
	position: absolute
}

.footer-links a {
	text-decoration: none
}

button,
input[type=button],
input[type=submit] {
	outline: 0
}

#pr-div {
	margin: 0 !important;
	padding: 0 !important;
	box-sizing: border-box
}

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 99999999 !important;
	padding: 20px;
	box-sizing: border-box;
	background-color: #000;
	background-color: rgba(0, 0, 0, .75);
	text-align: center
}

.blocker:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -.05em
}

.blocker.behind {
	background-color: transparent
}

.container-modal {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 999999;
	max-width: 500px;
	box-sizing: border-box;
	width: 90%;
	background: #fff;
	padding: 15px 30px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	text-align: left
}

.container-modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==')
}

.container-modal-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 12px 16px;
	border-radius: 5px;
	background-color: #111;
	height: 20px
}

.container-modal-spinner>div {
	border-radius: 100px;
	background-color: #fff;
	height: 20px;
	width: 2px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.container-modal-spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s
}

.container-modal-spinner .rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s
}

.container-modal-spinner .rect4 {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s
}

@-webkit-keyframes sk-stretchdelay {

	0%,
	100%,
	40% {
		-webkit-transform: scaleY(.5)
	}

	20% {
		-webkit-transform: scaleY(1)
	}
}

@keyframes sk-stretchdelay {

	0%,
	100%,
	40% {
		transform: scaleY(.5);
		-webkit-transform: scaleY(.5)
	}

	20% {
		transform: scaleY(1);
		-webkit-transform: scaleY(1)
	}
}