/* CALCULATOR */

	.landing-calculator {
		width: 100%;
	}

	.calc-left {
		width: 100%;
		
	}

	.calc-left p {
		margin: 0;
	}

	.calc-left .calc-header {

		padding: 0 30px;
		height: 55px;
		position: relative;
	}

	.calc-left .calc-header h3 {
		color: white;
    text-align:center;
		font-size: 26px;
		font-weight: 500;
    margin-top:0;
	}

	.calc-left .calc-body {
		padding: 10px 30px 37px;
    background: #eaf0f6;
	}

	.calc-left .calc-body .calc-item {
		padding: 14px 0;
		position: relative;
	}

.calc-left .calc-body .calc-item.number {
  display:flex;
  justify-content: space-between;
}

.calc-left .calc-body .calc-item.number .item-desc {
  max-width:170px;
}

	.calc-left .calc-body .calc-item:last-child {
		border-bottom: 0px solid #F0F0F0;
		padding-bottom: 0px;
	}

	.calc-left .calc-body .calc-item .item-desc {

		width: 100%;
		box-sizing: border-box;
	}

	.calc-left .calc-body .calc-item .item-desc p {
		width: 100%;
		font-size: 16px;
		line-height: 18px;
	}

	@media all and (max-width: 992px) {
		.calc-left .calc-body .calc-item .item-desc p {
			width: 100%;
		}
	}

	@media all and (max-width: 767px) {
		.calc-left .calc-body .calc-item .item-desc p {
			font-size: 15px;
			line-height: 16px;
		}
	}

	.calc-left .calc-body .calc-item .item-desc .regimen-label {
		font-size: 16px;
    text-align:center;
	}

	@media all and (max-width: 767px) {
		.calc-left .calc-body .calc-item .item-desc .regimen-label {
			font-size: 15px;
		}
	}

	.dot-labels {
		font-weight: 500;
		color: #666;
	}

	.secret-dropdown-trigger .item-desc p {
		width: 100% !important;
		font-weight: 500;
	}

	.calc-item input {
		font-size: 18px;
	}

	.calc-left .calc-body .calc-item .item-desc.w60 {
		width: 49%;
	}

	.calc-left .calc-body .calc-item .item-desc.w40 {
		width: 49%;
	}

	.calc-left .calc-body .calc-item .item-input {
		display: block;
		float: right;
		max-width: 30%;
		box-sizing: border-box;
		position: relative;
		width: fit-content;
		right: 25px;
	}

	.calc-item:after {
		display: block;
		content: '';
		clear: both;
	}

	.calc-left .calc-body .calc-item .item-radios {
		
		box-sizing: border-box;
		text-align: center;
	}

	.calc-left .calc-body .calc-item .item-radios.w60 {
		width: 60%;
	}

	.calc-left .calc-body .calc-item .item-radios div.radio {
		display: inline-block;
		width: 33.333%;
		box-sizing: border-box;
	}

	.calc-left .calc-body .calc-item .item-radios div.radio input[type=text] {
		height: 38px;
		width: 85.3px;
		border: 1px solid #C5C5C5;
		border-radius: 4px;
		box-shadow: inset 0 1px 3px 0 rgba(104, 104, 104, 0.5);
		margin: 0 auto;
		text-align: center;
	}

	.item-input .stepper.down,
	.item-input .stepper.up {
		display: block;
		position: absolute;
		height: 16px;
		width: 16px;
		font-size: 12px;
		line-height: 12px;
		border-radius: 50%;
		background: #3F7C9A;
		color: #ffffff;
		cursor: pointer;
		top: 13px;
		text-align: center;
		font-weight: bold;
		-webkit-transition: all 0.25s;
		transition: all 0.25s;
	}

	.item-input .stepper.down:hover,
	.item-input .stepper.up:hover {
		background-color: #306179;
	}

	@media all and (max-width: 767px) {

		.item-input .stepper.down,
		.item-input .stepper.up {
			display: none;
		}
	}

	.item-input .stepper.down {
		left: -22px;
		content: "-";
		line-height: 14px;
	}

	.item-input .stepper.up {
		right: -22px;
		content: "+";
		line-height: 14px;
	}

	.item-input input.stepper {
		height: 35px;
		width: 120px;
		box-shadow: none;
		border: 1px solid #002B63;
		outline: none;
		text-align: center;
    font-size:16px;
	}

	.item-input input.stepper:focus {
		border: 1px solid #3F7C9A;
	}

	.radio input[type=number] {
		height: 38px;
		width: 85.3px;
		border: 1px solid #C5C5C5;
		border-radius: 4px;
		box-shadow: inset 0 1px 3px 0 rgba(104, 104, 104, 0.5);
		outline: none;
		text-align: center;
		font-weight: bold;
	}

	input[type=number]::-webkit-inner-spin-button,
	input[type=number]::-webkit-outer-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	

	.temp {
		position: absolute;
		z-index: 999;
		height: 41px;
		width: fit-content;
		min-width: 157px;
		border: 1px solid rgba(255, 132, 0, 0.5);
		background-color: #FFF4E8;
		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.27);
		transition: opacity 0.25s linear;
		right: -20px;
		bottom: -50px;
		border-radius: 15px;
	}

	.temp:before {
		position: absolute;
		display: block;
		content: '';
		left: 50%;
		transform: translateX(-50%);
		top: -8px;
		width: 0;
		height: 0;
		z-index: 13;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #FFF4E8;
	}

	.temp:after {
		position: absolute;
		display: block;
		content: '';
		left: 50%;
		z-index: 12;
		transform: translateX(-50%);
		top: -9px;
		width: 0;
		height: 0;
		border-left: 9px solid transparent;
		border-right: 9px solid transparent;
		border-bottom: 9px solid rgba(255, 132, 0, 0.5);
	}

	.temp p {
		color: #FF8400;
		font-size: 13px;
		font-weight: bold;
		font-family: "Roboto", sans-serif;
		text-align: center;
		line-height: 41px;
	}

	.flex {
		display: flex;
		overflow: hidden;
		flex-direction: column;
	}

	.calc-right {
	
		width: 100%;
		/* padding: 30px; this is old. Padding below is new */
		padding: 15px 30px;
		box-sizing: border-box;
		color: white;
	}

	.calc-right h3 {
		margin-top: 0;
    color:white;
    font-size:26px;
    text-align:center;
    font-weight:500;
	}

	.calc-right .item {
		display: flex;
		align-items: center;
		margin: 1.5rem 0;
	}

	/* This selector is new */
	.calc-right .item:last-of-type {
		margin-bottom: 0;
	}

.calc-right .item h3{
  font-size: 18px;
  font-weight:bold;
}

	.calc-right .item .qty {
		padding-left: 36px;
		width: 50px;
		text-align: center;
		margin-right: 10px;
	}

	.calc-right .item .qty h3 {
		font-size: 45px;
		margin: 0;
    text-align: right;
	}

	.calc-right .item .desc {}

	.calc-right .item .desc h3 {
		margin: 0;
		color: #fff;
		opacity: 0.92;
    text-align:left;
	}

	.calc-right .item .desc p {
		margin: 0;
		color: #fff;
		opacity: 0.88;
		font-size: 16px;
		text-transform: uppercase;
	}

 /* This selctor's content was updated */
	.calc-clear,
	.calc-submit{
		cursor: pointer;
		display: inline-block;
		font-size: 15px;
		outline: none;
		text-transform: uppercase;
		padding: 10px;
		background: #0095da;
		text-decoration: none;
		color: white;
		font-weight: 700;
		transition: color 10ms linear, background 300ms linear;
    border:0;

	}

.button-wrap{
 text-align:center;
  margin-top:20px;
}

	.calc-clear {
		background:none;
    color:#062e58;
    text-decoration:underline;
    font-size: 13px;
	}

	.calc-submit {
		right: 80%;
		top: 95%;
	}

	.calc-print,.calc-email {
		display:none;
		font-size: 10px;
    color:#CCCCCC;
    text-decoration:underline;
    background: none;
    border: 0;
    text-transform: uppercase;
    align-items:center;

	}

.calc-print:hover{
  color: #c1d72e;
  cursor:pointer;
}

.calc-email a:hover{
  color: #c1d72e;
}

.calc-print img,.calc-email img{
  display:inline;
  max-width: 20px;
  padding-right:5px;
}

.calc-print img{
  max-width: 14px;
}

	.calc-email a:visited{
	  color:#CCCCCC;
	}

.calc-email a{ 
   color:#CCCCCC;
}

	@media screen and (max-width:767px) {
		.calc-clear {
		right: 54%;
	}

	.calc-print {
		right: 30%;
	}

	.calc-email {
		right: 6%;
	}

	.calc-clear,
	.calc-submit,
	.calc-print,
	.calc-email {
		top: 113% !important;
		outline: none !important;
	}

	.landing-demo-right a {
		font-size: 14px !important;
	}
	}

	/* This selector's content was updated */
	




	/* FORM SECTION */
	.form-container {
		background: rgba(0, 0, 0, 0.4);
		color: white;
	}

	.gform_wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.gform_heading {
		text-align: center;
		font-size: 24px;
	}

	.gform_wrapper form {
		width: 100%;
		padding: 0 2rem;
	}

	.gform_body ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0;
	}


	.gform_body ul li {
		width: 45%;
		list-style-type: none;
		margin-bottom: 1rem;
	}

	.gform_body ul>li:not(:nth-child(6)) label {
		display: none;
	}

	.gform_body ul>li:nth-child(6) label {
		display: block;
	}


	.gform_body ul li:nth-child(5),
	.gform_body ul li:nth-child(7),
	.gform_body ul li:nth-child(8),
	.gform_body select {
		width: 100%;
	}

	.gform_body input {
		width: 100%;
		padding: 0.3rem;
		font-size: 16px;
		color: black;
		outline: none;
		border: none;
	}

	.gform_body input::placeholder {
		color: black;
	}

	.gform_body select {
		font-size: 16px;
	}

	.gform_footer input {
		background: rgb(190, 215, 59);
		color: rgb(30, 61, 115);
		font-size: 16px;
		padding: 0.8rem 1.6rem;
		outline: none;
		border: none;
		font-weight: 700;
		text-transform: uppercase;
		transition: 300ms;

	}

	.gform_footer input:hover {
		color: white;
		background: rgb(142, 181, 14);
	}

	.external-button {
		text-decoration: none;
		color: #003777;
		background: white;
		text-transform: uppercase;
		padding: 0.5rem 0.8rem;
		border-radius: 5px;
	}

	.external-button:hover {
		color: white;
		background: #187dc9;
	}

	.external-button span {
		font-weight: 700;
	}

	/* DEMO SECTION */
	.landing-demo {
		padding: 4rem 0;
	}

	.landing-demo .container {
		display: flex;
		flex-wrap: wrap;
	}

	.landing-demo-left {
		width: 40%;
	}

	.landing-demo-left h3 {
		font-size: 22px;
		margin-top: 0;
	}

	.landing-demo-left p {
		font-size: 18px;
		color: rgb(91, 102, 112);
		line-height: 1.6;
	}

	.landing-demo-right {
		width: 60%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;

	}

	@media (max-width: 1190px) {
		.landing-demo-right {
			width: 100%;
		}

		.landing-demo-left {
			width: 100%;
		}

		.landing-cta h2 {
			font-size: 30px !important;
			margin-bottom:1em;
		}

		.calc-left .calc-body .calc-item:last-child {
			margin-bottom: 1em;
		}
	}

.calc-color .item-colors{
  display:flex;
}

.calc-color .item-colors .color{
  width: calc(33.33% - 2px);
  height:11px;
  border: solid 1px #002B63;
  border-bottom: none;
}

.calc-color .item-colors .color:nth-child(2){
  border-left:none;
  border-right:none;
  width: 33.333%;
}

.calc-color .item-colors .color1{
  background: #EEF6FB;
}

.calc-color .item-colors .color2{
  background: #D6D6D6;
}

.calc-color .item-colors .color3{
  background: white;
}

	.landing-demo-right a {
		background: linear-gradient(to top, #8FA22C 50%, #C7E13D 100%);
		text-decoration: none;
		text-transform: uppercase;
		color: rgb(30, 61, 115);
		padding: 0.5rem 1rem;
		margin-top: 2rem;
		font-size: 18px;
		font-weight: 700;
		border: 1px solid rgb(30, 61, 115);
		transition: color 10ms linear, background 300ms linear;
	}

	.landing-demo-right a:hover {
		color: white;
		background: linear-gradient(to top, #8FA22C 50%, #CFE84C 100%);
		box-shadow: inset 0px 5px rgba(255, 255, 255, 0.06), inset 0px -25px rgba(0, 0, 0, 0.08), inset 0px 1px rgb(255, 255, 79), 0px 1px 8px rgba(0, 0, 0, 0.3);
	}

	/* PROJECTS */

	.landing-page-projects {
		background: #FCFAF7;
		padding: 2rem;
	}

	.landing-page-projects h2 {
		font-family: 'Montserrat', Arial, sans-serif;
		text-align: center;
		color: rgb(132, 133, 133);
		font-size: 40px;
		font-weight: 700;
	}

	.landing-page-projects h2 span {
		text-transform: uppercase;
	}

	.landing-page-projects .project-container {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.landing-page-projects .project-container>img {
		width: 30%;
		box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
	}

	.print-header {
		display:none;
	}

	@media (max-width:1190px) {
		.landing-page-projects .project-container>img {
			width: 100%;
			margin-bottom: 2rem;
		}
	}

	/* REQUEST SECTION */

	.request {
		/* Commented this line out to disable it. */
		background: none !important;
		padding: 4rem 0;
		text-align: center;
	}

	/* This selector's contents gave been replaced */
	.btn-request {
		background: linear-gradient(to top, rgb(143, 162, 44) 50%, rgb(199, 225, 61) 100%);
		text-decoration: none;
		text-transform: uppercase;
		color: rgb(30, 61, 115);
		padding: 0.5rem 1rem;
		margin-top: 2rem;
		font-size: 18px;
		font-weight: 700;
		border: 1px solid rgb(30, 61, 115);
		transition: color 10ms linear, background 300ms linear;
}

/* This is new */
	.btn-request:hover {
		color: white;
		background: linear-gradient(to top, #8FA22C 50%, #CFE84C 100%);
		box-shadow: inset 0px 5px rgba(255, 255, 255, 0.06), inset 0px -25px rgba(0, 0, 0, 0.08), inset 0px 1px rgb(255, 255, 79), 0px 1px 8px rgba(0, 0, 0, 0.3);
	}

	/* PRINT NOTES */
	.print-notes {
		display: none;
	}



.calc-select-container{
  height:0px;
  width:0px;
  opacity:0;
  overflow:hidden;
}

.form-wrap.form-wrap label{
  color: #002B63;
  font-size: 16px;
}

.form-wrap.form-wrap label input{
  height:0px;
  width:0px;
  opacity:0;
  margin:0;
}

.item-radios{
  display:flex;
  width:100%;
}

.item-radios div.radio{
  width:33%;
  border: 1px solid #002B63;
  padding: 10px 0;
  transition: all ease-in-out 300ms;
  cursor:pointer;
  background:white;
}

.item-radios div.radio{
  position:relative;
  height: 40px;
}

.item-radios.item-radios-increased div.radio {
	width: 25%;
}

.item-radios.item-radios-reduced div.radio {
	width: 33.333%;
}

.item-radios div.radio label{
 cursor:pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 10px 0;
}

.item-radios div.radio.clicked{
  background:#0095DA;
  color:white;
}

.item-radios div.radio.clicked label{
  color:white;
  cursor:pointer;
}

.item-radios div.radio:hover{
  background: #DEEDF8;
}

.item-radios div.radio.clicked:hover{
  background:#0095DA;

}
.item-radios div.radio.clicked:hover label{
  color:white;
}

.item-radios.item-radios-reduced div.radio:nth-child(3) {
		border-left: none;
		border-right: none;
	}

	.item-radios.item-radios-increased div.radio:nth-child(2) {
		border-right: none;
	}

	.item-radios.item-radios-increased div.radio:nth-child(4) {
		border-left: none;
		border-right: none;
	}

.calc-left .calc-body .calc-item-headings{
  padding-bottom:0;
}


@media screen and (max-width:600px){
  .calc-left .calc-body .calc-item.number .item-desc {
      width:auto;
    }
}

.pop-up-wrap{
  display:none;
  background-color: rgba(18, 18, 18, 0.75);
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.pop-up{
    background-color: #003777;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 24px;
    max-width: 500px;
    margin: 250px auto 0 auto;
    position: relative;
    z-index: 20;
}

.pop-up h2{
  color:white;
  text-align:center;
  margin-bottom:30px;
}
.pop-up .btn-wrap{
  margin-bottom:30px;
}

.landing-page-modal-close{
  cursor: pointer;
    color: #fff;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 100;
    display: block;
    height: 24px;
    width: 24px;
    text-align: center;
    line-height: 1;
    z-index: 30;
}
.btn-wrap{
display:flex; 
justify-content: center; 
margin-top:20px;
}
/* @media print {
  #calc-right{ display: none !important; }/* Hide everything ... */
} */

