/**
 * ISBA Fastcase citation styles
 */

/* Fastcase citation links */
a.citation {
  text-decoration: none;
  border-bottom: 1px dashed #184582;
}
a.citation:hover {
  border-bottom-color: #000;
}


/* Error message overlay */
#fastcase-message-cover {
  position: fixed;
  opacity: 0;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

#fastcase-message {
  position: fixed;
  z-index: 99;
  top: 200px;
  left: 300px;
  width: 350px;
  min-height: 100px;
  margin: 0;
  border: 1px solid #730e14;
  background-color: #f1f1f1;
  padding: 12px;
  box-shadow: 1px 1px 3px #888;
  border-radius: 4px;
}

#fastcase-message #fastcase-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
}
#fastcase-message #fastcase-close:hover {
  color: #ddd;
}

#fastcase-message h2 {
  margin: -12px -12px 0.8em;
  padding: 8px 12px;
  background-color: #730e14;
  color: #fff;
  font-size: 121.4%;
}
#fastcase-message h2 .fa {
  margin-right: 0.5em;
  font-size: 88.2%;
}

#fastcase-message p {
  margin-bottom: 0;
}
