@charset "UTF-8";
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Tooltip */
.tooltipx {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltipx .tooltiptext {
  display: none;
  background-color: lightyellow;
  color: black;
  text-align: left;
  border: 1px solid grey;
  border-radius: 4px;
  padding: 2px 5px;
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  right: 0px;
  bottom: 100%;
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
}
.tooltipx:hover .tooltiptext {
  display: inline-block;
}

.localDevOnly,
.localDevOnly label {
  display: none !important;
  color: darkviolet !important;
  text-shadow: 1px 0px #007bff;
}

.sideBarDevLinks {
  background-color: lightskyblue;
  list-style: none;
  padding-left: 5px;
  position: fixed;
  z-index: 1101;
  bottom: 40px;
  right: 10px;
  min-width: 260px;
  font-size: 1rem;
}

details.sideBarDevLinks > summary {
  padding: 2px 6px;
  background-color: #ddd;
  border: none;
  box-shadow: 3px 3px 4px black;
  cursor: pointer;
}

.sideBarDevLinks li {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 1000px) {
  .sideBarDevLinks {
    display: none;
  }
}
.clsDisplayCount {
  background-color: red;
  position: fixed;
  bottom: 25px;
  right: 10px;
  z-index: 1102;
  padding: 2px 5px;
}

.hover-hilite:hover {
  background-color: lightyellow !important;
}

.appUserManualLink {
  z-index: 1101;
  position: fixed;
  top: 2px;
  right: 150px;
  border: 1px yellow solid !important;
  border-radius: 40px !important;
  font-size: 1rem !important;
}
.appUserManualLink:disabled {
  opacity: 0.3;
  border: 1px solid #999;
  background-color: #ccc;
  color: #999;
}

#lbBottomLeft {
  font-size: smaller;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tick-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.tick-mark::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 50%;
  width: 3px;
  background-color: #336699;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}
.tick-mark::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #336699;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}

/* content of pseudo-element will be set to the current value of "data-point" */
#container1::before {
  content: attr(data-point);
}

/* set color of pseudo-element to red when data-point=50 */
#container1[data-point="50"]::before {
  color: red;
}

.tooltipx2::after {
  position: absolute;
  top: -10px;
  content: attr(data-score);
  opacity: 0;
  transition: 2s;
}
.tooltipx2:hover::after {
  opacity: 1;
}
.tooltipx2[data="100"]::after {
  color: #c00;
}

.center-eg {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Add a pseudo-element inside the target element */
.url-target-eg:target::before {
  font: 70% sans-serif;
  content: "►";
  color: limegreen;
  margin-right: 0.25em;
}

.statusBar {
  position: fixed;
  visibility: hidden;
  right: 0px;
  top: 5px;
  z-index: 20013;
  font-size: 1.3rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  align-content: flex-end;
  zbackground-color: lightcoral;
}
.statusBar > * {
  display: inline-block;
  align-content: center;
  justify-content: center;
  align-self: stretch;
}
.statusBar .statusBarMesgWrapper .statusBarMesg {
  opacity: 1;
  transition-duration: 5s;
  transition-property: opacity;
  background-color: #ececd7;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  height: 100%;
  padding: 0px 5px;
  padding-top: 4px;
  outline: 1px dashed lightgreen;
}
.statusBar .statusBarMesgWrapper .statusBarMesg::before {
  content: " -- ";
}
.statusBar .statusBarMesgWrapper .statusBarMesg::after {
  content: " -- ";
}
.statusBar .statusBarButtonWrapper {
  text-align: center;
  zbackground-color: red;
}
.statusBar .statusBarButtonWrapper button {
  border-radius: 2px;
  font-size: 1.3rem;
  color: #777;
  cursor: pointer;
}
.statusBar .statusBarButtonWrapper button:hover {
  color: black;
  outline: 1px dotted blue;
}

.topParentLink {
  position: fixed;
  top: 5px;
  left: 3px;
}

#fs-toggle:not(:fullscreen) {
  background-color: #afa;
}

#fs-toggle:fullscreen {
  background-color: #faa;
}

.pageNavigator {
  text-align: center;
  font-size: 1.1em;
}

.pageNavigatorControl {
  display: inline-block;
  margin-left: 10px;
}

.appMenuItemSelected {
  text-decoration: underline;
  font-size: larger;
  color: yellow;
  text-shadow: 1px 2px green;
}
