/* base variables pulled from theme.yml */
/* theme colors pulled from config-theme-colors */
/*  base - slight modifications to override base Bootstrap
    these values are configurable using theme.yml > Theme Fonts area 
    or by editing base variables in cb.scss
*/
body {
  font-size: 1.2em;
  color: #191919;
}

a {
  /* remove link underline */
  text-decoration: none;
  color: #0d6efd;
}
a:hover {
  color: #191919;
}

/* skip nav for accessibility, based on https://webaim.org/techniques/skipnav/ */
#skip-to-content a {
  padding: 6px;
  position: absolute;
  top: -100px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #BF1722;
  -webkit-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 100;
}

#skip-to-content a:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  outline-color: transparent;
  -webkit-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

/* banner */
#home-banner-logo {
  height: 40px;
}

/* nav bar */
#mobile-nav-image {
  max-height: 1.5em;
}

/* footer */
#footer-logo {
  height: 40px;
}

#footer-credits img {
  height: 40px;
}

#footer-nav .nav-link.active, #footer-nav .show > .nav-link {
  color: #fff;
  border: solid white 1px;
  background: transparent;
}

#footer-nav .nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* scroll to top */
#scroll-to-top {
  display: none;
  position: fixed;
  bottom: 38px;
  right: 22px;
  z-index: 99;
  font-size: 40px;
}

/* feature include tweaks */
.feature-alert p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-w-25 {
    width: 25% !important;
  }
  .feature-w-50 {
    width: 50% !important;
  }
  .feature-w-75 {
    width: 75% !important;
  }
  .feature-w-100 {
    width: 100% !important;
  }
  .feature-float-right {
    float: right !important;
  }
  .feature-float-left {
    float: left !important;
  }
}
/* bootstrap icons tweaks */
.bi {
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
  overflow: hidden;
}

.icon-sprite {
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
}

/*  
    pages - style tweaks related to individual CB pages
    although most presentation is controlled by Bootstrap classes, these styles are necessary for default visualization pages to function correctly
*/
/* index */
.carousel-item-title {
  background-color: rgba(37, 36, 36, 0.72);
}

/* item page */
.gallery-img {
  cursor: pointer;
}

#item-nav a {
  position: absolute;
  top: 500px;
}
#item-nav .previous {
  left: 10px;
}
#item-nav .next {
  right: 10px;
}

.breadcrumb {
  padding: 0.75rem 1rem;
  background-color: rgb(248, 249, 250);
  border-radius: 0.25rem;
}

.compound-thumb {
  max-height: 110px;
  max-width: 90%;
}

@media (min-width: 576px) {
  .modal-xxl {
    max-width: 90%;
  }
}
@media (min-width: 992px) {
  .modal-xxl {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .modal-xxl {
    max-width: 90%;
  }
}
/* browse */
/* map */
#map {
  height: 750px;
  z-index: 98;
}

.map-thumb {
  height: 100px;
  max-width: 100%;
}

.leaflet-fusesearch-panel .header {
  padding-bottom: 1.5em;
}

/* timeline */
.timeline-thumb {
  max-height: 250px;
  max-width: 100%;
}

/* subjects */
.tagcloud0 {
  font-size: 0.4em;
}

.tagcloud1 {
  font-size: 0.5em;
}

.tagcloud2 {
  font-size: 0.8em;
}

.tagcloud3 {
  font-size: 1.1em;
}

.tagcloud4 {
  font-size: 1.4em;
}

.tagcloud5 {
  font-size: 1.6em;
}

.tagcloud6 {
  font-size: 1.9em;
}

.tagcloud7 {
  font-size: 2.2em;
}

.tagcloud8 {
  font-size: 2.5em;
}

.tagcloud9 {
  font-size: 2.8em;
}

.tagcloud10 {
  font-size: 3em;
}

/* About */
.about-nav {
  line-height: 1.5em;
  z-index: 10;
}

/* creating a narrow text column */
.about-contents > h2 {
  font-weight: bold;
  padding-top: 100px;
  border-top: 1px dotted black;
}
.about-contents > h1, .about-contents > h2, .about-contents > h3, .about-contents > h4, .about-contents > h5, .about-contents > h6 {
  max-width: 650px;
  margin: 1.5rem auto 1rem;
}
.about-contents > p, .about-contents > .about-narrowed-content, .about-contents > .narrow-content, .about-contents > hr, .about-contents > .footnotes, .about-contents > ol, .about-contents > ul, .about-contents > blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

/* narrow text block for page-narrow layout */
.page-narrow {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* 
    Put your custom SCSS here! 
    This allows you to override any CollectionBuilder or Bootstrap CSS without modifying the base theme files directly.
*/

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