/* Style the form */
#multistep_form {
  background-color: #ffffff;
  /*margin: 100px auto;*/
  /*padding: 40px;*/
  width: 100%;
  min-width: 300px;
}

#error_messages {
	width: 100%;
	background-color: #ffdddd;
	display: none;
}

#addOns {
	width: 100%;
	display: none;
}

.multistep_form_errors {
	background-color: #ffdddd;
	width: 100%;
	display: block;
}

.multistep_form_success {
	/*background-color: #ffdddd;*/
	width: 100%;
	display: block;
}

.form_col {
  padding: 5px;
}

/* Style the input fields */
input, select, textarea {
  padding: 3px;
  margin-left: 10px;
  margin-right: 10px;
  /*width: 100%;*/
  /*font-size: 17px;*/
  /*font-family: Raleway;*/
  border: 1px solid #aaaaaa;
}

input[type="text"], textarea {
  width: 100%;
}

/* Mark input boxes that gets an error on validation: */
.invalid, .invalid-format {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.form_tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.form_step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none; 
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
.form_step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.form_step.finish {
  background-color: #ff0000;
}

#receipt_container {
	text-align: center;
	font-size: 18px;
	color: red;
	background-color: #ffffff;
	z-index: 90;
	display: none;
}

.receipt_toggle_bar {
	margin-top: -5px;
}

#receipt {
	background-color: #ffffff;
	z-index: 999;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.8);
	border: solid 1px #cdcdcd;
	display: none;
	overflow: auto;

	padding: 10px;
}

@media only screen and (min-width: 768px) {
	#receipt {
		position: fixed;
		top: 150px;
		bottom: auto;
		left: auto;
		right: 10px;
		width: 25%;
		/*right: 50px;*/
		/*width: 300px;*/
	}
	
	#receipt_container {
		display: none;
	}
	
	.receipt_toggle_bar {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	/*#receipt {*/
	/*	position: fixed; */
	/*	width: 100%; */
	/*	height: 275px;*/
	/*	top: auto;*/
	/*	bottom: 0;*/
	/*	right: auto;*/
	/*	left: 0px;*/
	/*}*/
	/**/
	/*#receipt_container {*/
	/*	display: none;*/
	/*}*/
	#receipt {
		position: relative; 
		width: 100%; 
		height: 100%;
	}

	#receipt_container {
		position: fixed; 
		width: 100%; 
		height: 120px;
		top: auto;
		bottom: 0;
		right: auto;
		left: 0px;
		display: block;
	}
	
	.receipt_toggle_bar {
		display: block;
	}
}

@media only screen and (max-width: 600px) {
	#receipt {
		position: relative; 
		width: 100%; 
		height: 100%;
	}

	#receipt_container {
		position: fixed; 
		width: 100%; 
		height: 120px;
		top: auto;
		bottom: 0;
		right: auto;
		left: 0px;
		display: block;
	}
	
	.receipt_toggle_bar {
		display: block;
	}
}

.receipt_loadingtext {
	color: #000000;
}

table.table_receipt {
	width: 100%;
}

table.table_receipt tr th {
	text-align: left;
	color: #000000;
}

table.table_receipt tr th.cost {
	text-align: right;
	color: #000000;
}

table.table_receipt tr td {
	text-align: left;
	color: #000000;
}

table.table_receipt tr td.cost {
	text-align: right;
	color: #000000;
}
.table_header {
	border-bottom: solid 1px #ff0000;
}

.table_footer {
	border-top: solid 1px #ff0000;
}
