.col-E {
  text-align: right;
  width: 50px;
}

.col-blName {
  width: 300px;
}

.md-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.md-tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--desy-bf-darkgrey);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.md-tooltip:hover .tooltiptext {
  visibility: visible;
}

/* https://tympanus.net/codrops/2012/01/11/css-buttons-with-pseudo-elements/comment-page-1/ */
.md-button {
	background-color: var(--desy-orange);
	color: white;
	position: relative;
	padding: 4px 8px;
	margin: 10px 0px;
	border: none;
	font-weight: bold;
	border-radius: 5px;
	/*box-shadow: inset 0px 1px 0px #eb9129, 0px 5px 0px 0px #c84d14, 0px 10px 5px #999;*/
	box-shadow: inset 0px 1px 0px #eb9129, 0px 4px 0px 0px #c84d14;
}

.md-button:active {
	top: 2px;
	font-weight: bold;
	border: none;
	box-shadow: inset 0px 1px 0px #eb9129, 0px 2px 0px 0px #c84d14;
}

.md-content {
  display: flex;
}

.md-content::after {
  content: "";
  display: table;
  clear: both;
}

.md-main-content {
  flex: 1;
  padding: 0px;
}

.md-main-content h2 {
  color: var(--desy-bf-blue);
  font-size: 22px;
  margin: 0px;
  font-weight: bold;
}


.md-info-content {
  width: 200px;
  padding: 5px;
  border: 1px solid var(--desy-orange);
  border-radius: 5px;
  margin: 0px 10px;
  /*display: flex;*/
  /*flex-direction: column;*/
}

#md-info-box {
  margin: 0px 10px 5px 10px; /* t r b l*/
}

.md-info-content h2 {
  color: var(--desy-bf-blue);
  font-size: 22px;
  margin: 0px;
  font-weight: bold;
  text-transform: capitalize;
}

.md-info-content h3 {
  color: var(--desy-orange);
  font-size: 18px;
  font-weight: bold;
  margin: 7px 0px 0px 0px !important; /* t r b l*/
}

.md-info-content p {
  font-size: 12px;
  margin: 0px !important;
}

.md-info-content ul {
  list-style-type: "none";
  padding: 0px 0px 0px 0px; /* t r b l*/
  margin-left: 0px !important;
  margin: 0px 0px 5px 0px !important; /* t r b l*/
}

.md-info-content li::before {
  content: "> ";
  font-weight: bold;
  color: var(--desy-orange);
}

.md-itemization li::before {
  content: "> ";
  font-weight: bold;
  color: var(--desy-orange);
}

.md-tab {
  display: inline-block;
  padding: 0px;
  cursor: pointer;
  border-bottom: none;
}

.md-tab button { /* tabs for graph section */
  margin: 0px; /* 10px 0px 0px;*/ /* t r b l*/
  padding: 5px 10px;
  color: var(--desy-bf-blue);
  background-color: white;
  border-radius: 5px 5px 0px 0px; /* t r b l*/
  border: 1px solid var(--desy-bf-blue);
}

.md-tab button.active {
  padding: 10px 10px 5px 10px; /* t r b l*/
  color: white;
  background-color: var(--desy-bf-blue);
  border-radius: 7px 7px 0px 0px; /* t r b l*/
  border: 1px solid white;
  font-size: 14px;
	font-weight: bold;
}


.md-tab-content {
  border: 1px solid var(--desy-bf-blue);
  padding: 5px;
  margin: 0px 10px 10px 0px; /* t r b l*/
  white-space: pre;
  line-height: .85;
}

.md-tab-content.active {
  display: block;
}

.md-footer {
  padding: 10px 0px 0px 0px; /* t r b l*/
  margin: 0px; /*why is this not working?*/
  color: var(--desy-grey) !important;
}

.md-footer p {
  padding: 0px 0px 0px 0px !important;
}

.md-select {
  background-color: white;
  color: black; 
  border: 1px solid;
  border-radius: 5px;
  margin: 7px 0px;
  padding: 2px 5px;
}


/* https://moderncss.dev/pure-css-custom-checkbox-style/ */
input[type="checkbox"] {
  -webkit-appearance: none; /* Add if not using autoprefixer */
  appearance: none;
  background-color: #fff; /* For iOS < 15 to remove gradient background */
  margin: 0px 5px 0px 10px; /* t r b l*/
  font: inherit;
  color: black;
  width: 1.15em;
  height: 1.15em;
  border: 1px solid black;
  border-radius: 0.15em;
  display: inline-grid;
  place-content: center;
}

.form-control {
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 1.5em;
}

.form-control + .form-control {
  margin-top: 1em;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  box-shadow: inset 1em 1em var(--desy-orange);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

a:visited {
  color: var(--mediumgrey);
}

summary {
  cursor: pointer;
  color: var(--desy-bf-blue);
  font-size: 1.2rem;
  margin: .4rem .5rem .4rem 0;
  font-weight: bold;
}
