@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap');

html, body {
  /* Main color palette */
  --main-color: #48041c;
  --complement-color: rgb(75,75,75);
  --backdrop-color: #e6ecec;
  --highlighted-element-color: #f44d00;
  --disabled-button-color: grey;
  --table-caption-color: var(--main-color);
  font-family: 'Source Sans 3', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.radio-button a.label {
  color: black;
  text-decoration: none;
}

span.navbar-title {
  opacity: 0;
}

div.logo-wrapper a.logo {
  width: unset !important;
}

.sidebar.collapsable .logo {
  border-radius: 0px;
}

.sidebar.collapsable .logo {
  min-width: 15rem;
  transition: opacity var(--transition-speed);
}

.sidebar.collapsable.collapsed .logo {
  opacity: 0;
}

.tabbed-gallery .field-container:has(> .text-wrapper) {
  /* remove copywrite and author info in tabbed-gallery */
  display: none !important;
}

  .tabbed-gallery .field-container:has(> .text-wrapper) + * {
    /* get rid of separators as well. */
    display: none !important;
  }