#calc_container {
	/*background-color: cyan;*/
	box-sizing: content-box;
    width: 100%;
	font-size: 16px
}

#calc_container label {
	float: right
}

#calc_container form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	width: 100%;
	flex-wrap: wrap;
    -ms-flex-pack: distribute;
}

#calc_container output {
	color: red;
	font-size: 16px;
	margin-top: -10px
}
#calc_container form#results output, 
#calc_container form#adjustments output {
	color: white;
}

.calc-col {
	flex-direction: row;
	padding: 15px
}
form#results .calc-col, form#adjustments .calc-col {
	padding: 8px
}
.colm-1 {
	flex: 1 0 50%;
	/*background-color: red;*/
	margin: 0 auto;
	text-align: center
}
.colm-2 {
	flex: 1 0 50%;
	/*background-color: blue;*/
}
.colm-3 {
	flex: 1 0 100%;
	/*background-color: orange;*/
	text-align: center
}
.colm-3 span {
	color: red;
	font-weight: bold
}
.colm-4 {
	font-style: italic;
	flex: 1 0 50%;
	/*background-color: lightgreen;*/
	margin: 0 auto;
}

.heading {
	width: 100%;
}
.heading h4 {
	text-align: center;
	text-decoration: underline
}
.heading h5 {
	text-align: center
}

.calc-tooltip {
  	position: relative;
	border-radius: 50%;
	background-color: black;
	color: white;
	font-size: 20px;
	font-family: serif;
	font-style: italic;
	padding: 0px 12px;
	width: 30px;
	float: right
}
.calc-alerttooltip {
  	position: relative;
	border-radius: 50%;
	background-color: lightgrey;
	color: red;
	font-size: 20px;
	font-weight: bold;
	padding: 0px 12px;
	width: 30px;
	float: right
}
.calc-tooltip .calc-tooltipimage img {
	max-width:100%;
	max-height:100%;
}
.calc-tooltip .calc-tooltipimage {
	visibility: hidden;
	width: 66vw;
	background-color: black;
	color: #fff;
	border: 1px solid black;
	border-radius: 3%;
	overflow: hidden;

	/* Position the tooltip */
	position: absolute;
	right: 30px;
	transform: translateY(-50%);
	z-index: 1;
	max-width: max-content;
	background-color:white;
	font-style: normal;
	font-weight: bold
}

.calc-alerttooltip .calc-tooltipimage {
  	visibility: hidden;
  	width: 66vw;
  	background-color: white;
  	color: red;
  	border: 1px solid black;
	padding: 8px;

/* Position the tooltip */
	position: absolute;
	right: 30px;
	transform: translateY(-50%);
	z-index: 1;
	max-width: max-content;
	background-color:white;
	font-style: normal;
	font-weight: bold
}

.calc-tooltip:hover .calc-tooltipimage {
	visibility: visible;
}

.calc-alerttooltip:hover .calc-tooltiptext {
	visibility: visible;
}

input.compression-input {
	text-align: right;
	width: 66%;
	max-width: 200px
}
select.compression-select {
	height:32px;
	width: 66%;
	max-width: 200px
}
