.demo pre.result {
  /** Wrap */
  font-family: "code";
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 12px;
}

.receipt table tr.logo a.img_receipt {
  display: inline-block;
  background-size: cover;
  background-position: 50% 7%;
  background-repeat: no-repeat;
}
.receipt table tr.logo a.img_receipt div.filler {
  display: block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 66%, white 100%);
  width: 200px;
  height: 80px;
  padding: 1px;
}
.receipt table tr.logo a.img_receipt:hover, .receipt table tr.logo a.img_receipt:active {
  border-bottom: none !important;
}
.receipt table tr.logo a.img_receipt:hover div.filler, .receipt table tr.logo a.img_receipt:active div.filler {
  background: none;
  padding: 0;
  border: solid 1px deepskyblue;
}

div.card_wrap div.copy_pre {
  position: absolute;
  top: 80px;
  right: 20px;
  background: transparent;
}
div.card_wrap div.copy_pre a {
  padding: 4px 6px;
  opacity: 0.6;
  font-weight: normal;
}
div.card_wrap div.copy_pre a:hover, div.card_wrap div.copy_pre a:active {
  opacity: 1;
}

div.card_wrap.wide div.copy_pre {
  top: 50px;
  right: 0;
}

.tooltip.copy_pre_tooltip .tooltip-inner {
  background: #efe;
  color: #083;
  padding: 2px 4px;
  font-size: 14px;
}

.tooltip.copy_pre_tooltip .arrow:before {
  border-top-color: #efe;
}

.demo div.card.doc {
  background-color: #cef;
}

.demo div.card {
  min-width: 300px;
  margin-bottom: 24px !important;
}

body.asprise .demo button.ctrl {
  font-family: "Ai";
  font-size: 16px;
  font-weight: bold;
}

.ocr-result-ctrls .btn-outline-primary {
  background-color: rgba(100, 150, 200, 0.8);
  color: white;
  border: none;
}

.ocr-result-ctrls .btn.disabled, .ocr-result-ctrls .btn:disabled, .ocr-result-ctrls .btn.btn-outline-primary.disabled, .ocr-result-ctrls .btn.btn-outline-primary:disabled, .ocr-result-ctrls .btn.btn-primary.disabled, .ocr-result-ctrls .btn.btn-primary:disabled {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
}

.demo div.card .card_top > img {
  max-height: 120px;
  max-width: 120px;
  margin: auto;
}

.demo .card span.sample {
  margin-left: 12px;
}

/** Fullscreen image display */
.overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  text-align: center;
  visibility: hidden;
  opacity: 1;
  transition: opacity 0.3s;
  text-align: center;
}

.overlay img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.overlay:target, .overlay.show {
  visibility: visible;
  outline: none;
  cursor: default;
  z-index: 9999;
}

.overlay:target img, .overlay.show img {
  transform: scale(1);
}

/** Flashing background to attract attention */
.flash {
  animation-name: flash-animation;
  animation-duration: 0.5s;
}

@keyframes flash-animation {
  from {
    background: yellow;
  }
  to {
    background: white;
  }
}

/*# sourceMappingURL=ocr_demo.css.map */
