.reactiveText {
    cursor: default;
}
.reactiveText:hover {
    font-weight: bold;
    text-decoration: underline;
}

.disclaimer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: whitesmoke;
  z-index: 10;
  transition: 1s ease-in-out;
}

#cookieDisclaimerTitle {
  margin: 1px 0px 18px 0px;
  padding: 6px 0px;
  color: #666699;
  background-color: #CCCCFF;
  font-size: 1.6em;
  text-align: center;
}

#cookieDisclaimerClose {
  position: absolute;
  top: 9px;
  right: 10px;
  background-color: transparent;
  opacity: 0.5;
}
#cookieDisclaimerClose:hover {
  opacity: 1;
}

#policyOverlay {
  position: fixed;
  overflow-y: scroll;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color:black;
  opacity: 0.8;
  z-index: 9998;
}
#policyFrame {
  position: fixed;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: white;
  opacity: 1;
  overflow: hidden;
  z-index: 9999;
}
#policyTitle {
  margin: 0px;
  padding: 6px 0px;
  color: white;
  background-color: #13b1cd;
  font-size: 1.6em;
  text-align: center;
}

#policyClose {
  position: absolute;
  top: 9px;
  right: 10px;
  background-color: transparent;
  opacity: 0.5;
}
#policyClose:hover {
  opacity: 1;
}