.modal {
  --border-color:rgba(0,0,0,.08);
  display: none;
  overflow-y: scroll;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  outline: 0;
  padding: 3%;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal .dialog_content {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-out;
  background-color: #fff;
  position: relative;
  z-index: 200;
}
.modal .dialog_content .dialog_header {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.3rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  margin: 0 0.25rem;
}
.modal .dialog_content .dialog_header > div:first-child {
  font-family: var(--sans-serif-font);
  font-weight: 700;
}
.modal .dialog_content .dialog_header i {
  opacity: 0.25;
  font-weight: 400;
  cursor: pointer;
}
.modal .dialog_content .dialog_header i:hover {
  opacity: 1;
}
.modal .dialog_content .dialog_body {
  flex: 1 1;
  position: relative;
}

.modal.open {
  display: block;
}

#zoom_modal.modal .dialog_content {
  height: 100%;
  width: 100%;
}
#zoom_modal.modal .dialog_content #openSeaDragon_viewer {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
}

#audio_modal.modal .dialog_content {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
#audio_modal.modal .dialog_content audio {
  width: 90%;
  margin: 1.5rem auto;
}

#download_modal.modal .dialog_content {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}
#download_modal.modal .dialog_content a {
  color: #000;
  font-weight: 700;
}
#download_modal.modal .dialog_content .img_download {
  color: #fff;
  background-color: var(--font-color);
  padding: 0.7rem 1rem;
  font-family: var(--sans-serif-font);
  font-size: 1rem;
  margin-top: 0.25rem;
  text-align: center;
  letter-spacing: 0.05rem;
}
#download_modal.modal .dialog_content .img_download.disabled {
  opacity: 0.5;
}
#download_modal.modal .dialog_content div.img_box_label {
  font-family: var(--sans-serif-font);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
#download_modal.modal .dialog_content div.img_box {
  height: 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.08);
}
#download_modal.modal .dialog_content .download_image_container,
#download_modal.modal .dialog_content .download_low_resolution_image_container {
  margin: 0 auto;
  padding: 1.5rem;
  line-height: 1.3;
}
#download_modal.modal .dialog_content .download_image_container div.img_box {
  padding-bottom: 100%;
}
#download_modal.modal .dialog_content .download_image_container .downloadable_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.25rem;
  margin: 1rem 0 1.2rem;
}
#download_modal.modal .dialog_content .download_low_resolution_image_container div.img_box {
  padding-bottom: 75%;
}
#download_modal.modal .dialog_content .download_low_resolution_image_container .downloadable_images {
  display: grid;
  grid-template-columns: 1fr;
  margin: 1rem 0 1.2rem;
}

#image_gallery {
  position: relative;
  margin: 0 0 2.5rem;
}
#image_gallery .arrow_box {
  display: none;
  position: absolute;
  top: -5%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 30%;
  padding: 2.5rem 0.75rem;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}
#image_gallery .arrow_box img {
  width: 75%;
  margin: 0 auto;
  opacity: var(--opacity);
  flex: 0 0 auto;
}
#image_gallery .arrow_box div {
  flex: 1 1;
}
@media screen and (min-width: 53rem) {
  #image_gallery .arrow_box img {
    width: 35%;
  }
}
#image_gallery .arrow_box.hide {
  display: none;
}
#image_gallery .arrow_box.advance {
  right: 0;
}
#image_gallery .arrow_box.back {
  left: 0;
}
#image_gallery .arrow_box.back img {
  transform: rotate(180deg);
}

.carousel {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
.carousel .item {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  min-width: 100%;
  height: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.carousel .item > img {
  width: 100%;
  visibility: hidden;
  display: block;
  position: relative;
  z-index: 10;
}
.carousel .item.active {
  height: initial;
  min-height: 20rem;
}
.carousel .trigger_mask {
  --opacity:.75;
  position: absolute;
  z-index: 100;
  cursor: pointer;
  top: 5%;
  bottom: 0;
}
.carousel .trigger_mask.advance {
  text-align: right;
  left: 70%;
  right: 0;
}
.carousel .trigger_mask.back {
  text-align: left;
  left: 0;
  right: 70%;
}
.carousel .trigger_mask:hover .arrow_box {
  display: flex;
}

.carousel_scrollbar {
  --dot-height: .4;
  --spacing: .75;
  position: absolute;
  z-index: 100;
  top: calc((var(--dot-height) + var(--spacing)) * -1rem);
  left: 0;
  right: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-items: center;
}
.carousel_scrollbar .dot_window {
  margin: 0 auto;
  overflow-x: hidden;
}
.carousel_scrollbar .dots {
  display: grid;
  grid-column-gap: 0.25rem;
}
.carousel_scrollbar .dots .dot {
  cursor: pointer;
  padding: 0;
  line-height: 0;
}
.carousel_scrollbar .dots .dot span {
  display: inline-block;
  height: calc(1rem * var(--dot-height));
  width: 100%;
  background-color: #000;
  opacity: 0.2;
}
.carousel_scrollbar .dots .dot:hover span {
  opacity: 1;
}
.carousel_scrollbar .dots .dot.selected span {
  opacity: 1;
}

.carousel_controls {
  --box-color: #efefef;
  --box-border-color: #ddd;
  --box-height: 2.5;
  --box-padding: 0.5;
  --dark-gray: rgba(0,0,0,.4);
  --text-color: rgba(33, 37, 41, .4);
  display: flex;
  flex-flow: row nowrap;
  gap: 2px;
  justify-content: right;
  align-items: stretch;
  padding: 0.75rem 0 0.75rem 0;
  top: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.carousel_controls img {
  height: 100%;
  width: 100%;
  display: block;
  opacity: 0.2;
}
.carousel_controls > div {
  flex: 0 0 auto;
  background-color: var(--box-color);
  border: 1px solid var(--box-border-color);
  padding: calc(var(--box-padding) * 1rem);
  box-sizing: border-box;
  height: calc(var(--box-height) * 1rem);
  width: calc(var(--box-height) * 1rem);
}
.carousel_controls > div:hover img {
  opacity: 1;
}
.carousel_controls > div.fill {
  flex: 1 1;
  background-color: inherit;
  border: none;
}
.carousel_controls .navigation_advance, .carousel_controls .navigation_back {
  cursor: pointer;
}
.carousel_controls .navigation_back img {
  transform: rotate(180deg);
}
.carousel_controls .navigation_index {
  font-size: 0.9rem;
  color: var(--text-color);
  font-family: var(--sans-serif-font);
  font-weight: 700;
  line-height: 1;
  width: auto;
}
.carousel_controls .navigation_index sup {
  margin-right: 0.17rem;
}
.carousel_controls .navigation_index sub {
  margin-left: 0.17rem;
}
.carousel_controls #audio_trigger {
  display: none;
}

.carousel_controls.audio #audio_trigger {
  display: block;
}

.image_caption {
  --border-color: #ececec;
  --background-color: rgba(0,0,0,.025);
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  display: none;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem;
}

.navigation_container {
  min-height: 10rem;
}
.navigation_container .expandable_menu {
  margin: 0;
  font-family: var(--sans-serif-font);
  font-weight: 700;
  text-transform: uppercase;
}
.navigation_container .expandable_menu img {
  width: 1rem;
}
.navigation_container .expandable_menu img.open {
  display: none;
}
.navigation_container .expandable_menu div.item {
  display: flex;
  flex-flow: row nowrap;
  justify-items: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.navigation_container .expandable_menu div.item span {
  flex: 1 1;
}
.navigation_container .expandable_menu div.item img {
  flex: 0 0;
}
.navigation_container .expandable_menu div.submenu {
  display: none;
  margin-left: 0.75rem;
}

.navigation_container.desktop .expandable_menu {
  margin: 3rem 0;
}

#object_container {
  min-height: 10rem;
}

#object_details {
  display: grid;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1040px) {
  #object_details {
    grid-template-columns: 35% 1fr;
    grid-column-gap: 2rem;
  }
}
#object_details #artist_title {
  font-family: var(--sans-serif-font);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
#object_details #artist_title .artist {
  font-size: 1.6rem;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-start;
}
#object_details #artist_title .artist_display_date {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.3rem 0 1rem;
}
#object_details #artist_title .title {
  font-size: 1.75rem;
  margin-top: 2.5rem;
}
#object_details #artist_title .title_display_date {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 0.3rem;
}
#object_details #object_meta {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-start;
}
#object_details .secondary_artists {
  padding: 1.5rem 0 0;
}
#object_details .secondary_artists div {
  font-family: var(--sans-serif-font);
}
#object_details .secondary_artists div.sa_name {
  font-size: 1.25rem;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 700;
}
#object_details .secondary_artists div.sa_dates {
  font-size: 0.95rem;
  opacity: 0.5;
  font-weight: 400;
  margin-top: 0.15rem;
  margin-bottom: 0.75rem;
}
#object_details h4 {
  text-box-edge: cap alphabetic;
  text-box-trim: trim-start;
  font-family: var(--sans-serif-font);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
#object_details .section {
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
#object_details .section.details {
  font-size: 1rem;
  margin-bottom: 2.25rem;
}
#object_details .section.details > div.row {
  display: grid;
  grid-template-columns: 22% 1fr;
  grid-column-gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
#object_details .section.details > div.row div:first-child {
  font-family: var(--sans-serif-font);
  font-weight: 700;
}
#object_details .section.details > div.row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#object_details .section:last-child {
  margin-bottom: 0;
}
#object_details .line_controlled {
  display: block;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5rem;
  max-height: 9rem;
}
#object_details .line_controlled.open {
  max-height: initial;
}
#object_details .line_controlled + .toggle::before {
  content: "Read More";
}
#object_details .line_controlled.open + .toggle::before {
  content: "Show Less";
}
#object_details .line_controlled.expandable {
  text-overflow: ellipsis;
}
#object_details .line_controlled * {
  margin: 0;
  padding: 0;
}
#object_details .toggle {
  font-family: var(--sans-serif-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.5rem 0 1.5rem 0;
  opacity: 0.3;
  cursor: pointer;
}
#object_details .toggle:hover {
  opacity: 1;
}

#related_works {
  --border-color: rgba(0,0,0,.1);
  margin: 0 0 3rem;
  padding: 0;
  border-top: 1px solid var(--border-color);
  overflow-wrap: anywhere;
}
#related_works .h2 {
  font-family: var(--sans-serif-font);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1rem 0;
}
#related_works .works_container {
  display: grid;
  grid-gap: 3px;
  align-self: start;
}
#related_works .works_container > div {
  padding-bottom: 2rem;
}
#related_works .works_container .image {
  height: 0;
  padding-bottom: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 38rem) {
  #related_works .works_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 53rem) {
  #related_works .works_container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 68rem) {
  #related_works .works_container {
    grid-template-columns: repeat(5, 1fr);
  }
}
#related_works .details_container {
  padding: 0 0.2rem;
}
#related_works .artist {
  margin-top: 0.2rem;
  font-family: var(--sans-serif-font);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5rem;
}
#related_works .title, #related_works .date {
  margin-top: 0.2rem;
  font-family: var(--serif-font);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
#related_works .title {
  -webkit-box-orient: vertical;
  display: block;
  overflow: hidden;
  max-height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

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