#msform .row {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

#msform .form-description {
	font-size: 12px;
}

#msform .selectable {
	cursor: pointer;
}

#msform .calc-section-head {
	text-align: center;
	font-size: 24px;
	margin: 20px 0 0 0;
	color: #e59a05;
}

#msform .calc-section-subhead {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}

#msform .img-title {
	font-size: 14px;
}

#msform .kitchen-block {
	background-color: #fff;
	width: 250px;
	margin: 10px;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	border: 2px solid rgba(0, 0, 0, 0);
}

#msform .item-block-active {
	border: 2px solid #e59a05;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
	background-color: #e59a05;
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
	border-top-color: #e59a05;
}

.irs--round .irs-handle {
	border-color: #e59a05;
}

.irs--round .irs-bar {
	background-color: #e59a05;
}
/*radio buttons*/

#msform .inputGroup {
	background-color: #fff;
	display: block;
	margin: 10px 0;
	position: relative;
}

#msform .inputGroup label {
	padding: 12px 30px;
	width: 100%;
	display: block;
	text-align: left;
	color: #323232;
	cursor: pointer;
	position: relative;
	z-index: 2;
	transition: color 200ms ease-in;
	overflow: hidden;
	font-size: 16px;
}

#msform .inputGroup label:before {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	content: '';
	background-color: #e59a05;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale3d(1, 1, 1);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	z-index: -1;
}

#msform .inputGroup label:after {
	width: 32px;
	height: 32px;
	content: '';
	border: 2px solid #D1D7DC;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
	background-repeat: no-repeat;
	background-position: 2px 3px;
	border-radius: 50%;
	z-index: 2;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	transition: all 200ms ease-in;
}

#msform .inputGroup input:checked ~ label {
	color: #fff;
}

#msform .inputGroup input:checked ~ label:before {
	transform: translate(-50%, -50%) scale3d(56, 56, 1);
	opacity: 1;
}

#msform .inputGroup input:checked ~ label:after {
	background-color: #54E0C7;
	border-color: #54E0C7;
}

#msform .inputGroup input {
	width: 32px;
	height: 32px;
	order: 1;
	z-index: 2;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	visibility: hidden;
}

#msform .form {
	padding: 0 16px;
	max-width: 550px;
	margin: 50px auto;
	font-size: 18px;
	font-weight: 600;
	line-height: 36px;
}

.price-from, .price-to {
	padding: 5px;
  line-height: 2;
  font-size: 20px;
  font-weight: 700;
}

/*form styles*/
#msform {
	margin: 0 auto;
	text-align: center;
	position: relative;
	background-color: inherit;
  padding: inherit;
}

.succes-text {
	line-height: 6;
	color: #43A047;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 auto;
/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
/*#msform input:not(.calc-next,.calc-previous), #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 50%;
	box-sizing: border-box;
	color: #2C3E50;
	font-size: 13px;
}
*/
.objects-input input {
	margin: 20px auto;
	display: block;
}
/*buttons*/
#msform .calc-previous {
	background-color: #ccc;
}
#msform .calc-previous:hover {
	background-color: #c77c00;
}

#msform .action-button {
	margin: 10px 5px;
}
/*headings*/
#msform .fs-title {
	font-size: 16px;
	text-transform: uppercase;
	color: #323232;
	margin-bottom: 10px;
}

#msform .fs-subtitle {
	font-weight: normal;
	font-size: 14px;
	color: #646464;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	overflow: hidden;
	counter-reset: step;
	width: 80%;
	margin: 0 auto 30px;
	padding-left: 0;
}

#progressbar li {
	list-style-type: none;
	color: #161616;
	text-transform: uppercase;
	font-size: 10px;
	width: 20%;
	float: left;
	text-align: center;
	position: relative;
	font-family: Tahoma, Geneva, sans-serif;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	text-align: center;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1;
 /*put it behind the numbers*/;
}

#progressbar li:first-child:after {
/*connector not needed before the first step*/
	content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after {
	background: #e59a05;
	color: white;
}

@media (max-width: 768px) {
	#progressbar {
		width: 100%;
	}

	#msform fieldset {
		width: 100%;
		padding: 10px;
	}

	#msform .form {
		padding: 0 5px;
	}
}
