html, body {
	margin: 0;
	font-family: 'Noto Sans', sans-serif;
	/* background: linear-gradient(151deg, rgba(105,147,246,1) 0%, rgba(66,113,222,1) 100%); */
	background: linear-gradient(151deg, rgb(50 76 137) 0%, rgb(21 34 66) 100%);
}

:root {
	--company-icon: url('/st/img/icon.svg');
	--success_icon: url('/st/img/check.svg');
	--attach_icon: url('/st/img/paperclip.png');
	--filter_white: brightness(0) saturate(100%) invert(98%) sepia(4%) saturate(175%) hue-rotate(200deg) brightness(117%) contrast(100%);
}

* {
	box-sizing: border-box;
}

.main {
	height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_content {
	width: 100%;
	max-width: 670px;
	margin: 4px 8px;
}

.logo {
	display: flex;
    justify-content: center;
}

.quiz_block {
	width: 100%;
    padding: 33px 40px;
    min-height: 220px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px #7979794a;
    transition: var(--delay) ease-out;
}

.preloader {
	width: 100vw;
    display: flex;
    height: 100vh;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: 0.3s ease-out;
    z-index: 99;
}

.button {
	padding: 12px 17px;
    border-radius: 6px;
    color: #fff;
    background-color: #4304f4;
    user-select: none;
    cursor: pointer;
    display: block;
    text-align: center;
    margin: 20px 0;
}

.preload_content.animation img {
	animation: Spin 1s ease-out infinite;
}
.progress {
	width: 100%;
	height: 18px;
	border-radius: 12px;
	overflow: hidden;
	background-color: #ffffff17;
	margin: 17px 0;
}
.main_wrapper .subcontent {
	margin: 10px 0;
}
.progress_step {
	background: linear-gradient(253deg, rgba(164,190,251,1) 0%, rgba(66,113,222,1) 100%);
    height: inherit;
    transition: 0.4s cubic-bezier(0.2, 0.49, 0.36, 1);
    border-radius: 25px;
}
.content_header {
	text-align: center;
    padding: 15px 2px;
    font-size: 21px;
    font-weight: 600;
}

@keyframes Spin {
	0% {
		transform: rotate(0deg);
	}

	30% {
		transform: rotate(-40deg);
	}

	40% {
		transform: rotate(-35deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

input, textarea {
	font-family: 'Noto Sans', sans-serif;
	outline: none;
	border: 1px solid #4472de;
}
input, textarea {
    padding: 9px 11px;
    border-radius: 5px;
    font-size: 16px;
}

input:focus, textarea:focus {
	box-shadow: 0px 0px 0px 3px #4472dead;
}

.progress_steps {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
	font-weight: 600;
	font-size: 2rem;
	color: rgb(255 255 255 / 67%);
}
span[quest-step] {
	color: rgb(255 255 255);
	font-size: 4rem;
}

textarea {
	width: 100%;
    min-height: 190px;
    margin-top: 10px;
}

.forms form {
	display: flex;
    flex-flow: wrap;
    flex-direction: row;
    justify-content: center;
}
form input {
	margin: 6px 0px;
	flex: 50%;
}
form input:nth-child(2) {
	margin-left: 12px;
}

.group {
	width: 100%;
    display: flex;
}

.flex {
	display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 492px) {
	.group {
    	flex-direction: column;
	}
	form input:nth-child(2) {
		margin-left: 0;
	}
	.content_header {
		font-size: 18px;
	}
	.quiz_block {
		padding: 25px 30px;
	}
	.progress_steps {
		padding: 0px 15px;
	}
}

img {
	image-rendering: auto;
    shape-rendering: crispedges;
}

.padding {
	padding: 25px 0;
}

.iconic {
	width: 52px;
    height: 52px;
	background-size: cover;
}
.iconic.attach {
	background-image: var(--attach_icon);
	
}
.pinned {
	position: absolute;
	left: -15px;
    bottom: -60px;
    transition: var(--delay) ease-out;
    z-index: 9;
}

.zoom {
	scale: 1.1;
}

.escape {
	transform: translate(-200%, 0px);
}

.unpin {
	bottom: 0px;
    transform: rotate(30deg);
}

.progress_bar {
	position: relative;
}
.tab_content {
	position: relative;
}
.quiz_block.absolute {
	position: absolute;
}

.tab {
	width: 100%;
    padding: 33px 40px;
    min-height: 220px;
    border-radius: 16px;
    background-color: #fff;
    transition: var(--delay) ease-out;
}
.tab.first {
	position: absolute;
    z-index: 0;
    bottom: -27px;
    scale: 0.87;
    opacity: 0.9;
}
.tab.last {
	position: absolute;
    z-index: 0;
    bottom: -49px;
    scale: 0.77;
    opacity: 0.39;
}

.quiz_block, .tab {
	z-index: 2;
	position: relative;
}

.svg\:success { background-image: var(--success_icon); background-size: cover; }
.opacity\:0 { opacity: 0; }
.img\:64 { width: 64px; height: 64px; }
.img\:94 { width: 94px; height: 94px; }
.img\:128 { width: 128px; height: 128px; }
.img\:white { filter: var(--filter_white); }
.img\:green { filter: brightness(0) saturate(100%) invert(59%) sepia(7%) saturate(3255%) hue-rotate(93deg) brightness(110%) contrast(97%); }
.img\:blue { filter: brightness(0) saturate(100%) invert(35%) sepia(93%) saturate(1056%) hue-rotate(202deg) brightness(93%) contrast(86%); }