table.price { FONT-FAMILY: Arial, sans-serif; font-size: 14px; width: 100%; z-index: 1;}
table.price td.center {text-align: center}
table.price td:nth-child(2) {text-align: center; width: 30%}
table.price td:nth-child(3) {text-align: center; width: 30%}

table, td, th {
  border-collapse: collapse;
  border: 1px solid #245488;
  padding: 8px 7px;
}


a.dot {
    text-decoration: none;
    border-bottom: 1px dashed #000080;
}


.tooltiped {
  position: relative;
}
.tooltiped .tooltip {
  position: absolute;
  left: 0; top: 0;
  visibility: hidden;
  opacity: 0;
  transition: ease 0.5s;
}
.tooltiped:hover .tooltip {
  padding-top: 1.5em;
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.tooltiped .tooltip .tooltip-content {
  max-width: 500px;
  # padding: 0.5em;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  background: #dadada;
  # opacity: 1;
}
