.artwork_index_page__title_cont {
  margin-top: 1rem;
  /*                                                     margins cancel
    50% of (100% - 6rem) of 100vh - 0.5em (selecta h1) + 1rem - 1rem
    = 50% of (100vh - 6rem) - 0.5em
    = 50vh - 3rem - 0.5em
    For discovery list col (see discovery stream list_layout_col)
      - Xrem - 3rem (1 on mobile)
    To account for relative offsets of fonts in line:
      +0.16em of deviation
  */
  min-height: calc(50vh - 3rem - 3rem - 0.5em + 0.16em);
}

@media (max-width: 2560px) {
  .artwork_index_page__title_cont {
    min-height: calc(var(--1svh)*50 - 3rem - 2.5rem - 3rem - 0.5em + 0.16em);
  }
}

@media (max-width: 1260px) {
  .artwork_index_page__title_cont {
    min-height: calc(var(--1svh)*50 - 3rem - 2rem - 3rem - 0.5em + 0.16em);
  }
}

@media (max-width: 768px) {
  .artwork_index_page__title_cont {
    min-height: calc(var(--1svh)*50 - 3rem - 1rem - 1rem - 0.5em + 0.16em);
  }
}




.artwork_index_page__title_cont h1 {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}


/*
 * Breadcrumb
 */

.artwork_index_page__breadcrumb_cont {
  margin-top: 0.5rem;
}

.artwork_index_page__breadcrumb_link {
  text-decoration: none;
  display: inline-block;
}

.artwork_index_page__breadcrumb_link:hover {
  opacity: 0.655;
}

.artwork_index_page__breadcrumb_sep {
  display: inline-block;
  margin: 0 0.6em;
  user-select: none;
}


/*
 * Loader
 */

@keyframes artwork_index_page_loader_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.artwork_index_page .artwork_index_page__loader_cont {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .artwork_index_page .artwork_index_page__loader_cont {
    margin-top: 3rem;
  }
}

.artwork_index_page .artwork_index_page__loader_inner {
  width: 5rem;
  height: 5rem;
  margin: auto;
  background: url('./images/spinner.png') center/contain no-repeat;
  animation: artwork_index_page_loader_spin 2000ms linear infinite;
}



/*
 * sticky filter
 */

.artwork_index_page .sticky_filter_cont {
  position: fixed;
  bottom: 0;
  left: 7rem;
  z-index: 3;
  width: calc(100% - 7rem);
  animation: fadeIn 300ms ease-in;
  box-sizing: border-box;
  transition: opacity 200ms;
  padding: 1.3rem;
}

@media (max-width: 768px) {
  .artwork_index_page .sticky_filter_cont {
    left: 2.667rem;
    width: calc(100% - 2.667rem);
    padding: 1.2rem 0.8rem;
  }
}

.artwork_index_page .sticky_filter_cont:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.controller.is_at_bottom .artwork_index_page .sticky_filter_cont {
  opacity: 0;
  pointer-events: none;
}

.controller.open .artwork_index_page .filters_cont {
  display: none;
}


/* for First Peoples of Australia */
.artwork_index_page .filters_cont .filter_cont:last-child .dropdown {
  min-width: 11em;
}


