.calculator-container {
	flex: 1 1 auto;	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}
.calculator-container .widget {

	flex: 1 0 auto;

	width: 100%;
	padding: 3em;
	
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
	flex-wrap: nowrap;

}
.calculator-container .widget .params {

	flex: 1 1 auto;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	
	padding-right: 3em;
	padding-bottom: 3em;
	
	margin: 0;
	
	height: auto;			
}
.calculator-container .widget .params .param-title {
	flex: 1 1 auto;
	color: #555;
	font-size: 1.3em;
	text-transform: uppercase;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	line-height: 1;	
}
.calculator-container .widget .params .param-title sup {
	margin-top: -5px;	
}
.calculator-container .widget .params .param-title a.question {
	text-decoration: none;
	color: var(--color-configurator-light);
	margin-left: 0.25em;
	margin-top: -1px;
}
.calculator-container .widget .params .param-title a.question:hover {
	color: var(--color-configurator-dark);
}
.calculator-container .widget .params .param-title a.question::after {
	content: '\f29c';
	font-family: FontAwesome;
}
.calculator-container .widget .params .param-title::before {
	content: '';
	display: inline-block;
	width: 2.2em;
	height: 2.2em;
	margin-right: 0.3em;
	background-size: 100% 100%;
	margin-top: -1px;
}
.calculator-container .widget .params .param-title.width::before {
	background-image: url(/images/icons/width.png);
}
.calculator-container .widget .params .param-title.sorting::before {
	background-image: url(/images/icons/sorting.png);
}
.calculator-container .widget .params .param-title.cover::before {
	background-image: url(/images/icons/cover.png?3);
}
.calculator-container .widget .params .param-title.color::before {
	background-image: url(/images/icons/color.png);
}
.calculator-container .widget .params .param-title.area::before {
	background-image: url(/images/icons/area.png?3);
}
.calculator-container .widget .params .param {
	flex: 1 1 auto;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	
	position: relative;
	
	margin: 0.25em 0 0 0;
	
	/*padding-bottom: 1em;*/
	margin-bottom: 2em;
				
	/*border-bottom: 1px solid var(--color-section-separator);*/
}
.calculator-container .widget .params .param.area {
	margin-top: 4em;
}
.param-title.area input {
	display: inline-block;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1em;
	text-align: center;
	color: #555;
	font-weight: 500;
	width: 3em;
	border: 1px solid #515A62;
	background-color: #ECECEC;
	border-radius: 4px;
	margin: 0 0.25em;
	padding: 0.1em 0.25em;
	line-height: 1;
}
.calculator-container .widget .params .param .color-control {

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
}
.calculator-container .widget .params .param .color-control input[type=radio] {
	display: none;
}
.calculator-container .widget .params .param .color-control label {
	flex: 0 0 calc(33% - 1vw);
	width: calc(33% - 1vw);
	height: 0;
	padding-bottom: calc(3/4*33% - 1vw);
	margin: calc(0.5vw);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	
	position: relative;
	
	
	border: 5px solid white;
	
	cursor: pointer;	
}
.calculator-container .widget .params .param .color-control label > span {
	position: absolute;
	left: 1em;
	right: 1em;
	bottom: 1em;
	background-color: rgba(0, 0, 0, 0.25);
	color: white;
	font-weight: 600;
	font-size: 1.1em;
	padding: 1em;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}
.calculator-container .widget .params .param .color-control label span a {
	color: white;
	text-decoration: none;
}
.calculator-container .widget .params .param .color-control input[type="radio"]:checked+label {
	border-color: #0FA652;
}
.calculator-container .widget .params .param.disabled .color-control input[type="radio"]:checked+label,
.calculator-container .widget .params .param .color-control input[type="radio"].disabled:checked+label {
	border-color: #fff;
	background-size: 100% 100%;
}
.calculator-container .widget .params .param #area {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0;
	top: 50%;	
	height: 4px;
	margin-top: -2px;
	background: var(--color-configurator-light);
	border-radius: 4px;
}
.calculator-container .widget .params .param #area .ui-slider-range-min {
	height: 4px;
	width: 100%;
	position: absolute;
	background: var(--color-configurator-light);
	border: none;
	border-radius: 4px;
	outline: none;
}
.calculator-container .widget .params .param #area .ui-slider-handle {
	width: 2em;
	height: 2em;
	max-width: 2em;
	display: block;
	border-radius: 50%;
	border: 1px solid var(--color-configurator-light);
	background: white;
	box-shadow: 0px 3px 0px rgba(0,0,0,0.1);
	position: absolute;
	margin-left: -1em;
	margin-top: -1em;
	top: 50%;
	cursor: pointer;
	outline: none;
}
.calculator-container .widget .params .param #area .ui-slider-handle::before {
	content: attr(data-title);
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.7em 0.5em 0.5em 0.5em;
	background-color: var(--color-configurator-light);
	color: white;
	font-weight: 700;
	border-radius: 5px;
	font-size: 1.25em;
	line-height: 1;
	white-space: nowrap;
	top: -12px;
	left: 50%;
	transform: translate(-50%, -100%);
}
.calculator-container .widget .params .param #area .ui-slider-handle::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: var(--color-configurator-light) transparent transparent transparent;
	position: absolute;
	top: -12px;
	left: 50%;
	margin-left: -10px;
}
.result {
	flex: 0 0 auto;
	width: 24em;
	height: auto;
	max-height: 90vh;

	/*min-height: 100%;*/
	
	padding: 0.5em 1.5em 2em 1.5em;
	border: 1px solid var(--color-section-separator);
	
	background-color: var(--color-shaded-bg);
	z-index: 9999;

	position: relative;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;	
}
.result > b {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.25em;
	margin-bottom: 1em;
}
.result .incomplete{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	text-align: center;
	padding: 1.5em;
	background-color: #EEEEF0;
	color: #333333;
	z-index: 999999;
}
.result .subcontainer {

	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.result.hidden {
	visibility: hidden;
}
.result.fixed {
	position: fixed;
	right: 3em;
	top: 3em;
	bottom: 3em;
}
.result.fixed .edit-order {
	margin-top: 1em;
}
.result .title {
	font-size: 1.3em;
	text-transform: uppercase;
	line-height: 1;
	margin: 1em auto 0.25em auto;
}
.result .image {
	flex: 0 0 auto;
	border: 1px solid var(--color-section-separator);
	width: 22em;
	background-size: 100% 100%;
	position: relative;
	z-index: 1;	
}
.result .image .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	padding-bottom: calc(3/4*100%);
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 10;
}
.result .availability {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	line-height: 1;
	margin: 2em auto 1em auto;
	font-weight: bold;
	color: var(--color-configurator-light);
	font-size: 1.1em;
}
.result .availability::before {
	content: '\f00c';
	font-family: FontAwesome;
	font-size: 1.3em;
	margin-right: 0.2em;
	color: var(--color-configurator-light);
	font-weight: normal;
}
.result .book-comment {
	text-align: center;
	line-height: 1.2;
	margin-top: 0.75em;
}
.result .price {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	color: var(--color-configurator-dark);
	margin: 1.5em auto;
}
.result .price b {
	flex: 0 0 auto;
	font-size: 1.25em;
	line-height: 1;
}
.result .price > span {
	flex: 0 0 auto;
	font-size: 4em;
	line-height: 1.2;
	font-weight: 600;
	display: block;
	margin: 0.2em auto 0 auto;
}
.result .price-total {
	font-weight: bold;
	white-space: nowrap;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.old-price {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	margin-top: 1em;
	font-size: 1.4em;
	line-height: 1;
	font-weight: 500;
	position: relative;
}
.old-price:empty {
	display: none;
}
.old-price::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -10px;
	left: -10px;
	height: 2px;
	margin-top: -1px;
	background-color: #333333;
	z-index: 99;
	transform-origin: center center;
	opacity: 0.5;
}
#price.sale {
	color: red;
}

#price::after,
.old-price::after,
#total-price::after,
.you-save::after {
	content: "\e900";
	font-family: rub;
	font-weight: normal;
	font-size: 0.75em;
	margin-left: 0.35em;
	vertical-align: 0.025em;
}
.you-save {
	padding-top: 0.25em;
	color: red;
	font-size: 0.9em;
}


.you-save:empty {
	display: none;
}
#m2 {
	display: none;
}

.tree-1 {
	width: 100px;
	height: 6.5em;
	background-image: url(/images/scheme_english.png?1);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: block;
}
.tree-2 {
	width: 100px;
	height: 100px;
	background-image: url(/images/scheme_french.png?1);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: block;
}
.tree-0 {
	width: 100px;
	height: 100px;
	background-image: url(/images/scheme_engineer.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: block;
}

.image-preloader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: -1;
}
.image-preloader > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.image-preloader > div > div {
	width: 10px;
	height: 23px;
	margin: 1px 2px 1px 1px;
}
.image-preloader > div:first-of-type > div {
	transform: skewX(33deg);
}
.image-preloader > div:last-of-type > div {
	transform: skewX(-33deg);
}
.image-preloader > div > div:nth-of-type(1) {
	background-color: var(--color-configurator-dark);
	animation: pulse 1s ease-in-out infinite;
	animation-delay: 0s;
}
.image-preloader > div > div:nth-of-type(2) {
	background-color: var(--color-configurator-medium);
	animation: pulse 1s ease-in-out infinite;
	animation-delay: 0.25s;
}
.image-preloader > div > div:nth-of-type(3) {
	background-color: var(--color-configurator-light);
	animation: pulse 1s ease-in-out infinite;
	animation-delay: 0.5s;
}
.tooltipster-content h4 {
	font-size: 1.1em;
}
.tooltipster-content p {
	display: block;
	margin-bottom: 1em;
}
.tooltipster-content p:last-of-type {
	margin-bottom: 0;
}
.param-title.color, 
.param.color {
	transition: opacity 0.5s ease-in-out 0s;
}

.param-title.color.disabled, 
.param.color.disabled,
.param.color input.disabled,
.param.color label.disabled {
	opacity: 0.35;
	pointer-events: none;
	cursor: default;
	display: none;
}

/* @end */

/* @group Segmented Control */

.segmented-control {
	position: relative;
	display: inline-block;
	/*border: 1px solid currentColor;*/
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	overflow: hidden;
	margin: .5em auto;
	border-radius: 2px;
	box-sizing: border-box;
	user-select: none;
	transition-property: left;
	transition-duration: 0.35s;
	transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
	
	width: 100%;
	color: var(--color-configurator-light);
	background-color: rgba(0, 0, 0, .075);
	
	/*border-radius: 0.5em;*/
}
.segmented-control > input {
	position: absolute;
	left: -10000px;
	opacity: 0;
}
.segmented-control > input[type='checkbox'] ~ label {
	transition-duration: 0;
}
.segmented-control > input[type='checkbox'] ~ label:before {
	opacity: 0;
}

.segmented-control > input:disabled:nth-child(1) ~ label:nth-of-type(1) {
	opacity: 0.3;
	cursor: not-allowed;
}
.segmented-control > input:nth-child(1):checked ~ label:nth-of-type(1):after, 
.segmented-control > input:nth-child(1):checked ~ label:nth-of-type(1):before {
	opacity: 1;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1):after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1):before, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1) ~ label:after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1) ~ label:before {
	left: 0%;
}





.segmented-control > input:disabled:nth-child(2) ~ label:nth-of-type(2) {
	opacity: 0.3;
	cursor: not-allowed;
}
.segmented-control > input:nth-child(2):checked ~ label:nth-of-type(2):after, 
.segmented-control > input:nth-child(2):checked ~ label:nth-of-type(2):before {
	opacity: 1;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2):after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2):before, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:before {
	left: 0%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2):after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2):before, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:before {
	left: 50%;
}



.segmented-control > input:disabled:nth-child(3) ~ label:nth-of-type(3) {
	opacity: 0.3;
	cursor: not-allowed;
}
.segmented-control > input:nth-child(3):checked ~ label:nth-of-type(3):after, 
.segmented-control > input:nth-child(3):checked ~ label:nth-of-type(3):before {
	opacity: 1;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3):after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3):before, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:before {
	left: 0%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3):after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3):before, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:before {
	left: 33.33333%;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3):after, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3):before, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:after, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:before {
	left: 66.66667%;
}

.segmented-control > input:disabled:nth-child(4) ~ label:nth-of-type(4) {
	opacity: 0.3;
	cursor: not-allowed;
}
.segmented-control > input:nth-child(4):checked ~ label:nth-of-type(4):after, 
.segmented-control > input:nth-child(4):checked ~ label:nth-of-type(4):before {
	opacity: 1;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4):after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4):before, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
	left: 0%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4):after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4):before, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
	left: 25%;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4):after, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4):before, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
	left: 50%;
}
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4):after, 
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4):before, 
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, 
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
	left: 75%;
}


.segmented-control > input:disabled:nth-child(5) ~ label:nth-of-type(5) {
	opacity: 0.3;
	cursor: not-allowed;
}
.segmented-control > input:nth-child(5):checked ~ label:nth-of-type(5):after, 
.segmented-control > input:nth-child(5):checked ~ label:nth-of-type(5):before {
	opacity: 1;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5):after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5):before, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, 
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
	left: 0%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5):after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5):before, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, 
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
	left: 20%;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5):after, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5):before, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, 
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
	left: 40%;
}
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5):after, 
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5):before, 
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, 
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
	left: 60%;
}
.segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5):after, 
.segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5):before, 
.segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, 
.segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
	left: 80%;
}
.segmented-control > label {
	display: inline-flex;
	padding: 0 .71em;
	cursor: pointer;
	float: left;
	min-height: 3em;
	line-height: 1;
	font-style: inherit;
	font-weight: inherit;
	text-decoration: inherit;
	transition-property: none;
	transition-duration: inherit;
	transition-timing-function: inherit;
	color: #444;
	border-right: 2px solid white;
	border-left: 2px solid white;
	
	height: 100%;
	
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.segmented-control > label:before, 
.segmented-control > label:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.segmented-control > label:after {
	color: white;
	content: attr(data-value);
	text-align: center;
	padding: inherit;
	z-index: 10;
	font-style: inherit;
	text-decoration: inherit;
	font-weight: inherit;
	opacity: 0;
	transition-property: opacity, left;
	transition-duration: inherit;
	transition-timing-function: inherit;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.segmented-control > label:after, 
.segmented-control > label {
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	font-weight: 600;
}
.segmented-control > label:before {
	content: '';
	color: inherit;
	background: var(--color-configurator-light);
	border-radius: 0;
	transition-property: left;
	transition-duration: inherit;
	transition-timing-function: inherit;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;	
}
.segmented-control > label:first-of-type:nth-last-of-type(1), 
.segmented-control > label:first-of-type:nth-last-of-type(1):after, 
.segmented-control > label:first-of-type:nth-last-of-type(1):before, 
.segmented-control > label:first-of-type:nth-last-of-type(1) ~ label, 
.segmented-control > label:first-of-type:nth-last-of-type(1) ~ label:after, 
.segmented-control > label:first-of-type:nth-last-of-type(1) ~ label:before {
	width: 100%;
}
.segmented-control > label:first-of-type:nth-last-of-type(2), 
.segmented-control > label:first-of-type:nth-last-of-type(2):after, 
.segmented-control > label:first-of-type:nth-last-of-type(2):before, 
.segmented-control > label:first-of-type:nth-last-of-type(2) ~ label, 
.segmented-control > label:first-of-type:nth-last-of-type(2) ~ label:after, 
.segmented-control > label:first-of-type:nth-last-of-type(2) ~ label:before {
	width: 50%;
}
.segmented-control > label:first-of-type:nth-last-of-type(3), 
.segmented-control > label:first-of-type:nth-last-of-type(3):after, 
.segmented-control > label:first-of-type:nth-last-of-type(3):before, 
.segmented-control > label:first-of-type:nth-last-of-type(3) ~ label, 
.segmented-control > label:first-of-type:nth-last-of-type(3) ~ label:after, 
.segmented-control > label:first-of-type:nth-last-of-type(3) ~ label:before {
	width: 33.33333%;
}
.segmented-control > label:first-of-type:nth-last-of-type(4), 
.segmented-control > label:first-of-type:nth-last-of-type(4):after, 
.segmented-control > label:first-of-type:nth-last-of-type(4):before, 
.segmented-control > label:first-of-type:nth-last-of-type(4) ~ label, 
.segmented-control > label:first-of-type:nth-last-of-type(4) ~ label:after, 
.segmented-control > label:first-of-type:nth-last-of-type(4) ~ label:before {
	width: 25%;
}
.segmented-control > label:first-of-type:nth-last-of-type(5), 
.segmented-control > label:first-of-type:nth-last-of-type(5):after, 
.segmented-control > label:first-of-type:nth-last-of-type(5):before, 
.segmented-control > label:first-of-type:nth-last-of-type(5) ~ label, 
.segmented-control > label:first-of-type:nth-last-of-type(5) ~ label:after, 
.segmented-control > label:first-of-type:nth-last-of-type(5) ~ label:before {
	width: 20%;
}


/* @end */


/* @group Book Form */
.book-form {
	background: white;
	border: 1px solid rgba(0, 0, 0, .2);
	box-shadow: 0px 3px 2em rgba(0, 0, 0, 0.2);
	width: 80%;
	max-width: 600px;
	display: none;
}

.book-form .container {	
	padding: 3em 1.5em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.book-form .container form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.book-form .container form input {
	background: white;
	border: none;
	border-bottom: 2px solid var(--color-configurator-medium);
	outline: none;
	padding: 1em;
	font-size: 1.2em;
	width: 100%;
	font-weight: 500;
	color: var(--color-configurator-dark);
	margin-bottom: 2em;
}
.book-form .container form p {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 1em;
}
.book-form .container form span {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 1em;
	font-weight: 500;
	font-size: 1.2em;
}
.image-preloader.form {
	z-index: 10;
	display: none;
}
.order-result {
	font-size: 1.2em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	line-height: 1.5;
}
.order-result:before {
	content: '\f00c';
	font-family: FontAwesome;
	font-size: 5em;
	color: var(--color-light-brown);
	margin-bottom: 0.1em;
}

.order-result b {
	font-weight: bold;
	display: block;
	font-size: 1.4em;
	margin-bottom: 1em;
}

/* @end */

.ball-grid-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ball-grid-pulse > div {
  background-color: #aaaaaa;
}