/*  Hitbar with hit markers */
#hitbar {
  width: 20px;
  color: #ffffff;
  background: #16233E;
  position: fixed;
  height: 100%;
  right: 10px;
  z-index:10;
}

.hitmarker {
  padding: 0;
  color: white;
  width: 20px;
  margin-right: 10px;
  height: 5px;
  border: 0;
  background-color: #76B8D8;
  opacity: 0.3;
  cursor: pointer;
}

.hitmarker.highlight {
  z-index: 10;
}

.hitmarker:hover {
  opacity: 1;
}

/* position arrow to indicate overall position */
#position-arrow {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #76B8D8;
  position: fixed;
  top: 0;
  right: 35px;
}

/*  Highlighting keywords */
.highlight {
  background-color: #F5D59C;
  opacity: 1;
}

.hit.match {
  border-color: #F5D59C;
}

.context {
  display: none;
}

/* Additional Styling for kontext  li hits */
a.contextHeadLink > span.glyphicon, #fake-header a > span.glyphicon {
  padding-right: 3px;
  color: #ccc;
}

/*  Parent elements in ScrollView */
#fake-header {
  position: fixed;
  font-size: 11px;
  z-index: 1;
  top: 0;
  width: 500px;
  background: #fff;
}

#fake-header li.hit, #fake-header li.hit a {
  color: #fff;
}
#fake-header li.hit {
  background: #003574;
  border: 2px solid #00295A;
  border-radius: 0px;
  margin-bottom: 3px;
  padding: 3px 10px;
}

#fake-header li.hit.level-0 {
  padding-left: 10px;
}

#fake-header li.hit.level-1 {
  padding-left: 20px;
}

#fake-header li.hit.level-2 {
  padding-left: 30px;
}

#fake-header li.hit.level-3 {
  padding-left: 40px;
}

/*  Prev-Next-Result */
.searchbox-fixed {
  position: fixed;
  border-bottom: 15px solid #ffffff;
  max-width: 290px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  z-index: 10;
  background: #e0e0e0;
  top: 0;
}

.browse-results {
  margin-top: 10px;
  margin-bottom: 10px;
}
.prev-result {
  margin-right: 10px;
}

.btn.btn-disabled  {
  cursor: default;
}

/*  TopSlider */

.top-slider {
  position: fixed;
  height: 40px;
  width: 40px;
  background: #003574;
  border-color: #00295a;
  border-radius: 4px;
  right: 50px;
  bottom: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999999999999999999;
}

.top-slider .caret {
  position: relative;
  background: #ffffff;
  height: 0px;
  margin-top: 20px;
  margin-left: 15px;
}

.top-slider .caret:after {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 10px;
  left: 50%;
  margin-left: -10px;
}

/*
li.hit .container {
  max-width: 100%;
}

li.hit .container .col-md-9 {
  width: 100%;
}

#hitlist #fullinfo > h1, #hitlist #fullinfo > h1 .subHeading {
  font-size: 18px;
}

#fullinfo > hr {
  display: none;
}
*/

/*  Tooltip */
.tt, [data-tt] {
  position:relative;
  display:inline-block;
}
.tt:before, .tt:after, [data-tt]:before, [data-tt]:after {
  position:absolute;
  visibility:hidden;
  opacity:0;
  z-index:1000000;
  pointer-events:none;
}
.tt:hover:before, .tt:hover:after, [data-tt]:hover:before, [data-tt]:hover:after {
  visibility:visible;
  opacity:1;
}
.tt:before, [data-tt]:before {
  content:'';
  position:absolute;
  background:transparent;
  border:6px solid transparent;
  z-index:1000001;
}
.tt:after, [data-tt]:after {
  content:attr(data-tt);
  background:#111111;
  color:#ffffff;
  padding:8px 10px;
  font-size:12px;
  line-height:12px;
  white-space:nowrap;
  box-shadow:0px 0px 8px rgba(0, 0, 0, 0.2);
}
.tt--left:before {
  border-left-color:#111111;
}
.tt--left:before {
  margin-right:-11px;
  margin-bottom:-6px;
}
.tt--left:after {
  margin-bottom:-14px;
}
.tt--left:before, .tt--left:after {
  right:100%;
  bottom:50%;
}
.tt--left:hover:before, .tt--left:hover:after {
  -webkit-transform:translateX(-8px);
  -moz-transform:translateX(-8px);
  transform:translateX(-8px);
}
.tt--right:before {
  border-right-color:#111111;
}
.tt--right:before {
  margin-left:-11px;
  margin-bottom:-6px;
}
.tt--right:after {
  margin-bottom:-14px;
}
.tt--right:before, .tt--right:after {
  left:100%;
  bottom:50%;
}
.tt--right:hover:before, .tt--right:hover:after {
  -webkit-transform:translateX(8px);
  -moz-transform:translateX(8px);
  transform:translateX(8px);
}
.tt--top:before {
  border-top-color:#111111;
}
.tt--top:before {
  margin-bottom:-11px;
}
.tt--top:after {
  margin-left:-18px;
}
.tt--top:before, .tt--top:after {
  bottom:100%;left:50%;
}
.tt--top:hover:before, .tt--top:hover:after {
  -webkit-transform:translateY(-8px);
  -moz-transform:translateY(-8px);
  transform:translateY(-8px);
}
.tt--bottom:before {
  border-bottom-color:#111111;
}
.tt--bottom:before {
  margin-top:-11px;
}
.tt--bottom:after {
  margin-left:-18px;
}
.tt--bottom:before, .tt--bottom:after {
  top:100%;left:50%;
}
.tt--bottom:hover:before, .tt--bottom:hover:after {
  -webkit-transform:translateY(8px);
  -moz-transform:translateY(8px);
  transform:translateY(8px);
}
.tt.highlight:after, [data-tt].highlight:after {
  background:#F5D59C;
  color:#000;
}
.tt--left.highlight:before{
  border-left-color:#F5D59C;
}
.tt--right.highlight:before{
  border-right-color:#F5D59C;
}
.tt--top.highlight:before{
  border-top-color:#F5D59C;
}
.tt--bottom.highlight:before{
  border-bottom-color:#F5D59C;
}

.tt.primary:after, [data-tt].primary:after {
  background:#76B8D8;
  color:#FFF;
}
.tt--left.primary:before{
  border-left-color:#76B8D8;
}
.tt--right.primary:before{
  border-right-color:#76B8D8;
}
.tt--top.primary:before{
  border-top-color:#76B8D8;
}
.tt--bottom.primary:before{
  border-bottom-color:#76B8D8;
}
