:root {
  --primary-color: #000000;
  --secondary-color: #ECF1F2;
  --background-color: #FFFFFF;
  --background-secondary: #ECF1F2;
  --background-grey: #DBDBDB;
  --text-primary-color:#000000;
  --text-secondary-color:#333333;
  --text-light-color:#FFFFFF;
  --border-color:#ECF1F2;
  --border-hover-color:#D2D7D8;
  --input-color:#A2A2A2;
  --input-hover:#A2A2A2;
  --check-border:#A2A2A2;
  --check-border-hover:#333333;
  

  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
	max-width: 100%;
	display: inline-block;
}
input {
    display: block;
    height: 48px;
    padding: 10px;
    color: black;
    position: relative;
    border-radius: 6px;
    width: 100%;
    border: 0;
    font-size: var(--font-size-16);
}
* {
    -webkit-tap-highlight-color: transparent;
}
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color:transparent;
  text-decoration: none;
}
:focus,:focus-visible{
	outline: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
body{
	font-family: 'Noto Sans', sans-serif;
	line-height: 1;
	padding: 0;
	margin: 0;
}
img[src=""]{
	 display: none; 
}
button:disabled,
button[disabled]{
	background: #00000082 !important;
}
.step-disable{
    pointer-events: none;
    cursor: not-allowed;
}
.btn{
	border: 0;
	padding: 10px 20px;
	display: inline-block;
	border-radius: 50px;
	font-size: var(--font-size-14);
	font-weight: 600;
	cursor: pointer;
	transition: box-shadow .3s ease;
}
.btn.primary{
	background:var(--primary-color);
	color: var(--text-light-color);
}
.btn.primary:hover{
	box-shadow: 0 6px 10px 0 rgba(123, 162, 170, .5); 
}
.btn.secondary{
	background:var(--secondary-color);
	color: var(--text-primary-color);
}
.btn.secondary:hover{
	box-shadow: 0 4px 10px 0 rgba(72, 86, 155, 0.1); 
}
.header {
	position: relative;
	z-index: 1;
	padding: 10px 0;
	background:var(--background-color);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .05);
}
.container {
	padding: 0 15px;
	width: 100%;
}
.header-inner {
	display: flex;
	align-items: center;
}
.logo {
	width: 23%;
	max-width: 345px;
}
@media(min-width:1200px) {
	.logo {
		max-width: 455px;
	}
}
.header-right {
	margin-left: auto;
}
.catalog-link{
	display: inline-block;
	min-height: 12px;
	padding-right: 20px;
	background: url(../img/download.svg) no-repeat right center;
	background-size: 16px;
	color: var(--text-primary-color);
	text-decoration: none;
}
.catalog-link:hover {
	text-decoration: underline;
}
@media(max-width:991px) {
	.catalog-link span {
		display: none;
	}
}
.body-inner {
	display: flex;
	align-items: stretch;
}
@media(max-width:991px) {
	.body-inner {
		flex-direction: column;
	}
}
.sidepanel {
	width: 26%;
	padding: 25px 25px;
	background:var(--background-color);
	box-shadow:0 3px 6px 0 rgba(0, 0, 0, .05); 
}

@media(min-width:1200px) {
	.sidepanel {
		max-width: 470px;
	}
}
.rightresult {
	width: 74%;
	padding: 34px 34px 34px 34px;
	flex: 1;
	background: var(--background-secondary);
}

@media(max-width:767px) {
	.sidepanel, .rightresult {
		width: 100%;
	}
}
.selector-steps {
	border: 1px solid var(--border-color);
    font-size:14px;
    padding: 12px 15px 12px 15px;
    cursor: pointer;
    background: var(--background-color);  
    margin-top: 10px;
    border-radius: 6px;
    position: relative;
}
.selector-steps.active:after{
	display: none;
}
.selector-steps.completed:after {
	background-color:var(--primary-color);
}
.selector-steps:after {
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	line-height: 19px;
	border-radius: 100%;
	background:var(--border-color) url(../img/tick.svg) no-repeat center;
	background-size: 11px 9px;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -10px;
	z-index: 0;
}
.step-head {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}
.step-link {
	font-size: var(--font-size-12);
	font-weight: 400;
	color: var(--text-primary-color);
	display: none;
	margin-left: 5px;
}
.selector-steps.active .step-link{
	display: block;
}
.selector-steps.active .info-icon {
	display: block;
}


.selector-steps.active {
	background: var(--background-secondary);
	border-radius: 6px 6px 0 0;
}
.selector-steps:not(.active):hover {
	border-color: var(--border-hover-color);
}


.selector-actions {
	display: none;
	background: var(--background-secondary);
	padding: 15px;
    color: #7f8fa4;
    font-size: 13px;
    line-height: 1.5;
    border-radius:0 0 6px 6px;
}
.step-question {
	font-size: var(--font-size-16);
	color: var(--text-primary-color);
	line-height: 24px;
	font-weight: 600;
	flex: 1;
	display: flex;
	align-items: center;
}
.foot{
	padding-top: 20px;
	text-align: right;
}
.field-group:not(.last) {
	padding-bottom: 10px;
}
.field-group label {
	display: inline-block;
	padding-bottom: 5px;
	font-size: var(--font-size-14);
	font-weight: 600;
	color: var(--text-primary-color);
}

.resetall{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	font-weight: 400;
	font-size: var( --font-size-12);
}
.resetall .btn {
	margin-right: 10px;
	white-space: nowrap;
}
.custom-check {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 0;
	margin-top: -15px;
	cursor: pointer;
	font-size:var(--font-size-16);
	line-height: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.custom-check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.custom-check .checkmark {
	position: absolute;
	top:0;
	left: 0;
	height: 20px;
	width: 20px;
	border: 2px solid var(--check-border);
}
.custom-check:hover input ~ .checkmark {
	border-color: var(--check-border-hover);
}
.custom-check input:checked ~ .checkmark {
	background-color:var(--primary-color);
	border-color: var(--primary-color);
}
.custom-check .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.custom-check input:checked ~ .checkmark:after {
	display: block;
}
.custom-check .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.footer {
	padding: 10px 0 20px 0;
}
.cs-title-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px 10px 0;
	position: relative;
	cursor: pointer;
}
.cs-title-button.active:after{
	transform: rotate(-180deg);
}
.cs-title {
	padding-left: 10px;
	/* display: flex; */
	/* justify-content: space-between; */
	position: relative;
	padding-right: 20px;
}
.cs-title:after {
    content: "";
    display: block;
    width: 12px;
    height: 7px;
    background: url(../img/select-arrow.svg) no-repeat;
    position: absolute;
    top: 8px;
    z-index: 1;
    right: 0px;
}
.cs-title img {
    margin-right: 10px;
}
.cs-text {
	color:var(--text-secondary-color);
	font-size: var(--font-size-12);
	line-height: 20px;
	display: none;
}



.bu-selected-hose{
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	padding: 10px;
	background: var(--background-color);
	color: var(--text-primary-color);
	position: relative;
	margin-bottom: 6px;
}
.bu-selected-hose:last-child{
	margin-bottom: 0;
}
.bu-hose-thumb img {
	display: block;
}
.bu-selected-hose-details {
	padding-left: 10px;
	flex: 1;
}
.bu-selected-hose-details h2 {
	font-size: var(--font-size-18);
	font-weight: 600;
	text-transform: uppercase;
	line-height: 18px;
}
.bu-selected-hose-details .bu-hose-dis{
	font-size: var(--font-size-14);
	font-weight: 400;
	font-style: italic;
}
.bu-select-hose {
	width: 40px;
	justify-content: flex-end;
    display: flex;
	align-items: center;
}

.custom-radio {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.custom-radio .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color:var(--background-color);
	border-radius:100%;
	border: 1px solid var(--check-border);
}
.custom-radio:hover input ~ .checkmark {
	border-color: var(--check-border-hover);
}
.custom-radio input:checked ~ .checkmark {
	background-color:var(--background-color);
    border-color: var(--primary-color);
}
.custom-radio .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	border: 0;
}
.custom-radio input:checked ~ .checkmark:after {
	display: block;
}
.custom-radio .checkmark:after {
	top: 2px;
	left: 2px;
	width:14px;
	height:14px;
	border-radius: 100%;
	background-color: var(--primary-color);
}
.custom-radio.size-radio {
	padding:10px 15px;
	margin-bottom: 10px;
	z-index: 0;
	position: relative;
	min-width: 50px;
	text-align: center;
	margin-right: 6px;
}
.custom-radio.size-radio:last-child{
	margin-right: 0;
}
.custom-radio.size-radio .checkmark {
	border-radius: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 6px;
	transition: all .3s ease;
	border: 1px solid transparent;
}
@media(min-width:992px){
	.custom-radio.size-radio .checkmark:hover {
		border-color: var(--check-border-hover);
	}
}

.custom-radio.size-radio input {
	margin-top: 0;
}
.custom-radio.size-radio input:checked ~ .checkmark:after {
	width: 100%;
	height: 100%;
	border-radius: 0px;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.custom-radio.size-radio input:checked + span {
	color: var(--text-light-color);
}
.custom-radio.size-radio input:checked ~ .checkmark {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1); 
}
.info-icon {
	display: none;
	position: relative;
	border-radius: 100%;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
/*	background:#DBDBDB;*/
	margin-left: 6px;
}
.info-icon span{
	pointer-events: none;
	text-align: center;
	font-size: var(--font-size-12);
	background-color: var(--background-color);
	color:var(--text-primary-color);
	font-weight: 400;
	line-height: 20px;
	border-radius: 4px;
	position: absolute;
	left: 50%;
	transform: translateX(-40%);
	-webkit-transform: translateX(-40%);
	-moz-transform: translateX(-40%);
	-ms-transform: translateX(-40%);
	-o-transform: translateX(-40%);
	min-width: 240px;
	padding: 10px;
	bottom: auto;
	margin-top: 25px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	visibility: visible;
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .2);
	z-index: 99999999999999999;
	display: none;
}
.info-icon span::before{
    content: "";
    position: absolute;
    top: -20px;
    left: 40%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border:10px solid;
    border-color: transparent transparent var(--background-color) transparent;
}
@media (max-width: 767px) {
	.info-icon span {
		display: block !important;
		transform: none;
		margin-top: 8px;
	    left: -450%;
	    -webkit-transform: none;
	    -moz-transform: none;
	    -ms-transform: none;
	    -o-transform: none;	
	}
	.hideTooltip > span {
		display: none !important;
	}
	.info-icon span::before{
		top: -20px;
    	left: 29%;
		transform: none;
	    -webkit-transform: none;
	    -moz-transform: none;
	    -ms-transform: none;
	    -o-transform: none;
	}
	.instruction{
		display: none !important;
	}
}
.info-icon:hover{
    overflow: visible;
}
/*.info-icon:hover span{
    display: inline !important;
    opacity: 1;
	visibility: visible;
}*/
.field-head {
	display: flex;
	align-items: center;
}
.field-head > span {
	padding-top: 5px;
	flex: 1;
	font-size: var(--font-size-16);
    color: var(--text-primary-color);
    line-height: 24px;
    font-weight: 600;
}
.field-head .step-link {
	display: block;
}

.builder-preview {
	background-color: var(--background-color);
	box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .2);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	padding: 10px 0;
	position: relative;
}
.builder-preview .size-img {
	opacity: 0;
	visibility: hidden;
}
.builder-preview figure {
	width: 200px;
	top: 0;
}
.builder-preview figure img {
	pointer-events: none;
	z-index: 10;
}
.builder-preview figure img:nth-child(2) {
	    top: 0;
	    z-index: 11;
}
.builder-preview figure img:nth-child(3) {
	bottom: 0;
    top: auto;
    z-index: 12;
    transform: rotate(180deg);
}
.details-table-outer {
	background-color: var(--background-color);
	border-radius: 6px;
	overflow: auto;
	position: relative;
	margin-top: 15px;
}
table.details-table {
	border: 0;
	padding: 0;
	width: 100%;
}
.details-table thead {
	background: #F6F6F6;
	text-align: left;
}
.details-table thead th {
	font-size: var(--font-size-14);
	font-weight: 600;
	color: var(--text-secondary-color);
	padding: 10px 10px;
}
.details-table tbody tr:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}
.details-table tbody td {
	font-size: var(--font-size-14);
	font-weight: 400;
	color: var(--text-secondary-color);
	padding: 10px 15px;
}
.table-footer {
	border-top: 1px solid var(--border-color);
	padding: 15px 15px;
	display: flex;
	align-items: center;
}
.buildprice {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.buildprice span.bprice {
	font-size: 22px;
	font-weight: 600;
	color: var(--text-primary-color);
}
.table-footer-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.table-footer-right span.qtylabel {
	padding-right: 5px;
}
.buildqty {
	display: flex;
	align-items: center;
	background-color: var(--background-secondary);
	border-radius: 6px;
	border-radius: 50px;
	padding: 2px;
}
.buildqty span {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	background: var(--background-color);
	color: var(--text-primary-color);
	text-align: center;
	line-height: 36px;
	font-size: 20px;
	cursor: pointer;
	user-select: none;
}
.buildqty input {
	text-align: center;
	background: transparent;
	min-width: 50px;
	padding: 0 5px;
	height: 36px;
	flex: 1;
	-moz-appearance: textfield;
}
.buildqty input[type=number]::-webkit-inner-spin-button, 
.buildqty input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.addtocart {
	margin-left: 15px;
	height: 40px;
	min-width: 160px;
}
.supporttext{
	padding-top: 20px;
}
.body > .supporttext {
	display: none;
}
.supporttext p {
	text-align: center;
	font-style: italic;
	font-size: var(--font-size-14);
	color: var(--text-secondary-color);
	line-height: 18px;
}
.supporttext p a {
	text-decoration: underline;
	color: var(--text-primary-color);
}
.view-details-drop{
	display: none;
}
.view-details-drop span {
	display: inline-block;
}
.view-details-drop:after {
    content: "";
    display: block;
    width: 12px;
    height: 7px;
    background: url(../img/select-arrow.svg) no-repeat;
    position: absolute;
    top: 15px;
    z-index: 1;
    right: 0px;
}


@media(max-width:991px){
	.sidepanel {
		padding:10px 15px 18px 15px;
		order: 1;
		width: 100%;
	}
	.rightresult {
		padding:18px 0 18px 15px;
		order: 0;
		width: 100%;
	}
	.preview-outer {
		padding-right: 15px;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}
	.custom-check {
		padding-left: 15px;
	}
	.details-table-outer {
		position: fixed;
		right: 0;
		left: 0;
		bottom: 0;
		z-index: 99;
		border-radius: 0;
		box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .2); 
	}
	.view-details-drop {
		font-size: var(--font-size-14);
		font-weight: 400;
		position: relative;
		display: flex;
		align-items: center;
		padding: 10px 20px 10px 0;
	}
	.preview-outer .supporttext p:first-child {
		display: none;
	}
	.preview-outer .supporttext {
		/* display: none; */
		order: -1;
	}
	body {
		padding-bottom: 110px;
	}
	.body > .supporttext {
		background: var(--background-secondary);
		padding: 15px;
		display: block;
	}
	.builder-preview {
		max-height: 470px;
	}
	.builder-preview figure{
		width: 150px;
	}
	.builder-preview .size-img {
		max-height: 100%;
	}
	.builder-preview figure img {
		height: auto;
		width: 150px;
	}
	.details-table-outer table.details-table {
		display: none;
	}
	
	.details-table-outer table.details-table.active {
		display: flex;
		background: #f6f6f6;
	}
	table.details-table thead{
		width: 50%;
		display: block;
		float: left;
	}
	table.details-table thead th,table.details-table tbody td {
		display: block;
		width: 100%;
		word-break: break-all;
	}
	table.details-table thead th:not(:last-child),table.details-table tbody td:not(:last-child) {
		border-bottom: 1px solid var(--border-color);
	}
	table.details-table thead tr,table.details-table tbody tr{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	table.details-table tbody{
		width: 50%;
		display: block;
		float: left;
		background: #ffffff;
	}
	.table-footer {
		flex-direction: column;
		padding: 0;
	}
	.buildprice span.bprice {
		font-size: 18px;
	}
	.buildprice {
		width: 100%;
		padding:4px 15px;
		background: #F6F6F6;
	}
	.table-footer-right {
		width: 100%;
		padding:10px 15px;
	}
	.addtocart {
		margin-left: auto;
	}
	td.vi-data-image {
		display: none !important;
	}
}
@media(max-width:767px){
	table.details-table {
		display: none;
	}
	table.details-table.active{
		display: flex;
		background: #f6f6f6;

	}
	table.details-table thead{
		width: 50%;
		display: block;
		float: left;
	}
	table.details-table thead th,table.details-table tbody td {
		display: block;
		width: 100%;
		word-break: break-all;
	}
	table.details-table thead th:not(:last-child),table.details-table tbody td:not(:last-child) {
		border-bottom: 1px solid var(--border-color);
	}
	table.details-table thead tr,table.details-table tbody tr{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	table.details-table tbody{
		width: 50%;
		display: block;
		float: left;
		background: #ffffff;
	}
	.table-footer {
		flex-direction: column;
		padding: 0;
	}
	.buildprice span.bprice {
		font-size: 18px;
	}
	.buildprice {
		width: 100%;
		padding:4px 15px;
		background: #F6F6F6;
	}
	.table-footer-right {
		width: 100%;
		padding:10px 15px;
	}
	.addtocart {
		margin-left: auto;
	}
	/* body {
		padding-bottom: 103px;
	} */
}
@media(max-width:575px){
	
	.logo img {
		max-width: 140px;
	}
	.table-footer-right span.qtylabel {
		display: none;
	}
	.builder-preview {
		max-height: 470px;
	}
	.builder-preview figure{
		width: 150px;
	}
	
}
.step-number.completed {
    background: var(--primary-color);
    color: var(--text-light-color);
}
.step-number {
    background: var(--background-secondary);
    color: var(--text-primary-color);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    line-height: 32px;
    text-align: center;
    font-size: var(--font-size-16);
    position: absolute;
    left: -21px;
    top: 50%;
    margin-top: -16px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
}
.selector-steps.completed:after{
	background: #0d7f19;
}
/*#assembly_length{
	-webkit-appearance: none;
    background: #d3d3d3;
    height: 5px;
    border: none;
    outline: none;
    padding: 0;
    border-radius: 5px;
}*/
#assembly_length::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
}

#assembly_length::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #000;
  cursor: pointer;
}
.field-group select {
	height: 48px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    background: url(../img/select-arrow.svg) no-repeat #fff;
    -webkit-appearance: none;
    background-size: 12px;
    background-position: center right 14px;
    padding-right: 10%;
}
.model {
	position: fixed;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
}
@media (max-width:767px){
	.model{
		padding: 10px;
	}
}
.model img {
	max-height: 100vh;
	max-width: 95% !important;
}
.model-close {
	color: #fff;
    font-weight: 600;
    position: absolute;
    top: 30px;
    right: 30px;
}

.assembly_length{
  height: 80px;
    padding: 0 65px 0 45px;
}
.assembly_length .sliderValue{
  position: absolute;
    width: 79%;
    top: 0;
    left: -1.5%;
    height: 100%;
}
.assembly_length .sliderValue span{
      position: absolute;
    height: 30px;
    width: 30px;
    font-weight: 600;
    top: 1px;
    line-height: 32px;
    z-index: 2;
    color: #fff;
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    font-size: 12px;
}

.assembly_length .sliderValue span:after{
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: #000;
  border: 3px solid #fff;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-bottom-left-radius: 50%;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.assembly_length .field{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.assembly_length .field .value{
  position: absolute;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}
.assembly_length .field .value.left{
  left: -22px;
}
.assembly_length .field .value.right{
  right: -43px;
}
.assembly_length .range input{
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  border: none;
  z-index: 2222;
}
.assembly_length .range input::-webkit-slider-thumb{
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  background: #045fa4;
  border: 1px solid #045fa4;
  cursor: pointer;
}
.assembly_length .range input::-moz-range-thumb{
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  background: #664AFF;
  border: 1px solid #664AFF;
  cursor: pointer;
}
.assembly_length .range input::-moz-range-progress{
  background: #664AFF;
}
.instruction{
      text-align: justify;
    line-height: 25px;
    padding: 14px;
    margin-bottom: 30px;
    border-radius: 6px;
    background: var(--background-color);
    border: 2px solid transparent;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
    transition: border .3s ease;
}
.instruction ul{
	list-style-type: disc;
	padding: 0 0 0 40px;
	margin: 16px 0;
}
/*.instruction ul li:not(:first-child){
	display: none;
	transition: 0.5s;
}
.showinstruction-button{
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}*/

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    font-size: 16px;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: none;
    border-radius: 4px;
    height: 48px;
    padding: 0 30px 0 10px;
    line-height: 48px;
}
.select2-container {
    display: block;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
	content: "";
    display: block;
    width: 12px;
    height: 7px;
    background: url(../img/select-arrow.svg) no-repeat;
    position: absolute;
    top: 22px;
    z-index: 1;
    right: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after{
	transform: rotate(180deg);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ccc;
    height: 38px;
    padding: 0 10px;
    line-height: 38px;
    border-radius: 4px;
    margin-bottom: 10px;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
    background-position-x: 95%;
}				
.select2-dropdown {
    border: none;
    box-shadow: 0 19px 20px rgb(0 0 0 / 15%);
}
.select2-results__option {
    padding: 15px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e5e5e5;
    color: #000;
}
.skip-link {
    display: inline-block;
/*    min-height: 12px;*/
    color: var(--text-primary-color);
    text-decoration: none;
/*    background: url(../img/skip-icon.svg) no-repeat right center;*/
/*    background-size: 12px;*/
/*    padding-right: 20px;*/
    font-size: 16pt;
}
.skip-wrap .skip-sub-heading{
	font-size: 12pt;
	margin-top: 5px;
    display: block;
}

#assembly_length::-webkit-outer-spin-button,
#assembly_length::-webkit-inner-spin-button {
	-webkit-appearance: none;
	-moz--webkit-appearance: none;
    margin: 0;
}
input[type=number]::-moz-outer-spin-button,
input[type=number]::-moz-inner-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
    margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.temperature {
	display: flex;
	margin: 0 -10px;
}
.temperature-input {
	width: 100%;
	padding: 0 10px;
	display: flex;
}
.temperature-input input {
	flex: 1;
	display:block;
	height:48px;
	padding: 10px;
	color:black;
	position:relative;
	width: 100%;
	border: 0;
	border-radius: 6px;
	font-size: var(--font-size-16);
}
button[disabled]{
	cursor: no-drop;
}
#hose_assembly_complete{
	font-size: 14px;
	display: none;
	border-bottom: 2px solid green;
}
#hose_assembly_complete img{
/*	filter: brightness(0) invert(1);*/
}
#hose_assembly_complete .info-icon{
	display: block;
	bottom: 2px;
}
#hose_assembly_complete .info-icon span{
	width: 200px;
    white-space: normal;
}

span.info-icon:hover > span {
	display: inline-block;
}
.desktop-hide{
	display: none;
}

@media (max-width:1024px){
	.info-icon{
		display: none !important;
	}
	.logo{
		width: 28%;
	}
	.header-inner{
		justify-content: space-between;
	}
	.skip-link {
	    font-size: 12pt;
    	font-weight: 600;
	}
	.skip-wrap .skip-sub-heading{
		font-size: 11pt;
	}
	.info-icon{
		display: none !important;
	}
	/*#hose_assembly_complete .info-icon{
		display: block !important;
	}*/
}
@media (max-width:767px){
	#hose_assembly_complete .info-icon span{
		transform: translateX(-55%);
		-webkit-transform: translateX(-55%);
	    -moz-transform: translateX(-55%);
    	-ms-transform: translateX(-55%);
    	-o-transform: translateX(-55%);
	}
	#hose_assembly_complete .info-icon span::before{
	    left: 76%;
	    transform: translateX(100%);
	    -webkit-transform: translateX(100%);
	    -moz-transform: translateX(100%);
    	-ms-transform: translateX(100%);
    	-o-transform: translateX(100%);
	}
	.skip-link {
		font-size: 14px;
	}
	.catalog-link {
	    font-size: 14px;
	    margin-left: 10px;
	}
	.mobile-hide{
		display: none;
	}
}
@media (max-width:768px) {
	.mobile-hide{
		display: none;
	}
	.desktop-hide{
		display: block;
		margin-top: 10px;
	}
	.skip-link {
	    font-size: 12pt;
	    font-weight: 600;
	}
	.skip-wrap .skip-sub-heading {
	    font-size: 10pt;
	}
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	font-size: 12px;
}
#hose_assembly_complete br{
	display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
	.select2-container--default .select2-search--dropdown .select2-search__field {
		padding-right: 32px;
    	font-size: 12px;
	}
	.grounding-wrap .field-head{
		flex-wrap: nowrap;
		white-space: nowrap;
	}
}

@media (min-width: 1080px) and (max-width: 1210px) {
	#hose_assembly_complete .info-icon {
	    bottom: -15px;
	}
}
@media (min-width: 768px) and (max-width: 1210px) {
	.grounding-wrap .field-head{
		flex-wrap: nowrap;
		white-space: nowrap;
	}
	#hose_assembly_complete {
    	width: 100%;
		line-height: 18px;
	}
	#hose_assembly_complete span:first-child{
		width: 100%;
	}
	#hose_assembly_complete br{
		display: block;
	}
}

#add-cart-success{
	font-weight: 600;
    margin-top: 10px;
}
.alert {
    --cui-alert-bg: transparent;
    --cui-alert-padding-x: 1rem;
    --cui-alert-padding-y: 1rem;
    --cui-alert-margin-bottom: 1rem;
    --cui-alert-color: inherit;
    --cui-alert-border-color: transparent;
    --cui-alert-border: 1px solid var(--cui-alert-border-color);
    --cui-alert-border-radius: 0.375rem;
    position: relative;
    padding: var(--cui-alert-padding-y) var(--cui-alert-padding-x);
    margin-bottom: var(--cui-alert-margin-bottom);
    color: var(--cui-alert-color);
    background-color: var(--cui-alert-bg);
    border: var(--cui-alert-border);
    border-radius: var(--cui-alert-border-radius);
}
.alert-success {
    --cui-alert-color: #1c6e37;
    --cui-alert-bg: #d5f1de;
    --cui-alert-border-color: #c0eace;
}
.fade {
    transition: opacity 0.15s linear;
}
.grounding-wrap{
	background: #fff;    
	border-radius: 4px;
    font-weight: 600;
    padding: 12px 15px 12px 15px;
}
.grounding-wrap input{
    display: inline-block;
    height: 15px;
    width: 15px;
    margin-right: 8px;
}
.grounding-wrap label{
	    font-size: var(--font-size-16);
    color: var(--text-primary-color);
    line-height: 24px;
    font-weight: 600;
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}
.grounding-wrap .info-icon {
    display: block;
    flex: unset;
    padding-top: 0;
}
.builder-outofstock{
	    position: absolute;
    background: #ccc;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}
.builder-outofstock span{
	font-weight: bold;
}

.outstsock-model {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  /* padding-top: 100px; */ /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.outstsock-model .modal-content {
  background-color: #fefefe;
  /* margin: auto; */
  padding: 20px;
  border: 1px solid #888;
  max-width: 350px;
  text-align: right;
  border-radius: 6px;
  width: 100%;
}
.outstsock-model .modal-content p{
	text-align: center;
    margin-top: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
/* The Close Button */
#model-close{
	margin-top: 15px;
}
.outstsock-model .close {
  color: #aaaaaa;
  /* float: right; */
  font-size: 28px;
  font-weight: bold;
}

.outstsock-model .close:hover,
.outstsock-model .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.vi-data-image{
	display: none; 
}
.cs-title-button > div:first-child {
    display: none;
}