* {
  font-family: 'Francois One', Arial, sans-serif;
}

.invisible {
	display: none;
}

.tooltip {
    position: relative;
    display: inline-block;
		text-decoration: underline;
    text-decoration-style: dotted;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: fit-content;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    
}
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.plus {
	display: none;
}
.error{
	--box-shadow-color: #F00;
  border: 2px var(--box-shadow-color);
  border-style: inset;
}
.wrapper{
	overflow: hidden;
	max-height: 300px;
	-webkit-transition: max-height 1s; /* Safari */
  transition: max-height 1s;
}
body {
  padding: 10px;
}
h1 {
  /*text-transform: uppercase;*/
  font-weight: 300;
  margin: 0;
}
span.title {
  width: 100px;
}
div {
	padding: 2px;
	padding-bottom: 0px;
}
div.container {
  max-width: 800px;
  display: -webkit-flex;
	display: flex;
}
div.before {
  text-align: right;
	max-width: 20%;
	line-height: 205%;
}
div.container, div{
  -webkit-flex: 1;
	flex: 1;
}

input, textarea {
	--box-shadow-color: #AAA;
  border: 2px var(--box-shadow-color);
  line-height: 21px;
  padding: 5px;
  color: black;
  border-style: inset;
  border-radius: 10px;
	min-width: 100%;
}
button {
	height: 30px;
	background-color: #0fff00;
	border-color: #000;
	color: black;
  border-radius: 20px;
  border-style: outset;
}
button:active {
  box-shadow: inset 0px 0px 2px 2px #c6c6c6;
  border-style: solid;
}
input:focus, textarea:focus {
  box-shadow: inset 0px 0px 2px 2px #c6c6c6;
  border-style: solid;
}
input:disabled {
  background-color: #FFF;
  color: #AAA;
  border: 1px solid #DDD;
}
input[type="radio"] {
	min-width: 0;
}
input[type="checkbox"] {
	margin-top: 10px;
	min-width: 0;
}
td, p{
  font-size: 12pt;
}
td.left {
  text-align: right;
}