.simulator {
	background-color: #F6F5F5;
	padding: 58px;
	border-radius: 20px;
}

.simulator .simulator-inner {
	max-width: 714px;
	margin-left: auto;
	margin-right: auto;
}

.simulator .fields {
	display: grid;
	grid-gap: 62px;
}

.simulator .fields:not(:last-child) {
	margin-bottom: 72px;
}

.simulator label {
	line-height: 28px;
	margin-bottom: 16px;
	display: block;
	font-size: 22px;
	font-family: ff-meta-serif-web-pro, serif;
	font-weight: 600;
}

.simulator .inputslider {
	position: relative;
}

.simulator .inputslider input {
	display: none;
}

.simulator .inputslider .values {
	position: relative;
	height: 30px;
	margin-bottom: 8px;
	z-index: 1;
}

.simulator .inputslider .values span {
	position: absolute;
	top: 0;
	color: var(--bt-black);
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	display: block;
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 14px;
	z-index: 1;
	transition: all .2s ease;
}

.simulator .inputslider .values span.selected {
	background-color: var(--bt-blue);
	color: var(--bt-white);
	z-index: 2;
}

.simulator .inputslider .area {
	position: relative;
	height: 30px;
}

.simulator .inputslider .area .track,
.simulator .inputslider .area .fill {
	position: absolute;
	top: 50%;
	left: 0;
	height: 30px;
	border-radius: 30px;
	transform: translateY(-50%);
}

.simulator .inputslider .area .track {
	background-color: #E2E1E1;
	width: 100%;
	z-index: 1;
}

.simulator .inputslider .area .fill {
	background: linear-gradient(90deg, #FF3E4A 0%, #FE813B 100%);
	width: 0;
	z-index: 2;
}

.simulator .inputslider .area .knob {
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	z-index: 3;
}

.simulator .inputslider .area .knob:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #fff;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.1);
	display: block;
	transform: translate(-50%, -50%) rotate(5deg);
	z-index: 1;
}

.simulator .inputslider .area .knob .current-value {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #000;
	line-height: 22px;
	text-align: center;
	display: block;
	font-size: 20px;
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 20px;
	font-weight: bold;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.simulator .result {
	background-color: #E2E1E1;
	height: 48px;
	line-height: 30px;
	border-radius: 48px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 40px;
	font-size: 20px;
}

.simulator .result > *:nth-child(odd) {
	text-align: right;
}

.simulator .result > *:nth-child(even) {
	text-align: left;
}
