/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: #0085ad;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0%;
  margin-left: 0px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0085ad transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.icon-box
{
padding: 30px;
    position: relative;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
 transition: all 0.3s ease-in-out;
}

.tooltip-unten {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

.tooltip-unten .tooltiptext-unten
{
visibility: hidden;
  width: 300px;
  background-color: #0085ad;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
top: 100%;
  left: 50%;
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip-unten .tooltiptext-unten::after {
   content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #0085ad transparent;
}

.tooltip-unten:hover .tooltiptext-unten {
  visibility: visible;
  opacity: 1;
}

.table-applikation
{
vertical-align: middle; 
padding: 2px 0px; 
width: 100% !important; 
display: inline !important;
}
   
.td-highlight
{
font-weight: bold; 
text-align: left; 
font-size: 1.2em; 
background-color: rgba(0,133,176,0.28); 
padding: 0px 0px 0px 5px !important;
}

.table-applikation td
{
padding: 0px 0px 0px 3px;
    list-style: disc;
}
.table-applikation td ul
{
    list-style: disc;
}

.elektroden-flex-container {
  display:flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
   
}
@media (min-width: 600px) 
{
.elektroden-flex-item {
    flex: 0 1 20%;
}
}

@media (max-width: 600px) {
.elektroden-flex-item {
flex: 0 1 auto;
}
}