@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: local('Roboto'), local('Roboto-Regular'), url(../fonts/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: local('Roboto Bold'), local('Roboto-Bold'), url(../fonts/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: local('Roboto'), local('Roboto-Regular'), url(../fonts/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: local('Roboto Bold'), local('Roboto-Bold'), url(../fonts/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--primary-color: #00aabc;
	--secondary-color: #002b2f;
	--tertiary-color: #fff;
	/*--success-color: #30c154; !* tetrad *!*/
	/*--warning-color: #f7e100; !* tetrad *!*/
	/*--error-color: #b91300; !* tetrad *!*/
	/*--light-gray-color: #b3e9ee; !* monochrome_with_complements_and_gray *!*/
	/*--dark-color: #002b2f; !* monochrome_4 *!*/
	/*--dark-red-color: #70001d; !* contrasting_hues *!*/
	/*--yellow-color: #d6e900; !* contrasting_hues *!*/
	/*--light-blue-color: #b3e9ee; !* monochrome_4 *!*/
	/*--message-border-color: var(--primary-color);*/
	--text-light-color: #fff;
	--text-dark-color: #002b2f;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font: 400 100%/1.5 Roboto, sans-serif;
	scroll-behavior: smooth;
}

html, body {
	height: 100%;
}

body {
	background-color: var(--primary-color);
	color: var(--text-light-color);
}

.page {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 1rem;
	height: 100%;
	max-width: 69rem;
}

header, main, footer {
	padding: 1rem 0;
}

main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
}

footer {
	text-align: center;
}

.logo {
	margin: 0 0 1rem;
	line-height: 39px;
}

.logo::before {
	content: '';
	width: 127px;
	height: 39px;
	display: block;
	float: left;
	margin-right: 1rem;
	background: url(../img/bss-logo-solid.svg) no-repeat 0 50%;
}

.progress-bar {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	color: var(--text-dark-color);
	font-size: 1.125rem;
	text-align: center;
	line-height: 1.75rem;
	font-weight: bold;
}

.progress-bar .step {
	flex: 0 0 1.75rem;
	border-radius: 50%;
	width: 1.75rem;
	background-color: var(--tertiary-color);
}

.progress-bar .step::before {
	content: "?"
}

.progress-bar .line {
	width: 3.5rem;
	height: 0.25rem;
}

.progress-bar .active {
	line-height: 1.25rem;
	border: 0.25rem solid var(--secondary-color);
}

.progress-bar .checked {
	color: var(--text-light-color);
	background-color: var(--secondary-color);
}

.progress-bar .checked::before {
	content: "!"
}

.progress-bar .checked + .line {
	background-color: var(--secondary-color);
}

.question-answers {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--text-light-color);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: bold;
}

.answer {
}

.answer > input[type="radio"] {
	display: none;
}

.answer > label {
	cursor: pointer;
	display: block;
	align-items: center;
}

.answer > label::before {
	content: '';
	height: 1.75rem;
	width: 1.75rem;
	display: block;
	float: left;
	margin-right: 1rem;
	background-color: var(--tertiary-color);
	border-radius: 50%;
}

.answer > input[type="radio"]:checked + label {
	text-decoration: underline;
}

.answer > input[type="radio"]:checked + label::before {
	border: 0.25rem solid var(--tertiary-color);
	background-color: var(--secondary-color);
}

.button {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: bold;
	border-radius: 1rem;
	color: var(--text-light-color);
	background-color: var(--secondary-color);
	text-transform: uppercase;
	border: 0 none;
	padding: 0.5rem 1rem;
	cursor: pointer;
}
