/*----------------------------------------------------------------------------- 
=MAIN STYLES  
-----------------------------------------------------------------------------*/
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Arial",Helvetica,sans-serif;
}
h1 {
	font-size: 20px;
	/*margin: 0px;*/
}
h2 {
	/*margin: 0px;*/
}
p {
	line-height: 1.4;
}
a {
	text-decoration: none;
	color: grey;
}
.bold-text {
	font-weight: bold;

}

li {
	/*padding-top: 2px;*/
	/*padding-bottom: 2px;*/
	line-height: 1.5;

}
.container {
	margin-left: 2.5%;
	margin-right: 2%;
	width:98%;
}

.row {
	display:inline-flex;
	flex-direction: row;
	width:100%;
	/*justify-content: flex-start;*/
	align-items: flex-start;
}

.pullDownGroup {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/*justify-content: */
	position: relative;
	left: 30%;
	/*margin-bottom: 3px;*/
}

.column-33Perc {
	width: 33%;
	margin-left: 1%;
	margin-right: 1%;
}
.column-1 {
	/*position: relative;*/
	width: 70%;
}
.column-2 {
	width: 30%;
	/*float: left;*/
	/*display: inline-block;*/
}
.horizontal-line {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.menuBar {
	width: 100%;
	display:inline-flex;
	flex-direction: row;
	background-color: #F0F0F0;
	justify-content: flex-start;
	align-items: baseline;

}
.menuTitle {
	margin-left: 2.5%;
	/*margin-right: 2%*/
	margin-top: 1%;
	margin-bottom: 1%;
	display: inline-block;
}

/*###NEW - Dropdown*/
.dropbtn {
  background-color: #F0F0F0;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  /*margin-left: 0.5%;*/
  /*margin-right: 1% ;*/
  z-index:10;
}
.dropbtn2 {
  background-color: #F0F0F0;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 5px;
  z-index: 1;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #E8E8E8;
  color: royalblue;
  z-index: 10;
}
.dropbtn2:hover, .dropbtn2:focus {
  background-color: #E8E8E8;
  color: royalblue;
}

.dropdown {
  position: relative;
  display: inline-block;
  /*left: 30%;*/
  /*right: 50%;*/
  /*margin-top: 1%;*/
  /*margin-bottom: 1%;*/
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 150px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
}
.dropdown-content2 {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 150px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 6px 12px;
  text-decoration: none;
  display: block;
}
.dropdown-content2 a {
  color: black;
  padding: 6px 12px;
  text-decoration: none;
  display: block;
}


.dropdown a:hover {background-color: #ddd;}
.dropdown2 a:hover {background-color: #ddd;}

.show {display: block;}

/*###End of dropdown menu*/


.answerBox {
/*	display: flex;
	flex-direction: column;*/
	border: 1px solid grey;
	border-radius: 5px;
	width: 90%;
	padding: 5px;
}
.blockRow {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.mobile-badge-align {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.title-text {
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: left;
}

.divider {
  margin: 5px 0; 
}

.input-box {
	text-align: left;
	/*padding: 10px;*/
}
.input-box-side {
	text-align: left;
	/*padding: 10px;*/
	display: flex;
	flex-direction: row;
	/*justify-content: flex-start;*/
	/*justify-content: space-between;*/
	align-items: center;
}
.space-small {
	margin-top:-15px;
	margin-bottom:-15px; 
}

.input-text {
	/*display: inline-block;*/
	margin-left: 1px;
	margin-right: 1px;	
}
.input {
	height: 20px;
}

.input-side {
	height: 20px;
	margin-left: 7px;
}

.calculate-button-area {
	text-align: left;
	padding: 10px;
}

/*Turn off up-down spinner for input fields*/
.input [type='number'] {
  -moz-appearance:textfield;
}
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.output [type='number'] {
  -moz-appearance:textfield;
}
.output::-webkit-outer-spin-button,
.output::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buttons {
	border: none;
	border-radius: 5px;
	color: white;
	padding: 6px;
	padding-left: 12px;
	padding-right: 12px;
	cursor: pointer;
	height: 35px;
	font-size: 17px;
}
#button-main {
	margin-right: 3px;
	background-color: green;
}
#button-main:hover {
	background-color: darkgreen;
}
#button-clear {
	margin-left: 3px;
	background-color: grey;
}
#button-clear:hover {
	background-color: darkgrey;
}

.ad-unit {
	padding: 5px;
	text-align: left;
}

.test {
	padding: 10px;
	color: grey;
}
.error {
	padding-left: 10px;
	padding-top: 2px;
	color:red;
}

.ad-unit-sidebar {
	margin: 10px;
	padding: 10px;
	padding-top: 15px;
	height: 800px;
	/*background-color: blue;*/
	/*width: 30%;*/
}

.mobileBadges {
	display: inline;
}

.badgeApple {
	margin-left:1%;
	width: 250px;
	/*padding: 5.2%;*/
}
.badgeGoogle {
	margin-left:1%;
	width: 300px;
}
footer {
	padding: 10px;
	padding-left: 2%;
	background-color: #F0F0F0;
	/*margin: 0;*/
}

/*=== === === */
/*Just for Percent*/
/*=== === === */
.body-box{
	background-color: #F0F0F0;
	border: 1px lightgrey;
	border-radius: 20px;
	padding: 10px;
	margin-bottom: 6px;
	width: 95%;
}
.formula-box {
	display: flex;
	flex-direction: column;
	border: 1px solid grey;
	border-radius: 6px;
	padding:5px;
	margin:4px;
}
.formula-title {
	padding-top: 5px;
}
.input-percent {
	height: 20px;	
}

/*=== === === 
ONLY BAKING/ KITCHEN
=== === === */
.toggle-buttons {
	padding: 10px;
	/*height: 20px;*/
	/*width: 150px;*/
}

.table-Oven {
	border-collapse: collapse;
	width: 95%;
}

.table-Oven th {
	background-color: #F0F0F0;
}


.table-Oven td, th {
	border: 1px solid grey;
	text-align: left;
	padding: 5px;
	height: 5px;
	font-size: 15px;
}


.table-Volume {
	border-collapse: collapse;
	width: 90%;

}

.table-Volume td, th {
	border: 1px solid grey;
	text-align: left;
	padding: 5px;
}

.table-Volume tr:nth-child(even) {
	background-color: #F0F0F0;
}


/*=== === === 
ONLY Depreciation
=== === === */
/*table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

th, td {
  padding-left: 10px;
  padding-right: 10px;
}


th {
	background-color: grey;
	color: white;
}
td {
	text-align: center;
	  padding-top:4px;
	  padding-bottom: 4px;
}
td:first-of-type {
	text-align: left;
}*/
