.my-container.medium{
	max-width:1140px;
}
.s-p-title{
	font-size:40px;
	font-weight:600;
	line-height:120%;
	margin:50px 0 40px;
}
.s-p-subtitle{
	font-size:24px;
	font-weight:500;
	line-height:150%;
	margin:50px 0 40px;
}
.scene-pick-block p{
	font-size:18px;
	font-weight:500;
	line-height:30px;
	margin:0 0 20px;
}

.progress-bar {
	width: 100%;
	height: 20px;
	background: #F5F5F5;
	box-shadow: inset 0 2px 1px 0 rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	position: relative;
	margin: 118px 0 70px;
}
.progress-bar__fill {
	width: 0%;
	height: 100%;
	background: linear-gradient(to bottom, #f05700, #e25100);	
	border-radius: 4px;
	transition: width 0.3s ease;
	position:relative;
}
.progress-bar__fill:before{
	content:'';
	display:block;
	width:100%;
	height:10px;
	position:absolute;
	top:0;
	left:0;right:0;
	background: linear-gradient(to right, #f77933 0%, #fa7f38 40%, #fa9a50 65%, #f9813a 90%, #f87934 100%);
	box-shadow: inset 0 2px 1px 0 rgba(0, 0, 0, 0.1);
	border-radius:4px;
}
.progress-bar__label {
	display:inline-block;
	position: absolute;
	padding-left:10px;
	bottom: calc(100% + 18px);
	font-size: 12px;
	line-height:12px;
	font-weight:600;
	color:#939393;
	white-space: nowrap;
	padding-bottom:4px;
	border-left:1px solid #F2F2F2;
	letter-spacing:3%;
}
.progress-bar--incomplete .progress-bar__label.label-right{
	right:0;
	left:auto;
	border:0;
	border-right:1px solid #F2F2F2;
	padding-left:0;
	padding-right:5px;
	text-align:right;
}
.progress-bar__percent{
	display:block;
	width:100%;
	font-weight:bold;
	color:#313131;
	font-size:24px;
	line-height:24px;
	margin-bottom:10px;
	letter-spacing:0%;
}
.progress-bar--incomplete .progress-bar__label {
	left:100%;
}
.progress-bar--complete .progress-bar__label {
	left: 50%;
	transform: translateX(-50%);
	text-align:center;
	border-left:0;
	right:auto;
}

.scene-pick-variants{
	margin-bottom:60px;
}
.radio-container {
	display: flex;
	align-items: center;
	background:#F9F9F9;
	margin: 20px 0;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}
.radio-container input[type="radio"] {
	display: none;
}
.radio-container-background {
	display: flex;
	align-items: center;
	background:#F9F9F9;
	padding:35px 30px;
	border-radius: 5px;
	width: 100%;
	transition: background-color 0.3s ease;
}
.radio-container input[type="radio"]:checked ~ .radio-container-background {
	background: #FFF2E5; 
}
.radio-custom {
	width: 16px;
	height: 16px;
	background: #E6E6E6;
	border-radius: 50%;
	margin-right: 30px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
	border:1px solid #bebebe;
	transition: background 0.3s ease;
	position:relative;
}
.radio-container:hover .radio-container-background {
	background:#FFF2E5;
}
.radio-container input[type="radio"]:checked ~ .radio-container-background .radio-custom {
	background: #fff;
	border-color:#FF5C02;
	box-shadow:none;
}
.radio-container input[type="radio"]:checked ~ .radio-container-background .radio-custom:before{
	content:'';
	display:block;
	width:10px;
	height:10px;
	background:#FF5C02;
	position:absolute;
	top:2px;
	left:2px;
	border-radius:50%;
}
.radio-letter {
	font-weight: 600;
	width:65px;
	font-size:18px;
	color: #313131;
}
.radio-label {
	flex: 1;
	font-size: 16px;
	line-height:150%;
	color: #313131;
}
.scene-pick-loadmore{
	font-family: "Montserrat", sans-serif;
	display:flex;
	align-items: center;
	justify-content: center; 
	margin:44px auto;
	padding:20px 30px;
	background:#F3F3F3;
	color:#313131;
	border-radius:41px;
	border:2px solid #313131;
	font-weight:bold;
	font-size:17px;
	line-height:17px;
	cursor:pointer;
}
.scene-pick-loadmore:hover{
	background:#313131;
	color:#fff;
}

@media (max-width: 991px) {
	.s-p-title {
		margin: 30px 0 40px;
		font-size: 20px;
		line-height: 25px;
	}
	.scene-pick-block p {
		font-size: 18px;
		line-height: 24px;
	}
	.progress-bar {
		height:12px;
	}
	.progress-bar__label{
		font-size:10px;
		line-height:10px;
		padding-bottom:1px;
	}
	.progress-bar__percent{
		font-size:18px;
		line-height:18px;
	}
	.progress-bar__label {
		bottom: calc(100% + 15px);
	}
	.progress-bar__fill:before {
		height:6px;
	}
	.s-p-subtitle {
		margin:50px 0 20px;
		font-size: 18px;
		line-height: 25px;
	}
	.radio-container-background {
		padding: 20px 15px; 
	}
	.radio-custom {
		margin-right:10px;
	}
	.radio-letter{
		width:32px;
	}
	.radio-label {
		font-size: 13px;
		line-height: 25px;
	}
	.radio-container {
		margin:10px 0;
	}
	.scene-pick-loadmore {
		padding:15px 20px;
		font-size:13px;
		line-height:13px;
		border-color:#CCCCCC
	}
}
@media (max-width: 767px) {
	.my-container.medium{
		padding-left:7px;
		padding-right:7px;
	}
	.s-p-title {
		margin: 0px 0 20px;
	}
	.scene-pick-block p {
		font-size: 14px;
	}
	.s-p-subtitle {
		margin: 20px 0;
		font-size: 16px;
		line-height:150%;
	}
	.progress-bar {
		height: 10px;
		margin:67px 0 64px;
	}
	.progress-bar__fill:before {
		height: 5px;
	}
	.progress-bar__label {
		padding-left:5px;
		font-size: 9px;
		line-height: 9px;
	}
	.progress-bar__percent {
		font-size: 14px;
		line-height: 14px;
		margin-bottom:5px;
	}
	.scene-pick-variants{
		margin-bottom:20px;
	}
	.radio-container-background {
		padding: 20px 10px; 
	}
	.radio-custom {
		width:11px;
		height:11px;
	}
	.radio-container input[type="radio"]:checked ~ .radio-container-background .radio-custom::before {
		width: 5px;
		height: 5px;
	}
	.radio-letter {
		font-size: 15px;
		width:27px;
	}
	.radio-label {
		font-size: 13px;
		line-height: 24px;
	}
	.scene-pick-loadmore{
		margin:37px auto;
	}
}