@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;700&display=swap');

body{
	font-family: 'Comfortaa', cursive !important;
	background-image: url('../img/bg.jpg') !important;
	background-repeat: repeat !important;
	min-height: 100vh !important;
	color: white !important;
}
.header-image{
	display: block;
	margin: 0 auto;
	max-width: 510px;
	width: 100%;
}
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.wrapper{
	max-width: 1024px;
	display: block;
	margin: 0 auto;
	padding: 15px;
}
.title-quiz,.title-step{
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 10px;
	text-align: center;
}
.title-step{
	font-size: 24px;
}
.sub-title-quiz,.subinfo-step{
	font-size: 14px;
	text-align: justify;
}
.subinfo-step{
	padding-top: 10px;
	font-size: 16px;
	line-height: 1.4;
}
.inputme{
	width: 100%;
	margin: 0 auto;
	display: block;
	background-color: #333;
	border: 2px solid #ff5a06 !important;
	padding: 10px 15px !important;
	font-size: 16px;
	color: white !important;
	border-radius: 30px !important;
	outline: none !important;
	margin-bottom: 30px;
}
.inputme::placeholder {
	color: #8d8d8d;
}
.quiz-wrap{
	margin-top: 20px;
	border-top: 1px solid #ff5a06;
	padding-top: 15px;
	text-align: center;
}
.next-btn{
	max-width: 150px;
	display: block;
	margin-right: 0;
	border: 0;
	outline: none;
	background-color: #ff5a06;
	padding: 10px 35px;
	font-size: 16px;
	color: white;
	font-weight: bold;
	border-radius: 30px;
	margin-bottom: 30px;
}
.btn-start{
	max-width: 150px;
	display: block;
	margin-right: 0;
	border: 0;
	outline: none;
	background-color: #ff5a06;
	padding: 10px 35px;
	font-size: 16px;
	color: white;
	font-weight: bold;
	border-radius: 30px;
	margin-bottom: 30px;
}
.step-wrap{
	display: none;
}

.quiz-quest{
	font-weight: 800;
	font-size: 18px;
	padding-bottom: 10px;
}
.radio-input{
	display: inline-block;
	width: 49%;
	margin-bottom: 15px;
	font-weight: 800;
	font-size: 18px;
}
.radio-input input{
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
input[type='radio'],
label {
  cursor: pointer;
}

input[type='radio'] {
  position: relative;
  height: 22px;
  width: 22px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type='radio']::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 2px solid #ff5a06;
}

input[type='radio']:checked::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ff5a06;
  transform: translate(-50%, -50%);
  visibility: visible;
}
.btn-choise{
	max-width: 250px;
    display: block;
    margin-right: 0;
    border: 0;
    outline: none;
    background-color: #ff5a06;
    padding: 10px 35px;
    font-size: 16px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    margin-bottom: 30px;
}
.choise-step .info-step{
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}