:root {
  --white: white;
  --green: #8DCEAD;
  --purple: #863487;
  --dark-purple: #663399;
  --gray: #d5d1c4;
  --dark-gray: #58585b;
  --yellow: #ffcc00;
  --orange: #ff9933;
  --khaki: #d3d0c4;
  --red: #CC0000;
}

.lacl-container {
  margin-inline: auto;
  max-width: 1300px;
}

.grid {
  display: grid;
  grid-gap: 1rem;
}
.grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}
.grid.two-col.wide-left {
  grid-template-columns: 2fr 1fr;
}
.grid.two-col.x-wide-left {
  grid-template-columns: 3fr 1fr;
}
.grid.two-col.wide-right {
  grid-template-columns: 1fr 2fr;
}
.grid.two-col.x-wide-right {
  grid-template-columns: 3fr 1fr;
}
@media only screen and (max-width: 766px) {
  .grid.two-col, .grid.two-col.wide-left, .grid.two-col.x-wide-left, .grid.two-col.wide-right, .grid.two-col.x-wide-right {
    grid-template-columns: 1fr;
  }
}
.grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.grid.three-col.wide-left {
  grid-template-columns: 2fr 1fr 1fr;
}
.grid.three-col.wide-middle {
  grid-template-columns: 1fr 2fr 1fr;
}
.grid.three-col.wide-right {
  grid-template-columns: 1fr 1fr 2fr;
}
@media only screen and (max-width: 766px) {
  .grid.three-col, .grid.three-col.wide-left, .grid.three-col.wide-middle, .grid.three-col.wide-right {
    grid-template-columns: 1fr;
  }
}
.grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 766px) {
  .grid.four-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 383px) {
  .grid.four-col {
    grid-template-columns: 1fr;
  }
}

.d-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
.d-flex .gap-0 {
  gap: 0;
}
.d-flex .flex-row {
  flex-direction: row;
}
.d-flex .flex-column {
  flex-direction: column;
}
.d-flex .flex-wrap {
  flex-wrap: wrap;
}
.d-flex .flex-nowrap {
  flex-wrap: nowrap;
}
.d-flex .justify-content-start {
  justify-content: flex-start;
}
.d-flex .justify-content-center {
  justify-content: center;
}
.d-flex .justify-content-end {
  justify-content: flex-end;
}
.d-flex .justify-content-between {
  justify-content: space-between;
}
.d-flex .justify-content-stretch {
  justify-content: stretch;
}
.d-flex .align-content-start {
  align-content: flex-start;
}
.d-flex .align-content-center {
  align-content: center;
}
.d-flex .align-content-end {
  align-content: flex-end;
}
.d-flex .align-content-between {
  align-content: space-between;
}
.d-flex .align-content-stretch {
  align-content: stretch;
}
.d-flex .justify-itemst-start {
  justify-items: flex-start;
}
.d-flex .justify-items-center {
  justify-items: center;
}
.d-flex .justify-items-end {
  justify-items: flex-end;
}
.d-flex .justify-items-between {
  justify-items: space-between;
}
.d-flex .justify-items-stretch {
  justify-items: stretch;
}
.d-flex .align-items-start {
  align-items: flex-start;
}
.d-flex .align-items-center {
  align-items: center;
}
.d-flex .align-items-end {
  align-items: flex-end;
}
.d-flex .align-items-between {
  align-items: space-between;
}
.d-flex .align-items-stretch {
  align-items: stretch;
}

.bg-white {
  background-color: var(--white);
}

.bg-green {
  background-color: var(--green);
}

.bg-purple {
  background-color: var(--purple);
}

.bg-dark-purple {
  background-color: var(--dark-purple);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-dark-gray {
  background-color: var(--dark-gray);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-khaki {
  background-color: var(--khaki);
}

.bg-red {
  background-color: var(--red);
}

.color-white, .text-white {
  color: var(--white);
}

.color-green, .text-green {
  color: var(--green);
}

.color-purple, .text-purple {
  color: var(--purple);
}

.color-dark-purple, .text-dark-purple {
  color: var(--dark-purple);
}

.color-gray, .text-gray {
  color: var(--gray);
}

.color-dark-gray, .text-dark-gray {
  color: var(--dark-gray);
}

.color-yellow, .text-yellow {
  color: var(--yellow);
}

.color-orange, .text-orange {
  color: var(--orange);
}

.color-khaki, .text-khaki {
  color: var(--khaki);
}

.color-red, .text-red {
  color: var(--red);
}

.p-0 {
  padding: 0;
}

.px-0 {
  padding-inline: 0;
}

.py-0 {
  padding-block: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.m-0 {
  margin: 0;
}

.mx-0 {
  margin-inline: 0;
}

.my-0 {
  margin-block: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-auto {
  padding: auto;
}

.px-auto {
  padding-inline: auto;
}

.py-auto {
  padding-block: auto;
}

.pt-auto {
  padding-top: auto;
}

.pr-auto {
  padding-right: auto;
}

.pb-auto {
  padding-bottom: auto;
}

.pl-auto {
  padding-left: auto;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-inline: auto;
}

.my-auto {
  margin-block: auto;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.p-xxs {
  padding: 0.125rem;
}

.px-xxs {
  padding-inline: 0.125rem;
}

.py-xxs {
  padding-block: 0.125rem;
}

.pt-xxs {
  padding-top: 0.125rem;
}

.pr-xxs {
  padding-right: 0.125rem;
}

.pb-xxs {
  padding-bottom: 0.125rem;
}

.pl-xxs {
  padding-left: 0.125rem;
}

.m-xxs {
  margin: 0.125rem;
}

.mx-xxs {
  margin-inline: 0.125rem;
}

.my-xxs {
  margin-block: 0.125rem;
}

.mt-xxs {
  margin-top: 0.125rem;
}

.mr-xxs {
  margin-right: 0.125rem;
}

.mb-xxs {
  margin-bottom: 0.125rem;
}

.ml-xxs {
  margin-left: 0.125rem;
}

.p-xs {
  padding: 0.25rem;
}

.px-xs {
  padding-inline: 0.25rem;
}

.py-xs {
  padding-block: 0.25rem;
}

.pt-xs {
  padding-top: 0.25rem;
}

.pr-xs {
  padding-right: 0.25rem;
}

.pb-xs {
  padding-bottom: 0.25rem;
}

.pl-xs {
  padding-left: 0.25rem;
}

.m-xs {
  margin: 0.25rem;
}

.mx-xs {
  margin-inline: 0.25rem;
}

.my-xs {
  margin-block: 0.25rem;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mr-xs {
  margin-right: 0.25rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.ml-xs {
  margin-left: 0.25rem;
}

.p-sm {
  padding: 0.5rem;
}

.px-sm {
  padding-inline: 0.5rem;
}

.py-sm {
  padding-block: 0.5rem;
}

.pt-sm {
  padding-top: 0.5rem;
}

.pr-sm {
  padding-right: 0.5rem;
}

.pb-sm {
  padding-bottom: 0.5rem;
}

.pl-sm {
  padding-left: 0.5rem;
}

.m-sm {
  margin: 0.5rem;
}

.mx-sm {
  margin-inline: 0.5rem;
}

.my-sm {
  margin-block: 0.5rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mr-sm {
  margin-right: 0.5rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.ml-sm {
  margin-left: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.px-md {
  padding-inline: 1rem;
}

.py-md {
  padding-block: 1rem;
}

.pt-md {
  padding-top: 1rem;
}

.pr-md {
  padding-right: 1rem;
}

.pb-md {
  padding-bottom: 1rem;
}

.pl-md {
  padding-left: 1rem;
}

.m-md {
  margin: 1rem;
}

.mx-md {
  margin-inline: 1rem;
}

.my-md {
  margin-block: 1rem;
}

.mt-md {
  margin-top: 1rem;
}

.mr-md {
  margin-right: 1rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.ml-md {
  margin-left: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.px-lg {
  padding-inline: 1.5rem;
}

.py-lg {
  padding-block: 1.5rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pr-lg {
  padding-right: 1.5rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.pl-lg {
  padding-left: 1.5rem;
}

.m-lg {
  margin: 1.5rem;
}

.mx-lg {
  margin-inline: 1.5rem;
}

.my-lg {
  margin-block: 1.5rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mr-lg {
  margin-right: 1.5rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.ml-lg {
  margin-left: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.px-xl {
  padding-inline: 2rem;
}

.py-xl {
  padding-block: 2rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pr-xl {
  padding-right: 2rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.pl-xl {
  padding-left: 2rem;
}

.m-xl {
  margin: 2rem;
}

.mx-xl {
  margin-inline: 2rem;
}

.my-xl {
  margin-block: 2rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mr-xl {
  margin-right: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.ml-xl {
  margin-left: 2rem;
}

.p-xxl {
  padding: 3rem;
}

.px-xxl {
  padding-inline: 3rem;
}

.py-xxl {
  padding-block: 3rem;
}

.pt-xxl {
  padding-top: 3rem;
}

.pr-xxl {
  padding-right: 3rem;
}

.pb-xxl {
  padding-bottom: 3rem;
}

.pl-xxl {
  padding-left: 3rem;
}

.m-xxl {
  margin: 3rem;
}

.mx-xxl {
  margin-inline: 3rem;
}

.my-xxl {
  margin-block: 3rem;
}

.mt-xxl {
  margin-top: 3rem;
}

.mr-xxl {
  margin-right: 3rem;
}

.mb-xxl {
  margin-bottom: 3rem;
}

.ml-xxl {
  margin-left: 3rem;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

h4 {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
}

.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

@media only screen and (max-width: 766px) {
  .text-align-left-sm {
    text-align: left;
  }
  .text-align-center-sm {
    text-align: center;
  }
  .text-align-right-sm {
    text-align: right;
  }
}
@media only screen and (max-width: 768px) {
  .text-align-left-lg {
    text-align: left;
  }
  .text-align-center-lg {
    text-align: center;
  }
  .text-align-right-lg {
    text-align: right;
  }
}
.font-size-xxs {
  font-size: 0.125rem;
}

.font-size-xs {
  font-size: 0.25rem;
}

.font-size-sm {
  font-size: 0.5rem;
}

.font-size-md {
  font-size: 1rem;
}

.font-size-lg {
  font-size: 1.5rem;
}

.font-size-xl {
  font-size: 2rem;
}

.font-size-xxl {
  font-size: 3rem;
}

.lacl_location-wrapper {
  background-attachment: fixed;
  background-color: var(--bright_purple);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/lacl_location-bg.png");
  overflow: hidden;
}
.lacl_location-wrapper .lacl_location-header {
  color: var(--white);
  padding-block: 6rem;
  text-align: center;
}
.lacl_location-wrapper h1.library-name {
  color: var(--white);
  font-family: gibson-regular-webfont, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 0.875;
  margin-bottom: 0;
  text-shadow: 5px 5px 10px black;
  text-transform: none;
}
@media only screen and (max-width: 766px) {
  .lacl_location-wrapper h1.library-name {
    font-size: 105px;
  }
}
.lacl_location-wrapper .library-meta {
  font-family: gibson-regular-webfont, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5em;
  display: flex;
  flex-flow: row nowrap;
}
@media only screen and (max-width: 766px) {
  .lacl_location-wrapper .library-meta {
    display: block;
  }
}
.lacl_location-wrapper .library-meta a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}
.lacl_location-wrapper .library-meta .library-meta-address .addr-sep {
  display: inline;
}
.lacl_location-wrapper .library-meta .library-meta-address .addr-sep + br {
  display: none;
}
@media only screen and (max-width: 766px) {
  .lacl_location-wrapper .library-meta .library-meta-address .addr-sep {
    display: none;
  }
  .lacl_location-wrapper .library-meta .library-meta-address .addr-sep + br {
    display: inline;
  }
}
.lacl_location-wrapper .library-meta .library-meta-phone {
  white-space: nowrap;
}
@media only screen and (max-width: 766px) {
  .lacl_location-wrapper .library-meta-manager {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .amenities-ul {
    -moz-column-count: 2;
         column-count: 2;
  }
  .amenities-ul li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
  }
}
.gallery-container,
.location-gallery {
  overflow: hidden;
}

.location-gallery {
  position: relative;
}
.location-gallery .gallery-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  pointer-events: none;
}
.location-gallery .gallery-nav .nav-next,
.location-gallery .gallery-nav .nav-prev {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #000000;
  cursor: pointer;
  pointer-events: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 2em;
}

.icon-title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1rem;
}
.icon-title h2 {
  font-size: 2.625rem;
  line-height: 1;
  margin: 0;
}
.icon-title p {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0.25em 0 0;
}
.icon-title .icon-illo {
  max-height: 7rem;
  aspect-ratio: 1;
}
.icon-title .icon-illo svg {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.icon-title .icon-illo svg path {
  fill: currentColor;
}

.loc-detail-accordion .loc-detail-accordion-item-title {
  background-color: #d3d0c4;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
  align-items: center;
}
.loc-detail-accordion .loc-detail-accordion-item-title > h4 {
  flex: 1;
  font-weight: bold;
}
.loc-detail-accordion .loc-detail-accordion-item-title > .fa {
  flex: 0;
}
.loc-detail-accordion .loc-detail-accordion-item .loc-detail-accordion-item-panel {
  border: 1px solid #d3d0c4;
  max-height: 0px;
  overflow: hidden;
  height: auto;
}
.loc-detail-accordion .loc-detail-accordion-item.open .fa-chevron-down {
  transform: rotate(180deg);
}
.loc-detail-accordion .loc-detail-accordion-item.open .loc-detail-accordion-item-panel {
  max-height: 1000vh;
}

.post-card {
  display: flex;
  flex-flow: column nowrap;
}
.post-card .post-card-thumbnail a {
  display: block;
}
.post-card .post-card-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card .post-card-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: stretch;
  height: 100%;
}
.post-card .post-card-title {
  font-size: 24px;
  line-height: 1.2;
}

ul.no-bullets,
li.no-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.no-bullets li {
  margin-bottom: 0.25rem;
}

ul.lacl-hours li {
  gap: 1rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
ul.lacl-hours li .hours-label {
  font-weight: 600;
}

#location_search_form {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  justify-content: stretch;
  align-items: stretch;
  position: relative;
}
#location_search_form .input-container {
  display: flex;
  flex-flow: row nowrap;
  gap: 1em;
  justify-content: stretch;
  align-items: stretch;
}
#location_search_form .input-container, #location_search_form button.search-submit {
  flex: 1 0 auto;
}
#location_search_form input, #location_search_form input[type=search], #location_search_form button {
  margin: 0 !important;
  white-space: nowrap;
}
#location_search_form .show-filters.active {
  background-color: #863487 !important;
}
#location_search_form .show-filters.active + .filter-options {
  display: grid;
}
@media only screen and (max-width: 766px) {
  #location_search_form .show-filters.active + .filter-options {
    display: block;
  }
  #location_search_form .show-filters.active + .filter-options .filter-option {
    padding: 0.5rem 0;
  }
}
#location_search_form .filter-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  max-width: 100%;
  grid-auto-flow: column;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #d5d1c4;
  z-index: 100;
}
#location_search_form .filter-options .filter-option {
  display: flex;
  align-items: center;
}
#location_search_form .filter-options .filter-option label {
  margin-left: 0.5rem;
}

.location-search-container .locator-filter-tags {
  flex-basis: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}
.location-search-container .locator-filter-tags .badge {
  display: none;
  padding: 0.125rem 0.5rem;
  border-radius: 10em;
  font-size: 0.75em;
}
.location-search-container .locator-filter-tags .badge a {
  color: white;
}

.locator-tabs {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.locator-tabs .locator-tab {
  background: white !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  color: #58585b !important;
}
.locator-tabs .locator-tab:hover, .locator-tabs .locator-tab.active {
  color: #663399 !important;
  border-color: #663399 !important;
}

.locator-tab-content {
  display: none;
  margin-bottom: 1rem;
  padding: 2rem 0 0;
}
.locator-tab-content.active {
  display: block;
}

.locator-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.locator-grid-container .result-message {
  grid-column: 1/5;
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 766px) {
  .locator-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .locator-grid-container {
    grid-template-columns: 1fr;
  }
}

.locator-grid-item {
  border: 1px solid #d5d1c4;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.locator-grid-item .locator-details {
  padding: 1rem;
  flex: 1 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.locator-grid-item .locator-grid-image {
  background: #d5d1c4;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.5;
  position: relative;
}
.locator-grid-item .locator-grid-image a {
  position: relative;
}
.locator-grid-item .locator-grid-image .location-distance {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #58585b;
  color: white;
  border-radius: 0 0 0 8px;
  font-size: 0.75em;
  padding: 0.25em 0.5em;
}
.locator-grid-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.locator-grid-item h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.locator-grid-item h1 a {
  color: #000000;
  text-decoration: underline;
}
.locator-grid-item h1 a:hover {
  color: #663399;
}
.locator-grid-item p {
  margin-bottom: 0.5rem;
}
#gmap .locator-grid-item {
  border: none;
  flex-flow: row nowrap;
}
#gmap .locator-grid-item .locator-grid-image {
  display: none;
}
#gmap .locator-grid-item .locator-details {
  padding: 0;
  display: block;
  max-width: 100%;
}
#gmap .locator-grid-item .locator-details h1 {
  font-size: 1rem;
}
#gmap .locator-grid-item .locator-details p {
  font-size: 0.75rem;
}

.filter-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#gmap {
  width: 100%;
  min-height: 75vh;
}