@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.logo {
  height: 50px;
}

ul.main-nav .nav-item a.nav-link {
  padding-top: 2px;
}

table tbody tr td.cell-with-comment {
  position: relative;
}
table tbody tr td .cell-comment {
  display: none;
  position: absolute;
  width: 250px;
  z-index: 1000;
  border: 1px;
  background-color: white;
  border-style: solid;
  border-width: 1.5px;
  border-color: black;
  border-radius: 5px;
  padding: 5px;
  color: black;
}
table tbody tr td .cell-comment-center {
  bottom: 100%;
  left: 50%;
  margin-left: -125px;
}
table tbody tr td .cell-comment-left {
  right: 90%;
  bottom: 100%;
}
table tbody tr td .cell-comment-center::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
table tbody tr td .cell-comment-left::after {
  content: "";
  position: absolute;
  top: calc(100% - 4px);
  left: 239px;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black black;
  transform: rotate(270deg);
}
table tbody tr td.cell-with-comment:hover div.cell-comment {
  display: flex;
  justify-content: space-between;
}
table tbody tr td.cell-with-comment:hover div.cell-comment span {
  width: 50%;
}
table tbody tr td .cell-comment span.history-value {
  display: flex;
  align-self: center;
  justify-content: center;
}
table tbody tr td.cell-with-comment:hover div.cell-multicomment {
  display: block;
}
table tbody tr td.cell-with-comment:hover div.cell-multicomment p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
table tbody tr td.cell-with-comment:hover div.cell-multicomment p span {
  width: 50%;
}
table tbody tr td.cell-with-comment:hover div.cell-multicomment hr {
  margin: 0 0 0.5rem 0;
}
table tbody tr td.CurrentVersion, table tbody tr td span.current-version {
  color: blue;
  font-weight: bold;
}
table tbody tr td.CellWithDifference {
  background-color: lightgreen;
}
table tbody tr td.CellWithBaseDifference {
  background-color: darkgreen;
  color: white;
}

.sticky {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 900;
}

.comment-tooltip {
  --bs-tooltip-bg: var(--bs-primary);
}