/*
 * Steps
 */
 .yip-calculator__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 89px;
	padding-bottom: 24px; 
}

.yip-calculator__step {
	margin: 0 68px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.yip-calculator__step:first-child {
	margin-left: 0;
}

.yip-calculator__step:last-child {
	margin-right: 0;
}

.yip-calculator__step label {
	width: 114px;
	font-size: 20px;
	color: #868686;
	letter-spacing: -0.8px;
	line-height: 24px;
	text-align: center;
	display: inline-block;
	position: absolute;
	bottom: calc(100% + 13px);
	left: 50%;
	transform: translateX(-50%);
	font-weight: 700;
}

.yip-calculator__step span {
	width: 51px;
	height: 51px;
	border-radius: 50%;
	font-family: var(--roboto);
	font-weight: 500;
	font-size: 27px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background-color: #CBCBCB;
}

.yip-calculator__step.-past span {
	cursor: pointer;
}

.yip-calculator__step.-current span {
	background-color: var(--apple);
}

.yip-calculator__step:not(:first-child) span::before,
.yip-calculator__step:not(:last-child) span::after  {
	content: '';
	width: 69px;
	height: 10px;
	background-color: #CBCBCB;
	position: absolute;
	top: calc(50% - 5px);
	z-index: -1;
}

.yip-calculator__step:not(:first-child) span::before {
	right: calc(100% - 1px);
}

.yip-calculator__step:not(:last-child) span::after {
	left: calc(100% - 1px);
}

.yip-calculator__step.-current span::before, 
.yip-calculator__step.-past span::after {
	background-color: #E65A41;
}

/*
 * Calculator
 */
.yip-calculator__container {
	width: 100%;
	max-width: 1120px;
	border: 1px solid #EDEDED;
	background-color: #FAFAFA;
	padding: 42px 31px 29px;
	margin: 0 auto;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.yip-calculator__container:not([data-current="1"]) {
	padding-bottom: 0;
}

.yip-calculator__container[data-current="2"] {
	background-color: #e5e5e5;
	padding: 0 0 0 173px;
}

.yip-calculator__container h4 {
	text-align: center;
	margin: 0 0 15px;
}

.yip-calculator__container h6 {
	max-width: 459px;
	margin: 0 auto;
	text-align: center;
	font-size: 21px;
	line-height: 25px;
	font-weight: 400;
}

.yip-calculator__container h4:last-child {
	font-weight: 400;
	max-width: 617px;
	margin: 0 auto;
}

.yip-calculator__content[data-step="1"] {
	opacity: 0;
	z-index: -1;
	/* position: relative; */
	position: absolute;
}

.yip-calculator__content:not([data-step="1"]) {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background-color: #FAFAFA;
	width: 100%;
	max-width: 781px;
	padding: 30px 30px 112px 43px;
	margin-left: auto;
	position: absolute;
	top: 0;
	right: 0;
	/* opacity: 0;
	z-index: -1; */
	transform: translateX(100%);
	transition: all .5s ease;
}

.yip-calculator__content.-current[data-step="1"] {
	opacity: 1;
	z-index: 2;
	position: relative;
}

.yip-calculator__content.-current:not([data-step="1"]) {
	transform: none;
	opacity: 1;
	z-index: 2;
	position: initial;
}

.yip-calculator__content[data-step="2"] {
	padding: 32px 44px 31px 59px;
	max-width: none;
}

.yip-calculator__products {
	/* display: flex;
	flex-wrap: wrap; */
	max-width: 527px;
	justify-content: space-between;
	margin: 37px auto 47px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	grid-column-gap: 70px;
	grid-row-gap: 25px;
}

.yip-calculator__product {
	text-align: center;
	width: 129px;
}

.yip-calculator__product.-added {
	opacity: 0.4;
}

.yip-calculator__product.-added {
	cursor: default !important;
}

.yip-calculator__product:hover {
	cursor: pointer;
}

.yip-calculator__product-icon {
	border-style: solid;
	border-width: 1px;
	border-radius: 13px;
	width: 129px;
	height: 129px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.yip-calculator__product:nth-child(1) .yip-calculator__product-icon {
	border-color: var(--sunset);
}

.yip-calculator__product:nth-child(2) .yip-calculator__product-icon {
	border-color: var(--periwinkle);
}

.yip-calculator__product:nth-child(3) .yip-calculator__product-icon {
	border-color: var(--moss);
}

.yip-calculator__product:nth-child(4) .yip-calculator__product-icon {
	border-color: #f47f6b;
}

.yip-calculator__product:nth-child(5) .yip-calculator__product-icon {
	border-color: #6ea743;
}

.yip-calculator__product:nth-child(6) .yip-calculator__product-icon {
	border-color: #8b5d8b;
}

.yip-calculator__product p {
	font-size: 22px;
	line-height: 24px;
	font-weight: 600;
	color: #485355;
	margin: 0;
	letter-spacing: -0.88px;
}

.yip-calculator__product.-selected .yip-calculator__product-icon {
	border-color: var(--sunset);
	box-shadow: 0px 0px 0px 5px var(--sunset);
}

/*
 * Receipt
 */
.yip-calculator__receipt {
	position: relative;
	min-height: 42px;
	width: 211px;
	flex: 0 0 211px;
	z-index: 2;
	height: 100%;
}

.yip-calculator__receipt::before {
	content: '';
	height: 10px;
	background-image: url('../../images/Receipt_top.svg');
	background-position: top center;
	background-size: 100% auto;
	position: absolute;
	left: -3px;
	right: -3px;
	top: 0;
}

.yip-calculator__receipt::after {
	content: '';
	height: 34px;
	background-image: url('../../images/Receipt_bottom.svg');
	background-position: top center;
	background-size: 100% auto;
	position: absolute;
	left: -1.5px;
	right: -1.5px;
	top: 100%;
}

.yip-calculator__content[data-step="1"] .yip-calculator__receipt::after {
	top: initial;
	bottom: -1px;
}

.yip-calculator__label {
	padding: 24px;
	/* border-bottom: 1px solid var(--light); */
	margin-top: 5px;
	background-color: #fff;
	position: relative;
	box-shadow: 0px 0px 0px 1px #c3ccce;
}

.yip-calculator__label h6 {
	font-size: 16px;
	line-height: 1;
	margin: 0;
	text-align: left;
}

.yip-calculator__items {
	background-color: #fff;
	box-shadow: 0px 0px 0px 1px #c3ccce;
	/* min-height: 307px; */
	min-height: 277px;
	padding: 25px 25px 15px;
}

.yip-calculator__item {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.yip-calculator__item:not(:last-child) {
	margin-bottom: 60px;
}

.yip-calculator__item > span {
	width: 14px;
	height: 14px;
	display: inline-block;
	border: 2px solid #F47F6B;
	border-radius: 50%;
	margin-right: 7px;
	flex: 0 0 14px;
	position: relative;
	cursor: pointer;
}

.yip-calculator__item > span::before {
	content: '';
	width: 4px;
	height: 2px;
	background-color: #F47F6B;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.yip-calculator__item > div {
	flex: 1;
}

.yip-calculator__item p {
	font-family: var(--roboto);
	font-size: 17px;
	line-height: 21px;
	color: #868686;
	margin: 0;
	letter-spacing: -0.68px;
}

.yip-calculator__item-name {
	font-family: var(--josefinsans);
	font-weight: 700;
}

.yip-calculator__item-quality {
	font-weight: 900
}

.yip-calculator__item-price {
	font-weight: 700;
}

.yip-calculator__savings {
	background-color: #FFE6E2;
	box-shadow: 0px 0px 0px 1px #c3ccce;
	padding: 18px 22px 25px;
}

.yip-calculator__savings > span,
.yip-calculator__delivery > span {
	display: block;
	text-align: center;
	font-family: var(--roboto);
}

.yip-calculator__savings > span:first-child {
	font-size: 16px;
	line-height: 19px;
	color: #868686;
	font-weight: 500;
	margin-bottom: 7px;
}

.yip-calculator__savings > span:nth-child(2) {
	font-size: 20px;
	line-height: 20px;
	color: var(--apple);
	font-weight: 900;
}

.yip-calculator__delivery {
	box-shadow: 0px 1px 0px 1px #c3ccce;
	padding: 25px;
}

.yip-calculator__delivery > span:first-child {
	font-size: 16px;
	line-height: 19px;
	color: #485355;
	font-weight: 500;
	margin-bottom: 7px;
}

.yip-calculator__delivery > span:nth-child(2) {
	font-size: 20px;
	line-height: 20px;
	color: #485355;
	font-weight: 900;
}

.yip-calculator__estimate {
	background-color: #fff;
	box-shadow: 0px 0px 0px 1px #c3ccce;
	padding: 25px 20px 25px;
}

.yip-calculator__estimate > span {
	display: block;
	text-align: center;
	font-family: var(--roboto);
	color: #485355;
	line-height: 1;
}

.yip-calculator__estimate > span:first-child {
	font-size: 15px;
	margin-bottom: 17px;
}

.yip-calculator__estimate > span:nth-child(2) {
	font-size: 22px;
	font-weight: 700;
}

.receipt-wrap {
	display: flex;
	justify-content: flex-end;
}

/*
 * Options
 */
.yip-calculator__options {
	width: 100%;
	/* max-width: 436px; */
}

.yip-calculator__options h3 {
	font-size: 40px;
	line-height: 40px;
	margin: 0 0 50px;
	font-weight: 400;
}

.yip-calculator__option {
	margin-bottom: 36px;
}

.yip-calculator__option label {
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -0.72px;
	margin-bottom: 12px;
	color: #5A5A5A;
	font-weight: 300;
	display: block;
}

.yip-calculator__option input[type="range"] {
	width: 100%;
	/* cursor: pointer; */
}

.yip-calculator__option .slider-range {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 25px;
	margin-bottom: 20px;
	margin-top: 8px;
}

.yip-calculator__option .slider-range label {
	margin: 0;
	position: relative;
	cursor: pointer;
}

.yip-calculator__option .slider-range label.-selected {
	font-weight: 700;
}

.yip-calculator__option .slider-range label span {
	position: absolute;
	top: calc(100% + 35px);
	left: 50%;
	width: 242px;
	padding: 13px 20px 25px;
	background-color: rgba(118, 129, 132, 0.9);
	font-family: "Roboto", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: -0.68px;
	color: #fff;
	border-radius: 10px;
	box-shadow: 5px 5px 6px #00000029;
	display: none;
	z-index: 9;
}

.yip-calculator__option .slider-range label:hover span {
	display: block;
}

.yip-calculator__option .slider-range .dashed {
	display: inline-block;
	background-image: linear-gradient(to right, #cbcbcb 50%, rgba(255, 255, 255, 0) 0%);
	background-position: top;
	background-size: 12px 1px;
	background-repeat: repeat-x;
	width: 85%;
	height: 1px;
}

.yip-calculator__option.-thumb {
	display: flex;
	margin-bottom: 7px;
}

.yip-calculator__option .thumb {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	border: 1px solid #8590C8;
	/* margin-right: 30px; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.yip-calculator__option .thumb img {
	max-width: 30px;
}

.yip-calculator__option.-kitchen .thumb {
	border-color: #FBB04B;
}

.yip-calculator__option.-shutters .thumb {
	border-color: #8B8D57;
}

.yip-calculator__option.-wardrobes .thumb {
	border-color: #f47f6b;
}

.yip-calculator__option.-bathroom .thumb {
	border-color: #6ea743;
}

.yip-calculator__option.-laundry .thumb {
	border-color: #8b5d8b;
}

.yip-calculator__option.-thumb > div:first-child {
	margin-right: 22px;
}

.yip-calculator__option.-thumb > div:first-child > label {
	margin-bottom: 1px;
	font-weight: 700;
}

.yip-calculator__option.-flooring > div:first-child > label {
	color: #8590C8;
}

.yip-calculator__option.-kitchen > div:first-child > label {
	color: #FBB04B;
}

.yip-calculator__option.-shutters > div:first-child > label {
	color: #8B8D57;
}

.yip-calculator__option.-bathroom > div:first-child > label {
	color: #8B8D57;
}

.yip-calculator__option.-wardrobes > div:first-child > label {
	color: #f47f6b;
}

.yip-calculator__option.-laundry > div:first-child > label {
	color: #8590C8;
}

.yip-calculator__option.-thumb > div:nth-child(2) {
	flex: 1;
}

/*
 * Range slider
 */
.yip-calculator__option .slider-container {
	position: relative;
	z-index: 1;
}

.yip-calculator__option .slidecontainer {
	padding-bottom: 17px;
 }
.yip-calculator__option .slidecontainer {
	position: relative;
}
.yip-calculator__option .slidecontainer::before {
	content: '';
	height: 7px;
	background-color: #cbcbcb;
	position: absolute;
	left: 0;
	width: 100%;
	border: 1px solid #B7B7B7;
	border-radius: 9px;
	top: 0;
	z-index: -2;
	cursor: pointer;
}

.yip-calculator__option output {
  margin-bottom: 0px;
  position: absolute;
  width: 35px;
	height: 35px;
  background: #FBB04B;
  color: #fff;
	border-radius: 50%;
	font-size: 21px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	z-index: -1;
	box-shadow: 0px 3px 6px #00000029;
	top: 0;
}

.yip-calculator__option.-thumb .slidecontainer {
	margin: 0 6px;
}

.yip-calculator__option.-thumb output span {
	width: 7px;
	height: 8px;
	display: inline-block;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.yip-calculator__option .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 2.5px;
  background: transparent;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: 0;
}
.yip-calculator__option .slider:hover {
  opacity: 1;
}
.yip-calculator__option .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* background: #FBB04B; */
  cursor: pointer;
  /* border: 1px solid #fff; */
	background: transparent;
}
.yip-calculator__option .slider ::-moz-range-thumb {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* background: #FBB04B; */
  cursor: pointer;
  /* border: 1px solid #fff; */
	background: transparent;
}

/*
 * Radio
 */
.radio-options {
	display: flex;
	align-items: start;
	justify-content: space-between;
	border-top: 1px solid #e5e5e5;
	padding-top: 17px;
}

.radio-options.more-products {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.radio-option {
	text-align: center;
	cursor: pointer;
}

.radio-option:not(:last-child) {
	margin-right: 25px;
}

.radio-options.more-products .radio-option {
	margin: 0 25px 25px;
}

.radio-option .option {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 91px;
	height: 91px;
	border: 1px solid #CBCBCB;
	border-radius: 50%;
	position: relative;
}

.radio-option.-selected .option {
	border-color: var(--sunset);
	box-shadow: 0px 0px 0px 5px var(--sunset);
}

.radio-option > i {
	display: block;
	color: #5a5a5a;
	font-size: 14px;
	line-height: 16px;
	font-weight: 300;
	font-style: italic;
	margin-top: 19px;
}

.radio-options.more-products {
	border-top: 0;
}

.radio-options.more-products .radio-option .option {
	width: 77px;
	height: 77px;
	border-radius: 13px;
	border-color: #8590C8;
}

.radio-options.more-products .radio-option.-selected .option {
	border-color: var(--sunset);
}

.radio-options.more-products .radio-option > i {
	font-style: normal;
	font-size: 18px;
}

/*
 * Select dropdown
 */
.select-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.select-box__dropdown {
	align-items: center;
	background-color: #fff;
	border-radius: 16px;
	cursor: pointer;
	display: flex;
	min-width: 200px;
	/* justify-content: space-between; */
	justify-content: center;
	padding: 20px;
	border: 1px solid #0090FF;
	font-size: 13px;
	line-height: 1;
}

.select-box__dropdown > span,
.select-box__dropdown > img {
	margin-left: auto;
}

.select-box__options {
	align-items: center;
	background-color: #fff;
	border: 2px solid #D9E1E7;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	min-width: 200px;
	left: 0;
	position: absolute;
	top: calc(100% + 8px);
	transform: translateY(-50%);
	transition: opacity .8s ease, transform .3s ease;
	opacity: 0;
	z-index: -1;
}

.select-box.-open .select-box__options {
	opacity: 1;
	transform: none;
	z-index: 3;
}

.select-box__option {
	font-size: 12px;
	line-height: 1;
	color: var(--dark);
	padding: 20px;
	width: 100%;
	cursor: pointer;
	position: relative;
}

.select-box__option.-selected {
	color: var(--highlight);
	background-color: #D9E1E7;
}

.select-box__option.-selected::after {
	content: url('../../images/CheckMark.svg');
	width: 15px;
	height: 11px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

.select-box__option:hover {
	background-color: #D9E1E7;
}

/*
 * Nav
 */
.yip-calculator__nav {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.yip-calculator__nav a {
	font-size: 15px;
	line-height: 1;
	padding: 12px 38px;
	border-radius: 26px;
	color: #fff;
	background-color: #9D9DA8;
	transition: all .3s ease;
}

.yip-calculator__nav a:last-child {
	background-color: var(--apple);
}

.yip-calculator__nav a:hover {
	text-decoration: none;
	background-color: var(--dark);
}

.yip-calculator__nav a.-disabled {
	opacity: 0.7;
	cursor: default;
}

.yip-calculator__nav a.-disabled:hover {
	background-color: var(--apple);
}

.yip-calculator__content[data-step="1"] .yip-calculator__nav {
	justify-content: center;
	max-width: 527px;
	margin: 0 auto;
}

/*
 * Step 2
 */
.yip-calculator__content[data-step="2"] .yip-calculator__options {
	padding-right: 26px;
}

.yip-calculator__content[data-step="2"] .yip-calculator__option {
	display: inline-block;
}

.yip-calculator__content[data-step="2"] .yip-calculator__option:nth-child(2),
.yip-calculator__content[data-step="2"] .yip-calculator__option:nth-child(3) {
	max-width: 253px;
}

.yip-calculator__content[data-step="2"] .yip-calculator__option:nth-child(2) {
	margin-right: 59px;
}

.yip-calculator__content[data-step="2"] .yip-calculator__option:nth-child(4) {
	max-width: 340px;
	margin-right: 60px;
}

.yip-calculator__content[data-step="2"] .yip-calculator__option:nth-child(5) {
	max-width: 214px;
}

/*
 * Step 3
 */
.yip-calculator__container[data-current="3"] {
	padding: 0;
}

.yip-calculator__content[data-step="3"] {
	/* max-width: 838px; */
	padding: 0;
	margin-left: 0;
	max-width: none;
	display: flex;
	align-items: stretch;
}

.yip-calculator__content[data-step="3"] .yip-calculator__options {
	/* max-width: 543px; */
	max-width: none;
	padding: 32px 79px 31px 79px;
}

.yip-calculator__content[data-step="3"] .yip-calculator__tip {
	/* width: 100%; */
	background-color: #E5E5E5;
	padding: 36px 27px;
	/* margin-top: 60px; */
	position: relative;
	max-width: 173px;
	/* display: none;
	align-items: flex-start; */
}

/* .yip-calculator__content[data-step="3"].-current .yip-calculator__tip {
	display: flex;
} */

/* .yip-calculator__content[data-step="3"] .yip-calculator__tip::before {
	content: '';
	background-color: #E5E5E5;
	width: 50vw;
	height: 100%;
	position: absolute;
	right: 100%;
	top: 0;
} */

/* .yip-calculator__content[data-step="3"] .yip-calculator__tip::after {
	content: '';
	background-color: #E5E5E5;
	width: 50vw;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
} */

.yip-calculator__content[data-step="3"] .yip-calculator__tip h2 {
	margin: 0 0 19px;
	font-size: 47px;
	letter-spacing: 2.35px;
	color: #485355;
	line-height: 1;
	font-weight: 700;;
}

.yip-calculator__content[data-step="3"] .yip-calculator__tip p {
	/* font-family: var(--roboto); */
	font-size: 15px;
	line-height: 23px;
	color: #31302e;
	margin: 0;
	letter-spacing: -0.3px;
}

.yip-calculator__content[data-step="3"] .yip-calculator__receipt {
	margin: 25px 40px 60px 0;
}

.yip-calculator__content[data-step="3"] .yip-calculator__items {
	min-height: 257px;
}

.yip-calculator__content[data-step="3"] .yip-calculator__option.-littleextra label {
	line-height: 22px;
	font-weight: 400;
}
 
/*
 * Step 4 / Last step
 */
.yip-calculator__container[data-current="4"] {
	padding: 25px 33px 0 113px;
	max-width: 956px;
}

.yip-calculator__content[data-step="4"] {
	max-width: 838px;
	padding-left: 0;
	padding-bottom: 0;
	flex-wrap: wrap;
	padding: 0;
}

.yip-calculator__content[data-step="4"] .yip-calculator__options {
	/* max-width: 597px; */
	padding-right: 60px;
	position: relative;
	width: calc(100% - 211px);
}

.yip-calculator__content[data-step="4"] .yip-calculator__options::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 2;
}

.yip-calculator__content[data-step="4"].-submitting .yip-calculator__options::after {
	width: 100%;
	height: 100%;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__columns > div:not(:first-child) {
	display: none;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__columns > div:first-child {
	flex: auto;
	align-items: center;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__columns > div:first-child p,
.yip-calculator__content[data-step="4"] .yip-calculator__columns > div:first-child h6 {
	display: none;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__columns > div:first-child h6 {
	display: block;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__columns a {
	width: auto;
	min-width: 139px;
}

.yip-calculator__content[data-step="4"] .yip-calculator__option label {
	text-align: center;
	font-weight: 400;
	color: #485355;
	margin-bottom: 16px;
}

.yip-calculator__content[data-step="4"] .yip-calculator__option h4 {
	color: #E65A41;
	margin-bottom: 36px;
	font-weight: 700;
}

.yip-calculator__columns {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.yip-calculator__columns > div {
	flex: 0 0 calc(33.33% - 40px);
	display: flex;
	flex-direction: column;
}

.yip-calculator__columns p {
	font-size: 15px;
	line-height: 23px;
	margin: 0 0 20px;
	text-align: center;
}

.yip-calculator__columns a {
	width: 100%;
	border-radius: 26px;
	font-size: 15px;
	line-height: 18px;
	color: #fff;
	letter-spacing: -0.6px;
	padding: 12px;
	background-color: #C3CCCE;
	transition: all .3s ease;
	margin-top: auto;
	text-align: center;
}

.yip-calculator__columns > div:nth-child(2) a {
	background-color: #E65A41;
}

.yip-calculator__columns a:hover,
.yip-calculator__columns > div:nth-child(2) a:hover {
	background-color: #31302E;
	text-decoration: none;
}

.yip-calculator__content[data-step="4"] .yip-calculator__nav {
	margin-top: 20px;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__options > h3,
.yip-calculator__content[data-step="4"].-submitted .yip-calculator__option,
.yip-calculator__content[data-step="4"].-submitted .yip-calculator__nav {
	display: none;
}

.yip-calculator__content[data-step="4"].-submitted .yip-calculator__options {
	margin-top: 100px;
}

.yip-calculator__content[data-step="4"] .yip-calculator__tip {
	width: 100%;
	background-color: #E5E5E5;
	padding: 36px 0 29px;
	position: relative;
	display: none;
	align-items: flex-start;
	margin-top: -106px;
}

.yip-calculator__content[data-step="4"].-current .yip-calculator__tip {
	display: flex;
}

.yip-calculator__content[data-step="4"] .yip-calculator__tip::before {
	content: '';
	background-color: #E5E5E5;
	width: 50vw;
	height: 100%;
	position: absolute;
	right: 100%;
	top: 0;
}

.yip-calculator__content[data-step="4"] .yip-calculator__tip::after {
	content: '';
	background-color: #E5E5E5;
	width: 50vw;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
}

.yip-calculator__content[data-step="4"] .yip-calculator__tip p {
	font-size: 20px;
	line-height: 23px;
	color: #485355;
	margin: 0;
	max-width: 462px;
	font-weight: 400;
	letter-spacing: -0.4px;
}

.yip-calculator__content[data-step="4"] .yip-calculator__items {
	min-height: 265px;
}

/*
 * Calculator form / popup
 */
.yip-calculator__popup {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -70%);
	opacity: 0;
	z-index: -1;
	transition: all .3s ease-in-out;
	background-color: #fff;
	padding: 30px;
	border: 1px solid #ECEDEE;
	border-radius: 5px;
	max-width: 400px;
	width: 100%;
}

.form__plans {
	display: none;
}

.yip-calculator__popup input[type="submit"] {
	font-size: 15px;
	line-height: 1;
	padding: 12px 38px;
	border-radius: 26px;
	color: #fff;
	transition: all .3s ease;
	margin-top: 15px;
}

.yip-calculator__popup input[type="button"] {
	background-color: #C3CCCE;
	padding: 10px;
	font-size: 15px;
	line-height: 1;
	border: 0;
	border-radius: 0;
}

.yip-calculator__popup input[type="button"]:hover {
	border-radius: 0;
}

.yip-calculator__content[data-step="4"].-popup .yip-calculator__options::after {
	width: 100%;
	height: 100%;
}

.yip-calculator__content[data-step="4"].-popup .yip-calculator__popup {
	opacity: 1;
	z-index: 3;
	transform: translate(-50%, -50%);
}

#calculator_form {
	position: relative;
}

.form_close {
	background-color: #E65A41;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	border: 1px solid #E65A41;
	font-size: 10px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: -30px;
	top: -30px;
	transform: translate(50%, -50%);
	cursor: pointer;
}

.form_close:hover {
	background-color: #C3CCCE;
}


/*
 * Responsive
 */
@media (max-width: 568px) {
	.yip-calculator__step {
		margin: 0 20px;
	}

	.yip-calculator__step.-current:not(.-past) {
		display: flex;
	}

	.yip-calculator__step span {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.yip-calculator__step label {
		font-size: 16px;
		line-height: 18px;
	}
}

@media (max-width: 767px) {
	.yip-calculator__container {
		padding: 20px;
	}

	.yip-calculator__content {
		display: flex;
		flex-direction: column;
	}

	.yip-calculator__content:not([data-step="1"]) {
		padding: 20px 20px 50px;
	}

	.yip-calculator__products {
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 20px;
		grid-row-gap: 30px;
	}

	.yip-calculator__receipt {
		margin: 50px auto 0 !important;
		flex: unset;
	}

	.yip-calculator__items {
		min-height: auto;
	}

	.receipt-wrap {
		order: 4;
	}

	.radio-options {
		overflow-x: auto;
		overflow-y: hidden;
	}

	.radio-option:not(:last-child) {
		margin-right: 20px;
	}

	.yip-calculator__option.-thumb {
		flex-direction: column;
	}

	.yip-calculator__option .thumb {
		margin-bottom: 15px;
	}

	.yip-calculator__content[data-step="2"] .yip-calculator__options {
		padding-right: 0;
		text-align: center;
	}

	.yip-calculator__content[data-step="2"] .yip-calculator__option:nth-child(2) {
		margin-right: 0;
	}

	.yip-calculator__content[data-step="3"] .yip-calculator__options {
		padding-left: 0;
		padding-right: 0;
		text-align: center;
	}

	.yip-calculator__content[data-step="3"] .yip-calculator__options .yip-calculator__option.-thumb > div:first-child {
		margin-right: 0;
	}

	.yip-calculator__content[data-step="3"] .yip-calculator__options .yip-calculator__option .thumb {
		margin: 0 auto 15px;
	}

	.radio-options.more-products {
		justify-content: center;
	}

	.yip-calculator__option .slider-range label[data-quality="1"] span {
		left: 0;
	}

	.yip-calculator__option .slider-range label[data-quality="2"] span {
		transform: translateX(-50%);
	}

	.yip-calculator__option .slider-range label[data-quality="3"] span {
		left: initial;
		right: 0;
	}

	.yip-calculator__content[data-step="4"] .yip-calculator__options {
		padding-right: 0;
		width: 100%;
	}

	.yip-calculator__content[data-step="4"] .yip-calculator__options h3 {
		text-align: center;
	}
	
}

@media (max-width: 992px) {
	.yip-calculator__container[data-current="4"] {
		padding-left: 33px;
	}
}

@media (max-width: 1023px) {
	.yip-calculator__columns {
		flex-direction: column;
	}

	.yip-calculator__columns > div:not(:last-child) {
		margin-bottom: 30px;
	}

	.yip-calculator__content[data-step="4"] .yip-calculator__tip {
		margin-top: 0;
	}

	.yip-calculator__container[data-current="2"] {
		padding-left: 0;
	}

	.yip-calculator__content[data-step="3"] {
		flex-wrap: wrap;
	}

	.yip-calculator__content[data-step="3"] .yip-calculator__tip {
		max-width: none;
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.yip-calculator__options {
		flex: 0 0 calc(100% - 231px);
	}

	.yip-calculator__content:not([data-step="1"]) {
		padding: 20px;
	}

	.radio-option .option {
		width: 110px;
		height: 110px;
	}

	.yip-calculator__content[data-step="3"] {
		padding: 0 !important;
	}

	.yip-calculator__content[data-step="3"] .yip-calculator__options {
		flex: 1;
	}
}