html, body {
  height: 100%;
}

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 25px;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 35px;
}

.roundimg {
  clip-path: circle(40%);
}

.roundcorner {
  border-radius: 25px;
}

.zoom {
  padding: 2px;
  transition: transform .2s; /* Animation */
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.25); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  -ms-transform: scale(1.25); /* IE 9 */
  -webkit-transform: scale(1.25); /* Safari 3-8 */
  clip-path: none;
}

/* Common styling for image buttons as we use for external links */
.btn-image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
/* Disable color change on hover */
.btn-image:hover {
  background-color: inherit;
}

.home {
  overflow: auto;
  position:absolute;
  width:100%;
  height:100%;
  top: 0px;
  left:0;
  bottom: 0;
  right: 0;
}

.inputbar:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.rcorners2 {
  border-radius: 25px;
  border: 2px solid black;
  padding: 0px;
}

img[alt=logoexp] { width: 200px; horizontal-align: middle; display: block; margin: auto;}

._dash-loading {
  margin: auto;
  color: transparent;
  width: 0;
  height: 0;
  text-align: center;
}

._dash-loading::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #f5622e;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
  margin-top: 2rem;
}

/* So that there is always something to overlay during loading */
#results[data-dash-is-loading="true"]::after {
  content: " ";
  display: inline-block;
  visibility: visible;
}

/* Markdown with white-space: pre-wrap */
.markdown-pre {
  white-space: pre-wrap;
  width: 100%;
}

/* Remove hard-coded margin from last paragraph */
.markdown p:last-child {
  margin-bottom: 0;
}

/* Make H5 the same as card-title */
.markdown h5 {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

/* Make H6 act as Mantine divider */
.markdown h6 {
  font-size: 12px;
  display: flex;
}

.markdown h6::after {
  content: "";
  color: #ced4da;
  flex: 1;
  border-bottom: solid 1px;
  margin: auto 0 auto 1em;
}

/* Variant of previous one, dashed */
.markdown h6.dashed::after {
  content: "";
  color: #ced4da;
  flex: 1;
  border-bottom: dashed 1px;
  margin: auto 0 auto 1em;
}
