body {
	background: white;
	font-family: Arial;
	padding: 20px;
	margin: 0;
}

.question {
	color: #ff293a;
	font-size: 20px;
	background: linear-gradient(#fafbf9, #fbc4c4);
	padding: 20px;
	border-radius: 10px;
	border: 2px solid red;
}

.answer {
	background: linear-gradient(#fafbf9, #fbc4c4);
	padding: 10px;
	font-size: 20px;
	width: 50%;
	display: flex;
	border-radius: 5px;
	border: 2px solid red;
	color: red;
}

.answer b {
	color: #ff8c2e;
	font-weight: bold;
	width: 30px;
}

.answer-label {
	cursor: pointer;
	width: 100%;
}

.answer input {
	display: none;
}

#confirm {
	font-weight: bold;
	font-size: 20px;
	margin: 5px auto;
	padding: 30px;
	border-radius: 25px;
	background: #751c23;
	color: white;
	border: 5px solid #ff688f;
	display: block;
	cursor: pointer;
}

button {
	font-size: 20px;
	padding: 30px;
}

.start {
	background: rgba(0, 0, 0, 0.95);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	font-weight: bold
}

#user {
	margin-left: 39%;
	margin-top: 20%;
	width: 300px;
	height: 50px;
	text-align: center;
	font-size: 20px
}

#start {
	height: 56px;
	text-align: center;
	font-size: 20px
}

.endWin, .endLoss {
	background: rgba(0, 0, 0, 0.95);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	font-weight: bold
}

.endLoss h1 {
	color: #f30;
	text-align: center;
	margin-top: 20%;
	font-size: 75px;
}

.endWin h1 {
	color: lime;
	text-shadow: 1px 2px white;
	text-align: center;
	margin-top: 10%;
	font-size: 75px;
}

.endWin h3, .endLoss h3 {
	color: #cc0;
	text-align: center;
	margin-top: 10%
}

.reStart {
	background: rgba(0, 0, 0, 0.95);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	font-weight: bold
}

.reStart h1 {
	color: #cc0;
	text-align: center;
	margin-top: 20%
}

#startGame {
	margin-left: 47%
}

#visual {
	max-height: 400px;
}

.answer {
	position: relative;
	box-sizing: content-box;
	margin-left: 50px;
	margin-right: 50px;
	border-top: 3px solid #ff688f;
	border-bottom: 3px solid #ff688f;
	margin-bottom: 5px;
}

.answer.selected {
	background: #e88600;
	color: white;
	font-weight: bold;
}

.answer.selected b {
	color: black;
}

.answer.confirmed {
	background: green;
	color: white;
}

.answer.confirmed b {
	color: black;
}

#fon {
	height: 700px;
	background-color: white;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: -201;
	position: relative;
	background-position: 0 -120px;
	width: 1200px;
}

#priceLevel {
	position: fixed;
	right: 0;
	top: 0;
}

#header {
	position: fixed;
	top: 20px;
	left: 470px;
	display: flex;
}

#header .round50 img {
	width: 100px;
	cursor: pointer;
}


#timer_bg {
	height: 119px;
	width: 200px;
	background-size: 200px;
	padding-top: 30px;
}

#timer_inp {
	background: white;
	width: 100px;
	height: 60px;
	border: 1px solid black;
	border-radius: 10%;
	text-align: center;
	font-size: 50px;
	font-weight: bold;
	margin: 0 auto;
}

.used {
	position: relative;
}

.used:before, .used:after {
	position: absolute;
	left: 47px;
	content: ' ';
	height: 55px;
	width: 8px;
	top: 5px;
	background-color: red;
}

.used:before {
	transform: rotate(45deg);
}

.used:after {
	transform: rotate(-45deg);
}


.mini-profile-hearts-animation {
	position: relative;
	width: 100%;
	height: 700px;
}

.mini-profile-heart {
	position: absolute;
	top: 110%;
	fill: #ff0000;
	transform: translate3D(-50%, 0, 0);
	animation-name: mini-profile-hearts-buoy;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	transition-timing-function: linear;
}

@keyframes mini-profile-hearts-buoy {
	0% {
		transform: translate3d(-50%, 0, 0);
	}
	100% {
		transform: translate3d(-50%, -1300px, 0);
	}
}