@font-face {
	font-family: "IQOS Bold";
	src: url("../fonts/IQOS-Bold.ttf");
}

@font-face {
	font-family: "IQOS Light";
	src: url("../fonts/IQOS-Light.ttf");
}

@font-face {
	font-family: "IQOS";
	src: url("../fonts/IQOS-Regular.ttf");
}

a,
button,
div,
h1,
h2,
p,
span {
	font-family: 'IQOS', sans-serif;
}

body {
	background-color: #19CCBA;
}

.theme-default body {
	background-color: #19CCBA;
}

.theme-pleasure body {
	background-color: #F91012;
}

.theme-simplicity body {
	background-color: #00B4F3;
}

.theme-technology body {
	background-color: #FAB414;
}

.not-allowed {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main-btn {
	display: inline-block;
	padding: 10px 20px;
	min-width: 320px;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	font-family: 'IQOS Bold', sans-serif;
	color: #34303D !important;
	background-color: #fff !important;
	border-radius: 100px;
	border: none;
	outline: none;
	text-transform: uppercase;
	transition: all .3s;
}

.main-btn:hover {
	background-color: #34303D !important;
	color: #fff !important;
}

@media all and (max-width: 576px) {
	.main-btn {
		font-size: 25px;
	}
}

.screens {
	min-height: 100vh;
	text-align: center;
}

.screens > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10vh 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	display: none;
}

.screens > *::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: url(../images/question-screen-background.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.screens > *.active {
	display: flex;
}

.theme-default .screens > * {
	background-color: #19CCBA;
	color: #fff;
}

.theme-pleasure .screens > * {
	background-color: #F91012;
	color: #fff;
}

.theme-simplicity .screens > * {
	background-color: #00B4F3;
	color: #fff;
}

.theme-technology .screens > * {
	background-color: #FAB414;
	color: #fff;
}

.screens > * > * {
	color: inherit;
}

@media all and (max-width: 576px) {
	.screens > * {
		padding: 15vh 30px;
	}
}

.screens .start-screen {
	display: flex;
}

.screens .start-screen img {
	margin: auto;
}

@media all and (max-width: 576px) {
	.screens img {
		max-width: 250px;
	}
}

.screens .question-screen h3 {
	font-size: 32px;
	font-weight: 700;
	font-family: 'IQOS Bold', sans-serif;
}

@media all and (max-width: 576px) {
	.screens .question-screen h3 {
		font-size: 25px;
	}
}

.screens .response-screen {
	justify-content: center;
}

.screens .response-screen h3 {
	font-size: 64px;
	font-family: 'IQOS Bold', sans-serif;
}

.screens .response-screen p {
	font-size: 40px;
	margin: 0;
}

@media all and (max-width: 576px) {
	.screens .response-screen h3 {
		font-size: 30px;
	}
	.screens .response-screen p {
		font-size: 25px;
	}
}

.screens .final-screen p {
	font-size: 32px;
	font-family: 'IQOS Bold', sans-serif;
}

@media all and (max-width: 576px) {
	.screens .final-screen p {
		font-size: 25px;
	}
}

.screens .final-screen p a {
	color: #34303D;
	text-decoration: none;
}

.screens .final-screen .social {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.answer-group {
	margin: 30px 0;
}

@media all and (max-width: 576px) {
	.answer-group {
		margin: 20px 0;
	}
}

/* Context for relative positioning */
label.styled-input {
	position: relative;
	font-size: 32px;
	line-height: 36px;
	margin: 0;
	display: flex;
	align-items: flex-start;
	text-align: left;
}

@media all and (max-width: 576px) {
	label.styled-input {
		font-size: 22px;
	}
}

/* Base styles for both types of inputs */
label.styled-input input[type="radio"],
label.styled-input input[type="checkbox"],
.label.styled-input input[type="checkbox"] {
	min-width: 34px;
	appearance: none;
	background: transparent;
	border: 3px solid #fff;
	height: 34px;
	width: 34px;
	margin: 4px 10px 0 0;
	border-radius: 100%;
	vertical-align: middle;
	position: relative;
}

@media all and (max-width: 576px) {
	label.styled-input input[type="radio"],
	label.styled-input input[type="checkbox"],
	.label.styled-input input[type="checkbox"] {
		min-width: 30px;
		width: 30px;
		height: 30px;
	}
}

/* Remove the circular shape from checkboxes */
label.styled-input input[type="checkbox"] {
	border-radius: 5px;
}

/* Styles for the pseudo-elements */
label.styled-input input[type="radio"]::before,
label.styled-input input[type="checkbox"]::before,
.label.styled-input input[type="checkbox"]::before {
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	top: 0;
}

/* Center of the checked radio button */
label.styled-input input[type="radio"]:checked::before {
	border: 5px solid transparent;
	border-radius: 100%;
	background: #fff;
	margin: 4px;
}

/* The checkmark shape */
label.styled-input input[type="checkbox"]:checked,
.label.styled-input input[type="checkbox"]:checked {
	background-color: #fff;
}

label.styled-input input[type="checkbox"]:checked::before,
.label.styled-input input[type="checkbox"]:checked::before {
	border-right: 3px solid #33303B;
	border-bottom: 3px solid #33303B;
	height: 58%;
	width: 26%;
	transform: rotate(50deg) translateY(-20%) translateX(-10%);
}

/* Some focus styles for accessibility */
label.styled-input input[type="radio"]:focus,
label.styled-input input[type="checkbox"]:focus,
.label.styled-input input[type="checkbox"]:focus {
	outline: none;
}

label.styled-input.styled-input--v2,
.label.styled-input.styled-input--v2 {
	font-size: 16px;
}

label.styled-input.styled-input--v2 input[type="checkbox"],
.label.styled-input.styled-input--v2 input[type="checkbox"] {
	border: none;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	min-width: 28px;
	background-color: #ebebeb;
	margin: 4px 5px 0 0;
}

label.styled-input.styled-input--v2 input[type="checkbox"]:checked,
.label.styled-input.styled-input--v2 input[type="checkbox"]:checked {
	background-color: #fff;
}

label.styled-input input[type="checkbox"]:checked::before,
.label.styled-input input[type="checkbox"]:checked::before {
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	height: 50%;
	width: 26%;
	transform: rotate(50deg) translateY(-13%) translateX(-10%);
}

.label {
	margin-right: 15px;
}

.disclaimer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding: 15px;
	text-align: center;
	z-index: 10;
}

.disclaimer p {
	color: #34303D;
	font-size: 16px;
	margin: 0;
}

@media all and (max-width: 576px) {
	.disclaimer {
		padding: 10px;
	}
	.disclaimer p {
		font-size: 14px;
	}
}

/*# sourceMappingURL=style.css.map */