:root {
    --main-font-family: "Montserrat", sans-serif;
}

body {
    font-family: var(--main-font-family);
    margin: 0;
}

button, input, select, textarea {
    font-family: var(--main-font-family);
}

legend {
    margin-left: 1em;
}

fieldset {
    border: 1px solid #aaa;
}

.hide {
    visibility: hidden;
}

.button-shadow {
    box-shadow: 8px 8px 15px -8px #444444;
}

/************** Tooltip ***************/

a.tooltip {
  position: relative;
  display: inline-block;
  height:100%;
  width: 100%;
  text-decoration: none;
}

a.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  display: block;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #ffcb66;
  color: black;
  border-radius : 10px;
  opacity: 0;
  padding: 5px 15px;
  border: 1px solid darkgreen;
  background-color: lightgreen;
  border-radius: 10px;
  padding: 0.5em;
  max-width: 100%;
  transition : all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  user-select: none;
}

a.tooltip:hover:after {
  bottom: 0;
  opacity: 0.75;
}


/**************** OLD VALUES ******************/

.field_descriptor {
  font-weight: bold;
  color: blue;
  width: 1%;
  white-space: nowrap;
}

.field_descriptor span {
  margin-right: 0.3em;
}
