/* FONTS ====================================*/
/* Material Icons
 * https://developers.google.com/fonts/docs/material_icons
 * https://www.apache.org/licenses/LICENSE-2.0.txt
 */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialIcons-Regular.ttf");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

/* Raleway
   * Copyright 2010 The Raleway Project Authors (impallari@gmail.com), with Reserved Font Name "Raleway".
   * LICENSE: Open Font License (../fonts/OFL_raleway.txt)
   */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  src: url("../fonts/Raleway-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  src: url("../fonts/Raleway-Italic-VariableFont_wght.ttf");
}

/* Open Sans
   * Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans)
   * LICENSE: Open Font License (../fonts/OFL_opensans.txt)
   */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  src: url("../fonts/OpenSans-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  src: url("../fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf");
}

/* Julius Sans One
   * Copyright (c) 2012, LatinoType (luciano@latinotype.com), with Reserved Font Names 'Julius'
   * LICENSE: Open Font License (../fonts/OFL_juliussansone.txt)
   */
@font-face {
  font-family: "Julius Sans One";
  font-style: normal;
  src: url("../fonts/JuliusSansOne-Regular.ttf");
}

:root {
  --primary-color: #54618e;
  --primary-color-light: #7583b3;
  --secondary-color: #99c8d6;
  --secondary-color-light: #c3dde4;
  --secondary-color-light-2: #f5fdff;
  --secondary-color-dark: #78aab9;
  --link-color: #e66533;
  --grey-color: #edf1f0;
  --grey-color-dark: #c1ccc9;
  --border-radius: 2px;

  --footer-height: 53px;
  --navbar-height: 59px;
  --navbar-height-plus: 80px;
}

/* GENERAL ====================================*/
html {
  scroll-padding-top: 100px;
}
body {
  padding-top: var(--navbar-height);
  font-size: 0.85rem;
  font-family: "Open Sans", sans-serif;
}
body.main_nav_large {
  padding-top: var(--navbar-height-plus);
}
#body_wrapper {
  min-height: calc(100vh - (var(--navbar-height) + var(--footer-height)));
}
body.main_nav_large #body_wrapper {
  min-height: calc(100vh - (var(--navbar-height-plus) + var(--footer-height)));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
h3 {
  font-weight: 200;
}
h1 {
  font-size: calc(1rem + 1.5vw);
  font-weight: 300;
}
h1 .header-box,
h2 .header-box,
h3 .header-box {
  background-color: var(--secondary-color);
  border-bottom: solid 6px var(--secondary-color-dark);
  color: white;
  padding: 0.2rem 0.9rem 0 0.9rem;
  display: inline-block;
  z-index: 150;
  position: relative;
}
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #7d273c;
}
#navbar_main .navbar-nav .nav-item a.nav-link:not(.dropdown-toggle) {
    color: #fff;
}
#navbar_main .navbar-nav .nav-item a.nav-link:not(.dropdown-toggle).active {
    color: var(--secondary-color);
}

/* BOOTSTRAP ====================================*/
.bg-secondary {
  background-color: #324e42 !important;
}

.card,
.list-group {
  border-radius: var(--border-radius);
}

.btn-light {
  background-color: var(--grey-color) !important;
  border-color: var(--grey-color) !important;
}

/* HELPER ====================================*/

.floaty {
  position: sticky;
}

.h2-small {
  font-size: 1.3rem;
}
.h3-small {
  font-size: 1.2rem;
}

/* NAVIGATION ====================================*/
#main_nav {
  background-color: var(--primary-color);
  border-bottom: solid var(--secondary-color) 6px;
  font-size: 14px;
  /* -webkit-box-shadow: 0px 5px 5px -4px #00000078; */
  /* box-shadow: 0px 5px 5px 0px #00000026; */
}

#behind_main_nav {
  position: absolute;
  top: 0px;
  height: 120px;
  background-color: var(--grey-color);
  width: 100%;
  z-index: 1;
}

#main_nav .nav-item {
  text-transform: uppercase;
  position: relative;
}

/* Nav Item Animation */
#main_nav .nav-item:after,
#main_nav .nav-item:before {
  background-color: #ffffff4a;
  height: 18px;
  width: 1px;
  display: inline-block;
  content: "";
  position: absolute;
  top: 10px;
  opacity: 1;
  transition: all 0.5s;
}
#main_nav .nav-item:last-of-type:after {
  display: none;
}
#main_nav .nav-item:first-of-type:before {
  display: none;
}
#main_nav .nav-item:after {
  right: -1px;
}
#main_nav:hover .nav-item:after,
#main_nav:hover .nav-item:before {
  opacity: 0;
}
#main_nav:hover .nav-item:hover:after,
#main_nav:hover .nav-item:hover:before {
  opacity: 1;
}

#nav_search #search-input {
  background-color: #00000030;
  border: none;
  width: 140px;
  transition: width 0.5s;
  color: white;
  padding: 4px 8px;
  outline: none;
}
#nav_search #search-input:focus {
  width: 250px;
}
#nav_search .material-icons {
  height: 21px;
  width: 21px;
}
#nav_search .dropdown-toggle {
  height: 37px;
}
#nav_search .dropdown-toggle::after {
  display: none;
}
#nav_search #search-submit {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border: none;
  background-color: #00000030;
  color: white;
}
#nav_search #search-submit .material-icons {
  font-size: 16px;
  position: relative;
  top: 3px;
  height: auto;
  width: auto;
}

#main_nav-hr {
  background-color: var(--secondary-color-light);
}

#nav_lang .dropdown-menu {
  min-width: inherit;
}

/* Dropdowns */
#main_nav .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 0;
  top: calc(100% + 6px);
  background-color: var(--secondary-color);
}
#main_nav .dropdown-item {
  color: var(--primary-color);
  font-size: 14px;
  padding: 0.6rem;
  transition: all 0.2s;
}
#main_nav .dropdown-item:hover {
  background-color: var(--secondary-color-light);
}

/*Collapsed Navbar */
#main_nav.notExpanded .dropdown-menu {
  background-color: var(--primary-color-light);
  border-radius: var(--border-radius);
}
#main_nav.notExpanded .dropdown-item {
  color: white;
}
#main_nav.notExpanded .dropdown-item:hover {
  background-color: var(--primary-color-light);
}

#contentbar {
  background-color: var(--grey-color);
  border: none;
  z-index: 100;
  top: 83px;
  transition: box-shadow 200ms ease-in-out;
}
.main_nav_large #contentbar {
  top: 104px;
}
#contentbar.floating {
  -webkit-box-shadow: 0px 6px 0px 0px var(--grey-color-dark);
  box-shadow: 0px 6px 0px 0px var(--grey-color-dark), 0px 10px 3px 3px rgba(255, 255, 255, 1);
}
#cbar_top {
  height: 2rem;
  width: 100%;
  position: absolute;
  top: -2rem;
  background-color: white;
}

/* pagination */
.pagination_container .pagination {
  margin: 0;
}

.page-page a,
.page-next a,
.page-prev a,
.page-ellipsis a {
  height: 35px;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  position: relative;
  display: block;
  text-decoration: none;
  background-color: var(--grey-color);
  border: 1px solid #dee2e6;
  border-top: none;
  border-bottom: none;
  line-height: 1.6;
  min-width: 32px;
  text-align: center;
}
.page-page a,
.page-next a,
.page-prev a {
  margin-left: -1px;
  color: var(--link-color) !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.page-next a {
  border-right: none;
}
.page-prev a {
  border-left: none;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
.page-page.active a,
.page-page.active a:hover {
  background-color: var(--secondary-color-dark);
  color: white !important;
}
.page-page:hover a,
.page-next:hover a,
.page-prev:hover a {
  z-index: 2;
  background-color: var(--secondary-color-light);
}

/* BANNER ====================================*/
.showcase {
  background-color: var(--grey-color);
  padding: 15px 0;
  position: relative;
  z-index: 2;
}

.showcase.c3 {
  background-color: #ecedf7;
}

.showcase h1 {
  color: #463c38;
  font-weight: 100;
  font-family: "Julius Sans One", sans-serif;
  text-align: right;
  margin: 0;
}

#project_logo {
  max-height: 100px;
  max-width: 100%;
}

#project_logo-text {
  font-family: Julius Sans One;
  text-transform: lowercase;
  text-align: right;
  font-size: 2rem;
  color: #3d3e3d;
  line-height: 1.1;
  letter-spacing: 3px;
}

#logo_subtitle {
  color: var(--primary-color-light);
  text-align: right;
  font-family: Julius Sans One;
  position: relative;
  left: -2px;
}
#awk_logo {
  max-width: 45px;
}

/* CONTENT ====================================*/
.content_card {
  transition: all 200ms ease;
  border-color: var(--secondary-color);
}
.content_card:hover {
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 15%);
  /*background-color: var(--secondary-color-light-2);  */
  /*border-color: #f8f9fa; */
}

a .content_card .card-title {
  color: black;
}

a .content_card .txt {
  color: #676767;
  font-size: 12px;
  line-height: 1.5;
  display: inline-block;
}

#content_list .img_col {
  position: relative;
}
#content_list.grid .img_col {
  height: 200px;
}
.content_list-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}
#content_list .match {
  background-color: var(--secondary-color-light);
  color: #292929;
}
.content_list-authors,
.content_list-authors:hover {
  color: var(--primary-color);
  font-size: 12px;
}
.content_list-authors .material-icons {
  font-size: 13px !important;
  position: relative;
  top: 2px;
}

.content_card-footer {
  font-size: 11px;
  color: var(--primary-color);
  background-color: var(--grey-color);
  transition: all 200ms ease;
}
.content_card:hover .content_card-footer {
  background-color: #f8f9fa;
}

.content_card-footer_item {
  display: inline-block;
  margin-left: 14px;
}
.content_card-footer_item .material-icons {
  font-size: 12px !important;
  position: relative;
  top: 2px;
}

#content_list.light .list-group-item {
  transition: all 0.2s;
  border: none;
  padding: 1.5rem 1rem;
}
.list-group-item.list-group-item:nth-of-type(2n + 1) {
  background: var(--grey-color);
}
#content_list.light .list-group-item:last-of-type {
  border-bottom: none;
}
#content_list.light .list-group-item:hover {
  background-color: #f8f9fa;
}
#content_list.light h2 {
  font-size: 1.07rem;
  color: #556390;
}
#content_list.light small,
#content_list.grid small {
  font-size: 0.75em;
}
#content_list.light small > .material-icons,
#content_list.grid small > .material-icons {
  font-size: 14px;
  position: relative;
  top: 2px;
}
#content_list.light .teaser {
  font-size: 0.8rem;
  color: #676767;
}

/* SIDEBAR, Filter, Sort ====================================*/
#sidebar {
  position: sticky;
  top: 83px;
}
.main_nav_large #sidebar {
  top: 104px;
}
#filter_list {
  background-color: var(--grey-color);
  z-index: 200;
  color: white;
  border-radius: var(--border-radius);
}

#sort_bar {
  padding: 2.5px;
}

#sidebar h5,
#sort_bar h5 {
  position: relative;
  top: 2px;
  color: var(--grey-color-dark);
  margin-bottom: 0;
  font-size: 16px;
}
#sort_bar h5 {
  display: inline-block;
}

/* Sort Bar */
.sort_btn {
  height: 100%;
  color: var(--grey-color-dark);
  border: none;
  padding: 5px 0 0 0;
}
.sort_btn:hover {
  color: var(--secondary-color);
}
.sort_btn.active {
  color: var(--secondary-color-dark);
}
.sort_btn .material-icons {
  font-size: 20px;
}
.material-icons.sort_dir {
  display: none;
}
.material-icons.sort_dir.active {
  display: inline-block;
}

/* Tags List */
#filter_list {
  border-bottom: solid 6px var(--grey-color-dark);
  padding: 10px;
}
.filter_btn,
.filter_btn:focus {
  font-size: 11px;
  border-radius: 1px;
  border: none;
  background-color: var(--secondary-color-dark);
}

.filter_type {
  display: inline-block;
  border-bottom: 1px solid var(--secondary-color-light);
  width: 100%;
  padding: 10px 0;
}
.filter_type:last-of-type {
  border-bottom: none;
}
button.filter_type_collapse {
  color: var(--secondary-color-dark);
  background: none;
  border: none;
  font-size: 12px;
  margin: 0 0 0.25rem 0.5rem;
  padding: 0;
}
.filter_type_collapse .material-icons {
  font-size: 14px;
  position: relative;
  top: 3px;
  left: -1px;
}
.filter_type_collapse.collapsed .material-icons {
  transform: rotate(180deg);
}

.filter_btn:hover {
  background-color: var(--primary-color-light);
}
.filter_btn:active,
.filter_btn.active {
  background-color: var(--primary-color);
}

.filter_btn .material-icons {
  font-size: 12px;
  position: relative;
  top: 2px;
}

/* FOOTER ====================================*/
footer {
  background-color: var(--grey-color);
  padding: 15px 0;
}
footer hr {
  border-color: #d7d7e2;
  margin: 15px 0;
}

footer .material-icons {
  font-size: 18px;
  position: relative;
  top: 4px;
  margin-right: 4px;
}
footer a {
  font-size: 12px;
}

#footer-logos a {
  height: 85px;
  background: white;
  padding: 5px;
}
#footer-logos img {
  max-height: 75px;
  max-width: 195px;
}

/* Landing Page */
/*
  #our_project {
      cursor: default;
  }
  #our_project a:hover {
      color: #d08d9e;
  }
  .dark_overlay {
      background-color: #3a3a3aeb;
      z-index: 198;
      transition: all 0.5s;
  }

  .net_overlay {
      z-index: 199;
      transition: all 0.5s;
  }
  #our_project:hover .net_overlay {
      transition: all 1.5s ease-in;
      transition-delay: 0.2s;
  }

  .our_project_intro{
      opacity: 0;
      transition: all 0.5s;
      font-size: 1rem;
      text-align: justify;
      z-index: 201;
      position: relative;
      display: none;
  }
  #our_project:hover .our_project_intro{
      opacity: 1;
      display: block;
  }

  .project_intro_overlay {
      position: absolute;
      top: 0px;
      left: 0px;
      opacity: 0;
      height: 100%;
      width: 100%;

  }
  #our_project:hover .project_intro_overlay {
      opacity: 1;
  }
  #intro_header {
      background-color: #54618ef7;
      width: 100%;
      z-index: 203;
      position: relative;
      transition: all 0.5s;
      padding: 0.5rem 0.9rem 0.5rem 3rem;
      border-bottom: solid 6px #5b87ab;
  }
  #our_project:hover #intro_header {
      background-color: #3a3a3a00;
      transition: all 0.9s;
      border-bottom-color: #5b87ab00 ;

  }

  .project_teaser {
      color: white;
      background-color: var(--secondary-color);
  }
  .teaser_col:nth-of-type(1) .teaser_text {
      background-color: #1e4d81;
  }
  .teaser_col:nth-of-type(2) .teaser_text {
      background-color: #2985ab;
  }
  .teaser_col:nth-of-type(3) .teaser_text {
      background-color: #5785a9;
  }
  .teaser_header, .teaser_text, .teaser_links {
     padding: 0.5rem 0.9rem 0.4rem 0.9rem;
     cursor: default;
  }
  .teaser_text {
      background-color: var(--secondary-color-dark);
  }
  .teaser_links .material-icons{
      font-size: 18px;
      position: relative;
      top: 4px;
  }
  .teaser_links {
      padding-bottom: 1rem;
      background-color: var(--grey-color);
  }
  */

#index-slider-wrapper {
  margin-top: -3rem;
  background-color: var(--primary-color-light);
  position: relative;
  border-top: solid var(--primary-color) 3px;
}
/* #index-slider-shadow {
    background: linear-gradient(180deg, rgba(43,43,43,0.6) 0%, rgba(43,43,43,0) 100%);
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0px;
    z-index: 152;
  } */
#index-slider {
  position: relative;
  height: 50vh;
  border: solid 3px var(--primary-color);
  border-top: none;
  border-radius: var(--border-radius);
  background: var(--primary-color);
}
#index-slider .carousel-inner,
#index-slider .carousel-item {
  height: 100%;
}
#index-slider .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: var(--border-radius);
}
#index-banner {
  position: absolute;
  z-index: 151;
  width: 100%;
  background: #bfbfbfa1;
  padding: 1.5rem;
}
#index-banner #logo {
  width: 100%;
}

/* DOCUMENTS  ====================================*/
#doc-buttons {
  position: absolute;
  right: 0px;
  top: 0px;
}
#doc-buttons .btn:focus {
  outline: none;
  box-shadow: none !important;
}
#print-btn,
#structure-btn {
  line-height: 1;
}
.structure-popover {
  max-width: none;
  width: 450px;
}
#doc_structure {
  position: relative;
  max-width: 980px;
  z-index: 100;
  margin: 0 auto;
}
#doc_structure-content {
  padding: 0.5rem 65px 0.5rem 0.8rem;
  background-color: #fcfcfc;
  border-radius: var(--border-radius);
}
.structure-link {
  display: block;
  border-bottom: solid 1px var(--grey-color);
  padding: 3px 48px 3px 0;
}
.structure-link:last-of-type {
  border-bottom: none;
}
.structure-H2 {
  padding-left: 15px;
}
.structure-H3 {
  padding-left: 30px;
}
.structure-H4 {
  padding-left: 45px;
}
.structure-H5 {
  padding-left: 60px;
}
.structure-H6 {
  padding-left: 75px;
}

#edit-btn {
  line-height: 1;
  position: absolute;
  right: -110px;
}
#doc_content #openaccess {
  display: none;
}
#doc_content #print-header-img {
  display: none;
}
#doc_content {
  text-align: justify;
  max-width: 980px;
  position: relative;
  font-size: 0.85rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  margin: 1rem auto;
}

#doc_content table {
  border-collapse: collapse;
  max-width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
/* Apply a default padding if legacy cellpadding attribute is missing */
#doc_content table:not([cellpadding]) th,
#doc_content table:not([cellpadding]) td {
  padding: 0.4rem;
}
/* Set default table styles if a table has a positive border attribute
       and no inline css */
#doc_content table[border]:not([border="0"]):not([style*="border-width"]) th,
#doc_content table[border]:not([border="0"]):not([style*="border-width"]) td {
  border-width: 1px;
}
/* Set default table styles if a table has a positive border attribute
       and no inline css */
#doc_content table[border]:not([border="0"]):not([style*="border-style"]) th,
#doc_content table[border]:not([border="0"]):not([style*="border-style"]) td {
  border-style: solid;
}
/* Set default table styles if a table has a positive border attribute
       and no inline css */
#doc_content table[border]:not([border="0"]):not([style*="border-color"]) th,
#doc_content table[border]:not([border="0"]):not([style*="border-color"]) td {
  border-color: #ccc;
}
#doc_content table th,
#doc_content table td {
  padding: 0.25em 1em;
  vertical-align: top;
  text-align: left;
}
#doc_content table caption {
  caption-side: bottom;
  font-weight: lighter;
  text-align: center;
  margin-top: 1rem;
  color: inherit;
  padding: 0;
}
#doc_content table img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 512px;
  height: auto;
}
#doc_content figure {
  display: table;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#doc_content figure.image.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#doc_content figure.image.align-center img {
  margin-left: auto;
  margin-right: auto;
}
#doc_content figure.image.align-right {
  text-align: right;
}
#doc_content figure figcaption {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-weight: lighter;
}
#doc_content hr {
  border-color: #ccc;
  border-style: solid;
  border-width: 1px 0 0 0;
}
#doc_content img {
  max-height: 512px;
  max-width: 90%;
  display: block;
  cursor: pointer;
}
#doc_content code {
  background-color: #e8e8e8;
  border-radius: 3px;
  padding: 0.1rem 0.2rem;
}
#doc_content blockquote {
  border-left: 2px solid #ccc;
  font-style: italic;
  margin-left: 1.5rem;
  padding-left: 1rem;
}
#doc_content a {
  text-decoration: none;
  color: #e66533;
}
#doc_content hr {
  margin: 1rem 0;
}
#doc_content p {
  margin: 0;
}
#doc_content p + p {
  margin-top: 1rem;
}
#doc_content ol,
#doc_content ul {
  margin: 0.3rem 0;
}

#doc_content #img-modal .modal-dialog,
#doc_content #img-modal .modal-content {
  width: fit-content;
  max-width: calc(90vw + 2rem);
}
#doc_content #img-modal .modal-header {
  border-bottom: none;
}
#doc_content #img-modal img {
  max-width: 90vw;
  max-height: calc(90vh - 50px);
}

/* Headings */
#doc_content :is(h1, h2, h3, h4, h5, h6) {
  font-family: "Raleway", sans-serif;
  border-bottom: none;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}
#doc_content h1 {
  margin: 4rem 0 0.8rem 0;
  text-align: left;
  font-size: calc(1rem + 1.5vw);
  font-weight: 300;
}
#doc_content h1:first-of-type {
  margin-top: 1rem;
  margin-right: 50px;
}
#doc_content h2 {
  font-size: calc(1rem + 1vw);
  text-align: left;
  font-weight: 500;
  margin: 3rem 0 0.8rem 0;
}
#doc_content h3 {
  font-weight: 200;
  font-size: 1.75rem;
  margin: 2rem 0 0.8rem 0;
}
#doc_content h4 {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 2rem 0 0.8rem 0;
}
#doc_content h5 {
  font-weight: 500;
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem 0;
}
#doc_content h6 {
  font-weight: 500;
  font-size: 1rem;
  margin: 2rem 0 0.8rem 0;
}

#doc_content h1 + :is(h1, h2, h3, h4, h5, h6),
#doc_content h2 + :is(h2, h3, h4, h5, h6),
#doc_content h3 + :is(h3, h4, h5, h6),
#doc_content h4 + :is(h4, h5, h6),
#doc_content h5 + :is(h5, h6),
#doc_content h6 + h6 {
  margin-top: -0.3rem;
}

/* TMP: SITES  ====================================*/

#museum-tbl tr *,
#site-tbl tr * {
  cursor: pointer;
}

.row-title-pill {
  position: relative;
  top: -1px;
  min-width: 32px;
  display: inline-block;
  margin-right: 5px;
}
#museum-tbl .row-title-pill {
  min-width: 65px;
}
.row-location-pill {
  position: relative;
  top: -1px;
  min-width: 56px;
  display: inline-block;
  margin-right: 5px;
}
.title-subtitle {
  font-size: 0.75rem;
  color: #4e4e4e;
  font-variant: small-caps;
  position: relative;
  top: -4px;
}
.db-img {
  width: 50px;
  border-radius: var(--border-radius);
}
.db-img-dummy {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: var(--grey-color-dark);
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.db-img-dummy .material-icons {
  font-size: 32px;
  color: var(--grey-color);
}

/* MODAL */
#modal-img-container img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
#modal-img-container .site-img-dummy {
  width: 100%;
  height: 100px;
}
#modal-img-container .site-img-dummy .material-icons {
  font-size: 64px;
}

.db-modal .col-form-label {
  color: var(--primary-color);
}

.db-modal .material-icons {
  position: relative;
  top: 4px;
  font-size: 20px;
}

/* pagination: Overwrite Bootstrap Defaults*/

.page-item {
  border-radius: var(--border-radius);
  background-color: var(--grey-color);
}

.page-item a,
.page-item.disabled a {
  height: 35px;
  border-radius: var(--border-radius) !important;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  position: relative;
  display: block;
  color: var(--link-color) !important;
  text-decoration: none;
  background-color: var(--grey-color) !important;
  border: 1px solid #dee2e6;
  border-top: none;
  border-bottom: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  line-height: 1.6;
}

.page-item:first-child .page-link {
  border-left: none !important;
}
.page-item.active a,
.page-item.active a:hover {
  color: white !important;
  background-color: var(--secondary-color-dark) !important;
  border-color: #dee2e6 !important;
}
.page-next a {
  border-right: none;
}

.page-ellipsis a {
  height: 35px;
  color: grey;
  line-height: 1.6;
  position: relative;
  display: block;
  text-decoration: none;
  background-color: var(--grey-color);
  border: 1px solid #dee2e6;
  border-top: none;
  border-bottom: none;
  border-left: none;
  padding: 0.375rem 0.4rem;
}
.page-prev a {
  border-left: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.page-item:hover a,
.page-next:hover a,
.page-prev:hover a {
  z-index: 2;
  background-color: var(--secondary-color-light) !important;
}

/* Bootstrap XXL */
@media (max-width: 1400px) {
  .our_project_intro {
    font-size: 0.9rem;
  }
  #intro_header {
    padding-left: 1.5rem;
  }
  #content_list.light.news h5 {
    font-size: 0.9rem;
    color: #556390;
  }
}

/* Bootstrap XL */
@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1200px) {
}

/* Bootstrap L */
@media (max-width: 991px) {
  #main_nav .nav-item:after {
    display: none;
  }
  #main_nav .nav-item:before {
    display: none;
  }
  #nav_search #search-input,
  #nav_search #search-input:focus {
    width: 100%;
  }
  #content_list .img_col {
    height: 200px;
  }
}

/* Bootstrap MD */
@media (max-width: 768px) {
  #filter_list {
    border-bottom: none;
  }
  #sidebar {
    position: static;
  }
}

/* Bootstrap SM */
@media (max-width: 576px) {
  #project_logo {
    max-height: 70px;
  }

  #project_logo-text {
    font-size: 1.38rem;
  }
}
