	#estimator{
		position:relative;
		max-width:540px;
		opacity:1 !important;
	}
	#estimator .canvasHolder{
		max-width: 500px;
		position: relative;
		height: 50px;
		overflow: hidden;
		box-shadow: 
			inset 0px -59px 0px rgba(255,255,244,0.6), 
			inset 14px 3px 50px rgba(0,0,0,0.4), 
			inset -14px 3px 50px rgba(0,0,0,0.4);
		background-color:white;
		margin:auto;
	}
	#estimator #canvasHolder canvas, 
	#estimator .canvasHolder canvas {
		width: 700px;
		left: calc(50% - 311px);
		position: absolute;
	}
	#estimator #canvasHolder #canvasMarker,
	#estimator .canvasHolder .canvasMarker {
	    width: 2px;
		left: calc(50% - 1px);
		height: 100%;
		background-color: black;
		position: absolute;
		opacity: .3;
	}
	#estimator .step{
		color: #FF9C38;
		border:2px solid #FF9C38;
		border-radius: 38px;
		display: inline-block;
		width: 30px;
		height: 30px;
		text-align: center;
		font-weight: bold;
		font-size: 17px;
		line-height: 25px;
		margin: 20px 17px 20px 0;
	}
	#estimator hr{
		border-color: gray;
		margin: 20px 0;
	}
	#estimator label{
		cursor: pointer;
	}
	#estimator label,
	#estimator label>div{
		display:inline-block;
		vertical-align: middle;
		color: #4D4D4D;
	}
	#estimator label:nth-child(3){
		margin-left: 20px;
	}
	
	#estimator button{
	    border: 2px solid #FF9C38;
		color: #FF9C38;
		background: white;
		padding: 10px;
		width: 200px;
		margin: auto;
		display: block;
		font-weight: bold;
		transition: background .5s, color .5s;
		cursor: pointer;
		margin-top:40px;
	}
	#estimator span.money{
		position:relative;
		margin-left:20px;
	}
	#estimator span.money:before{
		content: "$";
		color: #404042;
		position: absolute;
		font-size: 14px;
		top: 8px;
		left: 5px;
	}
	
	#estimator input[type="text"]{
		width: initial;
		padding-left:15px;
	}
	#estimator input[type="radio"],
	#estimator input[type="checkbox"]{
		width:15px;
		height:15px;
		margin-right: 10px;
	}
	#estimator button:hover,
	#estimator button:active{
	    background-color: #FF9C38;
		color: white;
	}
	#estimator .note{
	    padding: 20px 0;
		font-size: 15px;
	}
	#estimator h2{
	    font-size: 16pt;
		padding-bottom: 0px;
		margin: 0;
		margin-bottom: 20px;
	}
	
	
	#estimator .arrowDown,
	#estimator .arrowUp{
		position:relative;
		height:20px;
	}
	#estimator .arrowDown>*,
	#estimator .arrowUp>*{
		position:absolute;
		font-size:12px;
	}
	#estimator .arrowDown>div{
		border:10px solid transparent;
		border-top:10px solid #cae3e0;
		left:calc(50% - 10px);
		bottom:-10px;
	}
	#estimator .arrowUp>div{
		border:10px solid transparent;
		border-bottom:10px solid #cae3e0;
		left:calc(50% - 10px);
		top:-10px;
	}
	#estimator .arrowDown>span{
		left:calc(50% + 15px);
		bottom:3px;
	}
	#estimator .arrowUp>span{
		right:calc(50% - 39px);
		top:3px;
	}
	
	#estimator #estimatorOutput{
		position:relative;
	}
	#estimator #estimatorOutputCover{
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		background-color:rgba(255, 255, 255, .8);
		display:flex;
		align-items: center;
		justify-content: space-evenly;
		transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
		opacity:.999999;
		text-align:center;
	}
	#estimator #estimatorOutputCover:hover,
	#estimator #estimatorOutputCover:active{
		opacity:.999999 !important;
	}
	#estimator #estimatorOutputCover h2{
		color: #f9ad3f;
	}
	@media (max-width: 495px){
		#estimator span.money,
		#estimator label {
			width:100%;
			margin:5px 0;
			display: inline-block;
		}
		#estimator input[type="text"]{
			width:100%;
		}
		#estimator label br{
			display:none;
		}
		#estimator .step{
			border-radius: 8px;
			display:block;
			width:80px;
			height: 30px;
			text-align: center;
			line-height: 30px;
			margin:20px auto;
		}
		#estimator .step:before{
			content: "Step: "
		}
		#estimator label:nth-child(3){
			margin-left: 0;
		}
	}
	@media (max-width: 430px){
		#estimator{
			padding: 5px;
		}
		#estimator label br{
			display:initial;
		}
	}
	
	
	
	
	
	
	
	
	
	
	
	/* start message box */
	.dialog,
.dialog__overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.dialog {
	position: absolute;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	pointer-events: none;
}

.dialog__overlay {
	position: absolute;
	z-index: 1;
	background: rgba(55, 58, 71, 0.9);
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-backface-visibility: hidden;
}

.dialog--open .dialog__overlay {
	opacity: 1;
	pointer-events: auto;
}

.dialog__content {
	width: 75%;
	max-width: 560px;
	min-width: 290px;
	background: #fff;
	padding: 4em;
	text-align: center;
	position: relative;
	z-index: 5;
	opacity: 0;
}

.dialog--open .dialog__content {
	pointer-events: auto;
}

/* Content */
.dialog h2 {
	margin: 0;
	font-weight: 400;
	font-size: 2em;
	padding: 0 0 1em;
	margin: 0;
	color:#404042;
}



.dialog--open .dialog__overlay {
	-webkit-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

.dialog--close .dialog__overlay {
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.dialog__content {
	padding: 0;
	background: transparent;
}

.dialog.dialog--open .dialog__content {
	opacity: 1;
}

.morph-shape {
	position: absolute;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	top: -2px;
	left: -2px;
	z-index: -1;
}

.morph-shape svg rect {
	stroke: #fff;
	stroke-width: 2px;
	stroke-dasharray: 1680;
}

.dialog--open .morph-shape svg rect {
	-webkit-animation: anim-dash 0.6s forwards;
	animation: anim-dash 0.6s forwards;
}

.dialog-inner {
	opacity: 0;
	background: #fff;
}

.dialog--open .dialog-inner {
	padding: 3em;
	opacity: 1;
	-webkit-transition: opacity 0.85s 0.35s;
	transition: opacity 0.85s 0.35s;
}

.dialog.dialog--open h2 {
	-webkit-animation: anim-elem-1 0.7s ease-out both;
	animation: anim-elem-1 0.7s ease-out both;
}

.dialog.dialog--open button {
	-webkit-animation: anim-elem-2 0.7s ease-out both;
	animation: anim-elem-2 0.7s ease-out both;
}

@keyframes anim-dash {
	0% {
		stroke-dashoffset: 1680;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes anim-dash {
	0% {
		stroke-dashoffset: 1680;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

/* Inner elements animations */

@-webkit-keyframes anim-elem-1 {
	0% { opacity: 0; -webkit-transform: translate3d(-150px, 0, 0); }
	100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); }
}

@keyframes anim-elem-1 {
	0% { opacity: 0; -webkit-transform: translate3d(-150px, 0, 0); transform: translate3d(-150px, 0, 0); }
	100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

@-webkit-keyframes anim-elem-2 {
	0% { opacity: 0; -webkit-transform: translate3d(150px, 0, 0); }
	100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); }
}

@keyframes anim-elem-2 {
	0% { opacity: 0; -webkit-transform: translate3d(150px, 0, 0); transform: translate3d(150px, 0, 0); }
	100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

/* end message box */
	