:root {
	--color-bg: #008080;
	--color-text: white;
	--color-text-mark: #000080;
	--color-border-card: #000080;
	--color-border-button: none;
	--color-border-button-no: none;
	--color-bg-button: #C7C7C7;
	--color-bg-button-no: #595959;
	--color-text-button: black;
	--color-text-button-no: white;
	--color-border-input: #B3B3B3;
	--color-border-input-focus: #000080;
	--radius: 2px
}

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

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: Verdana, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	position: relative
}

.main {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	gap: 16px;
	transition: all .8s ease-in-out;
	position: relative
}

.page-10,
.page-11,
.page-2,
.page-3,
.page-4,
.page-5,
.page-6,
.page-7,
.page-8,
.page-9 {
	display: none
}

.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	padding-top: 40px;
	gap: 16px;
	max-width: 100%;
	animation: appearance .8s forwards;
	position: relative
}

.text-mark {
	color: var(--color-text-mark);
	background-color: #fff;
	box-shadow: 2px 2px 0 0 #000;
	border-radius: var(--radius);
	padding: 0 3px;
	white-space: nowrap
}

.page-1>.header>p {
	width: 75%;
	font-size: 21px
}

.header--question span {
	font-weight: 500;
	font-size: 21px
}

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

.header--choose>p {
	font-style: italic
}

.header--final>p {
	font-size: 18px;
	line-height: 130%
}

h1 {
	font-family: Verdana, sans-serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 130%;
	text-transform: uppercase
}

h2 {
	font-family: Verdana, sans-serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 100%;
	text-transform: uppercase
}

h3 {
	font-family: Verdana, sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 34px
}

.header--question h3 {
	font-size: 30px;
	line-height: 34px;
	text-transform: uppercase
}

.page-5>.header>p {
	width: 80%
}

.page-7>.header>h3,
.page-8>.header>h3,
.page-9>.header>h3 {
	max-width: 70%
}

.image-block {
	height: calc(100vh - 336px);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	animation: appearance .8s forwards
}

.page-11>.image-block,
.page-1>.image-block {
	width: calc(100% - 32px);
	background: silver;
	box-shadow: -2px -2px 0 0 #fff, 2px 2px 0 0 #000;
	overflow: hidden
}

.page-11>.image-block {
	height: calc(100vh - 492px)
}

.page-11>.image-block>.collage-block {
	display: flex;
	justify-content: center;
	align-items: center
}

.page-11>.image-block>.collage-block>img {
	box-shadow: 2px 2px 0 0 #00000040;
	border: 1px solid #000;
	height: calc(100%);
	width: calc(100%);
	object-fit: cover;
	position: relative
}

.image-block>p {
	width: calc(100% - 20px);
	text-align: left;
	font-weight: 700;
	font-size: 19px;
	padding: 4px 6px;
	margin-top: 6px;
	background: navy;
	color: #fff;
	text-transform: lowercase
}

.nav {
	width: 146px;
	margin: 6px 0 6px 4px;
	align-self: flex-start
}

.page-2>.image-block,
.page-3>.image-block,
.page-4>.image-block,
.page-5>.image-block,
.page-6>.image-block {
	height: calc(100vh - 316px);
	width: calc(100% - 32px);
	margin: 0 16px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	border-radius: var(--radius);
	box-shadow: -2px -2px 0 0 #fff, 2px 2px 0 0 #000
}

.page-3>.image-block {
	height: calc(100vh - 370px)
}

.page-5>.image-block {
	height: calc(100vh - 270px)
}

.page-6>.image-block {
	height: calc(100vh - 350px)
}

.page-2>.image-block>img,
.page-3>.image-block>img,
.page-4>.image-block>img,
.page-5>.image-block>img,
.page-6>.image-block>img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.collage-block {
	width: calc(100% - 40px);
	height: calc(100% - 104px);
	background: #fff;
	box-shadow: -1px -1px 0 0 silver inset, 1px 1px 0 0 #000 inset, -1px -1px 0 0 grey, 1px 1px 0 0 #fff;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px
}

.collage__line {
	height: calc((100% - 32px)/ 3);
	display: flex;
	justify-content: center;
	gap: 16px
}

.collage__image {
	box-shadow: 2px 2px 0 0 #00000040;
	border: 1px solid #000;
	overflow: hidden;
	aspect-ratio: 93/122
}

.collage__image>img {
	height: 100%;
	width: 100%;
	object-fit: cover
}

.buttons-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	gap: 16px;
	width: calc(100% - 32px);
	animation: appearance .8s forwards;
	padding-bottom: 24px;
	position: relative;
    margin-top: 40px;
}

.buttons-block--start {
    margin-top: 100px!important;
}

.dis {
	position: absolute;
	top: 0;
	left: 11%;
	transform: translate(0, -115%) rotate(3.82deg)
}

.page-1>.buttons-block {
	margin-top: 20px
}

.button {
	background: var(--color-bg-button);
	box-shadow: 4px 4px 0 0 #ebebeb inset, -4px -4px 0 0 #606060 inset, 4px 4px 0 0 #000;
	border: none;
	border-radius: var(--radius);
	height: 60px;
	color: var(--color-text-button);
	text-transform: uppercase;
	text-decoration: none;
	font-family: Verdana, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 100%;
	max-width: 400px;
	transition: all .2s ease-in-out;
	position: relative
}

.button--start::after {
	content: url(../img/arrow-btn.svg);
	margin-left: 8px
}

.button:disabled {
	background: #a6a6a6;
	cursor: not-allowed;
	box-shadow: none;
	border: none;
	text-decoration: none;
	color: #fff
}

.button:disabled>span {
	filter: none
}

.button--no {
	background: var(--color-bg-button-no);
	border: none;
	text-decoration: none;
	box-shadow: 4px 4px 0 0 grey inset, -4px -4px 0 0 #c7c7c7 inset, 4px 4px 0 0 #000
}

.button--no>span {
	background: var(--color-text-button-no);
	background-clip: text;
	color: transparent;
	filter: none
}

.button--skip {
	margin-top: -16px;
	background: 0 0;
	color: #9e9e9e;
	box-shadow: none;
	border: none;
	text-decoration: none
}

.button--skip>span {
	font-style: normal
}

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

.choose-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 0 16px;
	height: calc(100vh - 312px);
	width: calc(100% - 32px);
	max-height: 136vw
}

.page-10 {
	gap: 12px
}

.page-10 .choose-block {
	height: calc(100vh - 308px);
	max-height: 100%
}

.choose-line {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: calc((100vh - 312px) * .7);
	height: calc((100% / 3) - 7px);
	gap: 14px
}

.choose-item {
	width: calc(50% - 7px);
	display: flex;
	background: #fff;
	color: #0d0d0d;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	border-radius: var(--radius);
	box-shadow: 0 2px 10px 0 #8c8C8C4D;
	overflow: hidden;
	animation: appearance .8s forwards
}

.page-10 .choose-block {
	gap: 10px
}

.page-10 .choose-item {
	width: 100%;
	border: 1px solid #b3b3b3;
	box-shadow: none
}

.page-10 .choose-item>p {
	padding: 14px 16px
}

.choose__image {
	object-fit: cover;
	width: 100%;
	height: calc(100% - 36px)
}

.choose__image--big {
	height: calc(100% - 307px);
	aspect-ratio: 1/1;
	object-fit: cover;
	box-shadow: 4px 4px 0 0 #000;
	border-top: 4px solid #ebebeb;
	border-left: 4px solid #ebebeb;
	border-radius: var(--radius);
	margin-bottom: 2px;
	animation: appearance .8s forwards
}

.choose-item>p {
	font-weight: 500;
	font-size: 20px;
	line-height: 22px;
	padding: 6px 2px;
	text-align: center
}

.page-10 .choose-item>p,
.page-9 .choose-item>p {
	font-size: 19px;
	line-height: 23px
}

.choose-item_cover {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: var(--radius);
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	transition: all .2s ease-in-out;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}

.choose-item-4>.choose-item_cover {
	border: 1px solid var(--color-border-input)
}

.choose-item--active .choose-item_cover {
	border: 4px solid var(--color-border-card)
}

form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 400px
}

input {
	border: 1px solid var(--color-border-input);
	border-radius: var(--radius);
	font-family: Verdana, sans-serif;
	font-weight: 400;
	font-size: 21px;
	line-height: 100%;
	padding: 18px 18px 18px 56px;
	background-repeat: no-repeat;
	background-position: center;
	background-position-x: 18px;
	box-sizing: border-box
}

input:focus {
	outline: 0;
	border: 3px solid var(--color-border-input-focus);
	padding: 16px 16px 16px 54px;
	background-position-x: 16.5px;
	background-position-y: 18.5px
}

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

	100% {
		transform: scale(1)
	}
}

@media screen and (height <=720px) {
	body {
		font-size: 17px;
		line-height: 19px
	}

	.header {
		padding-top: 20px
	}

	.page-1>.header>p {
		font-size: 19px
	}

	.header--final>p {
		font-size: 16px;
		line-height: 18px
	}

	h1 {
		font-size: 22px;
		line-height: 24px
	}

	h2 {
		font-size: 21px;
		line-height: 23px
	}

	h3 {
		font-size: 19px;
		line-height: 21px
	}

	.header--question span {
		font-size: 19px
	}

	.header--question h3 {
		font-size: 18px;
		line-height: 20px
	}

	.header--choose {
		font-size: 14px;
		line-height: 15px
	}

	.header--final {
		font-size: 15px;
		line-height: 16px
	}

	.image-block {
		height: calc(100vh - 296px)
	}

	.page-2>.image-block {
		height: calc(100vh - 256px)
	}

	.page-3>.image-block {
		height: calc(100vh - 290px)
	}

	.page-4>.image-block {
		height: calc(100vh - 269px)
	}

	.page-5>.image-block {
		height: calc(100vh - 230px)
	}

	.page-6>.image-block {
		height: calc(100vh - 270px)
	}

	.page-11>.image-block {
		height: calc(100vh - 426px)
	}

	.choose-block {
		height: calc(100vh - 270px)
	}

	.choose-line {
		max-width: calc((100vh - 270px) * .7)
	}

	.choose__image {
		height: calc(100% - 30px)
	}

	.choose-item>p {
		font-size: 16px;
		line-height: 18px
	}

	.choose__image--big {
		height: calc(100% - 180px)
	}

	.page-10 .choose-block {
		height: calc(100vh - 256px)
	}

	.page-10 .choose-item>p {
		padding: 4px 12px
	}

	.page-10 .choose-item>p,
	.page-9 .choose-item>p {
		font-size: 14px;
		line-height: 16px
	}
}

@media screen and (width < 390px) {
	body {
		font-size: 17px;
		line-height: 19px
	}

	.header {
		padding-top: 20px
	}

	.page-1>.header>p {
		font-size: 19px
	}

	.header--final>p {
		font-size: 16px;
		line-height: 18px
	}

	h1 {
		font-size: 22px;
		line-height: 24px
	}

	h2 {
		font-size: 21px;
		line-height: 23px
	}

	h3 {
		font-size: 19px;
		line-height: 21px
	}

	.header--question span {
		font-size: 19px
	}

	.header--question h3 {
		font-size: 28px;
		line-height: 30px
	}

	.header--choose {
		font-size: 14px;
		line-height: 15px
	}

	.header--final {
		font-size: 15px;
		line-height: 16px
	}

	.image-block {
		height: calc(100vh - 302px)
	}

	.page-2>.image-block {
		height: calc(100vh - 272px)
	}

	.page-3>.image-block {
		height: calc(100vh - 308px)
	}

	.page-4>.image-block {
		height: calc(100vh - 269px)
	}

	.page-5>.image-block {
		height: calc(100vh - 230px)
	}

	.page-6>.image-block {
		height: calc(100vh - 288px)
	}

	.page-11>.image-block {
		height: calc(100vh - 426px)
	}

	.choose-block {
		height: calc(100vh - 270px)
	}

	.choose-line {
		max-width: calc((100vh - 270px) * .7)
	}

	.choose__image {
		height: calc(100% - 30px)
	}

	.choose-item>p {
		font-size: 16px;
		line-height: 18px
	}

	.choose__image--big {
		height: calc(100% - 180px)
	}

	.page-10 .choose-block {
		height: calc(100vh - 256px)
	}

	.page-10 .choose-item>p {
		padding: 4px 12px
	}

	.page-10 .choose-item>p,
	.page-9 .choose-item>p {
		font-size: 14px;
		line-height: 16px
	}
}

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

	.image-block,
	.page-11>.image-block {
		height: 90vh;
		margin: 5vh 16px;
		width: calc(50vw - 32px);
		max-width: calc(50vw - 32px)
	}

	.page-2>.image-block,
	.page-3>.image-block,
	.page-4>.image-block,
	.page-5>.image-block,
	.page-6>.image-block {
		height: calc(100vh - 32px);
		margin: 16px;
		width: 45vw
	}

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

	.page-10 .choose-block {
		height: calc(100vh - 40px);
		padding: 20px 0
	}

	.choose-line {
		max-width: calc((100vh - 40px) * .7);
		max-height: calc(24vw)
	}

	.header--choose {
		height: auto
	}

	.header {
		order: 1;
		max-width: 35vw
	}

	.buttons-block {
		order: 2;
		max-width: 35vw
	}

	.background {
		height: 100vh
	}
}

#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)
	}
}