.resultscenter {
    display:block;
    max-width: 90%;
    margin:0 auto; 
}
.formcenter {
    display:block;
    max-width: 90%;
    margin:0 auto;
	text-align:center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.liqlinalabelr{
	display: inline-block;
	padding-top: 5px;
	text-align: right;
}
.liqlinalabell{
	display: inline-block;
	padding-top: 5px;
	text-align: left;
}
#myRange {
	border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: none;
}
#dollar{
	position: absolute;
	font-size: xx-large;
	font-weight: bold;
	padding: 12px 10px;
	margin: 8px 0;
}
#fa {
  width: 60%;
  padding: 12px 20px;
  margin: 8px 0px;
  font-size: xx-large;
  font-weight: bold;
  text-align: center;
}
#birthday {
	width: 150px;
}
#myResults{
	text-align:center;
}
.alertmessage {
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background-color: white;
}
.inputhidestate{
	display: none;
}
.contright{
	text-align: right;
}
.contleft{
	text-align: left;
}
.radio-liqform input[type="radio"], input[type="checkbox"]{
  display: none;
}

.radio-liqform [type="radio"]+label, input[type="checkbox"]+label {
  display: inline-block;
  background-color: #e6eaec;
  color: #777b7c;
  font-family: Arial;
  cursor: pointer;
  margin: 2.5px;
  padding: 10px 10px 10px 10px;
  text-align: center;
}

.radio-liqform input[type="radio"]:checked+label, input[type="checkbox"]:checked+label {
  background-color: #1e90ff;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.radio-liqform input[type="radio"]:hover+label {
  background-color: #1e90ff;
  color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
}

.radio-liqform input[type="radio"]:checked+label:before{
    border-radius: 100%;
    border: 2px solid #ffffff;
    z-index: 999;
    position: sticky;
    text-align: left;
    color: white;
}

.radio-liqintrslt input[type="radio"] {
  display: none;
}

.radio-liqintrslt label {
  display: inline-block;
  background-color: #e6eaec;
  color: #777b7c;
  font-family: Arial;
  cursor: pointer;
  margin: 10px;
  padding: 10px;
  text-align: center;
  border-radius: 3px;
}

.radio-liqintrslt input[type="radio"]:checked+label {
  background-color: #1e90ff;
  color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.radio-liqintrslt input[type="radio"]:hover+label {
  background-color: #1e90ff;
  color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
}

.radio-liqintrslt input[type="radio"]:checked+label:before{
	content: "\2713  ";
    border-radius: 100%;
    border: 2px solid #ffffff;
    z-index: 999;
    position: sticky;
    text-align: left;
    color: white;

}

/** form steps **/
* {
  box-sizing: border-box;
}



#regForm {
  background-color: #bbb;
  margin: 100px auto;
  font-family: Raleway;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}



input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid red;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #04AA6D;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  opacity: 0.6;
}

button:hover {
  opacity: 0.99;
}

#prevBtn {
  background-color: green;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: orange;
}

input[type="range"] { 
    margin: auto;
    -webkit-appearance: none;
    position: relative;
    overflow: hidden;
    height: 20px;
    width: 300px;
    cursor: pointer;
    border-radius: 0; /* iOS */
}

::-webkit-slider-runnable-track {
    background: #ddd;
}

/*
 * 1. Set to 0 width and remove border for a slider without a thumb
 */
::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; /* 1 */
    height: 20px;
    background: #fff;
    box-shadow: -100vw 0 0 100vw dodgerblue;
    border: 2px solid #999; /* 1 */
}

::-moz-range-track {
    height: 20px;
    background: #ddd;
}

::-moz-range-thumb {
    background: #fff;
    height: 20px;
    width: 20px;
    border: 3px solid #999;
    border-radius: 0 !important;
    box-shadow: -100vw 0 0 100vw dodgerblue;
    box-sizing: border-box;
}

::-ms-fill-lower { 
    background: dodgerblue;
}

::-ms-thumb { 
    background: #fff;
    border: 2px solid #999;
    height: 20px;
    width: 20px;
    box-sizing: border-box;
}

::-ms-ticks-after { 
    display: none; 
}

::-ms-ticks-before { 
    display: none; 
}

::-ms-track { 
    background: #ddd;
    color: transparent;
    height: 20px;
    border: none;
}

::-ms-tooltip { 
    display: none;
}

/** Progress bar **/
.navigation_menu {
  width: 100%;
}

.navigation_tabs {
   counter-reset: step;
   padding-left: inherit;
}

/* one item */
.navigation_tabs li:first-child:nth-last-child(1) {
  width: 100%;
}

/* two items */
.navigation_tabs li:first-child:nth-last-child(2),
.navigation_tabs li:first-child:nth-last-child(2) ~ li {
  width: 49%;
}

/* three items */
.navigation_tabs li:first-child:nth-last-child(3),
.navigation_tabs li:first-child:nth-last-child(3) ~ li {
  width: 30.3333%;
}

/* four items */
.navigation_tabs li:first-child:nth-last-child(4),
.navigation_tabs li:first-child:nth-last-child(4) ~ li {
  width: 24%;
}

/* five items */
.navigation_tabs li:first-child:nth-last-child(5),
.navigation_tabs li:first-child:nth-last-child(5) ~ li {
  width: 19%;
}

/* six items */
.navigation_tabs li:first-child:nth-last-child(6),
.navigation_tabs li:first-child:nth-last-child(6) ~ li {
  width: 16%;
}

.navigation_tabs li {
  list-style: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
}

a {
  color: #000;
}

.navigation_tabs li a {
  text-decoration: none;  
}

.navigation_tabs li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height : 30px;
  border: 1px solid #ddd;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
}
.navigation_tabs li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #ddd;
  top: 13px;
  left: -50%;
  z-index : -1;
}

.navigation_tabs li:first-child:after {
  content: none;
}

.navigation_tabs li.tab_active,
.navigation_tabs li.tab_inactive,
.navigation_tabs li.tab_active a,
.navigation_tabs li.tab_inactive a{
  color: green;
}

.navigation_tabs li.tab_active a:hover,
.navigation_tabs li.tab_inactive a:hover {
  font-weight: bold;
}


.navigation_tabs li.tab_active:before {
  border-color: green;
}

.navigation_tabs li.tab_inactive:before {
  border-color: green;
  background-color: green;
  color: #fff;
  content: "\2713";
} 


.navigation_tabs li.tab_inactive + li:after {
  background-color: green;
}