@import url(
	https://fonts.googleapis.com/css?family=Montserrat:400,
	700,
	900&subset=cyrillic
);
body {
	background-color: #dedede;
	margin: 0;
	font-family: Montserrat, sans-serif;
}
.app-container {
	display: flex;
	flex-direction: row;
	height: 100vh;
	width: 100vw;
	position: relative;
}
.test_style {
	color: #056ef0;
	width: 100px;
}
@media (max-width: 480px) {
	.app-container {
		flex-direction: column;
	}
}
.move-appear {
	-webkit-transform: translate3D(100%, 0, 0);
	transform: translate3D(100%, 0, 0);
}
.move-appear-active {
	-webkit-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0);
	transition: all 0.7s ease-out;
}
.move-enter {
	opacity: 1;
	background: #ffccc2;
	-webkit-transform: translate3D(100%, 0, 0);
	transform: translate3D(100%, 0, 0);
	position: absolute;
}
.move-enter-active {
	-webkit-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0);
	opacity: 1;
	transition: all 0.7s ease-out;
	position: absolute;
}
.move-leave {
	opacity: 1;
}
.move-leave-active {
	-webkit-transform: translate3D(-100%, 0, 0);
	transform: translate3D(-100%, 0, 0);
	opacity: 1;
	transition: all 0.7s ease-out;
}
.move-next-appear {
	-webkit-transform: translate3D(100%, 0, 0);
	transform: translate3D(100%, 0, 0);
}
.move-next-appear-active {
	-webkit-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0);
	transition: all 0.7s ease-out;
}
.move-next-enter {
	opacity: 1;
	background: transparent;
	-webkit-transform: translate3D(100%, 0, 0);
	transform: translate3D(100%, 0, 0);
	position: absolute;
}
.move-next-enter-active {
	-webkit-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0);
	opacity: 1;
	transition: all 0.7s ease-out;
}
.move-next-leave {
	opacity: 1;
}
.move-next-leave-active {
	-webkit-transform: translate3D(-100%, 0, 0);
	transform: translate3D(-100%, 0, 0);
	opacity: 1;
	transition: all 0.7s ease-out;
}
.move-prev-appear {
	-webkit-transform: translate3D(100%, 0, 0);
	transform: translate3D(100%, 0, 0);
}
.move-prev-appear-active {
	-webkit-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0);
	transition: all 0.7s ease-out;
}
.move-prev-enter {
	opacity: 1;
	background: transparent;
	-webkit-transform: translate3D(-100%, 0, 0);
	transform: translate3D(-100%, 0, 0);
	position: absolute;
}
.move-prev-enter-active {
	-webkit-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0);
	opacity: 1;
	transition: all 0.7s ease-out;
}
.move-prev-leave {
	opacity: 1;
}
.move-prev-leave-active {
	-webkit-transform: translate3D(100%, 0, 0);
	transform: translate3D(100%, 0, 0);
	opacity: 1;
	transition: all 0.7s ease-out;
}
.input-range .input-range__slider {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #3f51b5;
	border: 1px solid #3f51b5;
	border-radius: 100%;
	cursor: pointer;
	display: block;
	height: 2rem;
	margin-left: -2.5rem;
	margin-top: -1.5rem;
	position: absolute;
	top: 50%;
	transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out,
		-webkit-transform 0.3s ease-out;
	width: 5rem;
}
.input-range__slider:active {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.input-range__slider:focus {
	box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2);
}
.input-range--disabled .input-range__slider {
	background: #ccc;
	border: 1px solid #ccc;
	box-shadow: none;
	-webkit-transform: none;
	transform: none;
}
.input-range__slider-container {
	transition: left 0.3s ease-out;
}
.input-range__label {
	color: #aaa;
	font-family: Helvetica Neue, san-serif;
	font-size: 0.8rem;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	white-space: nowrap;
}
.input-range__label--max,
.input-range__label--min {
	bottom: -1.4rem;
	position: absolute;
}
.input-range__label--min {
	left: 0;
}
.input-range__label--max {
	right: 0;
}
.input-range__label--value {
	position: absolute;
	top: -1.8rem;
}
.input-range__label-container {
	left: -50%;
	position: relative;
}
.input-range__label--max .input-range__label-container {
	left: 50%;
}
.input-range__track {
	background: #fff;
	background: #eee;
	background: linear-gradient(
		90deg,
		#eee 0,
		#eee 18%,
		#fff 0,
		#fff 20.5%,
		#eee 0,
		#eee 38.5%,
		#fff 0,
		#fff 41%,
		#eee 0,
		#eee 59%,
		#fff 0,
		#fff 61.5%,
		#eee 0,
		#eee 79.5%,
		#fff 0,
		#fff 82%,
		#eee 0,
		#eee
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#eeeeee",GradientType=1);
	border-radius: 0.3rem;
	cursor: pointer;
	display: block;
	height: 0.3rem;
	height: 1rem;
	position: relative;
	transition: left 0.3s ease-out, width 0.3s ease-out;
}
.input-range--disabled .input-range__track {
	background: #eee;
}
.input-range__track--background {
	left: 0;
	margin-top: -0.15rem;
	position: absolute;
	right: 0;
	top: 50%;
}
.input-range__track--active {
	background: #3f51b5;
	background: #3fd84770;
}
.input-range {
	height: 1rem;
	position: relative;
	width: 100%;
}
#_2D0GgjZ9 {
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #000;
}
#_2D0GgjZ9 ._1IzjXvDh {
	margin-top: 40px;
	padding: 10px;
	text-align: center;
}
#_2D0GgjZ9 ._1IzjXvDh li {
	padding-bottom: 10px;
	font-size: 18px;
	list-style-type: none;
}
._1fzppp4_ {
	position: absolute;
	top: 5px;
	right: 35px;
	font-size: 32px;
	font-weight: 500;
	color: #79e47f;
	cursor: pointer;
	z-index: 100;
	display: none;
}
#_2D0GgjZ9 {
	width: 100px;
	position: absolute;
	z-index: 1000;
}
._3L7oiDGJ > a {
	color: #fff;
}
._3UxazPqR {
	font-weight: 700;
}
@media (max-width: 480px) {
	#_2D0GgjZ9 {
		position: relative;
		overflow: hidden;
		transition: margin-top 0.3s ease-in;
		margin-top: -65px;
		width: 100%;
		height: 65px;
	}
	#_2D0GgjZ9 ._1IzjXvDh {
		margin-top: 10px;
		display: flex;
		justify-content: space-between;
		padding: 10px 100px 10px 20px;
	}
	#_2D0GgjZ9[data-open="true"] {
		margin-top: 0;
	}
	._1fzppp4_ {
		display: block;
	}
}
.gN3r0idC {
	background: #eee;
	width: 100%;
	max-width: 800px;
	padding: 0 0 0 100px;
	overflow: hidden;
	position: relative;
}
.gN3r0idC * {
	margin: 0;
}
.gN3r0idC > * > * {
	padding-left: 22px;
	padding-right: 22px;
}
.gN3r0idC h4 {
	padding-top: 10px;
	padding-left: 22px;
}
@media (max-width: 480px) {
	.gN3r0idC {
		width: auto;
		padding: 0;
	}
}
._1N15PxYE {
	display: flex;
	justify-content: space-between;
}
._1N15PxYE button {
	border: 0;
	font-size: 22px;
	font-weight: 400;
	background-color: #eee;
	color: #a0a0a0;
	height: 52px;
	min-width: 52px;
	border-radius: 25px;
	cursor: pointer;
}
._1N15PxYE button:hover {
	background-color: #ddd;
}
._1N15PxYE button[data-action="next"] {
	padding: 0 35px;
	margin-left: auto;
}
._1wuKPg6Y {
	padding-top: 10px;
	width: 760px;
}
._1kh4LQY5 {
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-size: 28px;
	font-weight: 900;
	padding-bottom: 10px;
	color: #474747;
}
._1Q7IV61O {
	padding-bottom: 5px;
	color: #474747;
}
._1Q7IV61O,
._2AvYY2Zk {
	font-size: 16px;
	font-weight: 400;
}
._2AvYY2Zk {
	padding-bottom: 30px;
}
._32BSh2HQ {
	background: #fff;
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
	padding-top: 30px;
}
._32BSh2HQ ._3cmhckk6 {
	color: #009653;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0.7;
}
._32BSh2HQ ._2c0hjB9U,
._32BSh2HQ ._3HS5LF6k,
._32BSh2HQ .Lknb-TVk {
	background: #fff;
	min-width: 100%;
	position: relative;
	transition: all 0.3s ease-in;
	text-align: center !important;
}
._32BSh2HQ .Lknb-TVk {
	text-align: center;
}
._32BSh2HQ ._3HS5LF6k {
	text-align: right;
}
._32BSh2HQ[data-descr="1"] ._3HS5LF6k,
._32BSh2HQ[data-descr="1"] .Lknb-TVk,
._32BSh2HQ[data-descr="2"] ._2c0hjB9U,
._32BSh2HQ[data-descr="2"] ._3HS5LF6k,
._32BSh2HQ[data-descr="100"] ._3HS5LF6k,
._32BSh2HQ[data-descr="100"] .Lknb-TVk,
._32BSh2HQ[data-descr="200"] ._2c0hjB9U,
._32BSh2HQ[data-descr="200"] ._3HS5LF6k {
	opacity: 0;
}
._32BSh2HQ[data-descr="2"] .Lknb-TVk,
._32BSh2HQ[data-descr="200"] .Lknb-TVk {
	margin-left: -100%;
	opacity: 0.3;
}
._32BSh2HQ[data-descr="3"] ._2c0hjB9U,
._32BSh2HQ[data-descr="3"] ._3HS5LF6k,
._32BSh2HQ[data-descr="300"] ._2c0hjB9U,
._32BSh2HQ[data-descr="300"] ._3HS5LF6k {
	opacity: 0;
}
._32BSh2HQ[data-descr="3"] .Lknb-TVk,
._32BSh2HQ[data-descr="300"] .Lknb-TVk {
	margin-left: -100%;
}
._32BSh2HQ[data-descr="4"] ._2c0hjB9U,
._32BSh2HQ[data-descr="4"] ._3HS5LF6k,
._32BSh2HQ[data-descr="400"] ._2c0hjB9U,
._32BSh2HQ[data-descr="400"] ._3HS5LF6k {
	opacity: 0;
}
._32BSh2HQ[data-descr="4"] .Lknb-TVk,
._32BSh2HQ[data-descr="400"] .Lknb-TVk {
	margin-left: -100%;
	opacity: 0.3;
}
._32BSh2HQ[data-descr="5"] ._2c0hjB9U,
._32BSh2HQ[data-descr="5"] .Lknb-TVk,
._32BSh2HQ[data-descr="500"] ._2c0hjB9U,
._32BSh2HQ[data-descr="500"] .Lknb-TVk {
	opacity: 0;
}
._32BSh2HQ[data-descr="5"] ._3HS5LF6k,
._32BSh2HQ[data-descr="500"] ._3HS5LF6k {
	margin-left: -200%;
}
@media (max-width: 768px) {
	._1wuKPg6Y {
		max-width: 460px;
		width: calc(100% - 44px);
	}
}
@media (max-width: 360px) {
	._1wuKPg6Y {
		max-width: 320px;
		width: calc(100% - 44px);
	}
}
._1XLQfVOs {
	width: auto;
	background-color: #fff;
	padding: 10px 22px 50px;
	padding: 10px 0 50px;
}
._3cExzkXI {
	-webkit-appearance: none;
	width: calc(100% - 46px);
	height: 15px;
	border-radius: 5px;
	outline: none;
	opacity: 0.7;
	transition: opacity 0.2s;
	background: #fff;
	background: #3fd847;
	background: linear-gradient(
		90deg,
		#3fd847 0,
		#3fd847 18%,
		#fff 0,
		#fff 20.5%,
		#3fd847 0,
		#3fd847 38.5%,
		#fff 0,
		#fff 41%,
		#3fd847 0,
		#3fd847 59%,
		#fff 0,
		#fff 61.5%,
		#3fd847 0,
		#3fd847 79.5%,
		#fff 0,
		#fff 82%,
		#3fd847 0,
		#3fd847
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3fd847",endColorstr="#3fd847",GradientType=1);
	padding: 0;
	margin: 20px 22px;
	border-top: 10px solid #fff;
	border-bottom: 10px solid #fff;
}
._3cExzkXI::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20%;
	height: 50px;
	border-radius: 50%;
	background: #4caf50;
	cursor: pointer;
	transition: 0.1s;
}
._3cExzkXI::-moz-range-thumb {
	width: 20%;
	height: 50px;
	border-radius: 50%;
	background: #4caf50;
	cursor: pointer;
	transition: 0.1s;
}
._1CVmaVmL {
	opacity: 0;
}
/*# sourceMappingURL=style.min.css.map*/
