
h1 {font-size:30px}
h2 {font-size:25px}

td, th {
	font-size: 18px;
    padding: 0 10px;
}

.eulatext {
    font-size:10pt;
}

.haztable td, .haztable th {
    padding: 0 10px;
}

.filtering a {
    color: hotpink;
}

.linkasbutton {
     background-color: #F5F5DC;
     border: none;
     color: red;
     padding: 2px 3px;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     font-size: 15px;
     margin: 4px 2px;
     cursor: pointer;
}

.btn-filter {
    font-size: 15px;
    margin: 2px 2px;
    padding: 5px 5px;
    background-color: AntiqueWhite;
}

.btn {
    font-size: 1rem;
    margin: 2px 2px;
    padding: 0px 0px;
}

.selected {
    background-color: #F5F5DC;
}

/*
.checkbox-checkbox {
    content: "\2713";
    background-color: red;
}

.checkbox-checkbox {
    width: 20px;
    height: 20px;
}
 */

/* Custom Checkbox stuff */
/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
/*  font-size: 22px;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: red;
}

/* On mouse-over, add a grey background color */
/*
.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: #ccc;
}
*/

/* When the checkbox is checked, add a blue background */
/*
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: #2196F3;
}
*/
/* MCA: When the checkbox is checked, add a green background */
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: green;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.watermark {
  opacity: 0.10;
  font-size: 2rem;
  color: 'black';
  background: '#ccc';
  position: fixed;
  top: 0vh;
  left: 10vw;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  cursor: default;
  user-select: none;
  pointer-events: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

