/* Gen. time: 0.0096578598022461*/
:root {
  --main-favicon: url('/content/_site_images/favicon.ico');
  --main-logo-img: url('/content/_site_images/KCPL-logo.svg');
  --main-logo-darkmode-img: url('/content/_site_images/KCPL-logo-dark.svg');
  --main-logo-sizing: auto;
  --background-1: #FCFCFC;
  --dark-background-1: #001B29;
  --background-2: #FFFFFF;
  --dark-background-2: #292929;
  --background-3: #E6E9E9;
  --dark-background-3: #023047;
  --primary-header-color: 2,48,71;
  --dark-primary-header-color: 255,255,255;
  --secondary-header-color: 2,48,71;
  --dark-secondary-header-color: 142,202,229;
  --small-header-color: 2,48,71;
  --dark-small-header-color: 255,255,255;
  --paragraph: #000000;
  --dark-paragraph: #FFFFFF;
  --links: #229EBC;
  --power-color-1-foreground: #000000;
  --power-color-1: #fc8500;
  --power-color-2-foreground: #000000;
  --power-color-2: #8ee489;
  --power-color-3-foreground: #000000;
  --power-color-3: 142,202,229;
  --power-color-4-foreground: #000000;
  --power-color-4: #ffb706;
  --power-color-5-foreground: #FFFFFF;
  --power-color-5: #023047;
  --power-color-6-foreground: #000000;
  --power-color-6: 34,158,188;
  --power-color-7-foreground: #000000;
  --power-color-7: 142,202,229;
  --secondary-architecture: 2,48,71;
  --dark-secondary-architecture: 142,202,229;
  --image-placeholder-color: #E6E9E9;
  --primary-header-font: 600 23px/23px 'Epilogue', 'Verdana',sans-serif;
  --primary-header-font-variant: uppercase;
  --secondary-header-font: 600 19px/24px 'Epilogue', 'Arial',sans-serif;
  --secondary-header-font-variant: uppercase;
  --small-header-font: 600 16px/20px 'Epilogue', 'Arial',sans-serif;
  --small-header-font-variant: uppercase;
  --nav-text-font: 400 13px/17px 'Epilogue', 'Arial',sans-serif;
  --paragraph-font: 300 18px/25px 'Rubik', 'Arial',sans-serif;
  --secondary-button-fonts: 600 12px/15px 'Epilogue', 'Times',serif;
}
/*TODO: RG--We need to do some testing regarding the new darkmode mechanisms with the logo resolution probably*/
/*LOGO VARs SETUP
    --current-logo-img is the target that we actually use directly in styles

    --main-logo-img
    --main-logo-darkmode-imgheader .site-logo img
    --main-logo-tablet-img
    --main-logo-tablet-darkmode-img
    --main-logo-mobile-img
    --main-logo-mobile-darkmode-img
*/
:root {
    color-scheme: light dark;

    /* --ON and --OFF replace the binary variable */
    --ON: initial;
    --OFF: ;/*whitespace*/
    
    /*lightmode logos available*/
    --desktop-light-logo:  var( --main-logo-img, "/_theme_images/default_logo.jpg");
    --tablet-light-logo: var( --main-logo-tablet-img, var(--desktop-light-logo) );
    --mobile-light-logo: var( --main-logo-mobile-img, var(--tablet-light-logo) );
    
    /*darkmode logos available */
    --desktop-dark-logo:  var(--main-logo-darkmode-img, var(--desktop-light-logo) );
    --tablet-dark-logo: var( --main-logo-tablet-darkmode-img, var(--desktop-dark-logo) );
    --mobile-dark-logo: var( --main-logo-mobile-darkmode-img, var(--tablet-dark-logo) );
    
    /*default to lightmode (eeeeeeewwwwwww) */
    --desktop-logo:  var( --desktop-light-logo);
    --tablet-logo: var( --tablet-light-logo, var(--desktop-logo) );
    --mobile-logo: var( --mobile-light-logo, var(--tablet-logo) );
}

/*set lightmode to be "usual" default*/
body{
    --light: var(--ON);
    --dark: var(--OFF);
}
/* the media query is now only needed for switching the control variables */
@media (prefers-color-scheme: dark) {
  /*set darkmode to be the initial default if we prefer dark*/
  body{
    --light: var(--OFF);
    --dark: var(--ON);
    
    --desktop-logo:  var( --desktop-dark-logo, var(--desktop-light-logo));
    --tablet-logo: var( --tablet-dark-logo, var(--tablet-light-logo, var(--desktop-logo) ) );
    --mobile-logo: var( --mobile-dark-logo, var(--mobile-light-logo, var(--tablet-logo)  ) );
    --current-logo-img: var(--desktop-logo);
  }
  
  /*Make sure the lil icon is selected... could also do this in the JS setup maybe, but probably better here*/
  header .header-notices .notice-accessibility .access-options .access-section .option[data-access-keyup-id="68"]{}
  header .header-notices .notice-accessibility .access-options .access-section .option[data-access-keyup-id="68"] button:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 9px;
    margin: 0 0 1px 5px;
    background-color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
    clip-path: polygon(1.5px 3px, 4.5px 6px, 10.5px 0px, 12px 1.5px, 4.5px 9px, 0px 4.5px);
  }
  /* should match  header .header-notices .notice-accessibility .access-options .access-section .option.active .icon:after{ */
  body:not(.light-mode):not(.high-contrast) header .header-notices .notice-accessibility .access-options .access-section .option[data-access-keyup-id="68"] .icon:after{
    background-color: var(--power-color-2);
  }
}

/* darkmode / dark mode / dark-mode styles */
body.dark-mode {
  /*switch to darkmode!*/
  color-scheme: dark;
  --light: var(--OFF);
  --dark: var(--ON);
  
  --desktop-logo:  var( --desktop-dark-logo, var(--desktop-light-logo));
  --tablet-logo: var( --tablet-dark-logo, var(--tablet-light-logo, var(--desktop-logo) ) );
  --mobile-logo: var( --mobile-dark-logo, var(--mobile-light-logo, var(--tablet-logo)  ) );
  
  --current-logo-img: var(--desktop-logo);

  background-color: var(--dark-background-1);
}

/*for the case we explicitly asked for lightmode, or we are using high-contrast which is lightmode only presently*/
body.light-mode, body.high-contrast {
  --light: var(--ON);
  --dark: var(--OFF);
  color-scheme: light;
  background-color: var(--background-1);
}

/* EX: this is where we can set variables in 1 line to have a dark and a light case that also works for the initial, cookie-less state; only works for things that will be compatible with "initial" */
body {
  --test-color: var(--light, orange) var(--dark, blue);
  
  /*placeholder image color*/
  --image-placeholder-icon-color: var(--light, white) var(--dark, #aaaaaa);
  
  /*active logo vars */
  /*--desktop-logo: var(--light,  var(--desktop-light-logo) ) var(--dark, --desktop-dark-logo);*/
  /*--tablet-logo: var(--light,  var(--tablet-light-logo) ) var(--dark, --tablet-dark-logo);*/
  /*--mobile-logo: var(--light,  var(--mobile-light-logo) ) var(--dark, --mobile-dark-logo);*/
  
  --current-logo-img: var(--desktop-logo);
  --current-logo-width: 252px;
  --current-logo-height: 160px;
}

#top_button {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)), .75);
  color: var(--light, var(--dark-paragraph)) var(--dark, var(--paragraph));
  cursor: pointer;
  padding: 15px 15px 11px 15px;
  font: var(--secondary-button-fonts);
  text-transform: uppercase;
  transition: background-color .25s;
}
#top_button:hover {
  background-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)), 1);
}
.wysiwygs-across {
  margin-top: 50px;
}
.acc-container {
  margin: 30px 0 30px 0;
}
.acc-container > div {
  margin: 10px 0;
}
body .acc-container label {
  margin: 0;
  padding: 15px 40px 13px 15px;
  box-sizing: border-box;
  background-color: var(--light, rgba(var(--secondary-architecture), .05)) var(--dark, rgba(var(--dark-secondary-architecture), .1));
  opacity: 0.8;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--paragraph-font);
  font-family: 'Epilogue';
  font-weight: 400;
  display: block;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: opacity .3s ease-out, background-color .3s;
}
.acc-container label:hover {
  opacity: 1;
}
.acc-container input:checked + label, .staff .acc-container input:checked + label:hover {
  opacity: 1;
}
.acc-container input { /* hide checkboxes */
  display: none;
}
body .acc-container label:after { /* icon after */
  content: "";
  width: 31px;
  height: 31px;
  background-image: url('/content/_theme_images/side-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 15px;
  top: calc(50% - 8px);
  transition: transform .3s;
}
.acc-container input:checked + label:after {
  transform: rotate(-180deg);
}
body .acc-container article { /* actual article */
  overflow: hidden;
  height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid transparent;
  position: relative;
  z-index: 5;
}
.acc-container input:checked ~ article { /* article when input checked, open */
  height: auto;
  margin: 0;
  padding: 10px 20px;
  border: 5px solid var(--light, rgba(var(--secondary-architecture), .05)) var(--dark, rgba(var(--dark-secondary-architecture), .1));
}
.acc-container .acc-item {
  width: 100%;
  margin: 10px 0;
  position: relative;
}
.acc-container .acc-item input {
  display: none;
}
.acc-container .acc-item article {
  overflow: hidden;
  height: 0;
  width: 100%;
}
.alert-block { /* alert-block css */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.alert-block.hidden {
  display: none;
}
.alert-block .alert-block-bkgd {
  width: 100%;
  height: 100%;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  opacity: 0.7;
}
.alert-block .alert-block-content {
  max-width: 720px;
  min-width: 720px;
  padding: 30px;
  box-sizing: border-box;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  border: 4px solid rgb(var(--secondary-architecture));
  box-shadow: 0 0 5px #00000030;
  position: fixed;
  top: 10%;
  left: calc(50% - (720px / 2));
  z-index: 1000;
}
.alert-block .alert-block-content p {
  margin-bottom: 10px;
  font: var(--small-header-font);
  font-weight: 400;
}
strong, bold, b {
  font-weight: 500;
}
.alert-block .alert-block-content ol {
  margin-bottom: 10px;
  padding: 0 0 0 35px;
}
.alert-block .alert-block-content .close {
  color: var(--paragraph);
  font-size: 25px;
  position: absolute;
  top: 15px;
  right: 15px;
} /* end alert-block css */

.byte_content_embargo { /* start byte_content types css */
  background-color: #FF8800 !important;
  box-shadow: 0 0 3px #CCCCCC !important;
  display: none !important;
}
.byte_content_postpone {
  display: none !important;
}
img.byte_img_embargo {
  /*box-shadow: 5px 5px 1px 2px #FF8800, 5px 5px 3px 2px #CCCCCC !important;*/
  display: none !important;
}
img.byte_img_postpone {
    display: none !important;
} 
img.byte_img_review {} /* end byte_content types css */

/*======================================================================================================
  BASE STYLES - desktop
======================================================================================================*/
body {
  margin: 0;
  padding: 0;
  font: var(--paragraph-font);
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  overflow-x: hidden;
}
button {
  font: var(--small-header-font);
  font-weight: 400;
}
input {
  font-family: inherit;  
}
h1 {
  margin: 0 0 15px 0;
  color: var(--light, var(--primary-header-color)) var(--dark, var(--dark-primary-header-color));
  font: var(--primary-header-font);
  font-size: 37px;
  line-height: 44px;
}
h2, .h2-like {
  margin: 0 0 15px 0;
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
  font: var(--secondary-header-font);
  text-transform: var(--secondary-header-font-variant);
  font-size: 26px;
  line-height: 31px;
}
.column-one h3.h2-like {
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
  font: var(--secondary-header-font);
  text-transform: none;
  font-size: 23px;
  line-height: 23px;
  opacity: 1;
}
.column-one h3.h2-like.blog-posts-title {
  padding-bottom: 12px;
}
h3, .h3-like {
  margin: 0 0 15px 0;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  font: var(--small-header-font);
  font-size: 22px;
  line-height: 27px;
}
h4, .h4-like, .h4-like p, .item-title {
  margin: 0 0 10px 0;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  font: var(--small-header-font);
  font-size: 19px;
  line-height: 24px;
}
p {
  margin: 0 0 15px 0;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--paragraph-font);
  -webkit-font-smoothing: antialiased;
}
p.intro {
  font: var(--paragraph-font);
  letter-spacing: 0.5px;
}
p.pullquote {
  margin: 15px 0;
  padding: 59px 25px 100px 25px;
  box-sizing: border-box;
  font: var(--paragraph-font);
  font-family: 'Epilogue';
  font-weight: 400;
  position: relative;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  z-index: 0;
  clip-path: polygon(0px 0px, calc(100% - 50px) 0px, 100% 50px, 100% calc(100% - 50px), 100px calc(100% - 50px), 100px 100%, 50px calc(100% - 50px), 0px calc(100% - 50px));
  position: relative;
}
p.pullquote:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) 52px, calc(100% - 5px) calc(100% - 55px), 95px calc(100% - 55px), 95px calc(100% - 12px), 52px calc(100% - 55px), 5px calc(100% - 55px));
  background-image: url('/content/_theme_images/quote-start.svg');
  background-repeat: no-repeat;
  background-position: 25px 25px;
}
p.pullquote:after {
  content: "";
  background-image: url(/content/_theme_images/quote-end.svg);
  display: block;
  width: 34px;
  height: 24px;
  position: absolute;
  right: 25px;
  bottom: 75px;
}
a {
  transition: color .3s;
  text-decoration: none;
}
.body p a {
  text-decoration: underline;
  color: var(--links);
  font-weight: 400;
  margin-bottom: 25px;
}
.body a {
  color: var(--links);
  text-decoration: underline;
}
.button-like.secondary, .button-like.third, .button-like.third-about {
  padding: 13px 21px 11px 18px;
  box-sizing: border-box;
  font: var(--secondary-button-fonts);
  letter-spacing: .5px;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.button-like.secondary:before, .button-like.third:before, .button-like.third-about:before {
  content: '';
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  box-shadow: var(--light, inset 0px 0px 0px 30px rgba(var(--secondary-architecture), .06)) var(--dark, inset 0px 0px 0px 30px rgba(var(--dark-secondary-architecture), .06));
  transition: opacity .25s;
}

form button.loader:not([disabled]):hover {
  cursor: pointer;
}
form button.loader:not([disabled]):hover:before {
  opacity: 0;
}
.button-like.secondary, .button-like.third-about {
  margin-left: 0;
}
.swiper-slide .button-like.primary {
  padding: 13px 20px 11px 20px;
  font: var(--small-header-font);
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  letter-spacing: .5px;
}

.button-like, .button-like.primary, a.button-like, a.button-like.primary {
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  font: var(--secondary-button-fonts);
  color: var(--light, var(--dark-paragraph)) var(--dark, var(--paragraph));
  letter-spacing: 0.1px;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px 11px 20px;
  clip-path: polygon(0px 0px, calc(100% - 15px) 0px, 100% 15px, 100% 100%, 0px 100%);
  width: fit-content;
}

.button-like.pc1 { /* orange */
  background-color: var(--power-color-1);
}
.button-like.pc1:hover { /* orange */
  color: var(--power-color-1-foreground);
}
.button-like.pc2 { /* green */
  background-color: var(--power-color-2);
}
.button-like.pc2:hover { /* green */
  color: var(--power-color-2-foreground);
}
.button-like.pc3 { /* light blue */
  background-color: rgb(var(--power-color-3));
}
.button-like.pc3:hover { /* light blue */
  color: var(--power-color-3-foreground);
}
.button-like.pc4 { /* yellow */
  background-color: var(--power-color-4);
}
.button-like.pc4:hover { /* yellow */
  color: var(--power-color-4-foreground);
}
.button-like.pc5 { /* navy */
  background-color: var(--power-color-5);
}
.button-like.pc5:hover { /* navy */
  color: var(--power-color-5-foreground);
}
.button-like.pc6 { /* blue */
  background-color: rgb(var(--power-color-6));
}
.button-like.pc6:hover { /* blue */
  color: var(--power-color-6-foreground);
}
.button-like.pc7 { /* light blue */
  background-color: rgb(var(--power-color-7));
}
.button-like.pc7:hover { /* light blue */
  color: var(--power-color-7-foreground);
}

.button-like:before, .button-like.primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  box-shadow: var(--light, inset 0px 0px 0px 30px rgba(var(--secondary-architecture), .8)) var(--dark, inset 0px 0px 0px 30px rgba(var(--dark-secondary-architecture), .8));
  clip-path: polygon(2px 2px, calc(100% - 16px) 2px, calc(100% - 2px) 16px, calc(100% - 2px) calc(100% - 2px), 2px calc(100% - 2px));
  z-index: -1;
  transition: opacity .25s;
}
.button-like:hover:before, .button-like.primary:hover:before {
  opacity: 0;
}

.main-content.event .body .button-like.primary {
  width: fit-content;
  margin: 0 0 25px 15px;
}

.button-dropdown-container {
  display: flex;
  align-items: center;
}
.button-dropdown-container .button-like {
  margin-right: 25px;
}
.button-dropdown-container .button-dropdown {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--secondary-button-fonts);
  position: relative;
  cursor: pointer;
  width: 150px;
  margin-right: 25px;
}
.button-dropdown .dropdown-list {
  width: calc(100% - 1px);
  position: absolute;
  display: none;
  border: .5px solid var(--light, #979797) var(--dark, rgb(var(--dark-secondary-architecture)));
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  padding: 5px 0px;
  margin-top: -1px;
}
.button-dropdown.toggled .dropdown-list {
  display: block;
}
.button-dropdown .dropdown-list li {
  padding: 10px;
  margin: 0;
}
.button-dropdown .dropdown-list li:hover {
  background-color: var(--light, #78787825) var(--dark, #FFFFFF25);
}
.button-dropdown .dropdown-list li:before {
  display: none;
}
.button-dropdown em.far {
  padding-left: 5px;
}
.button-dropdown.toggled, .button-dropdown:hover {
  opacity: 1;
}
.button-dropdown:hover {
  background-color: #78787825;
}
.button-dropdown:before {
  content: "";
  width: 10px;
  height: 6px;
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  transition: opacity .3s, transform .25s;
  pointer-events: none;
  background-image: url('/content/_theme_images/down-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button-dropdown.toggled:before {
  transform: rotate(-180deg);
}
.button-dropdown:hover:after, .button-dropdown.toggled:after {
  opacity: 1;
}
.button-dropdown .toggle-area {
  display: block;
  width: calc(100% - 21px);
  font-weight: 400;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  border: .5px solid var(--light, #979797) var(--dark, rgb(var(--dark-secondary-architecture)));
  padding: 10px 10px 7px 10px;
  text-decoration: none;
}
.body .button-dropdown a.toggle-area:after {
  display: none;
}
.button-dropdown ul.dropdown {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .3s, top .3s;
  pointer-events: none;
}
.button-dropdown.toggled ul.dropdown {
  opacity: 1;
  top: calc(100% + 3px);
  left: 0;
  transition: opacity .3s .1s, top .3s;
  pointer-events: all;
}
.button-dropdown ul.dropdown li {
  width: max-content;
  margin: 0;
  transition: margin .3s;
}
.button-dropdown.toggled ul.dropdown li {
  margin: 0 0 1px 0;
  padding: 5px 0px 0px 15px;
}
.button-dropdown ul.dropdown li:last-of-type {
  margin: 0;
}
.button-dropdown ul.dropdown li:before {
  display: none;
}
button.dropdown, a.button-like.dropdown {
  width: 100%;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  padding: 0;
  box-sizing: border-box;
  background-color: unset;
  font: var(--secondary-button-fonts);
  line-height: 12px;
  font-weight: 400;
  justify-content: flex-start;
  text-decoration: none;
  clip-path: unset;
}
.share-url {
  opacity: 0;
  position: absolute;
  left: -9999px;
  pointer-events: none;
}
.share-link .share-url-check {
  opacity: 0;
  display: inline-block;
  width: 11px;
  margin-left: 5px;
}
.share-link .share-url-check svg {
  fill: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.share-link.active .share-url-check {
  opacity: 1;
}
button.dropdown:before, a.button-like.dropdown:before, button.dropdown:after, a.button-like.dropdown:after {
  display: none;
}

.img_right_25 {
  float: right;
  width: 25%;
  margin: 15px 0 15px 25px;
  clear: right;
}
.img_right_50 {
  float: right;
  width: 50%;
  margin: 15px 0 15px 25px;
  clear: right;
}
.img_right_native {
  float: right;
  max-width: 100%;
  width: auto;
  margin: 15px 0 15px 25px;
  clear: right;
}
.img_left_25 {
  float: left;
  width: 25%;
  margin: 15px 25px 15px 0;
  clear: left;
}
.img_left_50 {
  float: left;
  width: 50%;
  margin: 15px 25px 15px 0;
  clear: left;
}
.img_left_native {
  float: left;
  max-width: 100%;
  width: auto;
  margin: 15px 25px 15px 0;
  clear: left;
}
.img_full_styled {
  width: 100%;
  float: none;
  margin: 15px auto 15px;
}
.img_native_block {
    max-width: 100%;
}
figcaption, caption {
  font: var(--paragraph-font);
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  line-height: 14px;
}
.desktop-small, .tablet, .mobile, .prefers-dark {
  display: none;
}
#is_desktop_small, #is_tablet, #is_mobile, #prefers_dark {
  position: absolute;
}
.hidden {
  display: none;
}
.calendar-svg g, .pen-svg g {
  stroke: var(--paragraph);
  fill: var(--background-2);
}
.alert .access-svg .svg-stroke {
  stroke: var(--power-color-2);
}
.alert .access-svg .svg-fill {
  fill: var(--power-color-2);
}
.accessibility .access-svg .svg-fill {
  fill: rgb(var(--power-color-3));
}
.accessibility .access-svg .svg-stroke {
  stroke: rgb(var(--power-color-3));
}
.hours .access-svg .svg-stroke {
  stroke: var(--power-color-5);
}
.alert-svg path:first-of-type {
  fill: transparent;
  stroke: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.alert-svg path:nth-of-type(2) {
  fill: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
#defs-element, .svg-defs {
  display: none;
}

/*======================================================================================================
  HEADER STYLES - desktop
======================================================================================================*/
header {
  width: 100vw;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 30;
  transition: padding .3s ease-out;
}
header.show-alerts, header.show-alerts.hide-accessibility, header.show-alerts.hide-hours, header.show-accessibility, header.show-accessibility.hide-hours, header.show-accessibility.hide-alerts {
  padding: 0;
}
header.show-hours, header.show-hours.hide-accessibility, header.show-hours.hide-alerts {
  padding: 111px 0 0 0;
}
header.show-hours {
  padding: 0;
}
header.close-notices {
  padding: 0;
}
header .header-notices {
  width: 100%;
  max-width: 1440px;
  display: none;
  z-index: 5;
  border-bottom: 4px solid var(--power-color-2);
}



header.open-notices .header-notices {
  display: block;
}
header .header-notices .close-icon {
  top: 20px;
  right: 50px;
  display: block;
  position: absolute;
  opacity: 1;
  top: 25px;
  right: 50px;
  z-index: 15;
}
header .header-notices .close-icon svg g {
  fill: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
header .header-notices .notice-heading {
  width: 100%;
  margin: 0 0 15px 0;
  letter-spacing: .5px;
  text-transform: uppercase;
  font: var(--primary-header-font);
  color: rgb(var(--light, var(--primary-header-color)) var(--dark, var(--dark-primary-header-color)));
}
header .header-notices .notice-section {
  width: 100%;
  max-width: 1280px;
  padding: 25px 50px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  display: none;
  transition: opacity 0s .3s, left 0s .3s;
}
header.show-accessibility .header-notices .notice-accessibility, header.show-hours .header-notices .notice-hour, header.show-alerts .header-notices .notice-alert {
  opacity: 1;
  display: block;
  pointer-events: all;
  left: 0;
  transition: opacity 0s, left 0s;
}
header.hide-accessibility .header-notices .notice-accessibility, header.hide-hours .header-notices .notice-hour, header.hide-alerts .header-notices .notice-alert {
  opacity: 0;
  left: -9999px;
  transition: opacity 0s, left 0s;
}
header .header-notices .notice-accessibility .access-options {
  width: 100%;
  display: flex;
}
header .header-notices .notice-accessibility .access-options .access-section {
  margin: 0 10px 0 0;
  display: flex;
  flex-wrap: wrap;
}
header .header-notices .notice-accessibility .access-options .access-section:last-of-type {
  margin: 0;
}
header .header-notices .notice-accessibility .access-options .access-section .option-heading {
  width: 100%;
  font: var(--small-header-font);
  font-family: 'Rubik';
}
header .header-notices .notice-hour .hours-content .list-heading a {
 color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.goog-te-gadget {
  padding-top: 11px;
}
.goog-te-gadget img {
  background-repeat: no-repeat;
}
header .header-notices .notice-accessibility .access-options .access-section .option {
  margin: 0 10px 0 0;
  text-decoration: none;
  display: flex;
}
header .header-notices .notice-accessibility .access-options .access-section .option.tablet {
  display: none;
}
header .header-notices .notice-accessibility .access-options .access-section .option:last-of-type {
  margin-right: 0;
}
header .header-notices .notice-accessibility .access-options .access-section .option .icon {
  margin: 0 10px 0 7px;
  color: var(--light, var(--dark-paragraph)) var(--dark, var(--paragraph));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s;
  opacity: 1;
  font: var(--small-header-font);
  font-size: 13px;
  position: relative;
  height: fit-content;
}
header .header-notices .notice-accessibility .access-options .access-section .option .icon:after {
  content: '';
  width: 18px;
  height: 18px;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  top: calc(50% - 1px);
  left: 50%;
}
header .header-notices .notice-accessibility .access-options .access-section .option.active .icon:after {
  background-color: var(--power-color-2);
}
header .header-notices .notice-accessibility .access-options .access-section .option p {
  margin: 0;
  opacity: 1;
  font-size: 13px;
  line-height: 17px;
}
header .header-notices .notice-accessibility .access-options .access-section button.option {
  padding: 7px 15px;
}

header .header-notices .notice-hour .hour-lists {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
header .header-notices .notice-hour .hour-list {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex: 1;
  margin-right: 20px;
}
header .header-notices .notice-hour .hour-list .list-image {
  width: 150px;
  height: 150px;
  background-color: var(--power-color-2);
  margin-right: 10px;
  background-size: cover;
  background-position: center;
}
header .header-notices .notice-hour .hour-list .list-image.placeholder {
  background-image: url('/content/_theme_images/logo_wht.svg');
  background-size: 75%;
  background-repeat: no-repeat;
}
header .header-notices .notice-hour .hour-list .list-content {
  flex: 1;
}
header .header-notices .notice-hour .hour-list .list-heading {
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
  margin-bottom: 5px;
  font: var(--paragraph-font);
  font-size: 15px;
  font-weight: 500;
}
header .header-notices .hours-content .hour-lists .hour-list ul .icon {
  position: absolute;
  top: 0;
  left: 0;
}
header .header-notices .hours-content .hour-lists .hour-list ul.list .icon.phone {
  left: -4px;
}
header .header-notices .hours-content .hour-lists .hour-list ul.list li.icon svg g {
  stroke: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
header .header-notices .hours-content .hour-lists .hour-list ul.list li.hour {
  box-sizing: border-box;
  position: relative;
  font: var(--paragraph-font);
  font-size: 13px;
  line-height: 17px;
}
header .header-notices .hours-content .hour-lists .hour-list ul.list li.hour .day {
  font-weight: 500;
}
header .header-notices .hours-content .hour-lists .hour-list ul.list li.hour a {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
header .header-notices .hours-content .hour-lists .hour-list ul.list li.hour a:hover {
  text-decoration: underline;
}
header .header-notices .hours-content .hour-lists .hour-list ul.list {
  list-style: none;
  margin: 0 0 5px 0;
  padding: 0;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}
header .header-notices .notice-hour ul.hour-list li:last-of-type {
  margin: 0;
}
header .header-notices .notice-hour ul.hour-list li.days-closed {
  max-width: 400px;
  padding: 5px;
  box-sizing: border-box;
  border: 2px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  font-size: 12px;
}
header .header-notices .notice-hour ul.hour-list li ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .header-notices .notice-hour ul.hour-list li .day,
header .header-notices .notice-hour ul.hour-list li .time,
header .header-notices .notice-hour ul.hour-list li .disclaimer {
  display: block;
}
header .header-notices .notice-hour ul.hour-list li .day {
  font-weight: 600;
}
header .header-notices .notice-hour ul.hour-list li .disclaimer {
  color: red;
  font-size: 12px;
  line-height: 14px;
}
header .header-notices .notice-hour ul.hour-list li .message {
  margin: 0 0 0 3px;
  color: red;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  display: inline-block;
}
header .header-notices .notice-alert .alert-svg {
  position: relative;
  top: 6px;
}
header .header-notices .notice-alert .alert-message {
  box-sizing: border-box;
  padding: 0 42px;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font-weight: 400;
}
header .header-notices .notice-alert .alert-message.link a {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
header .header-notices .notice-alert .alert-message.link:hover a {
  text-decoration: underline;
}
header .header-notices .notice-alert .alert-message.link:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 13px;
  background-color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  clip-path: polygon(0px 1.5px, 1.5px 0px, 8px 6.5px, 1.5px 13px, 0px 11.5px, 5px 6.5px);
  transition: margin .25s;
}
header .header-notices .notice-alert .alert-messages .swiper-button-next {
  right: 0;
}
header .header-notices .notice-alert .alert-messages .swiper-button-prev {
  left: 0;
}
header .header-wrapper {
  width: 100%;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  display: flex;
  position: relative;
  z-index: 10;
}
header .skip-navigation {
  opacity: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 35;
  pointer-events: none;
  transition: opacity .2s;
}
header .skip-navigation:focus {
  opacity: 1;
  pointer-events: all;
}

/*the thing to use as the initial load/bg of various image locations, that also serves as a fallback/placeholder for cases where there are no images*/
.placeholder-image {
  /*--image-placeholder-color from theme customization*/
  background-color: --image-placeholder-color;
}

header .site-logo {
  margin: 15px 40px 10px 50px;
  width: 200px;
  min-width: 200px;
  height: 130px;
}
header .site-logo .logo-subtitle {
  margin-top: 10px;
}
header .site-logo img {
  content: var(--light, var(--main-logo-img)) var(--dark, var(--main-logo-darkmode-img));
  width: 200px;
  max-width: 200px;
  height: 130px;
}
header .site-logo .logo {
  background-repeat: no-repeat;
  background-image: var(--current-logo-img);
}

header .site-navigations {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
header .ham-menu {
  width: 31px;
  flex-direction: column;
  position: relative;
  z-index: 100;
  transition: margin .3s ease-out;
}
header .ham-menu .line {
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  border-radius: 15px;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  opacity: 1;
  display: inline-block;
  transition: background-color .3s ease-out, opacity .2s ease-out, transform .3s ease-out;
}
header .ham-menu .line:last-of-type {
  margin: 0;
}

header.open-menu .ham-menu .line,
header.open-notices .ham-menu .line {
  margin-bottom: 0;
  position: absolute;
  top: 11px;
}
header.open-menu .header-wrapper .mobile-notices .ham-menu {
  margin-top: 31px;
}
header.open-menu .ham-menu .line:first-of-type, header.open-notices .ham-menu .line:first-of-type {
  transform: rotate(45deg);
  top: 11px;
}
header.open-menu .ham-menu .line:nth-of-type(2), header.open-notices .ham-menu .line:nth-of-type(2) {
  transform: rotate(-45deg);
  top: 11px;
}
header.open-menu .ham-menu .line:last-of-type, header.open-notices .ham-menu .line:last-of-type {
  opacity: 0;
}

.main-nav {
  width: 100%;
  padding: 32px 50px 0 0;
  box-sizing: border-box;
  position: relative;
  z-index: 31;
  transition: padding .5s;
}
.main-nav ul.nav-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.main-nav ul.nav-list > li:last-child {
  border-radius: 0 100px 8px 0;
}
header ul.nav-list li {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
header ul.nav-list li.dropdown-included {
  width: max-content;
}
.main-nav ul.nav-list li:last-of-type {
  margin: 0;
}

header ul.nav-list li:before {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: var(--power-color-1);
  opacity: 0;
  z-index: 1;
}

header .utility-nav ul.nav-list li:before {
  left: 0;
  background-color: rgb(var(--power-color-7));
}
header .main-nav ul.nav-list li.dropdown-included:before {
  top: 40px;
}
header .main-nav ul.nav-list li:nth-child(2):before {
  background-color: var(--power-color-2);
}
header .main-nav ul.nav-list li:nth-child(3):before {
  background-color: rgb(var(--power-color-3));
}
header .main-nav ul.nav-list li:nth-child(4):before {
  background-color: var(--power-color-4);
}
header .main-nav ul.nav-list li:nth-child(5):before {
  background-color: var(--power-color-5);
}
header .main-nav ul.nav-list li:nth-child(6):before {
  background-color: rgb(var(--power-color-6));
}
header ul.nav-list li:hover:before {
  transition: opacity .25s;
  opacity: 1;
}

header ul.nav-list li:hover, header ul.nav-list li:focus {
  z-index: 15;
}

.main-nav ul.nav-list li a {
  color: rgb(var(--light, var(--primary-header-color)) var(--dark, var(--dark-primary-header-color)));
  font: var(--primary-header-font);
  text-transform: var(--primary-header-font-variant);
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  letter-spacing: 0.1px;
  z-index: 1;
}
.main-nav ul.nav-list li .second-toggle {
  display: none;
  border: unset;
  background-color: transparent;
}
.main-nav ul.nav-list .dropdown-included:first-child > a {
  width: 96px;
}
.main-nav ul.nav-list .dropdown-included:nth-child(2) > a {
  width: 146px;
}
.main-nav ul.nav-list .dropdown-included:nth-child(3) > a {
  width: 84px;
}
.main-nav ul.nav-list .dropdown-included:nth-child(4) > a {
  width: 98px;
}
.main-nav ul.nav-list .dropdown-included:nth-child(5) > a {
  width: 129px;
}
.main-nav ul.nav-list .dropdown-included:nth-child(6) > a {
  width: 197px;
}

.main-nav ul.nav-list li .item-arrow {
  display: none;
}

header ul.nav-list li .list-dropdown {
  opacity: 0;
  position: absolute;
  top: -12px;
  left: -8px;
  z-index: 0;
  transition: opacity 0s, box-shadow 0s;
  pointer-events: none;
  width: calc(100% + 34px);
  background-color: var(--power-color-1);
  clip-path: polygon(0% 0%, calc(100% - 25px) 0%, 100% 25px, 100% 100%, 0% 100%);
}

header .main-nav ul.nav-list li:nth-child(2) .list-dropdown {
  background-color: var(--power-color-2);
}
header .main-nav ul.nav-list li:nth-child(3) .list-dropdown {
  background-color: rgb(var(--power-color-3));
}
header .main-nav ul.nav-list li:nth-child(4) .list-dropdown {
  background-color: var(--power-color-4);
}
header .main-nav ul.nav-list li:nth-child(5) .list-dropdown {
  background-color: var(--power-color-5);
}
header .main-nav ul.nav-list li:nth-child(6) .list-dropdown {
  background-color: rgb(var(--power-color-6));
}

.main-nav ul.nav-list li:last-of-type .list-dropdown {
    right:0px;
}
header ul.nav-list li:hover .list-dropdown, header ul.nav-list li:focus-within .list-dropdown {
  opacity: 1;
  pointer-events: all;
  transition: opacity .2s .1s;
}

header ul.nav-list li .list-dropdown ul {
  padding: 60px 0 5px 0;
  list-style-type: none;
  position: relative;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  clip-path: polygon(3px 3px, calc(100% - 26px) 3px, calc(100% - 3px) 26px, calc(100% - 3px) calc(100% - 3px), 3px calc(100% - 3px));
}
header ul.nav-list li .list-dropdown ul li {
  margin: 0;
  opacity: 0;
  display: block;
  position: relative;
  z-index: 10;
  transition: opacity 0s;
}
header ul.nav-list li:hover .list-dropdown ul li, header ul.nav-list li:focus-within .list-dropdown ul li {
  opacity: 1;
  transition: opacity .3s .25s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(2), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(2) {
  transition: opacity .3s .3s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(3), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(3) {
  transition: opacity .3s .35s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(4), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(4) {
  transition: opacity .3s .4s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(5), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(5) {
  transition: opacity .3s .45s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(6), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(6) {
  transition: opacity .3s .5s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(7), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(7) {
  transition: opacity .3s .55s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(8), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(8) {
  transition: opacity .3s .6s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(9), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(9) {
  transition: opacity .3s .65s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(10), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(10) {
  transition: opacity .3s .70s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(11), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(11) {
  transition: opacity .3s .75s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(12), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(12) {
  transition: opacity .3s .8s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(13), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(13) {
  transition: opacity .3s .85s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(14), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(14) {
  transition: opacity .3s .9s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(15), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(15) {
  transition: opacity .3s .95s;
}
header ul.nav-list li:hover .list-dropdown ul li:nth-of-type(16), header ul.nav-list li:focus-within .list-dropdown ul li:nth-of-type(16) {
  transition: opacity .3s 1s;
}
header ul.nav-list li .list-dropdown ul li:before, header ul.nav-list li .list-dropdown ul li:after {
  display: none;
}
header ul.nav-list li .list-dropdown ul li a {
  width: 100%;
  padding: 6px 10px;
  box-sizing: border-box;
  font: var(--nav-text-font);
  font-size: 14px;
  line-height: 18px;
  text-transform: none;
  display: inline-block;
  word-break: break-word;
}
.main-nav ul.nav-list li.dropdown-included .list-dropdown ul li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--power-color-1);
  opacity: 0;
  z-index: -1;
}
.main-nav ul.nav-list li:nth-child(2) .list-dropdown ul li a:before {
  background-color: var(--power-color-2);
}
.main-nav ul.nav-list li:nth-child(3) .list-dropdown ul li a:before {
  background-color: rgb(var(--power-color-3));
}
.main-nav ul.nav-list li:nth-child(4) .list-dropdown ul li a:before {
  background-color: var(--power-color-4);
}
.main-nav ul.nav-list li:nth-child(5) .list-dropdown ul li a:before {
  background-color: var(--power-color-5);
}
.main-nav ul.nav-list li:nth-child(6) .list-dropdown ul li a:before {
  background-color: rgb(var(--power-color-6));
}
.main-nav ul.nav-list li:nth-child(7) .list-dropdown ul li a:before {
  background-color: rgb(var(--power-color-7));
}

.main-nav ul.nav-list li.dropdown-included .list-dropdown ul li a:hover:before {
  opacity: .5;
}


.utility-nav ul.nav-list li .list-dropdown {
  width: calc(100% + 32px);
  left: -8px;
  background-color: rgb(var(--power-color-7));
}
.utility-nav ul.nav-list li:last-of-type .list-dropdown {
  width: calc(100% + 52px);
}

.utility-nav ul.nav-list li .list-dropdown ul {
  padding: 40px 0 5px 0;
}
.utility-nav ul.nav-list li .list-dropdown ul:after {
  border: .5px solid rgb(var(--power-color-3));
  top: -1px;
}
.utility-nav ul.nav-list li .list-dropdown ul li a {
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  position: relative;
}
.utility-nav ul.nav-list li .list-dropdown ul li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(var(--power-color-7));
  opacity: 0;
  z-index: -1;
}
.utility-nav ul.nav-list li .list-dropdown ul li a:hover:before {
  opacity: .35;
}

.utility-nav {
  width: 100%;
  padding: 15px 50px 15px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1003;
}
.utility-nav ul.nav-notice {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: flex-start;
}
.utility-nav ul.nav-notice li {
  margin: 0 15px 0 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.utility-nav ul.nav-notice li.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.utility-nav ul.nav-notice li:last-of-type {
  margin: 0;
}
.utility-nav ul.nav-notice li:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 8px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: var(--power-color-2);
}
.utility-nav ul.nav-notice li a {
  text-decoration: none;
  display: flex;
  font: var(--small-header-font);
  min-width: 30px;
  min-height: 30px;
  justify-content: center;
  align-items: flex-start;
}
.utility-nav ul.nav-notice li a svg g, .utility-nav ul.nav-notice li a svg g path, header .header-wrapper .mobile-notices ul.nav-notice li a svg g {
  fill: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
}
.utility-nav ul.nav-notice li a.notice-icon {
  background-repeat: no-repeat;
  background-size: cover;
}

.utility-nav ul.nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  z-index: 102;
}
.utility-nav ul.nav-list li {
  margin: 0 0 0 25px;
  position: relative;
}
.utility-nav ul.nav-list li.dropdown-included {
  padding-right: 12px;
}
.utility-nav ul.nav-list li.dropdown-included:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 5px;
  right: 0;
  top: 5px;
  background-color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  clip-path: polygon(1px 0px, 4px 3px, 7px 0px, 8px 1px, 4px 5px, 0px 1px);
}
.utility-nav ul.nav-list li a {
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  text-decoration: none;
  opacity: 1;
  letter-spacing: 0px;
  font: var(--nav-text-font);
  font-weight: 300;
  text-transform: uppercase;
  z-index: 1;
}
.utility-nav ul.nav-list li .second-toggle {
  display: none;
  border: unset;
  background-color: transparent;
}
.utility-nav ul.social-links {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: none;
  display: flex;
  font-size: 20px;
}
.utility-nav ul.social-links li {
  margin: 0 15px 0 0;
}
.utility-nav ul.social-links li:last-of-type {
  margin: 0;
}
.utility-nav ul.social-links li a {
  opacity: 0.9;
  display: flex;
  transition: opacity .3s;
}
.utility-nav ul.social-links li a:hover, .utility-nav ul.social-links li a:focus {
  opacity: 1;
}

.top-search-input {
  margin: 0 0 0 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 101;
  flex: 1;
}
.top-search-input .onsite-search {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}

.top-search-input .onsite-search .onsite-search-label {
  width: 0px;
  height: 0px;
  text-indent: calc(-100vh + -9999px);
}
.top-search-input .onsite-search .onsite-search-options {
  padding: 0 3px 0 0;
  box-sizing: border-box;
  display: flex;
  position: absolute;
  right: 75px;
}
.top-search-input .onsite-search .onsite-search-options .option {
  display: flex;
  align-items: center;
  position: relative;
}
.top-search-input .onsite-search .onsite-search-options .option label {
  margin: 0;
  padding: 5px 12px;
  box-sizing: border-box;
  opacity: 0.5;
  letter-spacing: 0px;
  text-align: left;
  font: var(--nav-text-font);
  font-size: 10px;
  text-transform: uppercase;
  line-height: normal;
}
.top-search-input .onsite-search .onsite-search-options .option input[type="radio"] {
  width: 9px;
  height: 9px;
  margin: 0;
  position: absolute;
}
.top-search-input .onsite-search .onsite-search-input {
  max-width: 100%;
  min-width: 200px;
  height: 30px;
  padding: 4px 5px;
  margin: 0;
  box-sizing: border-box;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  border: .5px solid #979797;
  border-right: none;
  letter-spacing: 0.2px;
  font: var(--secondary-button-fonts);
  font-weight: 400;
}
.top-search-input .onsite-search .input-border {
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0% 100%);
}
.top-search-input .onsite-search .search-wrapper {
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  clip-path: polygon(0px 0px, calc(100% - 11px) 0px, 100% 11px, 100% 100%, 0px 100%);
}
.top-search-input .onsite-search .onsite-search-button {
  cursor: pointer;
  padding: 9px 13px 6px 13px;
  margin: 0;
  box-sizing: border-box;
  color: var(--light, var(--dark-paragraph)) var(--dark, var(--paragraph));
  text-decoration: none;
  opacity: 1;
  background-color: rgba(255, 255, 255, .2);
  text-align: center;
  font: var(--secondary-button-fonts);
  clip-path: polygon(2px 2px, calc(100% - 11px) 2px, calc(100% - 2px) 11px, calc(100% - 2px) calc(100% - 2px), 2px calc(100% - 2px));
  transition: background-color .25s;
}
.top-search-input .onsite-search .onsite-search-button:hover {
  background-color: transparent;
}
.search-results.search-area {
  position: absolute;
  display: none;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  border: .5px solid #979797;
  top: 29.5px;
  width: 100%;
  font: var(--paragraph-font);
  font-size: 16px;
  line-height: normal;
  margin: 0;
}
.search-results.search-area:has(.active) {
  display: initial;
}
.search-results.search-area .onsite-search-results-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 3px 10px;
  margin-bottom: 5px;
  background-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)), .2);
  font: var(--secondary-header-font);
}
.search-results.search-area .onsite-search-results-title a.full-result-link {
  position: relative;
  font: var(--small-header-font-variant);
  font-size: 12px;
  line-height: normal;
  color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  padding-right: 10px;
}
.search-results.search-area .onsite-search-results-title a.full-result-link:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 10px;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  position: absolute;
  right: 0px;
  top: 1px;
  clip-path: polygon(0px 1px, 1px 0px, 6px 5px, 1px 10px, 0px 9px, 4px 5px);
}

.top-search-input .onsite-search-results, .top-search-input .onsite-search-catalog-results {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5px 10px;
}
.top-search-input .onsite-search-catalog-results {
  gap: 7px;
}

.top-search-input .onsite-search-results .result-category .title, .top-search-input .onsite-search-catalog-results .title {
  border-bottom: 1px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  display: flex;
  gap: 4px;
  align-items: center;
  font: var(--small-header-font);
}
.top-search-input .onsite-search-catalog-results .title {
  margin-top: 5px;
}

.top-search-input .onsite-search-results .result-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-search-input .onsite-search-results .result-category .result {
  font: var(--paragraph-font);
  line-height: normal;
}
.top-search-input .onsite-search-results a, .search-results.search-area .onsite-search-catalog-results > a {
  text-decoration: none;  
  font: var(--small-header-font);
  font-size: 14px;
  line-height: normal;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.top-search-input .onsite-search-results a:hover, .search-results.search-area .onsite-search-catalog-results > a:hover {
  text-decoration: underline;
}

.top-search-input .onsite-search-results .full-search-results a {
  color: var(--links);
}
.top-search-input .onsite-search-results time, .top-search-input .onsite-search-results .meta-info {
  font-size: 13px;
  line-height: normal;
}
.top-search-input .onsite-search-results time {
  font-weight: 400;
  margin-right: 5px;
}

form {
  margin: 50px 0;
  max-width: 813px;
}
form h3 {
  margin-bottom: 0;
}
form hr {
  width: 100%;
  margin: 0;
  height: 30px;
  background-color: rgb(var(--power-color-6));
  clip-path: polygon(0px 0px, 11.25px 0px, 34px 22.75px, 34px 0px, 100% 0px, 100% 3px, 37px 3px, 37px 30px, 10px 3px, 0px 3px);
}
.register-form-two {
    margin-top: unset;
}
form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
form .field-row {
  display: flex;
  margin-top: 25px;
}
form .field-row:has(hr) {
  margin: 0;
}
form .field-row .field-container {
  flex: 1 1 0px;
  margin-right: 10px;
}
form .field-row .field-container > label, form .field-row .field-container label .txt, form .field-row .field-container legend, form .field-row .field-container label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font: var(--small-header-font);
}
form .field-row .field-container label:has(input[type="radio"]), form .field-row .field-container label:has(input[type="checkbox"]) {
  font: var(--paragraph-font);
}
form .field-row .field-container select {
  width: 100%;
  font: var(--paragraph-font);
  font-size: 16px;
  line-height: 20px;
  padding: 6px 10px 4px 10px;
}
form .field-row .field-container fieldset label {
  display: flex;
  flex-direction: row;
}
input, input[type="text"], input[type="email"], input[type="password"], textarea, select {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #979797;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--paragraph-font);
  font-size: 16px;
  line-height: 20px;
  display: block;
  color-scheme: var(--light, light) var(--dark, dark)
}
input[type="checkbox"] {
  width: initial;
}
input[type="radio"] {
  width: 13px;
}
form input[type="submit"], button.loader {
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  font: var(--secondary-button-fonts);
  color: var(--light, var(--dark-paragraph)) var(--dark, var(--paragraph));
  letter-spacing: 0.1px;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px 11px 20px;
  clip-path: polygon(0px 0px, calc(100% - 15px) 0px, 100% 15px, 100% 100%, 0px 100%);
  width: fit-content;
  border: unset;
}
form input[type="submit"]:before, button.loader:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  box-shadow: var(--light, inset 0px 0px 0px 30px rgba(var(--secondary-architecture), .8)) var(--dark, inset 0px 0px 0px 30px rgba(var(--dark-secondary-architecture), .8));
  clip-path: polygon(2px 2px, calc(100% - 16px) 2px, calc(100% - 2px) 16px, calc(100% - 2px) calc(100% - 2px), 2px calc(100% - 2px));
  z-index: -1;
  transition: opacity .25s;
}
.g-recaptcha {
  margin-bottom: 25px;
}

/*======================================================================================================
  BODY STYLES - desktop
======================================================================================================*/
body {
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
}
.main-content {
  width: calc(100% - 100px);
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  position: relative;
  max-width: 1180px;
  margin: auto;
}
.main-content.home {
  width: 100%;
  max-width: 1280px;
}
.main-content.secondary, .main-content.tertiary, .main-content.search-page {
  width: calc(100% - 100px);
  margin: auto;
  max-width: 1280px;
}
.main-content.secondary .page-content, .main-content.tertiary .page-content {
  flex-wrap: nowrap;
}
.main-content.secondary.spaces .page-content {
  left: unset;
  width: 100%;
}
.main-content.calendar {
  margin: auto;
  max-width: 1200px;
  width: calc(100% - 50px);
}
.main-content.calendar h1 {
  text-align: center;
}
.main-content.overlay-active {
  z-index: 35;
}

.home .h2-like {
  font-size: 23px;
  line-height: 23px;
  margin: 0;
}

.home hr {
  height: 30px;
  border-color: transparent;
  background-color: rgb(var(--power-color-6));
  clip-path: polygon(0px 0px, 11.25px 0px, 34px 22.75px, 34px 0px, 100% 0px, 100% 3px, 37px 3px, 37px 30px, 10px 3px, 0px 3px);
  margin: 8px 0 20px 0;
}
  
.page-content {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 0 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  position: relative;
  gap: 0 50px;
}
.main-content.home .page-content {
  flex-wrap: wrap;
  max-width: none;
  flex-direction: column;
}
.page-banner {
  width: 100%;
  margin: 0 auto -10px auto;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 50px), 250px calc(100% - 50px), 250px 100%, 200px calc(100% - 50px), 0% calc(100% - 50px));
}
.page-banner .banner-media {
  position: relative;
  width: 100%;
  min-height: 325px;
  background-size: cover;
  background-position: center;
  clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) 52px, calc(100% - 5px) calc(100% - 55px), 245px calc(100% - 55px), 245px calc(100% - 12px), 202px calc(100% - 55px), 5px calc(100% - 55px));
}
.main-content.tertiary .page-banner .banner-media {
  min-height: 205px;
}

.home-events {
  width: 100%;
  position: relative;
}
.home-events .home-event-content {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 0 50px 68px 50px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
}
.home-events .main-events {
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  flex: 1;
}
.home-events .main-events .swiper-slide .event-image {
  /*height: 475px;*/
  width: 100%;
  /*aspect-ratio: 16/10;*/
  /*height: auto;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) calc(0% + 52px), calc(100% - 5px) calc(100% - 55px), 70px calc(100% - 55px), 70px calc(100% - 12px), 27px calc(100% - 55px), 5px calc(100% - 55px));
}
.home-events .main-events .swiper-slide .event-image-border {
  position: absolute;
  width: calc(100% - 1px);
  aspect-ratio: 16/10;
  height: auto;
  top: 0;
  left: .5px;
  clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% calc(0% + 50px), 100% calc(100% - 50px), 75px calc(100% - 50px), 75px 100%, 25px calc(100% - 50px), 0% calc(100% - 50px));
  background-color: var(--light, rgb(var(--secondary-architecture))) var(--dark, rgb(var(--dark-secondary-architecture)));
  z-index: -1;
}

.home-events .main-events .events-swiper {
  max-width: 780px;
  width: calc(100vw - 500px);
}
.home-events .main-events .events-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transition: opacity .3s;
  overflow: hidden;
}
.home-events .main-events .events-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  pointer-events: all;
}
.home-events .main-events .events-swiper .swiper-slide .event-heading {
  width: calc(100% - 100px);
  margin: -20px 0 5px 100px;
  display: block;
  opacity: 1;
  font: var(--primary-header-font);
  text-transform: var(--primary-header-font-variant);
  letter-spacing: 0.3px;
  text-align: left;
  color: rgb(var(--light, var(--primary-header-color)) var(--dark, var(--dark-primary-header-color)));
}
.home-events .main-events .events-swiper .swiper-slide .event-info {
  margin: 0 0 0 100px;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 100px);
}
.home-events .main-events .events-swiper .swiper-slide .event-info .date:after, .home-events .main-events .events-swiper .swiper-slide .event-info .time:after {
  content: " | ";
}
.home-events .main-events .events-swiper .swiper-slide .event-info p {
  opacity: 1;
  margin: 0 0 15px 0;
  -webkit-font-smoothing: antialiased;
  font: var(--paragraph-font);
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  text-align: left;
}
.event-link-border {
  width: 313px;
  height: 42px;
  border-radius: 30px;
  background-color: var(--power-color-1);
}
.home-events .main-events .events-swiper .swiper-slide .events-button-pagination {
  display: flex;
  margin: 0 0 0 100px;
  width: calc(100% - 100px);
  justify-content: space-between;
  box-sizing: border-box;
}
.home-events .main-events .events-swiper .swiper-slide .event-link:hover {
  opacity: 1;
}
.home-events .main-events .events-swiper .swiper-pagination {
  position: absolute;
  bottom: 12px;
  left: unset;
  right: 0px;
  display: flex;
  align-items: center;
  width: auto;
  padding-right: 1px;
  margin-left: auto;
}
.home-events .main-events .events-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 15px 0 0;
  background-color: transparent;
  border: 2px solid var(--light, rgb(var(--secondary-architecture))) var(--dark, rgb(var(--dark-secondary-architecture)));
  opacity: 1;
  transition: background-color .3s;
  opacity: 0.7;
}
.home-events .main-events .events-swiper .swiper-pagination-bullet:last-of-type {
  margin: 0;
}
.home-events .main-events .events-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--light, rgb(var(--secondary-architecture))) var(--dark, rgb(var(--dark-secondary-architecture)));
  opacity: 100%;
}
.home-events .side-column {
  width: 350px;
  min-width: 350px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.todays-hours {
  margin-bottom: 50px;
}
.todays-hours .hours-list .branch-hours, .todays-hours .hours-list .branch-contact {
  display: none;
  margin-left: 50px;
}
.todays-hours .hours-list .branch-hours.active, .todays-hours .hours-list .branch-contact.active {
  display: revert;
}
.todays-hours .hours-list p {
  font-size: 16px;
}
.todays-hours .hours-list p span.title {
  font: var(--small-header-font);
  font-size: 16px;
  line-height: 18px;
  opacity: .65;
}
.todays-hours .hours-list p a {
 color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.todays-hours .hours-list p a:hover {
  text-decoration: underline;
}
.home-events .more-events {
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  flex: 1;
}
.upcoming-events {
  width: 100%;
  padding: 17px 29px 27px 29px;
  box-sizing: border-box;
  border: 1px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  border-top: 5px solid rgb(var(--power-color-6));
  background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
  margin-bottom: 30px;
}
.upcoming-events .heading {
  margin: 0 0 13px 0;
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
  display: block;
  font: var(--secondary-header-font);
}
.upcoming-events .event {
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
}
.upcoming-events .event:last-of-type {
  margin: 0;
}
.upcoming-events .event .event-date {
  min-width: 56px;
  padding: 2px 0;
  box-sizing: border-box;
  margin: 0 15px 0 0;
  border: 1px solid var(--power-color-1);
  border-top: 11px solid var(--power-color-1);
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  color: var(--power-color-1);
  letter-spacing: 0.1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: var(--small-header-font);
  font-weight: 300;
}
.upcoming-events .event .event-date .month {
  text-transform: uppercase;
  display: block;
}
.upcoming-events .event .event-date .date {
  display: block;
  font: var(--secondary-header-font);
}
.upcoming-events .event .event-title {
  margin: 0 0 3px 0;
  color: rgb(var(--power-color-3));
  text-decoration: none;
  opacity: 0.8;
  display: inline-block;
  transition: opacity .3s;
  font: var(--small-header-font);
}

.upcoming-events .event .event-title:hover {
  opacity: 1;
}
.upcoming-events .event .event-info {
  margin: 0 0 0 3px;
  font: var(--paragraph-font);
}
.upcoming-events .event .event-info .date:after {
  content: " | ";
}
.upcoming-events a.button-like {
  margin: 22px 0 0 0;
}


.title-tags .filters {
  display: flex;
  position: absolute;
  top: 35px;
  left: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.title-tags .filters li {
  margin: 0 15px 0 0;
  display: inline-block;
}
.title-tags .filters li:last-child {
  margin: 0;
}
.title-tags .filters li a {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--nav-text-font);
  font-size: 14px;
  font-weight: 300;
}
.title-tags .filters li.active a, .title-tags .filters li a:hover {
  border-bottom: 3px solid var(--power-color-2);
}
.title-tags .filters .mobile {
  display: none;
}

.more-events .events-list {
  margin: 0 0 0 50px;
  padding: 0;
  position: relative;
} 
.more-events .events-list .events-category {
  display: none;
}
.more-events .events-list .events-category:not(:first-child) {
  display: none;
}
.more-events .events-list .events-category.active {
  display: initial;
}
.more-events .events-list ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.more-events .events-list ul li .calendar-box {
  min-width: 50px;
  min-height: 50px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font: var(--nav-text-font);
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  position: relative;
}
.more-events .events-list ul li .calendar-box .month {
  font-size: 11px;
  line-height: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .65;
  padding-top: 4px;
}
.more-events .events-list  ul li .calendar-box .day {
  font-size: 20px;
  line-height: 21px;
  padding-top: 3px;
}
.more-events .events-list ul li .calendar-box .bg-color {
  width: 46px;
  height: 46px;
  border: 2px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: -1;
  opacity: .15;
}
.more-events .events-list ul li .event-info {
  margin-top: 1px;
}
.more-events .events-list ul li .h4-like {
  display: inline-block;
  margin: 0;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  opacity: .65;
  font: var(--small-header-font);
  font-weight: 500;
  line-height: 18px;
  text-transform: none;
}
.more-events .events-list ul li p {
  font-size: 14px;
  line-height: 17px;
  margin: 0;
}
.more-events .events-list ul li:hover .calendar-box .bg-color {
  opacity: .3;
}
.more-events .events-list ul li:hover .h4-like {
  opacity: 1;
}

.quicklinks-container {
  width: calc(100% - 150px);
  max-width: 1180px;
  margin: 0 75px 85px 75px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.quicklinks-container h2 {
  margin: 0 0 25px 0;
  display: none;
}
.quicklinks-container .quicklinks {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.quicklink {
  max-width: 120px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.quicklink-cropper {
  width: 73px;
  height: 53px;
  margin: 0 25px;
}
.quicklink-cropper:has( svg) {
  display: flex;
}
.quicklink-cropper svg {
  width: 100%;
  height: auto;
}
.quicklink img {
  max-width: 40px;
  padding: 11px 13px 15px 13px;
}
.quicklink .quicklink-cropper .quicklink-letter-title {
  text-align: center;
  font: var(--secondary-header-font);
  font-size: 50px;
  line-height: 63px;
  font-weight: 400;
}
.quicklinks-container .quicklinks .quicklink:last-of-type {
  margin: 0;
}
.quicklink .heading {
  margin: 11px 0 0 0;
  text-align: center;
  font: var(--small-header-font);
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.quicklinks .quicklink:hover .heading {
  text-decoration: underline;
}
.quicklink .Kids {
  color: rgb(var(--power-color-3));
  width: 37px;
  height: 66px;
}
.quicklinks-container .quicklinks .quicklink-separator {
  width: 1px;
  height: 100%;
  margin: 0 47px 0 0;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  opacity: 0.6;
  display: block;
}
.home .section {
  width: calc(100% - 50px);
  max-width: 1180px;
  margin: 0 auto 100px auto;
}

.home .section.two-col {
  margin: 0 50px 100px 50px;
  width: calc(100vw - 100px);
}

.section.fill.two-col {
  background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
  padding: 25px 50px 50px 75px;
  width: calc(100% - 225px);
  clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, 0% 100%);
  position: relative;
}
.section.fill.two-col:after {
  content: '';
  width: 34px;
  height: 77px;
  background-image: url('/content/_theme_images/bookmark.svg');
  position: absolute;
  top: 0;
  left: 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
.section.fill.two-col .filters {
  position: relative;
  top: unset;
  left: unset;
  margin-top: 20px;
}
.section.fill.two-col .column-two {
  margin-left: 0;
  width: 100%;
}
.section.fill.two-col .column-two .for-you-audience {
  display: none;
}
.section.fill.two-col .column-two .for-you-audience.active {
  display: flex;
  gap: 50px;
}
.section.fill.two-col .column-two .for-you-audience .column-item {
  max-width: calc(100% / 3);
}
.section.fill.two-col .column-two .for-you-audience .column-item:last-child {
  margin-right: 0;
}
.section.fill.two-col .column-two .for-you-audience .column-item p.title {
  font: var(--nav-text-font);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .5px;
}
.section.fill.two-col .column-two .for-you-audience .column-item .event-image {
  width: calc(100% - 4px);
  height: 150px;
  background-size: cover;
  background-position: center;
  outline: var(--light, 2px solid rgba(var(--secondary-architecture), 0.15)) var(--dark, 2px solid rgba(var(--dark-secondary-architecture), 0.15));
  margin: 2px 2px 14px 2px;
}
.section.fill.two-col .column-two .for-you-audience .column-item .event-image.placeholder {
  background-color: rgb(var(--power-color-6));
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.section.fill.two-col .column-two .for-you-audience .column-item p {
  margin: 5px 0 0 0;
}
.section.fill.two-col .column-two .for-you-audience .column-item .date-location {
  margin: 5px 0 0 0;
}
.section.fill.two-col .column-two .for-you-audience .column-item .date-location svg {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.section.fill.two-col .column-two .for-you-audience .column-item .date-location svg g {
  fill: rgb(var(--power-color-6));
}
.section.fill.two-col .column-two .for-you-audience .column-item .date-location:nth-of-type(2) svg path {
  fill: rgb(var(--power-color-6));
}
.section.fill.two-col .column-two .for-you-audience .column-item .short-description {
  margin: 5px 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section.fill.two-col .column-two .for-you-audience .column-item a.button-like {
  margin-top: 15px;
}
.section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists, .section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists .book {
  height: 150px;
}
.section.two-col.fill .column-two .for-you-audience .column-item .booklist .booklists .book .book-media .media-front {
  background-color: rgb(var(--power-color-6));
}

.section.fill.two-col .column-two .quicklinks-container {
  margin: 0;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-column .item-heading {
  font: var(--small-header-font);
  color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  display: block;
  margin-bottom: 10px;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-column ul li {
  margin-top: 10px;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-column ul li a {
  font: var(--paragraph-font);
  font-family: 'Epilogue';
  font-size: 16px;
  line-height: 17px;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  position: relative;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-column ul li a:hover {
  border-bottom: 2px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
}
.section.fill.two-col .column-two .quicklinks-list li a:after, .section.fill.two-col .column-two .quicklinks-container .quicklinks-column ul li a:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 10px;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  clip-path: polygon(0% 10%, 16.67% 0%, 100% 50%, 16.67% 100%, 0% 90%, 66.67% 50%);
  margin: 0px 2px 0 5px;
  transition: margin .3s, scale .3s;
  position: absolute;
  right: -14px;
  bottom: 4px;
}
.section.fill.two-col .column-two .quicklinks-list li a:hover:after, .section.fill.two-col .column-two .quicklinks-container .quicklinks-column ul li a:hover:after {
  margin: 10px 0 0 7px;
  scale: 1.15;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-image {
  width: 360px;
  height: 210px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.section.fill.two-col .column-two .quicklinks-container .quicklinks-image:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--power-color-2);
  opacity: .5;
  z-index: -1;
}
.section.fill.two-col .column-two .quicklinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.section.fill.two-col .column-two .quicklinks-list li a {
  font: var(--paragraph-font);
  font-size: 16px;
  line-height: 17px;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  position: relative;
}

.section.fill.two-col .column-two .quicklinks-list li a:hover {
  border-bottom: 2px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
}

.section.full-size {
  width: 100%;
}
.section.full, .section.full.yellow {
  width: 100%;
  max-width: 1440px;
  padding: 50px;
  box-sizing: border-box;
  background: url('/content/_theme_images/bg-pattern.svg');
  background-position: center;
  background-repeat: repeat;
  background-color: var(--power-color-1);
}
.section.full.yellow {
  margin-bottom: 102px;
}
.section.full.yellow .section-content {
  max-width: 813px;
}
.section.full h3 {
  text-align: left;
}
.section.full h5 {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  letter-spacing: 0.1px;
  margin: 0;
  padding: 12px 0 6px 0;
  font: var(--small-header-font);
}
.section.full h5.youtube-video-heading {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  padding: 7px 0;
}
.section.full p {
  text-align: left;
  opacity: 1;
  letter-spacing: 0.2px;
  font: var(--paragraph-font);
}
.section.full .section-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
}
.section.full .section-content.youtube-section {
  margin: auto 50px auto 75px;
  margin: auto;
  justify-content: center;
}
.youtube-channel, .about.section {
  display: flex;
  flex-direction: column;
}
.youtube-channel {
  width: 360px;
  padding: 0 25px 0 0;
}
.youtube-video {
  margin-top: 6px;
}
.additional-videos {
  padding: 2px 100px 0 0px;
  position: relative;
}
.additional-videos .button-like {
  position: absolute;
  top: 0;
  right: 100px;
  width: max-content;
}
.additional-videos .video-list {
  margin-top: 35px;
}
.video-list ul {
  list-style: none;
  padding-left: 5px;
  margin: 10px 0 0 0;
}
.additional-videos ul li {
  list-style-type: none;
  padding-top: 15px;
  width: 99px;
  height: 55px;
}
.about-section {
  width: 525px;
  padding: 0;
}
.about-section img {
  padding-right: 15px;
}
p.mission-statement, p.vision-statement {
    display: flex;
    flex-direction: column;
}
span.mission-heading, span.vision-heading {
  opacity: 1;
  letter-spacing: 0.1px;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  padding: 4px 0 10px 0;
  font: var(--small-header-font);
}
.mission-section, .vision-section {
  display: flex;
}
.mission-section {
  padding: 13px 0 15px 0;
}
.about-title {
  display: flex;
  justify-content: space-between;
}
.section.full .section-content h3 {
  color: var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color));
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font: var(--secondary-header-font);
}
.section.full .section-content p {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.section .column-one {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.section .column-one a.button-like, .more-events a.button-like {
  position: absolute;
  top: 7px;
  right: 0;
  background-color: unset;
  clip-path: unset;
  padding: 0 10px 0 0;
  color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  text-transform: var(--small-header-font-variant);
  font-size: 12px;
}
.more-events a.button-like {
  position: relative;
  bottom: unset;
  left: unset;
  margin-left: 50px;
  top: -5px;
}
.section .column-one a.button-like:before, .more-events a.button-like:before {
  width: 6px;
  height: 10px;
  top: 1px;
  left: unset;
  right: 0;
  clip-path: polygon(0px 1px, 1px 0px, 6px 5px, 1px 10px, 0px 9px, 4px 5px);
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  opacity: 1;
  z-index: 0;
  transition: right .3s, scale .3s;
}
.section .column-one a.button-like:hover:before, .more-events a.button-like:hover:before {
  right: -2px;
  scale: 1.15;
}

.section .column-item.booklists-options {
  margin: 0 0 20px 0;
  padding: 15px 16px 15px 19px;
  box-sizing: border-box;
  background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
  display: flex;
  flex-direction: column;
}
.section ul.filters {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  position: absolute;
  top: 37px;
  left: 50px;
  width: calc(100% - 50px);
  overflow-x: scroll;
}
.section ul.filters::-webkit-scrollbar {
  display: none;
}
.section ul.filters.tablet {
  display: none;
}
.section ul.filters li:last-of-type {
  margin: 0;
}
.body .section ul.filters li:before, .body .section .column-two .column-item ul.quicklinks li:before {
  display: none;
}
.section ul.filters li {
  margin-right: 15px;
}
.section ul.filters li a {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--nav-text-font);
  font-size: 14px;
  font-weight: 300;
}
.section ul.filters li.active a {
  border-bottom: 3px solid var(--power-color-2);
}
#booklists_filters li a:hover, .section#for_you_section ul.filters li a {
  border-color: rgb(var(--power-color-6));
}
.section#blog_section ul.filters li a {
  border-color: var(--power-color-1);
}
#booklists_filters li a:hover, .section#booklists_section ul.filters li a {
  border-color: rgb(var(--power-color-3));
}

.column-one .filters li a:active, .column-one .filters li a:hover {
  border-bottom: 3px solid var(--power-color-2);
}

/* NEW NEW NEW - put new swiper setup css here */
.section .column-two .column-section {
  width: 100%;
  display: flex;
  gap: 20px;
  position: absolute;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  display: none;
}

#explore_spaces_section .h2-like {
  padding-bottom: 10px;
}
#explore_spaces_section .column-two {
  padding-top: 15px;
  overflow: hidden;
}

.section ul.filters li.active a {
  pointer-events: none;
}
.section.podcast ul.filters.tablet li a {
  border: 0.5px solid #979797;
}
.section.podcast ul.filters.tablet li.active a, .section.podcast ul.filters.tablet li:hover a {
  border: 0.5px solid transparent;
}
.home .section .column-two {
  box-sizing: border-box;
  position: relative;
  margin: 20px 0 0 37px;
}
.home .section#new_section .column-one hr {
  margin-bottom: 0;
}
.home .section#new_section .column-two {
  margin-left: 37px;
  width: calc(100% - 37px);
}
.section .column-two.no-border {
  padding: 0;
  border: none;
}

.section .column-two .booklists-slider {
  height: 290px;
}
.booklists-slider .swiper-wrapper .swiper-slide {
  width: calc(33% - 10px);
}
.section .column-two #new_swiper.column-section.active {
  overflow: hidden;
}
.section .column-two #new_swiper.column-section.active .swiper-slide {
  max-width: 150px;
}
.section .column-two .column-section .column-item, .section .column-two .column-section {
  transition: opacity .3s;
}
.section .column-two .column-section .column-item:nth-of-type(2) {
  transition-delay: .2s;
}
.section .column-two .column-section .column-item:nth-of-type(3) {
  transition-delay: .4s;
}
.section .column-two .column-section .column-item:nth-of-type(4) {
  transition-delay: .6s;
}
.section .column-two .column-section .column-item:nth-of-type(5) {
  transition-delay: .8s;
}
.section .column-two .column-section .column-item:nth-of-type(6) {
  transition-delay: 1s;
}
.section .column-two .column-section .column-item:nth-of-type(7) {
  transition-delay: 1.2s;
}
.section .column-two .column-section .column-item:nth-of-type(8) {
  transition-delay: 1.4s;
}
.section .column-two .column-section .column-item:nth-of-type(9) {
  transition-delay: 1.6s;
}
.section .column-two .column-section .column-item:nth-of-type(10) {
  transition-delay: 1.8s;
}
.section .column-two .column-section .column-item:nth-of-type(11) {
  transition-delay: 2s;
}
.section .column-two .column-section .column-item:nth-of-type(12) {
  transition-delay: 2.2s;
}
.section .column-two .column-section .column-item:nth-of-type(13) {
  transition-delay: 2.4s;
}
.section .column-two .column-section .column-item:nth-of-type(14) {
  transition-delay: 2.6s;
}
.section .column-two .column-section .column-item:nth-of-type(15) {
  transition-delay: 2.8s;
}
.section .column-two .column-section .column-item:nth-of-type(16) {
  transition-delay: 3s;
}
.section .column-two .column-section .column-item:nth-of-type(17) {
  transition-delay: 3.2s;
}
.section .column-two .column-section .column-item:nth-of-type(18) {
  transition-delay: 3.4s;
}
.section .column-two .column-section .column-item:nth-of-type(19) {
  transition-delay: 3.6s;
}
.section .column-two .column-section .column-item:nth-of-type(20) {
  transition-delay: 3.8s;
}

.section .column-two .column-section.active, .section .column-two.booklists .column-section {
  position: relative;
  opacity: 1;
  width: fit-content;
  flex: 1;
  width: 100%;
  height: 100%;
  pointer-events: all;
  display: flex;
}
.section .column-two .column-section .column-item.intro {
  flex: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.section .column-two .column-section .column-item.intro .item-title {
  font: var(--primary-header-font);
  font-size: 26px;
  line-height: 31px;
  text-transform: none;
  display: block;
  margin: 0 0 5px 0;
}
.section .column-two .column-item, .section .column-two .swiper {
  width: 100%;
  height: 100%;
}
.section .column-two .swiper-slide:has( .hide) {
  display: none;
}
.section .column-two .column-item:last-of-type {
  margin: 0;
}
.section .column-two .column-item.event {
  max-width: 300px;
}
.section .column-two .column-item.quicklink {
  max-width: 230px;
}
.section .column-two .column-item .item-heading {
  width: 200px;
  margin: 0 0 5px 0;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  letter-spacing: 0.1px;
  display: block;
  font: var(--small-header-font);
}
.section .column-two .column-item .item-media {
  width: calc(100% - 4px);
  height: 150px;
  margin: 2px 2px 10px 2px;
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  display: block;
  outline: var(--light, 2px solid rgba(var(--secondary-architecture), 0.15)) var(--dark, 2px solid rgba(var(--dark-secondary-architecture), 0.15));
  transition: outline .25s;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}
.section .column-two .column-item .item-media.placeholder {
  display: flex;
}
.section .column-two .column-item .item-media.placeholder svg {
  margin: auto;
}
.section .column-two .column-item .item-media.placeholder svg g path {
  fill: var(--power-color-2);
}
.section .column-two .column-item .item-info {
  margin: 0 0 5px 0;
  display: flex;
  flex-wrap: wrap;
  font: var(--paragraph-font);
}
.section .column-two .column-item .item-info .date:before {
  content: "";
  width: 15px;
  height: 14px;
  margin: 0 5px 0 0;
  background-image: url('/content/_theme_images/icon_calendar.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  top: 2px;
}
.section .column-two .column-item .item-info .date:after {
  content: "|";
  margin: 0 4px;
  display: inline-block;
}
.section .column-two .column-item .item-info .location:before {
  content: "";
  width: 11px;
  height: 15px;
  margin: 0 5px;
  background-image: url('/content/_theme_images/icon_location_pin.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  top: 2px;
}
.section.fill .column-item .booklist .booklists, .section .column-two .column-section .booklists {
  margin: 0 0 12px 0;
  box-sizing: content-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  max-width: 350px;
  height: 310px;
  gap: 10px;
}
.section.fill .column-two .column-item .booklist .booklists .book, .section .column-two .column-section .booklists .book {
  width: calc(33% - 6px);
  height: calc(50% - 5px);
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.section .column-two .column-item ul.quicklinks li {
  margin: 0 0 12px 0;
}
.section .column-two .column-item ul.quicklinks li:last-of-type {
  margin: 0;
}
.section .column-two .column-item ul.quicklinks li a:hover {
  opacity: 1;
}
.section .column-two .column-item ul.quicklinks li a:after {
  content: "";
  background-image: url('/content/_theme_images/icon_event_arrow.svg');
  width: 12px;
  height: 10px;
  margin: 0 0 0 5px;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
}
.section .column-two .column-item.blog.slim {
  max-width: 319px;
}
.section .column-two .column-item.blog .blog-media {
  width: 100%;
  height: 175px;
  margin: 2px 2px 14px 2px;
  background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  position: relative;
  outline: var(--light, 2px solid rgba(var(--secondary-architecture), 0.15)) var(--dark, 2px solid rgba(var(--dark-secondary-architecture), 0.15));
}
.section .column-two .column-item.blog .blog-media.placeholder {
  background-color: rgb(var(--power-color-3));
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.section .column-two .column-item.blog.slim .blog-media {
  height: 170px;
}


.section .column-two .column-item.blog.slim .blog-body {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-info {
  padding: 0 0 6px 0;
  word-spacing: -1px;
  font: var(--paragraph-font);
  font-size: 14px;
  line-height: 17px;
}
.blog-info .author {
  opacity: 1;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.section .section-content .content-columns {
  width: 100%;
  max-width: 813px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section .section-content .content-columns .column {
  width: 100%;
  border-radius: 7px;
}
.section .section-content .content-columns .column.list {
  max-width: 300px;
  padding: 27px 34px 39px 39px;
  box-sizing: border-box;
  display: flex;
}
.section .section-content .content-columns .column .podcast-list {
  width: auto;
  max-width: none;
  margin: 0 70px 0 0;
  padding: 4px 0 0 0;
  box-sizing: border-box;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section .section-content .content-columns .column .podcast-list ul li {
  list-style-type: none;
}
.section .section-content .content-columns .column .podcast-list:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #C7C7C7;
  position: absolute;
  top: 0;
  right: -38px;
}
.section .section-content .content-columns .column .podcast-list h4 {
  margin: 0;
}
.section .section-content .content-columns .column .podcast-sections {
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  position: relative;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section .item {
  margin: 0 0 18px 0;
  opacity: 0;
  display: flex;
  transition: opacity .3s;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section.active .item {
  opacity: 1;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section.active .item:nth-of-type(2) {
  transition: opacity .3s .2s;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section.active .item:nth-of-type(3) {
  transition: opacity .3s .5s;
}
.section .section-content .content-columns .column .podcast-sections .podcast-section.active .item:nth-of-type(4) {
  transition: opacity .3s .8s;
}
.section .section-content .content-columns .column .podcast-sections .item .item-content {
  margin: 0 0 0 11px;
}
.section .section-content .content-columns .column .podcast-sections .item .item-content .item-title {
  opacity: 0.8;
  color: #4C4C4C;
  font: var(--small-header-font);
  text-decoration: none;
  transition: opacity .3s;
}
.section .section-content .content-columns .column .podcast-sections .item .item-content .right-chevron-svg {
  display: inline-block;
}
.section .section-content .content-columns .column .podcast-sections .item .item-content .item-title:hover {
  opacity: 1;
}
.section .section-content .content-columns .column .podcast-sections .item .item-content .item-info {
  padding: 0 0 0 2px;
  box-sizing: border-box;
  display: flex;
  font: var(--paragraph-font);
  font-size: 12px;
  line-height: 20px;
}
.section .section-content .content-columns .column .podcast-sections .item .item-content .item-info .date:after {
  content: "|";
  margin: 0 5px;
  display: inline-block;
}
.section .section-content .content-columns .column.placeholder {
  width: 100%;
  max-width: 360px;
  display: flex;
}
.section .section-content .content-columns .column.form {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section .section-content .content-columns .column.form input[type="text"],
.section .section-content .content-columns .column.form input[type="password"],
.section .section-content .content-columns .column.form input[type="email"] {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 6px 5px;
  box-sizing: border-box;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
}
.section .section-content .content-columns .column.newsletter {
  max-width: 503px;
  padding: 12px 14px;
  box-sizing: border-box;
  background-color: #F8F4EC;
  border: 1px solid #D0CCC4;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
}
.section .section-content .content-columns .column.newsletter .newletter-media {
  width: 131px;
  height: 159px;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.section .section-content .content-columns .column.newsletter.media-included .newletter-content {
  width: calc(100% - 146px);
}
.section .section-content .content-columns .column.newsletter .newletter-content .heading {
  font: var(--small-header-font);
}
.section .section-content .content-columns .column.newsletter .newletter-content p {
  text-align: initial;
}
.section .column-two .column-item.form {
  max-width: 392px;
  margin: 0 0 33px 0;
  padding: 0 29px;
  box-sizing: border-box;
  background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
  border: 1px solid #BFBFBF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.section .column-two .column-item.form:before {
  content: "";
  width: calc(100% + 2px);
  height: 5px;
  background-color: #010852;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
}
.section .column-two .column-item.form .item-heading {
  margin: 0 0 10px 0;
  font: var(--small-header-font);
}
.section .column-two .column-item.form input[type="text"],
.section .column-two .column-item.form input[type="password"],
.section .column-two .column-item.form input[type="email"] {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 4px 9px;
  box-sizing: border-box;
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  font: var(--paragraph-font);
}
.section .column-two .column-item.reserve {
  max-width: 207px;
}
.section .column-two .column-item.reserve .reserve-media {
  width: 200px;
  height: 100px;
  margin: 0 0 5px 0;
  padding: 9px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.section .column-two .column-item.reserve .reserve-media .content {
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background-color: #EFEFEF;
  border: 1px solid #CFCFCF;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 8px;
  transition: opacity .3s;
}
.section .column-two .column-item.reserve .reserve-media:hover .content {
  opacity: 1;
  pointer-events: all;
}
.section .column-two .column-item.reserve .reserve-media .content .stat {
  margin: 0 14px 0 0;
  font: var(--small-header-font);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .column-two .column-item.reserve .reserve-media .content .stat:last-of-type {
  margin: 0;
}
.section .column-two .column-item.reserve .heading {
  margin: 0 0 4px 0;
  color: rgb(var(--power-color-3));
  letter-spacing: 0.1px;
  font: var(--small-header-font);
}
.section .column-two .column-item.reserve p {
  max-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section .column-two .column-item.reserve a.read-more:after {
  content: "";
  background-image: url('/content/_theme_images/event_view_more_arrow_down.svg');
  width: 6px;
  height: 9px;
  margin: 0 0 0 5px;
  display: inline-block;
}
.section .column-two .column-item.reserve a.read-more:hover {
  opacity: 1;
}

.section .column-two .column-item.booklist {
  width: calc((100% - 50px) / 3);
  min-width: 190px;
  padding: 10px;
  box-sizing: border-box;
  border: var(--light, 2px solid rgba(var(--secondary-architecture), .15)) var(--dark, 2px solid rgba(var(--dark-secondary-architecture), .15));
}
.section .column-two .column-item.booklist:nth-of-type(3n + 1) {
  margin-right: 0;
}

.section .column-two .column-item.booklist .item-booklist {
  width: 100%;
  aspect-ratio: 3/4;
  height: auto;
  display: block;
  position: relative;
}
.section .column-two .column-item.booklist .item-booklist a:after {
  display: none;
}
.section .column-two .column-item.booklist .item-booklist .book-media {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transform: scaleX(1);
  transform-origin: 50% 50%;
  transition: opacity .3s, transform .3s;
  background-color: var(--power-color-1);
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
}
.section .column-two .column-item.booklist .item-booklist .media {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 50% 50%;
  transition: opacity .3s, transform .3s;
}
.section .column-two .column-item.booklist .item-booklist .media.placeholder {
  background-color: rgb(var(--power-color-3));
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.section .column-two .column-item.booklist .item-booklist.flippable:hover .book-media {
  opacity: 0;
  transform: scaleX(-1);
}
.section .column-two .column-item.booklist .item-booklist .content {
  width: 100%;
  height: 100%;
  padding: 9px 8px;
  box-sizing: border-box;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  border: 0.5px solid #888888;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: scaleX(-1);
  transform-origin: 50% 50%;
  transition: transform .3s, opacity .3s;
}
.section .column-two .column-item.booklist .item-booklist.flippable:hover .content {
  opacity: 1;
  transform: scaleX(1);
  pointer-events: all;
  transition: transform .3s, opacity .3s .15s;
}
.section .column-two .column-item.booklist .item-booklist .content p {
  font: var(--secondary-button-fonts);
  font-weight: 300;
}
.section .column-two .column-item.booklist .item-booklist .content .item-body {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font: var(--paragraph-font);
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.section .column-two .column-item.booklist .title {
  margin: 5px 0 5px 0;
  font: var(--small-header-font);
  font-weight: 300;
}
.section .column-two .column-item.booklist .author {
  margin: 0;
  font: var(--small-header-font);
  font-size: 13px;
  line-height: 15px;
}

/*copied from home_booklists*/
.section.fill .column-two .column-item .booklist .booklists .book, .section .column-two .column-section .booklists .book {
  background-color: transparent;
  position: relative;
  transition: transform .3s;
}
.section.fill .booklist .booklists .book:hover .book-media {
  opacity: 0;
  transform: scaleX(-1);
}
.section .column-two .column-item .booklists .book .book-link {
  z-index: 15;
}
.section.fill .column-item .booklist .booklists .book .book-media .media-front, .section .column-two .column-section .booklists .book .book-media .media-front {
  background-size: cover;
  background-position: center;
  background-color: rgb(var(--power-color-3));
  transition: opacity .3s .15s, transform .3s;
}
.section.fill .column-item .booklist .booklists .book .book-media .media-front.placeholder, .section .column-two .column-item .booklists .book .book-media .media-front.placeholder {
  background-image: url('/content/_theme_images/logo_wht.svg');
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
}
.section.fill .column-item .booklist .booklists .book .book-media .media-back, .section .column-two .column-section .booklists .book .book-media .media-back {
  background-color: #EFEFEF;
  border: 1px solid #CFCFCF;
  opacity: 0;
  transition: opacity .3s .15s, transform .3s;
}

.section.fill .column-item .booklist .booklists .book .book-content .content-title, .section .column-two .column-section .booklists .book .book-content .content-title {
  margin: 0 0 3px 0;
  display: block;
  text-align: center;
  font: var(--small-header-font);
  font-size:14px;
  line-height: 15px;
  font-weight: 600;
}
.section .column-two .booklists .book .book-content .content-author {
  margin: 0 0 4px 0;
  display: block;
  text-align: center;
  font: var(--secondary-button-fonts);
  line-height: 14px;
}
.section .column-two .column-section .booklists .book .book-content .content-body {
  font-size: 11px;
  line-height: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section .column-two .column-item .booklists .book .book-content .content-body p {
  margin: 0;
  font-size: 10px;
  line-height: 12px;
}
.section .column-two .column-item .booklists .book .book-content .content-link {
  margin: 8px 0 0 0;
  color: var(--links);
  font-size: 10px;
  line-height: 12px;
  display: block;
}

.section.fill .column-item .booklist .booklists .book:hover .book-media .media-front, .section .column-two .column-section .booklists .book:hover .book-media .media-front {
  opacity: 0;
  transform: scaleX(-1);
}
.section.fill .column-item .booklist .booklists .book:hover .book-media .media-back, .section .column-two .column-section .booklists .book:hover .book-media .media-back {
  opacity: 1;
  transform: scaleX(-1);
}
.column-two .swiper-slide .book:hover .book-content, .section.fill .column-item .booklist .booklists .book:hover .book-content, .section .column-two .column-section .booklists .book:hover .book-content {
  opacity: 1;
  transform: scaleX(1);
  pointer-events: all;
  transition: transform .3s, opacity .3s .15s;
  text-align: center;
  width: calc(100% + 20px);
  left: -10px;
}

.staff .column-two h2 {
  margin: 50px 0 36px 0;
  position: relative;
}
.staff .column-two h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: rgb(var(--power-color-6));
  left: 0;
  bottom: -38px;
  clip-path: polygon(0px 0px, 11.25px 0px, 34px 22.75px, 34px 0px, 100% 0px, 100% 3px, 37px 3px, 37px 30px, 10px 3px, 0px 3px);
}
.staff .section .column-two .column-item.staff {
  margin: 0;
  width: calc((100% - 110px) / 3);
}
.main-content.staff .column-two .column-item.staff p.item-title {
  font: var(--small-header-font);
  font-size: 18px;
  line-height: 18px;
  text-transform: none;
}

.section .column-two .column-item.staff {
  width: calc((100% - 100px) / 3);
  margin: 0 50px 25px 0;
  box-sizing: border-box;
  flex-direction: column;
}
.section .column-two .column-item.staff:nth-of-type(3n) {
  margin-right: 0;
}
.staff-individual .left-sidebar {
  width: 100%;
}
.staff-individual .left-sidebar .return-to {
  margin-bottom: 25px;
}
/* .body edits */
.body .section .column-two {
  max-width: 640px;
}
.body .section .column-two.no-border {
  max-width: none;
}
.body .section .column-two .column-section {
  flex-wrap: wrap;
  gap: 25px;
}
.staff .body .section .column-two .column-section {
  margin-left: 60px;
  width: calc(100% - 60px);
}
.body .section .column-two .column-item.event {
  max-width: 285px;
  margin: 0 23px 20px 0;
}
.body .section .column-two .column-item .item-media {
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  background-size: calc(100% - 18px) calc(100% - 18px);
  background-position: 9px 9px;
}
.body .section .column-two .column-item.staff .item-media {
  border: none;
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  margin-bottom: 0;
}
.body .section .column-two .column-item.staff .item-media:hover, .body .section .column-two .column-item.staff:has(a:hover) .item-media {
  outline-color: var(--light, rgba(var(--secondary-architecture), 0.15)) var(--dark, rgba(var(--dark-secondary-architecture), 0.15));
  outline-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)), .3);
}
.body .section .column-two .column-item.staff a:hover p, .body .section .column-two .column-item.staff:has(.item-media:hover) a p {
  text-decoration: underline;
}

.body .section .column-two .column-item.staff .item-media.placeholder {
  background-color: #6CB7D1;
  background-color: var(--power-color-1);
  background-image: url('/content/_theme_images/logo_wht.svg');
  background-size: 40%;
  background-position: center;
}
.body .section .column-two .column-item.staff p {
  font: var(--small-header-font);
  font-size: 13px;
  line-height: 15px;
  font-weight: 300;
  letter-spacing: .5px;
  margin-top: 10px;
  word-break: break-word;
}
.body .section .column-two .column-item.staff p.item-description {
  margin: 0;
  text-transform: var(--small-header-font-variant);
}
.body .section .column-two .column-item.staff a {
  text-decoration: none;
}

.eresources-section {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
.eresources-section .eresources-audiences {
  background-color: var(--light, rgba(var(--secondary-architecture), .05)) var(--dark, rgba(var(--dark-secondary-architecture), .05));
  border: 1px solid var(--light, rgb(var(--power-color-3))) var(--dark, rgb(var(--dark-secondary-architecture)));
  border-bottom: none;
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.eresources-section .eresources-audiences .form {
  width: calc(100% - 160px);
}
.eresources-section .eresources-audiences .form form {
  margin: 0;
  display: flex;
}
.eresources-section .eresources-audiences .form input {
  background-color: transparent;
  border: none;
  padding: 0 0 1px 0;
}
.eresources-section .eresources-audiences .form input:focus-visible {
  outline: none;
  padding: 0;
  border-bottom: 1px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
}
.eresources-section .eresources-audiences .form button.submit {
  background-color: transparent;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  transition: background-color .3s;
}
.eresources-section .eresources-audiences .form button.submit:hover {
  background-color: #DDDDDD;
}
.eresources-section .eresources-audiences .form button svg g {
  fill: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.eresources-section .eresources-audiences li {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 19px;
}
.eresources-section .eresources-audiences li:before, .eresources-section .eresources-audiences li:after {
  display: none;
}
.main-content.booklists .section li.tag label, .main-content.eresources .eresources-section li.tag label, .main-content.booklists .relevant-tags .tag {
  font-size: 13px;
  line-height: 15px;
  padding: 4px 10px;
  margin: 0;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  border: 1px solid rgb(var(--power-color-3));
  border-radius: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.main-content.booklists .column-item .relevant-tags .tag {
  cursor: default;
}
.main-content.booklists .section li.tag label:hover, .main-content.eresources .eresources-section li.tag label:hover {
  box-shadow: inset 0px 0px 0px 15px rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)),.05);
  box-shadow: inset 0px 0px 0px 15px var(--light, rgba(var(--secondary-architecture), .05)) var(--dark, rgba(var(--dark-secondary-architecture), .1));
}

.main-content.booklists .section li.tag label .tag-dot, .main-content.eresources .eresources-section li.tag label .tag-dot, .main-content.booklists .relevant-tags .tag .tag-dot {
  margin-left: 5px;
}

.eresources-section .eresources-audiences li.tag input {
  margin: 0 5px 0 0;
}
.tag-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 5px;
  background-color: gray;
}
.eresources-section .eresource-types {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  margin: 0;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-1));
  border: 1px solid var(--light, rgb(var(--power-color-3))) var(--dark, rgb(var(--dark-secondary-architecture)));
  max-height: 150px;
  overflow: scroll;
}
.eresources-section .eresource-types:has(.scroll-down.show) {
  padding: 20px 53px 20px 20px;
}
.filters .scroll-down, .eresources-section .eresource-types li.scroll-down {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 20px;
  border-radius: 20px;
  background-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)), .06);
  border: 2px solid rgb(var(--power-color-3));
  z-index: 10;
  display: none;
  cursor: pointer;
}
.eresources-section .eresource-types li.scroll-down a:hover {
  border: none;
}
.eresources-section .eresource-types li.scroll-down a {
  display: block;
  width: 100%;
  height: 100%;
}
.filters .scroll-down.show, .eresource-types .scroll-down.show {
  display: initial;
}
.filters .scroll-down .down-arrow, .eresource-types .scroll-down .down-arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.filters .scroll-down .down-arrow, .eresource-types .scroll-down .down-arrow g {
  stroke: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)))
}


.eresources-section .eresource-types li {
  position: relative;
  padding: 0;
  margin: 0;
  display: none;
}
.eresources-section .eresource-types li:before {
  display: none;
}
.eresources-section .eresource-types li.show {
  display: initial;
}
.eresources-section .eresource-types li a {
  background-color: transparent;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--nav-text-font);
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  letter-spacing: .1px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.eresources .eresources-section .eresource-types li a {
  padding-left: 0;
}
.page-content .body .booklists .column-two {
  margin-left: 0;
  margin-top: 25px;
  width: unset;
}
.eresources-section .eresource-types li a svg {
  position: absolute;
  left: 0;
  top: 0;
}
.eresources-section .eresource-types li a:hover, 
.eresources-section .eresource-types li.active a {
  border-bottom: 3px solid rgb(var(--power-color-6));
}
.eresources-section .eresource-types li a:after {
  display: none;
}
.eresources-section .eresource-types li.active a {
  pointer-events: none;
}
.eresources-section .letters-list {
  width: 100%;
  margin: 25px 0 20px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.eresources-section .letters-list:after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 30px;
  background-color: rgb(var(--power-color-6));
  left: 0;
  bottom: -35px;
  clip-path: polygon(0px 0px, 11.25px 0px, 34px 22.75px, 34px 0px, 100% 0px, 100% 3px, 37px 3px, 37px 30px, 10px 3px, 0px 3px);
}
.eresources-section .letters-list li {
  margin: 0;
  padding: 0;
}
.eresources-section .letters-list li:last-of-type {
  margin: 0;
}
.eresources-section .letters-list li:before {
  display: none;
}
.eresources-section .letters-list li a {
  opacity: 0.3;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  pointer-events: none;
  cursor: pointer;
  text-decoration: none;
}
.eresources-section .letters-list li.active a {
  opacity: 1;
  pointer-events: all;
}
.eresources-section .letters-list li a:hover,
.eresources-section .letters-list li.toggled a {
  color: rgb(var(--power-color-3));
}
.eresources-section .letters-list li a:after {
  display: none;
}
.main-content.eresources .eresources-section .eresource-entities {
  width: calc(100% - 64px);
  margin-left: 64px;
}
.eresources-section .eresource-entities .eresource {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  border-bottom: var(--light, 2px solid rgba(var(--secondary-architecture),.25)) var(--dark, 2px solid rgba(var(--dark-secondary-architecture),.25));
  display: flex;
  align-items: flex-start;
}
.eresources-section .eresource-entities .eresource.hidden {
  display: none;
}
.eresources-section .eresource-entities .eresource .eresource-media, .eresources-section .eresource-entities .eresource .placeholder-book {
  width: 200px;
  height: auto;
  margin: 0 25px 0 0;
  display: flex;
}
.eresources-section .eresource-entities .eresource .placeholder-book {
  aspect-ratio: 2/1;
}
.eresources-section .eresource-entities .eresource .placeholder-book svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.eresources-section .eresource-entities .eresource .placeholder-book svg path {
  fill: rgb(var(--power-color-6));
}
.eresources-section .eresource-entities .eresource .eresource-text {
  flex: 1;
}
.eresources-section .eresource-entities .eresource .eresource-text .tags {
  display: flex;
  gap: 5px;
  margin: 0 0 5px 0;
}
.eresources-section .eresource-entities .eresource .eresource-media.placeholder {
  width: 200px;
  display: block;
}
.eresources-section .eresource-entities .eresource .eresource-name {
  margin: 0 0 10px 0;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  font: var(--small-header-font);
  font-size: 19px;
  line-height: 24px;
  text-decoration: none;
}
.eresources-section .eresource-entities .eresource .eresource-name:hover {
  text-decoration: underline;
}
.eresources-section .eresource-entities .eresource .eresource-name .tags .tag-dot:not(:first-of-type) {
  margin-left: 5px;
}
.body .eresources-section a[href*="//"]:not(.skip-offsite):not([href*="cedarburg.digitalbranch.org/"]):after {
  background-image: url('/content/_theme_images/offsite-link-dark.svg');
}
.eresources-section .eresource-entities .eresource .eresource-description {
  margin: 0;
  font: var(--paragraph-font);
}
.main-content.booklists .section .relevant-tags {
  display: flex;
  gap: 10px;
}
.main-content.booklists li.tag:before {
  display: none;
}

.book-sliders {
  width: 100%;
  max-width: 871px;
  height: 137px;
  display: block;
  position: relative;
  overflow: hidden;
}
.swiper.books-slider {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: absolute;
  transition: top 0s;
}
.swiper.eresources-slider {
  height: fit-content;
}
.eresources-slider .swiper-wrapper .swiper-slide {
  width: calc(25% - 10px);
}
.eresources-slider .swiper-wrapper .swiper-slide .column-item.eresource:after {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
.eresources-slider .swiper-wrapper .swiper-slide .column-item.eresource .item-heading {
  width: fit-content;
  margin: 0;
}
.section .column-two .column-item.eresource:hover .item-media {
  outline-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)),.5);
}
.column-two .swiper.show-up, .column-two .swiper.show-down, .column-two .swiper.hide-up, .column-two .swiper.hide-down {
  transition: top .3s;
}
.column-two .swiper.show-up {
  top: -173px;
}
.column-two .swiper.show-down {
  top: 173px;
}
.column-two .swiper.active {
  top: 0;
  z-index: 5;
  transition: top .3s;
  transform: translateX(-50%);
  left: 50%;
}
.column-two .swiper.hide-up {
  top: -173px;
}
.column-two .swiper.hide-down {
  top: 173px;
}
.column-two .swiper-wrapper {
  position: relative;
  height: fit-content;
}
.column-two #book_sliders .swiper-wrapper {
  height: 100%;
}

.column-two .swiper-slide, .column-two .match-slide.show {
  opacity: 1;
  pointer-events: all;
  display: revert;
  box-sizing: border-box;
  padding: 0 10px;
}
.column-two #new_swiper .swiper-slide .column-item {
  width: 100%;
  max-width: 130px;
  aspect-ratio: 10/16;
  height: auto;
}
.column-two .booklists-slider .swiper-slide.show-slide {
  min-width: 250px;
}
.column-two .swiper-button-next, .column-two .swiper-button-prev {
  width: 32px;
  height: 100%;
  top: 22px;
  transition: opacity .3s;
}
.column-two .swiper-button-next {
  right: 0px;
}
.column-two .swiper-button-prev {
  left: 0px;
}
.column-two .swiper-button-next.swiper-button-disabled,
.column-two .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.column-two .swiper-button-next:before, 
.column-two .swiper-button-prev:before {
  content: "";
  width: calc(100% + 84px);
  height: 100%;
  background: var(--light, linear-gradient(to left, transparent 30%, var(--background-1))) var(--dark, linear-gradient(to left, transparent 30%, var(--dark-background-1)));
  display: inline-block;
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 5;
  cursor: initial;
}
.column-two .swiper-button-next:before {
  background: var(--light, linear-gradient(to right, transparent 30%, var(--background-1))) var(--dark, linear-gradient(to right, transparent 30%, var(--dark-background-1)));
  left: auto;
  right: -10px;
}
.column-two .swiper-button-next:after {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
svg.swiper-right.swiper-right-new-arrivals, svg.swiper-left.swiper-left-new-arrivals, svg.swiper-left.swiper-left-eresources, svg.swiper-right.swiper-right-eresources
{
  z-index: 999;
}
.column-two .swiper-button-prev:after {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.section.fill .column-item .booklist .book, .column-two .swiper-slide .book {
  width: 100%;
  height: 100%;
  position: relative;
  transition: width .3s, height .3s;
  cursor: pointer;
}
.section.fill .column-item .booklist .book .book-media, .column-two .swiper-slide .book .book-media {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transform: scaleX(1);
  transform-origin: 50% 50%;
  transition: opacity .3s, transform .3s;
  background-color: var(--power-color-1);
  background-image: url('/content/_theme_images/logo_wht.svg');
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
}
.column-two .swiper-slide .book .book-media .placeholder {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-position: center;
  object-fit: cover;
}
.column-two .swiper-slide .book .book-media.placeholder, .section.fill .column-item .booklist .book .book-media.placeholder {
  padding: 5px;
  box-sizing: border-box;
  background-color: var(--power-color-1);
  background-image: url('/content/_theme_images/logo_wht.svg');
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-two .swiper-slide .book .book-media p {
  margin: 0;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font-size: 12px;
  line-height: 14px;
}

.column-two .swiper-slide .book:hover .book-media {
  opacity: 0;
  transform: scaleX(-1);
}
.section.fill .column-item .booklist .booklists .book .book-content, .column-two .swiper-slide .book .book-content {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  border: 1px solid #888888;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: scaleX(-1);
  transform-origin: 50% 50%;
  transition: transform .3s, opacity .3s;
  overflow: scroll;
  overflow-wrap: anywhere;
}
.column-two .swiper-slide .book .book-content .title, .column-two .swiper-slide .book .book-content .author, .column-two .swiper-slide .book .book-content .description, .column-two .swiper-slide .book .book-content .link {
  opacity: 0;
  transition: opacity .0s;
}
.column-two .swiper-slide .book:hover .book-content .title, .column-two .swiper-slide .book:hover .book-content .author, .column-two .swiper-slide .book:hover .book-content .description, .column-two .swiper-slide .book:hover .book-content .link {
  opacity: 1;
  transition: opacity .3s .15s;
}
.column-two .swiper-slide .book .book-content .title {
  margin: 0 0 3px 0;
  display: block;
  text-align: center;
  font: var(--small-header-font);
  font-weight: 600;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.column-two .swiper-slide .book .book-content .author {
  margin: 0 0 4px 0;
  display: block;
  text-align: center;
  font: var(--secondary-button-fonts);
  font-weight: 400;
  line-height: 18px;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.column-two .swiper-slide .book .book-content .description {
  margin: 0 0 7px 0;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.column-two .swiper svg path {
  fill: var(--power-color-1);
}
#new_section .column-two .swiper svg circle {
  fill: var(--power-color-2);
}
#blog_section .column-two .swiper svg circle {
  fill: rgb(var(--power-color-3));
}
#booklists_section .column-two .swiper svg circle {
  fill: var(--power-color-4);
}
#eresources_section .column-two .swiper svg circle {
  fill: var(--power-color-5);
}
#explore_spaces_section .column-two .swiper svg circle {
  fill: rgb(var(--power-color-6));
}

.main-content.staff-individual .page-content .page-banner {
  margin: 0;
  order: 2;
  width: 350px;
  height: 350px;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 50px), 75px calc(100% - 50px), 75px 100%, 25px calc(100% - 50px), 0% calc(100% - 50px));
}
.main-content.staff-individual .page-content .page-banner .banner-media {
  clip-path: polygon(5px 5px, calc(100% - 5px) 5px, calc(100% - 5px) calc(100% - 55px), 70px calc(100% - 55px), 70px calc(100% - 12px), 27px calc(100% - 55px), 5px calc(100% - 55px));
  height: 100%;
}
.main-content.staff-individual .page-content .page-banner .banner-media.placeholder {
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: 50% 40%;
}
.main-content.staff-individual .page-content .left-sidebar {
  order: 1;
  width: 100%;
  max-width: unset;
  margin-top: 0;
}
.main-content.staff-individual .page-content .body {
  order: 3;
  margin: 0;
  width: 100%;
}
.staff {
  width: 100%;
  margin: 0 0 16px 0;
  display: flex;
  align-items: flex-start;
}
.staff .staff-media-border {
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 50px), 75px calc(100% - 50px), 75px 100%, 25px calc(100% - 50px), 0% calc(100% - 50px));
  margin-right: 50px;
}
.staff .staff-media {
  width: 330px;
  height: 376px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  clip-path: polygon(5px 5px, calc(100% - 5px) 5px, calc(100% - 5px) calc(100% - 55px), 70px calc(100% - 55px), 70px calc(100% - 12px), 27px calc(100% - 55px), 5px calc(100% - 55px));
}
.staff .staff-media.placeholder {
  background-color: var(--power-color-1);
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-size: 40%;
  background-position: center;
}
.staff .staff-content {
  flex: 1;
}
.staff .staff-content .staff-title {
  margin: 0 0 9px 0;
  font: var(--small-header-font);
  text-transform: var(--small-header-font-variant);
  font-weight: 300;
  letter-spacing: 0.5px;
  display: block;
}
.staff .staff-content .staff-email {
  margin: 0 0 5px 0;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--paragraph-font);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: block;
}
body .staff .staff-content a.staff-email:after {
  display: none;
}
.staff .staff-content .staff-info {
  font: var(--paragraph-font);
  letter-spacing: 0.5px;
  display: block;
}
.staff .staff-content .staff-bio {
  display: block;
  margin-top: 20px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  display: none;
}
.body .books-slider {
  margin: 10px 0;
}
.body .books-slider .book {
  display: flex;
  width: calc(100% - 100px);
  padding: 0 50px;
}
.body .books-slider .book img {
  margin-right: 10px;
}
.body .books-slider .book .book-content {
  display: flex;
  flex-direction: column;
  font: var(--paragraph-font);
}
.body .books-slider .book .book-content .title {
  font: var(--small-header-font);
  margin-bottom: 5px;
}
.body .books-slider .book .book-content .author {
  font-size: 13px;
  line-height: normal;
  margin-bottom: 5px;
}


.blog-posts {
  width: 100%;
  margin: 30px 0 0 0;
}
.blog-posts.landing-page {
  margin: 0;
}
.blog-posts .post {
  width: 100%;
  margin: 0 0 25px 0;
  display: flex;
  align-items: flex-start;
}
.blog-post-label, .blog-info .date {
  opacity: 1;
}
.home .section .column-two p {
  opacity: 1;
  font-size: 16px;
  line-height: 19px;
}
.home .section .column-two p a, a#load-more-events, a#load-more-booklist_books {
  color: var(--links);
}
.blog-posts .post .post-media {
  width: 100%;
  max-width: 506px;
  height: 250px;
  margin: 0 20px 0 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: calc(100% - 32px) calc(100% - 32px);
  background-position: center;
  display: block;
  position: relative;
}
.blog-posts .post .post-media .media {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
  top: 0;
  left: 0;
}
.blog-posts .post .post-media.placeholder {
  background-color: var(--power-color-1);
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-position: center;
  background-size: 40%;
  width: 60%;
}
.blog-posts .post .post-content {
  flex: 1;
  width: 40%;
}
.blog-posts .post .post-title {
  max-width: none;
  margin: 0;
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
  letter-spacing: 0.4px;
  display: block;
  font: var(--secondary-header-font);
}
.blog-posts .post .post-info {
  margin: 3px 0 7px 0;
  display: flex;
  flex-direction: column;
  font: var(--paragraph-font);
  font-weight: 400;
}
.blog-posts .post .post-info span {
  padding-left: 20px;
  margin-top: 5px;
  position: relative;
}
.blog-posts .post .post-info span:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url('/content/_theme_images/icon_calendar.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.blog-posts .post .post-info span.author:before {
  background-image: url('/content/_theme_images/icon_pen.svg');
}
.blog-posts .post .post-description {
  margin: 0 0 15px 0;
}
.blog-posts .post .button-like.third-about {
  width: 100%;
}
.blog-posts .post .post-about {
  width: 100%;
  max-width: 250px;
  padding: 25px 0px;
  box-sizing: border-box;
  position: relative;
  border-top: var(--light, 1px solid rgb(var(--secondary-architecture))) var(--dark, 1px solid rgb(var(--dark-secondary-architecture)));
  display: flex;
  flex-direction: column;
}
.blog-posts .post .post-about .heading {
  margin: 0 0 6px 0;
  color: #484848;
  display: block;
  font: var(--small-header-font);
}
.blog-posts .post .post-about .author, .blog-posts .post .post-about .date {
  position: relative;
  padding-left: 20px;
  margin-top: 5px;
  font: var(--paragraph-font);
}
.blog-posts .post .post-about .author:before, .blog-posts .post .post-about .date:before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url('/content/_theme_images/icon_pen.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.blog-posts .post .post-about .date:before {
  background-image: url('/content/_theme_images/icon_calendar.svg');
}
.blog-posts .post .post-about .tags {
  margin: 14px 0 0 0;
}
.blog-posts .post .post-about .tags .tag-heading {
  margin: 0 0 10px 0;
  color: #4C4C4C;
  font: var(--small-header-font);
  display: block;
}
.blog-posts .post .post-about .tags ul.tag-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.blog-posts .post .post-about .tags ul.tag-list li {
  margin: 0 7px 7px 0;
  padding: 0;
}
.blog-posts .post .post-about .tags ul.tag-list li:before {
  display: none;
}
.blog-posts .post .post-about .tags ul.tag-list li a.tag {
  padding: 1px 10px;
  box-sizing: border-box;
  background-color: #DEDEDE;
  border-radius: 16px;
  color: #4C4C4C;
  font: var(--paragraph-font);
  text-decoration: none;
  display: inline-block;
}
.blog-posts .post .post-about .tags ul.tag-list li a.tag:after {
  display: none;
}
/* odd edits */
.blog-posts .post.flipped .post-media {
  margin: 0 0 0 20px;
  order: 1;
}
.blog-posts .post.flipped .post-content {
  order: 0;
}
/* first of type edits */
.blog-posts .post.first {
  margin: 0 0 50px 0;
  display: block;
}
.blog-posts .post.first .post-media {
  max-width: none;
  height: 350px;
  width: 100%;
  margin: 0;
}
.blog-posts .post.first .post-content {
  width: 100%;
}
.blog-posts .post.first .post-title {
  margin: 14px 0 0 0;
  font: var(--primary-header-font);
  color: rgb(var(--light, var(--primary-header-color)) var(--dark, var(--dark-primary-header-color)));
}
.blog-posts .post.first .button-like {
  position: relative;
  width: calc(100% - 28px);
  margin: auto;
}
.blog-posts .post.first .button-like:before, .blog-posts .post.first .button-like:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -14px;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50% 0% 0% 50%;
  background-color: transparent;
  box-shadow: inset 12px 0 0 0 var(--power-color-1);
}
.blog-posts .post.first .button-like:after {
  left: unset;
  right: -14px;
  transform: scaleX(-1);
}
/* main edits */
.blog-posts .post.main {
  display: block;
}
.blog-posts .post.main .post-media {
  max-width: none;
  padding: 0;
  border: none;
}
.blog-posts .post.main .post-content {
  margin: 15px 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.lib-overlay {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.lib-overlay.active {
  display: block;
  min-height: 300px;
}
.overlay-content .already-registered-note {
    border: 1px solid red;
    padding: 5px;
    border-radius: 5px;
}
.overlay-content .already-registered-note i {
    color: red;
}
.lib-overlay .overlay-content a.back-button {
  width: 31px;
  height: 31px;
  background-image: url('/content/_theme_images/side-arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 21px;
  left: 21px;
  z-index: 20;
  transform: rotate(180deg);
  transition: opacity .3s;
}
.lib-overlay .overlay-content a.back-button:after {
  display: none;
}
.lib-overlay .overlay-content.step-one a.back-button {
  opacity: 0.4;
  pointer-events: none;
}
.lib-overlay .overlay-content.step-three a.back-button {
  opacity: 0;
  pointer-events: none;
}
.lib-overlay h4 {
  margin: 0 0 10px 0;
  font: var(--secondary-header-font);
  text-transform: var(--secondary-header-font-variant);
}
.lib-overlay label {
  margin: 0 0 2px 0;
  font: var(--small-header-font);
  display: block;
}
.lib-overlay p.overlay-top {
  width: 100%;
  max-width: none;
  margin: 0 0 20px 0;
  text-align: center;
  position: relative;
  z-index: 15;
}
.lib-overlay .button-like {
  margin: 10px 0 0 0;
}
.lib-overlay a.close-icon {
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 25px;
  height: 25px;
  z-index: 20;
  background-color: transparent;
}
.lib-overlay a.close-icon:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  clip-path: polygon(calc(0%) calc(0% + 1px), calc(0% + 1px) calc(0%), calc(50%) calc(50% - 1px), calc(100% - 1px) calc(0%), calc(100%) calc(0% + 1px), calc(50% + 1px) calc(50%), calc(100%) calc(100% - 1px), calc(100% - 1px) calc(100%), calc(50%) calc(50% + 1px), calc(0% + 1px) calc(100%), calc(0%) calc(100% - 1px), calc(50% - 1px) calc(50%));
  background-color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.lib-overlay input[type="text"], .lib-overlay input[type="password"], .lib-overlay input[type="email"] {
  width: 100%;
  margin: 0 0 10px 0;
  padding: 5px 13px;
  box-sizing: border-box;
  border: 1px solid #CFCFCF;
  border-radius: 5px;
  font: var(--paragraph-font);
  display: block;
}
.lib-overlay input[type="text"]::placeholder {
  color: #999999;
}
.lib-overlay .password-input {
  width: 100%;
  position: relative;
}
.lib-overlay .password-input .show-hide-password {
  position: absolute;
  top: 5px;
  right: 0;
}
.lib-overlay .password-input.password-shown .show-hide-password {
  top: 0;
}
.lib-overlay .password-input .show-hide-password .hide-password, .lib-overlay .password-input.password-shown .show-hide-password .show-password {
  display: none;
}
.lib-overlay .password-input.password-shown .show-hide-password .hide-password {
  display: inline-block;
}
.lib-overlay .password-input .show-hide-password .hide-password, .lib-overlay .password-input .show-hide-password .show-password {
  padding: 5px 10px;
  border-radius: 5px;
  color: #999;
}
.lib-overlay form .success-message {
  display: none;
}
.lib-overlay form.form-submitted .success-message {
  display: block;
}
.lib-overlay form.form-submitted input, .lib-overlay form.form-submitted label, .lib-overlay form.form-submitted .password-input, .lib-overlay form.form-submitted .custom-radio, .lib-overlay form.form-submitted button, .lib-overlay form.form-submitted a.button-like {
  display: none;
}
.lib-overlay .additional-form-fields {
  width: 100%;
  margin: 0 0 20px 0;
}
.lib-overlay .additional-form-fields .add-new-field {
  font: var(--small-header-font);
  text-decoration: none;
}
.lib-overlay .additional-form-fields .add-new-field:before {
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  background-image: url('/content/_theme_images/icon_plus.svg');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
  display: inline-block;
  position: relative;
  top: 4px;
  transition: opacity .3s;
}
.lib-overlay .additional-form-fields .add-new-field:after {
  display: none;
}
.lib-overlay .additional-form-fields .add-new-field:hover:before {
  opacity: 1;
}
.lib-overlay .overlay-bkgd {
  width: 100%;
  height: 100%;
  background-color: #00000065;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}
.lib-overlay .overlay-content {
  max-width: 863px;
  width: calc(100vw - 20px);
  max-height: 709px;
  height: calc(100vh - 20px);
  box-sizing: border-box;
  background-color: var(--light, rgb(var(--secondary-architecture))) var(--dark, rgb(var(--dark-secondary-architecture)));
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 5;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font: var(--paragraph-font);
  clip-path: polygon(0px 0px, calc(100% - 50px) 0px, 100% 50px, 100% calc(100% - 50px), 100px calc(100% - 50px), 100px 100%, 50px calc(100% - 50px), 0px calc(100% - 50px));
}
.lib-overlay .overlay-content .overlay-background {
  width: calc(100% - 175px);
  height: 100%;
  padding: 50px 125px 100px 50px;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) 52px, calc(100% - 5px) calc(100% - 55px), 95px calc(100% - 55px), 95px calc(100% - 12px), 52px calc(100% - 55px), 5px calc(100% - 55px));
}
.lib-overlay .overlay-content .overlay-step {
  width: 100%;
  height: 100%;
  padding: 38px 38px 51px 38px;
  padding: clamp(10px, 3.5%, 35px) ;
  box-sizing: border-box;
  background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
  border: 0.5px solid #A3A3A3;
  display: none;
  position: relative;
  z-index: 15;
  overflow: auto;
}
.lib-overlay .overlay-content.step-one .overlay-step.one, .lib-overlay .overlay-content.step-two .overlay-step.two, .lib-overlay .overlay-content.step-three .overlay-step.three {
  display: block;
}
.lib-overlay .overlay-content .overlay-columns {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 15;
}
.lib-overlay .overlay-content .column.form {
  width: 100%;
  max-width: 363px;
  display: flex;
  flex-direction: column;
}
.lib-overlay .overlay-content .column a.button-like {
  margin: 15px 0 0 0;
}
.lib-overlay .overlay-content .column a.button.dropdown, .lib-overlay .overlay-content .column a.button-like.dropdown {
  margin: 0;
}
.lib-overlay .overlay-content .column .form-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.lib-overlay .overlay-content .column .form-text-fields {
  display: flex;
  flex-direction: column;
}
.lib-overlay .overlay-content .column .form-half-field {
  width: 48%;
  display: inline-block;
}
.lib-overlay .overlay-content .column .form-field-remove {
  padding: 29px 0 0 5px;
  box-sizing: border-box;
  display: inline-block;
}
.lib-overlay .overlay-content .column .form-radio-option {
  display: flex;
  position: relative;
}
.lib-overlay .overlay-content .column .form-radio-option input {
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  opacity: 0;
}
.lib-overlay .overlay-content .column .form-radio-option .custom-radio {
  width: 16px;
  height: 16px;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  border: 1px solid #787878;
  border-radius: 3px;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}
.lib-overlay .overlay-content .column .form-radio-option .custom-radio:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  border-radius: 3px;
  opacity: 0.8;
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
}
.lib-overlay .overlay-content .column .form-radio-option input:checked ~ .custom-radio {
  background-color: #2196F3;
}
.lib-overlay .overlay-content .column.sign-in {
  width: 100%;
  max-width: 361px;
  padding: 30px;
  box-sizing: border-box;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  border-top: 5px solid rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  display: flex;
  flex-direction: column;
}
.lib-overlay .overlay-content .column.sign-in.alt {
  padding: 13px;
  border-top: 5px solid var(--links);
}
.lib-overlay .overlay-content .column.sign-in.hidden {
  display: none;
}
.lib-overlay .overlay-content .column.sign-in .sign-in-content {
  padding: 18px 20px;
  box-sizing: border-box;
}
.lib-overlay .overlay-content .column.sign-in h4 {
  margin: 0 0 15px 0;
}
.lib-overlay .overlay-content .column.sign-in a.button-like, .lib-overlay .overlay-content .column.sign-in button {
  margin: 15px 0 12px 0;
}
.lib-overlay .overlay-content .column.sign-in a.button-like.social {
  margin: 0;
}
.lib-overlay .overlay-content .column.form.center {
  max-width: 417px;
  margin: 0 auto;
  align-items: center;
}
.lib-overlay .overlay-content .column.form.center form {
  width: 100%;
}
.lib-overlay .overlay-content .column.form.center form {
  width: 100%;
}
.lib-overlay .overlay-content .column.sign-in.center {
  max-width: 417px;
  margin: 22px auto 0 auto;
  padding: 16px 21px;
}
.lib-overlay .overlay-content .column.center {
  margin: 22px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lib-overlay ul li {
  font: var(--paragraph-font);
}
.lib-overlay .disclaimer {
  margin: 0 0 5px 0;
  color: #707070;
  font: var(--paragraph-font);
  display: block;
}

.left-sidebar {
  width: 215px;
  min-width: 215px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  left: -1px;
  margin-right: 25px;
  --height-offset: 43px;
}
.left-sidebar a.return-to {
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
  font: var(--small-header-font);
  font-size: 12px;
  text-decoration: none;
  display: block;
  transition: opacity .3s;
}
.left-sidebar a.return-to svg g {
  stroke: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
}
.left-sidebar .context-nav {
  width: 100%;
  max-width: 240px;
  padding: 25px;
  box-sizing: border-box;
  background-color: var(--light, rgba(var(--secondary-architecture), .1)) var(--dark, rgba(var(--dark-secondary-architecture), .1));
  clip-path: polygon(0% 0%, calc(100% - 25px) 0%, 100% 25px, 100% 100%, 0% 100%)
}
.left-sidebar .context-nav .nav-heading {
  box-sizing: border-box;
  font: var(--small-header-font);
  font-size: 18px;
  line-height: 19px;
  font-weight: 500;
  letter-spacing: .1px;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-secondary-architecture)));
  text-decoration: none;
  display: block;
  position: relative;
}
.left-sidebar .context-nav .nav-heading.active:before {
  content: "";
  width: 9px;
  height: 100%;
  background-color: rgb(var(--power-color-7));
  display: block;
  position: absolute;
  left: -25px;
}
.pc-1 .left-sidebar .context-nav .nav-heading.active:before, .pc-1 .left-sidebar .context-nav ul.nav-list li:before {
  background-color: var(--power-color-1);
}
.pc-2 .left-sidebar .context-nav .nav-heading.active:before, .pc-2 .left-sidebar .context-nav ul.nav-list li:before {
  background-color: var(--power-color-2);
}
.pc-3 .left-sidebar .context-nav .nav-heading.active:before, .pc-3 .left-sidebar .context-nav ul.nav-list li:before {
  background-color: rgb(var(--power-color-3));
}
.pc-4 .left-sidebar .context-nav .nav-heading.active:before, .pc-4 .left-sidebar .context-nav ul.nav-list li:before {
  background-color: var(--power-color-4);
}
.pc-5 .left-sidebar .context-nav .nav-heading.active:before, .pc-5 .left-sidebar .context-nav ul.nav-list li:before {
  background-color: var(--power-color-5);
}
.pc-6 .left-sidebar .context-nav .nav-heading.active:before, .pc-6 .left-sidebar .context-nav ul.nav-list li:before {
  background-color: rgb(var(--power-color-6));
}
.left-sidebar .context-nav ul.nav-list {
  width: calc(100% - 15px);
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.left-sidebar .context-nav ul.nav-list li {
  width: 100%;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  display: none;
  position: relative;
  line-height: 18px;
}
.left-sidebar .context-nav ul.nav-list li:last-of-type {
  margin: 0;
}
.left-sidebar .context-nav ul.nav-list li.show {
  display: inline-block;
}
.left-sidebar .context-nav ul.nav-list li:before {
  content: "";
  width: 6px;
  height: calc(100% - 10px);
  background-color: rgb(var(--power-color-7));
  position: absolute;
  left: -25px;
  opacity: 0;
  transition: opacity .25s;
}
.left-sidebar .context-nav ul.nav-list li.active:before {
  opacity: 1;
}
.left-sidebar .context-nav ul.nav-list li:has(a:hover):before {
  opacity: .75;
}
.left-sidebar .context-nav ul.nav-list li a {
  color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-paragraph)));
  font: var(--nav-text-font);
  font-size: 14px;
  line-height: 17px;
}
.left-sidebar .context-nav ul.nav-list li.dropdown-toggle a {
  width: 31px;
  height: 31px;
  margin: 24px 0 0 0;
  background-image: url('/content/_theme_images/side-arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  transform: rotate(90deg);
}
/* show-all edits */
.left-sidebar .context-nav ul.nav-list.show-all li {
  display: inline-block;
}
.left-sidebar .context-nav ul.nav-list.show-all li.dropdown-toggle a {
  transform: rotate(-90deg);
}
/* multi edits */
.left-sidebar .context-nav.multi a.nav-heading:first-of-type {
  padding: 0;
  font: var(--secondary-header-font);
}

.left-sidebar .context-nav.multi .nav-heading.active:before {
  top: 17px;
}
.left-sidebar .context-nav.multi .nav-heading.active:first-of-type:before {
  top: -3px;
}
/* fixed edits */
.left-sidebar .context-nav.fixed {
  position: fixed;
  top: 50px;
}
.left-sidebar .context-nav.absolute-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}

.body {
  width: calc(100% - 561px);
  flex: 1;
}
.body .section.two-col {
  margin-left: 0;
}
.body.no-right-sidebar {
  margin-right: 50px;
}
.calendar .body.no-right-sidebar {
  margin-right: 0;
}
.body iframe {
  max-width: 100%;
}
body > iframe {
  max-width: 90vw;
}

.body.no-sidebar {
    width: 100%;   
}
.body p.full-width {
  max-width: none;
}
.main-content.tertiary .body:not(.no-right-sidebar) {
  width: calc(100% - 571px);
  flex: 1;
}
.main-content.calendar .body, .main-content.search-page .body {
  width: 100%;
  margin: 0;
}
.body bs_editable {
  max-width: 587px;
}
.body bs_editable img {
  max-width: 100%;
  height: auto;
}
.body p.intro {
  max-width: none;
  margin: 0 0 50px 0;
  font-family: 'Epilogue';
  font-weight: 400;
}
.body ul, .bucket ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style-type: none;
}
.body ul li ul {
  margin: 0 0 10px 15px;
  padding: 0;
  list-style-type: none;
}
.body ul li, .bucket ul li {
  position: relative;
  padding-left: 25px;
}
.body ul li::marker, .body ul li::-webkit-details-marker {
  display: none;
  opacity: 0;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1)) !important;
}
.body ul li:before, .bucket ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 10px 0 0;
  background-color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 10px;
}
.body .calendar-weekdays li:before {
  display: none;
}
.body .calendar-dates li:before {
  display: none;
}
.body .event-filters li:before {
  display: none;
}
.body .calendar-dates-list li:before {
  display: none;
}
.body ul li ul li {
    padding-left: 10px;
}
.body ul li ul li:before {
  left: -10px;
}
.body ul li ul li ul li {
  padding-left: 10px;
}
.body ul li ul li ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  margin: 0 10px 0 0;
  background-color: rgb(var(--power-color-3));
  border-radius: unset;
  display: inline-block;
  position: absolute;
  top: 7px;
  left: -7px;
}
/*.body ul li:before, .body ul li:after {*/
/*  content: "";*/
/*  width: 8px;*/
/*  display: inline-block;*/
/*  position: relative;*/
/*  top: -2px;*/
/*}*/
/*.body ul li:before {*/
/*  height: 100%;*/
/*  background-color: red;*/
/*}*/
*/
.body ol {
  margin: 0 0 10px 0;
  padding: 0 0 0 25px;
}
.body ol li, .body ul li, .bucket ul li {
  margin-bottom: 5px;
  font: var(--paragraph-font);
}
.body ol li::marker {
  color: rgb(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)));
  font: var(--small-header-font);
}
.body a[href^="#"]:not(.primary):after {
  content: "";
  margin: 0 0 0 5px;
  display: inline-block;
  position: relative;
  top: -1px;
}
.body a.onclick-element:after {
  content: "";
  display: none;
}
.lineage-container {
  width: calc(100% - 256px);
  margin: 30px 0 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.lineage-container.full {
  width: 100%;
}
.lineage-container .h2-like {
  width: 100%;
  margin: 0px;
  position: relative;
  font-size: 23px;
  line-height: 23px;
}
.lineage-container .h2-like:after {
  content: '';
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: -38px;
  background-color: rgb(var(--power-color-6));
  clip-path: polygon(0px 0px, 11.25px 0px, 34px 22.75px, 34px 0px, 100% 0px, 100% 3px, 37px 3px, 37px 30px, 10px 3px, 0px 3px);
}
.lineage-container .lineage-item {
  width: 100%;
  max-width: 275px;
}
.lineage-container .lineage-item .item-media {
  margin: 0 0 10px 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  display: block;
}
.lineage-container .lineage-item .item-media.placeholder {
  height: 190px;
  background-color: var(--power-color-1);
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-size: 40%;
  background-position: center;
}
.lineage-container .lineage-item .item-media:after {
  display: none;
}
.lineage-container .lineage-item .item-media .media {
  width: 100%;
  height: 175px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.lineage-container .lineage-item .item-media .media.placeholder {
  background-color: var(--power-color-1);
  background-image: url(/content/_theme_images/logo_wht.svg);
  background-size: 40%;
  background-position: center;
}
.lineage-container .lineage-item .item-content .heading {
  margin: 0 0 3px 0;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  text-decoration: none;
  display: block;
  font: var(--small-header-font);
}
.lineage-container .lineage-item .item-content .heading:hover {
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.lineage-container .lineage-item .item-content .heading:after {
  display: none;
}
.lineage-container .lineage-item .item-content .description {
  font: var(--paragraph-font);
}
.lineage-container .lineage-item .item-content .info {
  margin: 0 0 10px 0;
  font: var(--paragraph-font);
  display: flex;
  flex-direction: column;
}
.lineage-container .lineage-item .item-content .info span {
  padding-left: 20px;
  margin-top: 5px;
  position: relative;
}
.lineage-container .lineage-item .item-content .info span:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url('/content/_theme_images/icon_calendar.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.lineage-container .lineage-item .item-content .info span.author:before {
  background-image: url('/content/_theme_images/icon_pen.svg');
}

.body .lineage-container {
  width: 100%;
  justify-content: space-between;
  gap: 25px;
}
.body .lineage-container .lineage-item {
  width: calc(50% - 38px);
  max-width: none;
  margin-right: 0;
}
.body .lineage-container .lineage-item:nth-of-type(2n - 1) {
  margin-left: 51px;
}

.body .styled_rounded {
  box-sizing: border-box;
  background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
  display: inline-block;
  position: relative;
  z-index: 5;
}
.body .styled_rounded img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 10;
}

.bucket {
  width: calc(100% - 256px);
  margin: 115px 0 0 auto;
  box-sizing: border-box;
  background-color: var(--light, rgba(var(--secondary-architecture),.1)) var(--dark, rgba(var(--dark-secondary-architecture),.1));
  display: flex;
  align-items: flex-start;
}
.home .bucket {
  margin: 0 50px 100px 50px;
  width: calc(100% - 100px);
  padding: 25px;
}
.body .bucket {
  width: 100%;
  margin: 50px 0 0 0;
  flex-direction: column;
  padding: 25px 50px 25px 25px;
  clip-path: polygon(0px 0px, calc(100% - 50px) 0px, 100% 50px, 100% 100%, 0px 100%);
}
.bucket {
  width: 100%;
  margin: 0 0 21px 0;
  padding: 20px 15px 15px 15px;
  flex-direction: column;
  clip-path: polygon(0% 0%, calc(100% - 25px) 0%, 100% 25px, 100% 100%, 0% 100%);
}

.right-sidebar .bucket .bucket-content {
  width: 100%;
}
.right-sidebar .sidebar-item.event {
  background-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)), .1);
  clip-path: polygon(0% 0%, calc(100% - 25px) 0%, 100% 25px, 100% 100%, 0% 100%);
  padding: 20px 15px 15px 15px;
}
.right-sidebar .sidebar-item.event .post a:hover .upcoming-event-image {
  outline-color: rgba(var(--light, var(--secondary-architecture)) var(--dark, var(--dark-secondary-architecture)),.5);
}
.right-sidebar .sidebar-item.event .post a:hover .heading {
  text-decoration: underline;
}
.bucket .bucket-media {
  width: 148px;
  height: 173px;
  margin: 0 18px 0 0;
  display: block;
}
.bucket img {
  max-width: 100%;
  margin: 0 0 10px 0;
}

/* home top-right column(.more-events) edits */
.more-events .bucket {
  width: 100%;
  margin: 0 0 18px 0;
  padding: 25px 25px 15px 25px;
  box-sizing: border-box;
  border: 1px solid rgb(var(--secondary-architecture));
  background-color: var(--background-1);
  display: inline-block;
  transition: padding .3s;
  position: relative;
}
.more-events .bucket:before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: rgb(var(--secondary-architecture));
  display: block;
  position: absolute;
  top: -21px;
  left: 50%;
  z-index: 1;
}
.more-events .bucket img {
  margin: 0 0 2px 0;
}
.more-events .bucket .bucket-media {
  width: 351px;
  height: 141px;
  margin: 0 0 5px 0;
  transition: width .3s, height .3s;
}
.more-events .bucket .bucket-content {
  width: 100%;
}
.more-events .bucket .bucket-content .bucket-heading {
  margin: 0;
  font: var(--secondary-header-font);
  font-weight: 400;
  letter-spacing: initial;
  display: block;
}

.right-sidebar {
  width: 100%;
  max-width: 215px;
}
.right-sidebar .placeholder-item {
  width: 100%;
  height: 250px;
  display: block;
}
.sidebar-item {
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--secondary-item);
  margin-bottom: 50px;
}
.bucket .h3-like, .bucket .bucket-heading {
  margin: 0 0 5px 0;
  font: var(--small-header-font);
}

.bucket p {
  font-size: 14px;
  line-height: 17px;
  margin: 0;
}
.bucket a.button-like {
  margin-top: 10px;
}

.bucket.post {
  width: 100%;
  margin: 25px 0;
  box-sizing: border-box;
}
.bucket .post:not(:first-of-type) {
  margin-top: 10px;
}
.bucket .post .heading, .bucket .heading {
  font: var(--small-header-font);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin: 5px 0 5px 0;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  display: block;
}
.bucket .post p {
  margin: 0;
  font: var(--paragraph-font);
  font-size: 13px;
  line-height: 18px;
  position: relative;
}

.sidebar-item .post p.location:after {
  background-image: url('/content/_theme_images/icon-pin.svg');
}

/* them offsite arrows for links */
a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: var(--light, url('/content/_theme_images/offsite-link-dark.svg')) var(--dark, url('/content/_theme_images/offsite-link-light.svg'));
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 0 1px 5px;
  content: ' ';
  display: inline-block;
  width: 13px;
  height: 13px;
}
.button-like.primary[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after, 
footer .footer-credits a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: var(--light, url('/content/_theme_images/offsite-link-light.svg')) var(--dark, url('/content/_theme_images/offsite-link-dark.svg'));
}
.sidebar-item .post a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  display: none;
}
.context-nav a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after, 
.body a[href*="//"]:not(.primary):not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after, 
footer a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  margin: 0 0 -1px 5px;
}
.context-nav a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after, 
.body a[href*="//"]:not(.primary):not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after, 
footer .footer-nav a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: url('/content/_theme_images/offsite-link-dark.svg');
}
/* hide from image links */
.body a[href*="//"]:has( img):not(.primary):not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  display: none;
}
.upcoming-event-image {
  height: 120px;
  width: 100%;
  background-color: var(--power-color-1);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  outline: 2px solid var(--light, rgba(var(--secondary-architecture),.15)) var(--dark, rgba(var(--dark-secondary-architecture),.15));
}
.upcoming-event-image.photo {
  background-color: #FFFFFF;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 2px 2px 12px 2px;
}

.my-events-bucket .my-events {
  padding-top: 15px;
}
/* page elements */
img {
  font: var(--paragraph-font);
  font-size: 16px;
  font-weight: 400;
}
body .acc-container label:after, body .acc-container input:checked + label:after {
  width: 13px;
  height: 8px;
  background-color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  clip-path: polygon(0px 1.5px, 1.5px 0px, 6.5px 5px, 11.5px 0px, 13px 1.5px, 6.5px 8px);
  transition: transform .25s;
  right: 15px;
  top: calc(50% - 4px);
}

.body table {
  max-width: 100%;
}
.body table td {
  padding: 1px 5px;
}

.body .s-lc-w-table {
  width: 100%;
}
.body .s-lc-w-dtr, .body .s-lc-w-table>tbody>tr:nth-of-type(odd) {
  display: flex;
  background-color: transparent;
}
.body .s-lc-w-date {
  box-sizing: border-box;
  padding: 5px 3px;
  border-radius: 0;
  border: var(--light, 2px solid rgba(var(--secondary-architecture),.15)) var(--dark, 2px solid rgba(var(--dark-secondary-architecture),.15));
  background-color: transparent;
  aspect-ratio: 1/1;
  height: 60px;
  width: auto;
}
.body .s-lc-w-date-m {
  background-color: transparent !important;
  font: var(--small-header-font);
  font-size: 11px;
  line-height: 12px;
  text-transform: uppercase;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.body .s-lc-w-date-d {
  font: var(--small-header-font);
  font-size: 20px;
  line-height: 21px;
  font-weight: 300;
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  margin-top: 2px;
}
.body .s-lc-w-date-t {
  line-height: normal;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.body .s-lc-w-title {
  font: var(--small-header-font);
  font-size: 19px;
  line-height: 24px;
  text-transform: var(--small-header-font-variant);
  color: rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
}
.body .s-lc-w-loc {
  font: var(--paragraph-font);
  font-size: 16px;
  line-height: 19px;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
.body .s-lc-w-ctd a {
  font: var(--paragraph-font);
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  color: var(--links);
}

/* search page */
.search-page-search .search-page-form label {
  width: calc(100% - 200px);
  max-width: 354px;
}
.search-page-search .search-page-form .top-search {
  width: 100%;
  padding: 4px 6px;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  border: 1px solid #979797;
  border-right: none;
  letter-spacing: .2px;
  font: var(--paragraph-font);
  font-weight: 400;
  height: 30px;
}
.search-page-search .search-page-form .top-search:focus-visible {
  outline: none;
  box-shadow: inset 1px 0 0 1px var(--light, dark) var(--dark, white);
}
.search-page-search .search-page-form .submit-wrap {
  background-color: var(--power-color-1);
  clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, 0% 100%);
}
.search-page-search .search-page-form .search {
  cursor: pointer;
  box-shadow: inset 1px 1px 1px 20px rgba(var(--secondary-architecture),.06);
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  transition: background-color .25s, box-shadow .25s;
  padding: 9px 20px 6px 15px;
  clip-path: polygon(2px 2px, calc(100% - 11px) 2px, calc(100% - 2px) 11px, calc(100% - 2px) calc(100% - 2px), 2px calc(100% - 2px));
  text-transform: uppercase;
  letter-spacing: .5px;
}
.search-page-search .search-page-form .search:hover {
  background-color: #FFFFFF00;
  box-shadow: inset 1px 1px 1px 20px rgba(var(--secondary-architecture),.00);
  color: var(--power-color-1-foreground);
}
.search-page-search .search-page-form .search-results-count {
  font: var(--paragraph-font);
  margin-left: 15px;
}
.search-app .anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.search-page-search form {
  display: flex;
  align-items: center;
}

/*======================================================================================================
  FOOTER STYLES - desktop
======================================================================================================*/
footer {
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  background-color: var(--light, rgb(var(--power-color-3))) var(--dark, rgba(var(--power-color-6),.5));
  position: relative;
  z-index: 15;
  margin: auto;
  margin-top: 110px;
  padding-top: 100px;
  clip-path: polygon(0% 50px, 50px 50px, 50px 0%, 322px 0%, 322px 50px, 100% 50px, 100% 100%, 0% 100%);
}
footer .footer-wrapper {
  margin: 0 50px 50px 50px;
  box-sizing: border-box;
  display: flex;
}
footer .footer-info {
  position: relative;
  background-color: var(--light, rgba(255,255,255,.5)) var(--dark, rgb(var(--secondary-architecture)));
  width: 100%;
  max-width: calc(272px - 48px);
  padding: 24px 24px 0 24px;
  display: flex;
  flex-direction: column;
  margin-right: 65px;
  margin-top: -100px;
}
footer .site-logo-element {
  margin: 0;
  flex-direction: column;
  position: relative;
}
footer .site-logo-element img {
  max-width: 203px;
  content: var(--light, var(--main-logo-img)) var(--dark, var(--main-logo-darkmode-img));
}
.info {
  margin: 18px 0 13px 0;
  font: var(--paragraph-font);
}
.hour-heading {
  opacity: 1;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  min-width: 154px;
  margin-right: 46px;
  font: var(--small-header-font);
}
.hours ul.hour-list li .message {
  width: 100%;
  color: #FF8B31;
  display: block;
}
ul.social-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}
ul.social-links li {
  margin: 0 10px 0 0;
}
ul.social-links li:last-of-type {
  margin: 0;
}
ul.social-links li a {
  opacity: 0.9;
  transition: opacity .3s;
  color:  rgb(var(--light, var(--small-header-color)) var(--dark, var(--dark-small-header-color)));
  font-size: 23px;
}
ul.social-links li a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  display: none;
}
ul.social-links li a:hover {
  opacity: 1;
}
.disclaimer {
  margin: 0;
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font-size: 12px;
  line-height: 16px;
}
footer .footer-nav {
  display: flex;
}
footer .footer-nav .footer-info:after {
  content: '';
  position: absolute;
  background-image: var(--light, url('/content/_theme_images/bookmark-split.svg')) var(--dark, url('/content/_theme_images/bookmark-split-dark.svg'));
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% + 90px);
  aspect-ratio: 362/243;
  height: auto;
  bottom: -243px;
  left: 0;
}
footer .footer-main-right-side {
  display: flex;
}
footer .footer-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer .footer-nav ul.footer-right-side {
  min-width: 200px;
  display: flex;
  flex-direction: column;
}
footer .footer-nav ul.footer-right-side .footer-title {
  margin-bottom: 30px;
}
footer .footer-nav ul.footer-right-side .list-dropdown li a {
  font: var(--paragraph-font);
  text-transform: initial;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  padding: 1px 0 ;
}
footer .footer-nav ul.list-dropdown li {
  margin: 7px 0 0 0;
  padding: 0;
  line-height: normal;
  display: flex;
  width: 100%;
}
footer .footer-nav .footer-right-side ul.list-dropdown li {
  margin: 10px 0 0 0;
}
footer .footer-nav ul.list-dropdown li a {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
  font: var(--nav-text-font);
  line-height: 16px;
  display: inline-block;
  text-decoration: none;
  transition: opacity .3s;
  -webkit-font-smoothing: antialiased;
}
footer .footer-nav ul li a:hover {
  opacity: 1;
}
footer .footer-nav .footer-main {
  width: 100%;
  max-width: 743px;
  position: relative;
  border-right: 2px solid var(--light, rgba(var(--secondary-architecture), .25)) var(--dark, rgba(var(--dark-secondary-architecture), .25));
  padding-right: 50px;
  margin-right: 50px;
}
footer .footer-nav .footer-main .footer-main-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-nav .footer-main li.footer-border {
  list-style-type: none;
  width: calc(50% - 25px);
  margin-bottom: 25px;
}
.footer-title {
  display: inline-block;
  text-transform: uppercase;
  font: var(--small-header-font);
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
}
.footer-title a {
  color: rgb(var(--light, var(--secondary-header-color)) var(--dark, var(--dark-secondary-header-color)));
}
footer .footer-hours {
  margin-top: 15px;
}
footer .footer-hours .list-heading {
  opacity: 1;
  font: var(--small-header-font);
  font-family: 'Rubik';
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 9px;
}
footer .footer-hours .branch-information {
  font: var(--paragraph-font);
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 5px;
}
footer .footer-hours .branch-information a {
  color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
}
footer .footer-hours .branch-information a:hover {
  text-decoration: underline;
}
footer .footer-hours .hours-content .hour-lists { 
  display: flex;
  flex-direction: column;
}
footer .footer-hours .hours-content .hour-lists .hour-list { 
  margin-bottom: 15px;
}
footer .footer-hours .hours-content .hour-lists .hour-list ul.list {
  list-style-type: none;
  font: var(--paragraph-font);
  font-size: 13px;
  line-height: 17px;
}
footer .footer-hours .hours-content .hour-lists .hour-list ul.list li.hour .day {
  font-weight: 500;
}
footer .footer-sunset {
  display: block;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 100%;
  max-width: 100%;
  padding-bottom: 32px;
}
footer .footer-credits {
  width: 100%;
  line-height: 14px;
  padding: 15px 50px 15px 390px;
  box-sizing: border-box;
  background-color: var(--light, rgba(var(--secondary-architecture), .8)) var(--dark, rgba(var(--dark-secondary-architecture), .8));
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 33px;
  border-bottom: 200px solid var(--light, rgb(var(--secondary-architecture))) var(--dark, rgb(var(--dark-secondary-architecture)));
}
footer .footer-credits p, footer .footer-credits a {
  margin: 0;
  color: var(--light, var(--dark-paragraph)) var(--dark, var(--paragraph));
  font: var(--secondary-button-fonts);
  font-weight: 300;
}
footer .footer-credits a {
  text-decoration: none;
}
footer .footer-credits a:hover {
  text-decoration: underline;
}
footer .footer-credits .credit-nav ul.nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
footer .footer-credits .credit-nav ul {
  list-style-type: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/*======================================================================================================
  ACCESSIBILITY STYLES
======================================================================================================*/
/* bigger-text styles */
body.bigger-text p.intro {
  font-size: 22px;
  line-height: 24px;
}
body.bigger-text p, body.bigger-text header .header-notices .notice-accessibility .access-options .access-section .option-heading, body.bigger-text .main-nav ul.nav-list li a, body.bigger-text header ul.nav-list li .list-dropdown ul li a, body.bigger-text .home-events .main-events .events-swiper .swiper-slide .event-link, body.bigger-text .home-events .more-events .highlighted-event p, body.bigger-text .upcoming-events .event .event-title, body.bigger-text .section .column-two .column-item .item-info, body.bigger-text .section .column-two .column-item.reserve .reserve-media .content .stat, body.bigger-text .section .column-two .column-item.booklist-filter .filter-bottom .filter-booklists li a, body.bigger-text .section .column-two .column-item.booklist .title, body.bigger-text .eresources-section .eresource-types li a, body.bigger-text .staff .staff-content .staff-email, body.bigger-text .staff .staff-content .staff-info, body.bigger-text .blog-posts .post .post-info, body.bigger-text .lib-overlay label, body.bigger-text .lib-overlay .additional-form-fields .add-new-field, body.bigger-text .left-sidebar a.return-to, body.bigger-text .left-sidebar .context-nav ul.nav-list li a, body.bigger-text .info, body.bigger-text .hours .hour-heading {
  font-size: 20px;
  line-height: 22px;
}
body.bigger-text button.social, body.bigger-text a.button-like.social, body.bigger-text form .field-row .field-container input[type="text"], body.bigger-text form .field-row .field-container input[type="email"], body.bigger-text form .field-row .field-container textarea, body.bigger-text .section ul.filters li a, body.bigger-text .section .column-two .column-item.booklist-filter .filter-top .filter-list a.list-toggle, body.bigger-text .blog-posts .post .post-about .tags .tag-heading, body.bigger-text .sidebar-item .post .heading, body.bigger-text .sidebar-item .heading {
  font-size: 19px;
  line-height: 21px;
}
body.bigger-text button, body.bigger-text a.button-like, body.bigger-text .button-dropdown, body.bigger-text header .header-notices .notice-accessibility .access-options .access-section .option p, body.bigger-text header .header-notices .notice-hour ul.hour-list li, body.bigger-text .utility-nav ul.nav-notice li a, body.bigger-text .utility-nav ul.nav-list li a, body.bigger-text .upcoming-events .event .event-info, body.bigger-text .quicklink .heading, body.bigger-text .section .column-item.booklists-options ul, body.bigger-text .section .column-two .column-item .item-heading, body.bigger-text .section .column-two .column-item ul.quicklinks li a, body.bigger-text .section .column-two .column-item.blog .content .blog-info, body.bigger-text .section .section-content .content-columns .column .podcast-sections .item .item-content .item-title, body.bigger-text .section .column-two .column-item.booklist .author, body.bigger-text .body .section .column-two .column-item .item-info, body.bigger-text .eresources-section .eresource-entities .eresource .eresource-name, body.bigger-text .eresources-section .eresource-entities .eresource .eresource-description, body.bigger-text .books-slider .swiper-slide .book .book-content .title, body.bigger-text .blog-posts .post .post-about .author, body.bigger-text .blog-posts .post .post-about .date, body.bigger-text .blog-posts .post .post-about .tags ul.tag-list li a.tag, body.bigger-text .lib-overlay input[type="text"], body.bigger-text .lib-overlay input[type="password"], body.bigger-text .lib-overlay input[type="email"], body.bigger-text .lib-overlay input[type="text"]::placeholder, body.bigger-text .lib-overlay ul li, body.bigger-text .lib-overlay .disclaimer, body.bigger-text .lineage-container .lineage-item .item-content .description, body.bigger-text .lineage-container .lineage-item .item-content .info {
  font-size: 18px;
  line-height: 20px;
}
body.bigger-text button.dropdown, body.bigger-text a.button-like.dropdown, body.bigger-text .top-search-input .onsite-search .onsite-search-button, body.bigger-text .section .column-two .column-item.form input[type="text"], body.bigger-text .section .column-two .column-item.form input[type="password"], body.bigger-text .section .column-two .column-item.form input[type="email"], body.bigger-text .section .column-two .column-item.booklist-filter .filter-top .filter-list .filter-dropdown li a, body.bigger-text .section .column-two .column-item.booklist-filter .filter-top .filter-list .filter-dropdown li label, body.bigger-text .section .column-two .column-item.booklist-filter .filter-top .filter-tag, body.bigger-text .books-slider .swiper-slide .book .book-content .author, body.bigger-text .search-page-search .search-page-form .search, body.bigger-text footer .footer-credits p, body.bigger-text footer .footer-credits a {
  font-size: 17px;
  line-height: 19px;
}
body.bigger-text header .header-notices .notice-hour ul.hour-list li.days-closed, body.bigger-text header .header-notices .notice-hour ul.hour-list li .disclaimer, body.bigger-text header .header-notices .notice-hour ul.hour-list li .message, body.bigger-text .upcoming-events .event .event-date, body.bigger-text .section .section-content .content-columns .column .podcast-sections .item .item-content .item-info, body.bigger-text .section .column-two .column-item.reserve a.read-more, body.bigger-text .section .column-two .book-sliders a.read-more, body.bigger-text .section .column-two .column-item.booklist .item-booklist .content p, body.bigger-text .books-slider .swiper-slide .book .book-media p, body.bigger-text .books-slider .swiper-slide .book .book-content .description, body.bigger-text .books-slider .swiper-slide .book .book-content .link, body.bigger-text .sidebar-item .post p, body.bigger-text .hours ul.hour-list li, body.bigger-text .disclaimer, body.bigger-text footer .footer-nav ul li a {
  font-size: 16px;
  line-height: 18px;
}
body.bigger-text .top-search-input .onsite-search .onsite-search-options .option label, body.bigger-text .top-search-input .onsite-search .onsite-search-input, body.bigger-text .search-page-search .search-page-form .top-search {
  font-size: 15px;
  line-height: 17px;
}

/* high-contrast styles */
body.high-contrast p.intro, body.high-contrast p, body.high-contrast header .header-notices .notice-accessibility .access-options .access-section .option-heading, body.high-contrast .main-nav ul.nav-list li a, body.high-contrast header ul.nav-list li .list-dropdown ul li a, body.high-contrast .home-events .main-events .events-swiper .swiper-slide .event-link body.high-contrast .home-events .more-events .highlighted-event p, body.high-contrast .upcoming-events .event .event-title, body.high-contrast .section .column-two .column-item .item-info, body.high-contrast .section .column-two .column-item.reserve .reserve-media .content .stat, body.high-contrast .section .column-two .column-item.booklist-filter .filter-bottom .filter-booklists li a, body.high-contrast .section .column-two .column-item.booklist .title, body.high-contrast .eresources-section .eresource-types li a, body.high-contrast .staff .staff-content .staff-email, body.high-contrast .staff .staff-content .staff-info, body.high-contrast .blog-posts .post .post-info, body.high-contrast .lib-overlay label, body.high-contrast .lib-overlay .additional-form-fields .add-new-field, body.high-contrast .left-sidebar a.return-to, body.high-contrast .left-sidebar .context-nav ul.nav-list li a, body.high-contrast .info, body.high-contrast .hours .hour-heading, body.high-contrast button.social, body.high-contrast a.button-like.social, body.high-contrast form .field-row .field-container input[type="text"], body.high-contrast form .field-row .field-container input[type="email"], body.high-contrast form .field-row .field-container textarea, body.high-contrast .section ul.filters li a, body.high-contrast .section .column-two .column-item.booklist-filter .filter-top .filter-list a.list-toggle, body.high-contrast .blog-posts .post .post-about .tags .tag-heading, body.high-contrast .sidebar-item .post .heading, body.high-contrast .sidebar-item .heading, body.high-contrast button, body.high-contrast a.button-like, body.high-contrast .button-dropdown, body.high-contrast header .header-notices .notice-accessibility .access-options .access-section .option p, body.high-contrast header .header-notices .notice-hour ul.hour-list li, body.high-contrast .utility-nav ul.nav-notice li a, body.high-contrast .utility-nav ul.nav-list li a, body.high-contrast .upcoming-events .event .event-info, body.high-contrast .quicklink .heading, body.high-contrast .section .column-item.booklists-options ul, body.high-contrast .section .column-two .column-item .item-heading, body.high-contrast .section .column-two .column-item ul.quicklinks li a, body.high-contrast .section .column-two .column-item.blog .content .blog-info, body.high-contrast .section .section-content .content-columns .column .podcast-sections .item .item-content .item-title, body.high-contrast .section .column-two .column-item.booklist .author, body.high-contrast .body .section .column-two .column-item .item-info, body.high-contrast .eresources-section .eresource-entities .eresource .eresource-name, body.high-contrast .eresources-section .eresource-entities .eresource .eresource-description, body.high-contrast .books-slider .swiper-slide .book .book-content .title, body.high-contrast .blog-posts .post .post-about .author, body.high-contrast .blog-posts .post .post-about .date, body.high-contrast .blog-posts .post .post-about .tags ul.tag-list li a.tag, body.high-contrast .lib-overlay input[type="text"], body.high-contrast .lib-overlay input[type="password"], body.high-contrast .lib-overlay input[type="email"], body.high-contrast .lib-overlay input[type="text"]::placeholder, body.high-contrast .lib-overlay ul li, body.high-contrast .lib-overlay .disclaimer, body.high-contrast .lineage-container .lineage-item .item-content .description, body.high-contrast .lineage-container .lineage-item .item-content .info, body.high-contrast button.dropdown, body.high-contrast a.button-like.dropdown, body.high-contrast .section .column-two .column-item.form input[type="text"], body.high-contrast .section .column-two .column-item.form input[type="password"], body.high-contrast .section .column-two .column-item.form input[type="email"], body.high-contrast .section .column-two .column-item.booklist-filter .filter-top .filter-list .filter-dropdown li a, body.high-contrast .section .column-two .column-item.booklist-filter .filter-top .filter-list .filter-dropdown li label, body.high-contrast .section .column-two .column-item.booklist-filter .filter-top .filter-tag, body.high-contrast .books-slider .swiper-slide .book .book-content .author, body.high-contrast footer .footer-credits p, body.high-contrast footer .footer-credits a, body.high-contrast header .header-notices .notice-hour ul.hour-list li.days-closed, body.high-contrast header .header-notices .notice-hour ul.hour-list li .disclaimer, body.high-contrast header .header-notices .notice-hour ul.hour-list li .message, body.high-contrast .upcoming-events .event .event-date, body.high-contrast .section .section-content .content-columns .column .podcast-sections .item .item-content .item-info, body.high-contrast .section .column-two .column-item.reserve a.read-more, body.high-contrast .section .column-two .book-sliders a.read-more, body.high-contrast .section .column-two .column-item.booklist .item-booklist .content p, body.high-contrast .books-slider .swiper-slide .book .book-media p, body.high-contrast .books-slider .swiper-slide .book .book-content .description, body.high-contrast .books-slider .swiper-slide .book .book-content .link, body.high-contrast .sidebar-item .post p, body.high-contrast .hours ul.hour-list li, body.high-contrast .disclaimer, body.high-contrast footer .footer-nav ul li a, body.high-contrast .top-search-input .onsite-search .onsite-search-options .option label, body.high-contrast .top-search-input .onsite-search .onsite-search-input, body.high-contrast .search-page-search .search-page-form .top-search, body.high-contrast .top-search-input .onsite-search .onsite-search-button, body.high-contrast .search-page-search .search-page-form .search {
  color: #000000;
  font-weight: 700;
}
body.high-contrast img, body.high-contrast .books-slider .swiper-slide .book .book-media, body.high-contrast .section .column-two .column-item.blog.slim .blog-media, body.high-contrast .section .section-content .content-columns .column.newsletter .newletter-media, body.high-contrast .section .column-two .column-item .booklists .book .book-media .media-front, body.high-contrast .section .column-two .column-item.reserve .reserve-media, body.high-contrast .section .column-two .column-item.booklist .item-booklist .media, body.high-contrast .bucket .bucket-media, body.high-contrast .upcoming-event-image {
  opacity: 0.7;
}

/* desaturate styles */
body.desaturate img, body.desaturate .books-slider .swiper-slide .book .book-media, body.desaturate .section .column-two .column-item.blog.slim .blog-media, body.desaturate .section .section-content .content-columns .column.newsletter .newletter-media, body.desaturate .section .column-two .column-item .booklists .book .book-media .media-front, body.desaturate .section .column-two .column-item.reserve .reserve-media, body.desaturate .section .column-two .column-item.booklist .item-booklist .media, body.desaturate .bucket .bucket-media, body.desaturate .upcoming-event-image {
  filter: grayscale(1);
}
body.desaturate {
  filter: grayscale(1);
}

/* highlight-links styles */
body.highlight-links a.h4-like, body.highlight-links a, body.highlight-links .utility-nav ul.nav-notice li a, body.highlight-links .utility-nav ul.nav-list li a, body.highlight-links .main-nav ul.nav-list li a, body.highlight-links .sidebar-item .post a.heading, body.highlight-links .sidebar-item a.heading, body.highlight-links .upcoming-events .event .event-title, body.highlight-links .home-events .main-events .events-swiper .swiper-slide .event-link, body.highlight-links .quicklink .heading, body.highlight-links .section .column-two .column-item.reserve a.read-more, body.highlight-links .section .column-two .book-sliders a.read-more, body.highlight-links .section .section-content .content-columns .column .podcast-sections .item .item-content .item-title, body.highlight-links ul.nav-list li .list-dropdown ul li a, body.highlight-links .top-search-input .onsite-search .onsite-search-button, body.highlight-links .search-page-search .search-page-form .search, body.highlight-links .left-sidebar .context-nav a.nav-heading, body.highlight-links .left-sidebar .context-nav ul.nav-list li a, body.highlight-links .eresources-section .eresource-entities .eresource .eresource-name, body.highlight-links footer .footer-nav ul li a, body.highlight-links footer .footer-credits a {
  background-color: yellow;
  color: #121212;
}
body.highlight-links a.button-like, body.highlight-links a.button-like.secondary {
  border-color: yellow;
  color: #000000;
}
body.highlight-links a.button-like:hover, body.highlight-links a.button-like.secondary:hover, body.highlight-links .button-dropdown, body.highlight-links .left-sidebar a.return-to {
  background-color: yellow;
  color: #000000;
}
body.highlight-links header .header-notices .notice-accessibility .access-options .access-section .option, body.highlight-links header .header-notices .close-icon, body.highlight-links .eresources-section .letters-list li a, body.highlight-links .calendar .calendar-title .cal-arrow, body.highlight-links .calendar .calendar-top .calview a.view-toggle {
  background-color: transparent;
}
body.highlight-links ul.social-links li a svg.social-svg path {
  fill: #000000;
}
body.dark-mode .lightmode, body.dark-mode .tablet.darkmode, body.dark-mode .mobile.darkmode {
  display: none;
}

/* dark mode off-site links */
body.dark-mode a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: url('/content/_theme_images/offsite-link-light.svg');
}
/* dark mode home */
body.dark-mode .button-like.primary:hover:before, body.dark-mode .section.fill a.button-like:hover:before, body.dark-mode .section.fill a.button-like.primary:hover:before {
  opacity: 0;
}
body.dark-mode header .site-logo img, body.dark-mode footer .site-logo-element img {
  content: var(--current-logo-img, var(--main-logo-darkmode-img) );
}
body.dark-mode .section.full {
  background-color: var(--power-color-1);
}
body.dark-mode .button-dropdown-container .button-dropdown:before {
  filter: invert(1) hue-rotate(180deg);
}
/* dark mode other pages */
body.dark-mode .eresource-entities a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after, 
body.dark-mode .body a[href*="//"]:not(.primary):not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: url('/content/_theme_images/offsite-link-light.svg');
}
/* dark mode button hover */
body.dark-mode .body a:hover[href*="//"]:not(.primary):not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: url('/content/_theme_images/offsite-link-dark.svg');
}
/* dark mode footer */
body.dark-mode footer .footer-credits a[href*="//"]:not(.skip-offsite):not([href*="http://kentcountypubliclibrary.digitalbranch.org/"]):not([href*="https://eshore.polarislibrary.com/"]):after {
  background-image: url('/content/_theme_images/offsite-link-dark.svg');
}

@media (prefers-color-scheme: dark) {
  .prefers-dark {
    display: block;
  }
}

@media only screen and (max-width: 1440px) {
  header .header-notices {
    left: 0;
  }
}

@media only screen and (max-width: 1242px) {
  body {
    --current-logo-width: 271px;
    --current-logo-height: 111px;
  }
}

@media only screen and (min-width: 1440px) {
  header .site-navigations:before {
    background-size: 100%;
  }
  .main-nav:before {
    background-size: 100% 100%;
  }
  #top_button {
    right: calc((100% - 1440px) / 2);
  }
}

@media only screen and (max-width: 1200px) {
  header .site-logo {
    width: 150px;
    min-width: 150px;
    height: 98px;
  }
  header .site-logo img {
    max-width: 150px;
  }
  .utility-nav ul.nav-list li {
    margin: 0 0 0 15px;
    transition: margin .3s;
  }
  .main-nav {
    padding: 19px 50px 0 0;
  }
  .main-nav ul.nav-list li a {
    font-size: 14px;
    line-height: 19px;
  }
  .main-nav ul.nav-list .dropdown-included:first-child > a {
    width: 84px;
  }
  .main-nav ul.nav-list .dropdown-included:nth-child(2) > a {
    width: 128px;
  }
  .main-nav ul.nav-list .dropdown-included:nth-child(3) > a {
    width: 73px;
  }
  .main-nav ul.nav-list .dropdown-included:nth-child(4) > a {
    width: 86px;
  }
  .main-nav ul.nav-list .dropdown-included:nth-child(5) > a {
    width: 113px;
  }
  .main-nav ul.nav-list .dropdown-included:nth-child(6) > a {
    width: 173px;
  }
  .home-events {
    box-sizing: border-box;
  }
  .home-events .home-event-content {
    /*width: calc(100% - 50px);*/
    /*margin: 0 25px 68px 25px;*/
  }
  .home-events .main-events {
    /*width: calc(62% - 5px);*/
    width: calc(100% - 400px);
  }
  .home-events .main-events .events-swiper {
    width: 100%;
  }
  .home-events .main-events .events-swiper img {
    /*width: 651px;*/
    /*height: 330px;*/
    /*height: unset;*/
    transition: height .3s;
  }
  .home-events .main-events .events-swiper .swiper-pagination {
    bottom: 6px;
  }
  footer .site-logo-element img {
    width: 80%;
    max-width: calc(100% - 24px);
  }
}

@media only screen and (max-width: 1030px) {
  :root {
    --current-logo-img: var(--tablet-logo );
    --current-logo-width: 252px;
    --current-logo-height: 160px;
  }
  .desktop-small {
    display: block;
  }
  header .site-logo {
    margin: 15px 40px 0 25px;
    width: 110px;
    min-width: 110px;
    height: 72px;
  }
  header .site-logo img {
    max-width: 110px;
  }
  header .site-logo .logo-subtitle {
    width: 226px;
    height: 30px;
  }
  header .header-notices .notice-section {
    padding: 25px;
  }
  header .header-notices .notice-hour .hour-list {
    flex-direction: column;
  }
  header .header-notices .notice-hour .hour-list .list-image {
    height: 100px;
    width: 200px;
  }
  header .site-navigations:before {
    background-image: url('/content/_theme_images/navigations_full_bkgd_2.png');
  }
  .utility-nav {
    padding-right: 25px;
  }
  header ul.nav-list li.dropdown-included:last-of-type .list-dropdown:last-of-type {
    width: calc(100% + 32px);
  }
  .utility-nav ul.nav-list li a, .utility-nav ul.nav-notice li a {
    font-size: 12px;
  }
  .main-nav {
    padding: 5px 25px 0 0;
  }
  .main-nav:before {
    opacity: 0;
  }
  
  .home-events .home-event-content {
    width: calc(100% - 50px);
    margin: 0 25px 68px 25px;
    gap: 25px;
  }
  .home-events .main-events .events-swiper img {
    /*height: 285px;*/
    /*height: unset;*/
  }
  .home-events .main-events {
    width: 59%;
  }
  .home-events .main-events .swiper-slide .event-image, .home-events .main-events .swiper-slide .event-image-border {
    /*height: 400px;*/
  }
  
  .quicklinks-container {
    margin: 0 25px 85px 25px;
    width: unset;
    max-width: unset;
  }
  
  .home .section.two-col {
    margin: 0 25px 100px 25px;
    width: calc(100vw - 50px);
  }
  .section.fill.two-col {
    width: calc(100% - 115px);
    margin: 0 0 100px 0;
    padding: 25px 40px 50px 75px;
  }
  .section.fill.two-col .column-two .quicklinks-container .quicklinks-image {
    width: 300px;
  }
  .section .column-two .column-item.booklists {
    max-width: 170px;
  }
  .section .section-content .content-columns .column.list {
    max-width: 562px;
  }
  .section .section-content .content-columns .column.newsletter {
    width: calc(50% - 10px);
  }
  .main-content, .main-content.secondary, .main-content.tertiary, .main-content.search-page {
    width: calc(100% - 50px);
  }
  .page-banner .banner-media {
    min-height: 350px;
  }
  .left-sidebar, .left-sidebar .context-nav, .right-sidebar {
    width: 200px;
    max-width: 200px;
    min-width: 200px;
  }
  
  .main-content.event .page-content {
    margin: 0;
    width: 100%;
  }
  
  footer {
    clip-path: polygon(0% 50px, 25px 50px, 25px 0%, 297px 0%, 297px 50px, 100% 50px, 100% 100%, 0% 100%);
  }
  footer .footer-wrapper {
    margin: 0 25px 25px 25px;
  }
  footer .footer-main-right-side {
    flex-direction: column;
  }
  footer .footer-nav .footer-main {
    padding-right: 0;
    margin-right: 0;
    border-right: unset;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--light, rgba(var(--secondary-architecture), .25)) var(--dark, rgba(var(--dark-secondary-architecture), .25));
  }
  footer .footer-nav ul.footer-right-side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .footer-nav ul.footer-right-side .footer-title {
    width: calc(50% - 25px);
  }
  footer .footer-credits {
    padding: 15px 25px 15px 365px;
  }
  /* staff page */
  .staff .section .column-two .column-item.staff {
    width: calc((100% - 25px) / 2);
  }
  
  /* booklists page */
  .body .section .column-two .column-section {
    gap: 15px;
  }
  .section .column-two .column-item.booklist {
    width: calc((100% - 30px) / 3);
  }
  /* eresources page */
  .eresources-section .eresource-entities .eresource .eresource-media, .eresources-section .eresource-entities .eresource .placeholder-book {
    width: 50%;
  }
  
  body.dark-mode {
    /*TODO: test if we need this*/
    --current-logo-img: var(--tablet-logo );
  }
}

@media only screen and (max-width: 970px) {
  body {
    --header-height: 90px;   
  }
  body:has(header.open-notices) {
    overflow: hidden;
  }
  header {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0px -1px 5px 0px var(--light, var(--dark-background-2)) var(--dark, var(--background-2));
  }
  header .header-notices {
    opacity: 0;
    display: none;
    transition: opacity .3s;
  }
  header.open-notices .header-notices {
    order: 2;
    opacity: 1;
    top: 87px;
    z-index: 99;
    transition: opacity .3s .1s;
    border-top: 4px solid var(--power-color-2);
    border-bottom: unset;
    overflow: auto;
  }
  header .header-notices .notice-accessibility, header .header-notices .notice-hour, header .header-notices .notice-alert {
    padding: 35px 30px 75px 30px;
    background-color: var(--light, var(--background-1)) var(--dark, var(--dark-background-1));
    transition: opacity 0s .3s, left 0s .3s;
  }
  header .header-notices .notice-accessibility .access-options .access-section .option {
    margin: 0 10px 10px 0;
  }
  header .header-notices .notice-accessibility .access-options .access-section .option.active button:after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 9px;
    margin: 0 0 1px 5px;
    background-color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
    clip-path: polygon(1.5px 3px, 4.5px 6px, 10.5px 0px, 12px 1.5px, 4.5px 9px, 0px 4.5px);
  }
  header.show-accessibility .header-notices .notice-accessibility, header.show-hours .header-notices .notice-hour, header.show-alerts .header-notices .notice-alert {
    height: 100%;
    overflow: scroll;
  }
  header .header-notices .notice-hour .hour-lists {
    flex-direction: column;
    gap: 25px;
  }
  header .header-notices .notice-hour .hour-list {
    flex-direction: row;
  }
  header .header-notices .notice-hour .hour-list .list-image {
    height: 200px;
  }
  
  .utility-nav ul.nav-list li.dropdown-included {
    padding-right: 0;
  }
  .utility-nav ul.nav-list li.dropdown-included:after {
    content: unset;
  }

  .search-results.search-area {
    max-height: calc(100vh - 200px);
    overflow: scroll;
  }

  .home-events .more-events .highlighted-event {
    padding: 10px 10px 12px 10px;
  }
  .home-events .more-events .highlighted-event img {
    width: 235px;
    height: 85px;
    margin: 0 auto;
    display: block;
  }
  .upcoming-events {
    padding: 10px 14px 17px 9px;
  }
  .upcoming-events .heading {
    font-size: 20px;
    line-height: 22px;
  }
  .upcoming-events .event {
    display: none;
  }
  .upcoming-events .event:first-of-type {
    display: flex;
  }
  .upcoming-events .event:nth-of-type(2) {
    display: flex;
  }
  .upcoming-events .event .event-date {
    margin: 0 6px 0 0;
  }
  .upcoming-events .event .event-title {
    font-size: 15px;
    line-height: 20px;
  }
  .upcoming-events .event .event-info {
    font-size: 13px;
    line-height: 18px;
  }
  .upcoming-events a.button-like {
    margin: 11px 0 0 0;
  }
  .quicklinks-container h2 {
    margin: 0 0 15px 0;
    padding: 6px 0 0 0;
  }
  .quicklinks-container .quicklinks {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
  }
  .quicklink {}
  .quicklinks-container .quicklinks .quicklink:nth-of-type(6) {
    margin: 0;
  }
  .quicklinks-container .quicklinks .quicklink-separator {
    width: 100%;
    height: 0;
    margin: 13px 0 16px 0;
    position: relative;
  }
  .quicklinks-container .quicklinks .quicklink-separator:before {
    content: "";
    width: 122px;
    height: 1px;
    background-color: #010852;
    opacity: 0.2;
    display: block;
    position: absolute;
    left: calc(50% - 61px);
  }
  home .section.two-col {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0 25px 100px 25px;
    width: calc(100vw - 50px);
    gap: 0;
  }
  .section .section-content .content-columns .column.list ul.filters {
    flex-direction: column;
  }
  .section .section-content .content-columns .column.list ul.filters li {
    margin: 0 0 5px 0;
  }
  .section ul.filters li {
    margin: 0;
  }
  .section ul.filters li a {
    margin-right: 15px;
  }
  .section ul.filters li a.more-toggle {
    padding-right: 25px;
  }
  .section ul.filters li a.more-toggle:hover, #booklists_filters li a.more-toggle:hover {
    background-color: transparent;
  }
  .section ul.filters li a.more-toggle:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    top: calc(50% - 2px);
    left: 50px;
    background-color: #000000;
  }
  
  .section ul.filters li.filter-more ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    z-index: 10;
    display: none;
  }
  .section ul.filters li.filter-more ul.show {
    display: initial;
  }
  .section ul.filters li.filter-more ul a {
    text-align: center;
    border: 1px solid #F4F3EF;
    margin-bottom: 5px;
  }
  
  .section .column-one {
    max-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .section .column-one .h2-like {
    width: calc(100vw - 50px);
  }
  .section .column-one a.button-like {
    margin: 0;
  }
  .home .section.fill.two-col .column-one {
    width: calc(100% - 60px);
  }
  .home .section.fill.two-col .column-one .h2-like {
    width: 100%;
  }
  .section .column-two {
    border: none;
    margin-top: 20px;
    max-width: unset;
    width: 100%;
  }
  .section .column-two .column-section {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .home .section .column-two .column-item.event {
    max-width: 223px;
    padding: 10px 10px 12px 10px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: 1px solid #CFCFCF;
  }
  .section .column-two .column-item .item-info {
    font-size: 14px;
    line-height: 19px;
  }
  .section .column-two .column-item.booklists {
    max-width: 243px;
    padding: 10px 10px 12px 10px;
    box-sizing: border-box;
  }
  .section .column-two .column-item.quicklink, .section .column-two .column-item.blog {
    padding: 10px 10px 12px 10px;
    box-sizing: border-box;
  }
  .section.full {
    padding: 100px 0;
  }
  .section.full .section-content.youtube-section {
    flex-wrap: wrap;
  }
  .additional-videos {
    padding: 0;
  }
  .additional-videos .button-like {
    right: 0;
  }
  .about-section {
    margin-top: 75px;
  }
  .section.full .section-content {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .section .section-content .content-columns {
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }
  .section .section-content .content-columns .column {
    opacity: 0;
    position: absolute;
    pointer-events: none;
  }
  .section .section-content .content-columns .column.active {
    opacity: 1;
    position: relative;
    pointer-events: all;
  }
  .section .section-content .content-columns .column.placeholder {
    width: calc(100% - 30px);
    padding: 20px 15px;
    max-width: none;
  }
  .swiper.books-slider {
    padding: 0px 50px 0 0;
  }
  .cool-row {
    display: grid;
	grid-template-columns: 100px 150px 200px;
	text-align: center;
  }
  .cool-column {
    padding: 16px;
	height: 250px;
	margin: 5px;
	background-color: #cccccc;
  }
  form {
    max-width: unset;
  }
  .section .column-two .column-item.form {
    padding: 43px 23px;
  }
  .section .column-two .column-item.blog .content {
    display: none;
  }
  .section .section-content .content-columns .column.newsletter {
    width: calc((100% - 25px) / 2);
    margin: 0 16px 0 0;
    padding: 8px 9px 12px 9px;
  }
  .section .section-content .content-columns .column.newsletter:last-of-type {
    margin: 0;
  }
  .section .section-content .content-columns .column.newsletter .newletter-content {
    width: calc(100% - 100px);
  }
  .section.fill.two-col .column-two .for-you-audience, .section.fill.two-col .column-two .quicklinks-container {
    flex-direction: column;
  }
  .section.fill.two-col .column-two .for-you-audience .column-item {
    max-width: unset;
  }
  .section.fill.two-col .column-two .for-you-audience .column-item .event, .section.fill.two-col .column-two .for-you-audience .column-item .booklist {
    display: flex;
    gap: 20px;
  }
  .section.fill.two-col .column-two .for-you-audience .column-item .event .event-image, .section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists {
    width: 300px;
    min-width: 300px;
  }

  .blog-posts .post.first .post-media {
    height: 300px;
  }
  .blog-posts .post {
    margin: 0 0 25px 0;
    flex-direction: column;
  }
  .blog-posts .post .post-media {
    max-width: 748px;
    height: 304px;
    margin: 0 0 10px 0;
  }
  .blog-posts .post.flipped .post-media {
    margin: 0 0 10px 0;
  }
  .blog-posts .post.flipped .post-content {
    order: 2;
  }
  .blog-posts .post.main .post-content {
    flex-wrap: wrap;
  }
  .blog-posts .post .post-about {
    max-width: none;
  }

  .lineage-container {
    padding: 0 10px;
    box-sizing: border-box;
  }

  .bucket {
    margin: 50px 0 0 0;
    width: 100%;
  }
  .more-events .bucket {
    padding: 10px 10px 12px 10px;
  }
  .more-events .bucket .bucket-media {
    width: 235px;
    height: 85px;
    margin: 0 auto;
    display: block;
  }
  
  .eresources-section .eresource-entities .eresource .eresource-media, .eresources-section .eresource-entities .eresource .placeholder-book {
    width: 200px;
  }
  
  .desktop, .section.desktop, header .header-notices .notice-accessibility .access-options .access-section .option .icon.desktop {
    display: none;
  }
  
  .desktop-small {
    display: none;
  }
  .tablet {
    display: block;
  }
  .section.tablet {
    display: flex;
  }
  .section ul.filters.tablet {
    display: flex;
    align-items: flex-start;
  }
  .main-content {
    padding:  var(--header-height) 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .main-content.home {
    padding: var(--header-height) 0 0 0;
  }
  .main-content.secondary, main-content.tertiary {
    margin: 0 auto;
    width: calc(100% - 50px);
  }
  
  .body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    order: 0;
  }
  
  .main-content.tertiary .body {
    width: 100%;
  }
  .body p {
    max-width: none;
  }
  .blog-posts .post.first .post-media {
    height: 370px;
  }
  
  header.open-notices .header-notices a.close-icon {
    width: 24px;
    height: 24px;
    display: none;
  }
  header.open-notices .header-notices a.close-icon svg {
    width: 100%;
    height: auto;
  }

  header.open-notices {
    height: unset;
    padding: 0;
    max-height: 100vh;
  }
  header .header-notices .notice-accessibility .access-options {
    flex-direction: column;
  }
  header .header-notices .notice-accessibility .access-options .access-section {
    margin: 0 0 15px 0;
  }
  header.show-accessibility .header-wrapper .site-navigations, header.show-hours .header-wrapper .site-navigations {
    left: -100vw;
  }
  header.show-hours, header.show-hours.hide-accessibility {
    padding: 362px 0 0 0;
    padding: 0;
  }
  header .header-notices .notice-hour ul.hour-list {
    flex-direction: column;
    align-items: flex-start;
  }
  header .header-notices .notice-hour ul.hour-list li {
    margin: 0 0 10px 0;
  }
  header .header-notices .notice-accessibility .access-options .access-section .option.desktop {
    display: none;
  }
  header .header-notices .notice-accessibility .access-options .access-section .option.tablet {
    display: inline-block;
  }
  header.open-notices .header-wrapper:after {
    width: calc(100vw + 177px);
    height: calc(100vh + 81px);
    background-color: #DFEEF3;
  }
  header.close-notices {
    padding: 0 0 0 0;
  }
  header.close-notices .header-notices {
    opacity: 0;
    transition: opacity .3s;
  }
  body:has(header.open-menu) {
    overflow: hidden;
  }
  header .site-logo {
    margin: 10px 0 10px 30px;
    width: 100px;
    position: relative;
    z-index: 15;
    height: fit-content;
    height: 70px;
  }
  header .header-wrapper .site-logo .logo-mobile.mobile {
    display: none;
  }
  header .header-wrapper {
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    /*height: 100%;*/
    height: 91px;
    margin-top: 0px;
    order: 1;
  }
  header .header-wrapper:before {
    content: "";
    width: 100%;
    height: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: height .3s;
  }
  header.open-menu .header-wrapper:after {
    width: calc(100vw + 177px);
    height: 100vh;
    background-color: #DFEEF3;
    background-image: none;
  }
  header.open-menu .header-wrapper:before {
    height: calc(100vh + 90px);
    background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
  }
  header .site-logo img {
    max-width: 100px;
    height: 70px;
  }
  header .header-wrapper .mobile-notices {
    padding: 0 10px 0 0;
    box-sizing: border-box;
    display: flex;
    position: relative;
    align-items: stretch;
    gap: 35px;
    z-index: 15;
  }
  header .header-wrapper .mobile-notices .ham-menu {
    padding: 0;
    margin: 33px 28px 0 0;
    box-sizing: border-box;
  }
  header .header-wrapper .mobile-notices ul.nav-notice {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 25px;
    transition: opacity .3s;
  }
  header .header-wrapper .mobile-notices ul.nav-notice li {
    margin: 0;
    padding: 30px 0 0 0;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  header .header-wrapper .mobile-notices ul.nav-notice li a svg {
    height: 25px;
    width: auto;
  }
  header .header-wrapper .mobile-notices ul.nav-notice li.alert.disabled {
    opacity: 0.4;
    pointer-events: none;
  }
  .mobile-notices ul.nav-notice li:before {
    content: "";
    width: 25px;
    height: 12px;
    display: inline-block;
    position: absolute;
    top: -1px;
    left: calc(50% - 13px);
    z-index: 15;
    background-color: var(--power-color-2);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  }
  .mobile-notices li.accessibility .access-svg g {
    fill: none;
  }
  
  header .header-wrapper .mobile-notices ul.nav-notice li:last-of-type {
    margin: 0;
  }
  header .header-wrapper .site-navigations {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: -100vh;
    left: 0;
    z-index: 1;
    transition: top .3s, opacity .0s;
  }
  header .header-wrapper .site-navigations {
    display: none;
  }
  header .site-navigations:before {
    display: none;
  }
  header.open-menu .header-wrapper .site-navigations {
    opacity: 1;
    top: 90px;
    z-index: 15;
    transition: opacity .3s .1s;
    background-color: var(--light, var(--background-2)) var(--dark, var(--dark-background-2));
    width: 100vw;
    height: calc(100vh - 90px);
    overflow: scroll;
    display: initial;
    display: flex;
  }
  header ul.nav-list li {
    flex-direction: row;
  }
  header ul.nav-list li.dropdown-included:before {
    opacity: 1;
    height: 3px;
    top: 20px;
  }
  header ul.nav-list li.dropdown-included, .main-nav ul.nav-list > li, .utility-nav ul.nav-list > li {
    position: relative;
    width: calc(100% - 40px);
    margin: 10px 20px 20px 20px;
  }
  header .main-nav ul.nav-list > li:before, header .main-nav ul.nav-list > li.dropdown-included:before {
    opacity: 1;
    top: 18px;
    height: 3px;
  }
  .main-nav ul.nav-list > li:last-of-type {
    margin: 10px 20px;
  }
  .main-nav ul.nav-list .dropdown-included:first-child > a, .main-nav ul.nav-list .dropdown-included:nth-child(2) > a, .main-nav ul.nav-list .dropdown-included:nth-child(3) > a, .main-nav ul.nav-list .dropdown-included:nth-child(4) > a, .main-nav ul.nav-list .dropdown-included:nth-child(5) > a, .main-nav ul.nav-list .dropdown-included:nth-child(6) > a {
    width: unset;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.1px;
  }
  .main-nav ul.nav-list li.dropdown-included .second-toggle {
    display: inline-block;
    cursor: pointer;
    flex: 1;
    height: 8px;
    background-image: url('/content/_theme_images/down-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    border: unset;
    background-color: transparent;
  }
  .main-nav ul.nav-list li.dropdown-included.show .second-toggle, .utility-nav ul.nav-list li.dropdown-included.show .second-toggle {
    transform: scaleY(-1);
  }
  header .ham-menu {
    display: flex;
  }
  .utility-nav {
    width: 100%;
    padding: 0;
    flex-direction: column;
    order: 2;
    position: unset;
    background-color: var(--light, var(--background-3)) var(--dark, var(--dark-background-3));
    margin-bottom: 90px;
  }
  .utility-nav ul {
    width: 100%;
    flex-direction: column;
  }
  .utility-nav ul.nav-notice {
    display: none;
  }
  .utility-nav ul.nav-list {
    padding: 25px 0 15px 0;
    box-sizing: border-box;
    order: 1;
    z-index: 100;
  }
  .utility-nav ul.social-links {
    margin: 0 20px 35px 20px;
    width: calc(100% - 40px);
    background-color: transparent;
    flex-direction: row;
    align-items: center;
    order: 1;
  }
  .utility-nav ul.social-links li {
    width: auto;
    margin: 0 10px 0 0;
    border: none;
  }
  .utility-nav ul.social-links li:last-of-type {
    margin: 0;
  }
  .utility-nav ul.social-links li img {
    width: 25px;
    height: 25px;
  }
  .utility-nav ul.social-links li a {
    padding: 0;
    opacity: 1;
    margin-right: 10px;
  }
  .utility-nav ul.social-links li a span:before {
    font-size: 30px;
  }
  .utility-nav ul li {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .utility-nav ul li:last-of-type {
    border-bottom: none;
  }
  .utility-nav ul.nav-list li a {
    padding: 5px 0px;
    box-sizing: border-box;
    color: var(--light, var(--paragraph)) var(--dark, var(--dark-paragraph));
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    line-height: normal;
  }
  .utility-nav ul.nav-list li .second-toggle {
    display: inline-block;
    cursor: pointer;
    flex: 1;
    height: 8px;
    background-image: url(/content/_theme_images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    padding: 0;
    border: unset;
    background-color: transparent;
  }
  .utility-nav ul.nav-list li .list-dropdown ul li a {
    font-size: 12px;
    line-height: 13px;
    font-weight: 300;
    padding-left: 25px;
  }
  .main-nav {
    padding: 15px 0;
    box-sizing: border-box;
    order: 1;
    margin-top: 75px;
  }
  .main-nav ul {
    flex-direction: column;
  }
  .main-nav ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  header ul.nav-list li .list-dropdown {
    width: 100%;
    border: none;
    opacity: 1;
    position: relative;
    top: unset;
    left: unset;
    transition: opacity .3s;
    display: none;
  }
  header .main-nav ul.nav-list li .list-dropdown, header .main-nav ul.nav-list li:nth-child(2) .list-dropdown, header .main-nav ul.nav-list li:nth-child(3) .list-dropdown, header .main-nav ul.nav-list li:nth-child(4) .list-dropdown, header .main-nav ul.nav-list li:nth-child(5) .list-dropdown, header .main-nav ul.nav-list li:nth-child(6) .list-dropdown {
    background-color: unset;
    clip-path: unset;
  }
  header ul.nav-list li.show .list-dropdown {
    display: initial;
    margin-top: 5px;
    background-color: unset;
    clip-path: unset;
  }
  header .utility-nav ul.nav-list li .list-dropdown {
    margin-top: 0;
    left: 0;
  }
  .utility-nav ul.nav-list li .list-dropdown ul {
    padding: 0;
  }
  header ul.nav-list li.toggled .list-dropdown {
    opacity: 1;
    position: relative;
    left: 0;
  }
  header ul.nav-list li .list-dropdown ul {
    clip-path: unset;
    padding: 0;
    background-color: unset;
  }
  header ul.nav-list li .list-dropdown ul li a {
    padding: 11px 0 10px 15px;
  }
  .main-nav ul.nav-list li a {
    width: fit-content;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.27px;
  }
  header ul.nav-list li a.dropdown-toggle {
    width: 25px;
    height: 15px;
    padding: 0;
    background-image: url('/assets/images/icon_arrow_blue.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: relative;
  }
  .main-nav ul li.toggled a.dropdown-toggle {
    top: 8px;
    left: -8px;
    transform: rotate(90deg);
  }
  header ul.nav-list li .list-dropdown ul li {
    opacity: 1;
  }

  .top-search-input {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 20px 10px 20px;
    order: 0;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  .top-search-input .onsite-search {
    margin: 25px 0 15px 0;
    max-width: 100%;
    justify-content: center;
  }
  .top-search-input .onsite-search .onsite-search-input {
    max-width: calc(100% - 75px);
  }

  .page-banner {
    width: 100%;
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 50px), 100px calc(100% - 50px), 100px 100%, 50px calc(100% - 50px), 0% calc(100% - 50px));
  }
  .main-content.staff-individual .page-content .page-banner {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .main-content.calendar-event .page-banner .banner-media {
    min-height: 192px;
  }
  .page-banner .banner-media {
    clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) 52px, calc(100% - 5px) calc(100% - 55px), 95px calc(100% - 55px), 95px calc(100% - 12px), 52px calc(100% - 55px), 5px calc(100% - 55px));
  }
  
  .home-events .home-event-content {
    flex-direction: column;
    align-items: center;
    max-width: 728px;
    gap: 50px;
    margin: 0 auto 68px auto;
  }
  .home-events .main-events {
    padding: 10px 10px 12px 10px;
    width: 100%;
  }
  .home-events .main-events .events-swiper {
    width: 100%;
    padding: 0;
  }
  .home-events .main-events .events-swiper .swiper-slide .events-button-pagination .button-like {
    width: fit-content;
    margin-bottom: 20px;
  }
  .home-events .side-column {
    width: 100%;
    max-width: 400px;
  }
  .home-events .more-events {
    max-width: unset;
  }
  
  .home-event-content .more-events ul .events-category {
    position: relative;
    top: unset;
    left: unset;
    display: block;
  }
  .more-events ul .events-category.hide-down, .more-events ul .events-category.hide-up, .more-events ul .events-category:not(:first-child) {
    display: none;
  }
  .more-events ul .events-category.active {
    display: block;
    top: unset;
    left: unset;
  }
  .more-events a.button-like {
    position: relative;
  }

  .left-sidebar {
    max-width: unset;
    width: 215px;
    min-width: 215px;
    order: 1;
    margin-top: 50px;
  }
  .left-sidebar .context-nav {
    max-width: unset;
    min-width: unset;
    width: unset;
  }

  .section.scroll {
    padding: 0;
    overflow: hidden;
  }
  .section.scroll .column-two {
    width: calc(100% - 50px);
    max-width: none;
    padding: 0;
    margin-top: 20px;
  }
  .section .column-two .column-item.event .item-media {
    height: 154px;
  }
  .section .column-two .column-item.staff .item-media {
    height: 167px;
  }
  .staff .section .column-two .column-item.staff {
    width: calc((100% - 50px) / 3);
  }

  .right-sidebar {
    max-width: 215px;
    width: 215px;
    min-width: 215px;
    margin: 50px 0 0 0;
    order: 3;
  }
  .right-sidebar .bucket {
    margin: 0 0 50px 0;
  }
  .sidebar-item .post {
    max-width: 450px;
  }

  .lineage-container {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .body .lineage-container {
    padding: 0;
  }
  
  .page-content {
    flex-direction: column;
  }
  
  .main-content.secondary .page-content .left-sidebar, .main-content.tertiary .page-content .left-sidebar {
    order: 2;
  }
  .main-content.secondary .page-content .body, .main-content.tertiary .page-content .body {
    order: 1;
    padding: 0;
    margin: 0;
  }
  .main-content.secondary .page-content .right-sidebar, .main-content.tertiary .page-content .right-sidebar {
    order: 3;
    width: 50%;
  }
  .main-content.tertiary .body:not(.no-right-sidebar) {
    width: 100%;
    padding: 0;
  }

  footer {
    clip-path: polygon(0% 50px, 25px 50px, 25px 0%, 265px 0%, 265px 50px, 100% 50px, 100% 100%, 0% 100%);
  }
  footer .footer-wrapper {
    padding: 0;
    bottom: 0;
  }
  footer .footer-hours .hour-heading {
    margin: 0;
    text-align: center;
  }
  footer .site-map ul {
    flex-direction: column;
  }
  footer .site-map ul li {
    margin: 0 0 25px 0;
  }
  footer .footer-nav .footer-info:after {
    width: calc(100% + 79.5px);
    bottom: -214.13px;
  }
  footer .footer-info {
    max-width: 200px;
    margin-right: 50px;
    padding: 20px;
    border: none;
    display: flex;
    flex-direction: column;
  }
  footer .footer-info .info {
    margin: 0 0 20px 0;
    text-align: center;
    order: 0;
  }
  footer .footer-info .hours {
    margin: 0 0 20px 0;
    order: 1;
  }
  footer .footer-info .disclaimer {
    max-width: none;
    margin: 0 0 20px 0;
    text-align: center;
    order: 2;
  }
  .footer-wrapper .footer-info .hours .hour-heading {
    text-align: center;
  }
  footer .footer-info ul.social-links {
    justify-content: center;
    position: initial;
    order: 3;
  }
  footer .site-map ul li .nav-dropdown {
    margin-top: 10px;
  }
  
  footer .footer-nav .footer-main li.footer-border {
    width: 100%;
  }
  footer .footer-nav .footer-main .footer-main-list {
    flex-direction: column;
  }
  footer .footer-nav ul.list-dropdown {
    display: none;
  }
  footer .footer-nav ul.footer-right-side {
    flex-direction: column;
  }
  footer .footer-nav ul.footer-right-side .footer-title {
    width: 100%;
  }
  footer .footer-credits {
    margin: 0;
    padding: 25px 25px 25px 310px;
    background-position: bottom;
    gap: 10px;
  }
  
  /* darkmode / dark mode / dark-mode styles */
  body.dark-mode .desktop, body.dark-mode .tablet.lightmode, .tablet.darkmode {
    display: none;
  }
  body.dark-mode .tablet.darkmode {
    display: inline-block;
  }
  body.dark-mode .main-nav ul.nav-list li.dropdown-included .second-toggle, body.dark-mode .utility-nav ul.nav-list li .second-toggle {
    filter: invert(1) hue-rotate(180deg);
  }
}

@media only screen and (max-width: 800px) {
  .alert-block .alert-block-content {
    width: calc(100% - 60px);
    min-width: unset;
    max-height: calc(100% - 25px);
    top: 15px;
    left: 30px;
    overflow: scroll;
  }
  .alert-block .alert-block-content .close {
    position: fixed;
    top: 21px;
    right: 43px;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    --current-logo-img: var(--mobile-logo );
    --current-logo-width: 252px;
    --current-logo-height: 160px;
  }
  body.dark-mode {
    /*TODO: test if we need this*/
    --current-logo-img: var(--mobile-logo );
  }
  
  body:has(header.show-hours) {
    overflow: hidden;
  }
  
  header .site-logo img {
    max-width: 100px;
    height: 70px;
  }
  header .header-notices .notice-hour .hour-lists {
    flex-direction: column;
    gap: 20px;
  }
  header .header-notices .notice-hour .hour-list .list-image {
    height: 150px;
  }
  
  .section.fill.two-col .column-two .for-you-audience .column-item .event .event-image, .section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .button-dropdown-container {
    flex-wrap: wrap;
    gap: 15px 0px;
  }
  .button-dropdown-container > a {
    margin-right: calc(100% - 150px);
  }
  
  footer {
    clip-path: polygon(0% 50px, 25px 50px, 25px 0%, 265px 0%, 265px 50px, 100% 50px, 100% 100%, 0% 100%);
  }
  footer .footer-nav {
    flex-direction: column;
  }
  footer .footer-info {
    margin-right: 0;
  }
  footer .footer-nav .footer-main .footer-main-list {
    flex-direction: column;
  }
  footer .footer-main-right-side {
    margin-top: 250px;
  }
  footer .footer-nav .footer-main {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  footer .footer-nav .footer-main li.footer-border, footer .footer-nav ul.footer-right-side .footer-title {
    width: 100%;
  }
  footer .footer-nav .footer-main li.footer-border:last-of-type, footer .footer-nav ul.footer-right-side .footer-title:last-of-type {
    margin-bottom: 0;
  }
  footer .footer-nav ul.footer-right-side {
    flex-direction: column;
  }
  footer .footer-credits {
    padding: 25px;
    border-bottom: 50px solid rgb(var(--secondary-architecture));
  }
}

@media only screen and (max-width: 700px) {
  h1 {
    margin: 0 0 5px 0;
    font-size: 26px;
    line-height: 29px;
  }
  .tablet {
    display: none;
  }
  .mobile {
    display: block;
  }
  header {
    height: var(--header-height);   
  }
  header .header-wrapper .site-logo .logo-mobile.tablet, body.dark-mode header .header-wrapper .site-logo .logo-mobile.mobile.lightmode, header .header-wrapper .site-logo .logo-mobile.mobile.darkmode {
    display: none;
  }
  header .header-wrapper .site-logo .logo-mobile.mobile, body.dark-mode header .header-wrapper .site-logo .logo-mobile.mobile.darkmode {
    display: block;
  }
  header .header-wrapper .site-logo {
    margin: 10px;
    height: 70px;
  }
  header .header-wrapper .mobile-notices .ham-menu {
    margin: 33px 5px 0 0;
  }
  
  header .header-notices .notice-section {
    padding: 25px 10px;
  }

  .main-content {
    padding:  var(--header-height) 0 0 0;
    width: calc(100% - 20px);
  }

  .page-banner {
    margin: 0 0 15px 0;
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 25px), 35px calc(100% - 25px), 35px 100%, 10px calc(100% - 25px), 0% calc(100% - 25px));
  }
  .page-banner .banner-media {
    clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) 52px, calc(100% - 5px) calc(100% - 30px), 30px calc(100% - 30px), 30px calc(100% - 12px), 12px calc(100% - 30px), 5px calc(100% - 30px));
  }
  .main-content.tertiary .page-banner .banner-media {
    min-height: 88px;
  }
  .main-content.calendar-event .page-banner .banner-media {
    min-height: 109px;
  }
  .page-content:has(.page-banner) .body {
    width: 100%;
    margin: 0;
  }

  .lineage-container {
    padding: 0;
    justify-content: space-between;
  }
  .lineage-container h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 23px;
  }
  .lineage-container .lineage-item {
    width: calc(50% - 5px);
  }
  .lineage-container .lineage-item .item-media .media {
    height: 95px;
  }
  .lineage-container .lineage-item .item-content .heading {
    margin: 10px 0 3px 0;
    font-size: 18px;
    line-height: 22px;
  }

  .home-events .home-event-content {
    flex-direction: column;
    margin: 0 10px 68px 10px;
    width: calc(100% - 20px);
  }
  .home-events .main-events {
    padding: 0;
  }
  .home-events .main-events {
    width: 100%;
  }
  .home-events .main-events .events-swiper .swiper-pagination {
    bottom: 5px;
    right: 0;
  }
  .home-events .more-events {
    width: 100%;
    margin: auto;
    margin-top: 35px;
  }
  .upcoming-events .heading {
    font-size: 24px;
    line-height: 26px;
  }
  .upcoming-events .event:nth-of-type(3) {
    display: flex;
  }

  .quicklinks-container {
    margin: 0 10px 85px 10px;
    width: calc(100vw - 20px);
  }
  .quicklinks .quicklink {
    max-width: none;
    margin: 0 0 20px 0;
  }

  .home .books-slider {
    width: 100%;
  }

  .section {
    margin: 0 auto 45px auto;
  }
  .home .section.two-col {
    margin: 0 10px 100px 10px;
    width: calc(100vw - 20px);
  }
  .home .section.fill.two-col {
    margin: 0 0 100px 0;
    width: calc(100vw - 20px);
    padding: 25px 10px 50px 10px;
  }
  .home .section.fill.two-col:after {
    left: 10px;
  }
  .home .section.fill.two-col .column-one {
    margin-left: 60px;
  }
  .home .section.fill.two-col .filters {
    margin-top: 10px;
  }
  .home .section.fill.two-col .column-two .for-you-audience, .home .section.fill.two-col .column-two .quicklinks-container {
    padding-top: 35px;
  }
  .section.full {
    padding: 100px 10px 100px 10px;
  }
  .section.full .section-content {
    width: calc(100% - 20px);
  }
  .section .column-one {
    margin: 0 0 25px 0;
  }
  .section .column-two .column-item.booklist {
    width: calc(50% - 15px);
    margin: 0 5px 12px 0;
    padding: 10px 10px 22px 10px;
  }
  .section .column-two .column-item.booklist .item-booklist .content p {
    max-height: 154px;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .section .column-two .column-item.staff {
    padding: 9px 9px 17px 9px;
  }
  .section .section-content .content-columns .column.newsletter {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .section .section-content .content-columns .column.newsletter .newletter-content {
    width: 100%;
  }
  .section .section-content .content-columns .column.newsletter.media-included .newletter-content {
    width: calc(100% - 146px);
  }
  .section .section-content .content-columns .column.newsletter .newletter-content p {
    text-align: initial;
  }
  
  .eresources-slider .swiper-wrapper .swiper-slide {
    width: calc(50% - 10px);
  }

  .staff {
    flex-direction: column;
  }
  .staff .staff-media {
    margin: 0 0 10px 0;
  }
  .main-content.secondary, .main-content.tertiary, .main-content.search-page {
    width: calc(100% - 30px);
  }
  .main-content.calendar {
    width: calc(100% - 20px);
  }

  .bucket {
    width: 100%;
    margin: 0 10px;
    flex-direction: column;
  }
  .bucket .bucket-media {
    width: 100%;
    margin: 0 0 15px 0;
    background-size: cover;
  }
  .bucket .bucket-content {
    width: 100%;
  }
  .bucket .bucket-content .bucket-heading {
    font-size: 18px;
    line-height: 22px;
  }
  .more-events .bucket .bucket-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .more-events .bucket .bucket-content .bucket-heading {
    margin: 8px 0;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }

  .blog-posts .post.first {
    margin: 25px 0 25px 0;
  }
  .blog-posts .post.first .post-media {
    height: 280px;
  }
  .blog-posts .post .post-media {
    height: 250px;
  }
  .blog-posts .post .post-media.placeholder {
    width: 75%;
  }
  .blog-posts .post .post-content {
    width: 70%;
  }
  .blog-posts .post .post-title {
    font-size: 22px;
    line-height: 23px;
  }
  .blog-listen {
    margin: 45px 0;
  }
  .blog-listen button, .blog-listen a.button-like {
    margin: 0 5px 5px 0;
  }

  .lib-overlay .overlay-content .overlay-background {
    padding: 35px 100px 85px 25px;
    width: calc(100% - 125px);
  }
  .lib-overlay a.close-icon {
    top: 35px;
    right: 35px;
  }
  
  .lib-overlay .overlay-content .overlay-step {
    padding: 33px 19px;
  }
  .lib-overlay .overlay-content .overlay-columns {
    flex-direction: column;
  }
  .lib-overlay .overlay-content .column.sign-in {
    margin: 33px 0 0 0;
  }
  .lib-overlay .overlay-content .column .form-flex {
    flex-wrap: wrap;
  }
  .lib-overlay .overlay-content .column .form-half-field {
    width: 100%;
  }
  
  .main-content .page-content:has(.page-banner) .body {
    margin-left: 0;
    width: 100%;
  }
  
  .staff .section .column-two .column-item.staff {
    width: calc((100% - 25px) / 2);
  }
  
  .search-results {
    flex-flow: column;
  }
  .search-results .search-group {
    width: 100%;
  }
  
  footer .footer-hours {
    position: relative;
  }
  footer .footer-sunset {
    padding-bottom: 0;
    bottom: -1px;
  }
  footer .footer-credits {
    padding: 20px;
    height: 100%;
    flex-direction: column;
    gap: 5px;
  }
}

@media only screen and (max-width: 501px) {
  header .header-notices .notice-accessibility {
    padding: 20px 15px 35px 15px;
  }
  header .header-notices .notice-hour .hour-list .list-image {
    width: 150px;
  }
  
  .lib-overlay .overlay-content .overlay-background {
    padding: 35px 75px 85px 25px;
    width: calc(100% - 100px);
  }
  
  .goog-te-gadget {
    margin-bottom: 5px;
  }
  .accessibility .access-svg .svg-stroke {
    stroke: var(--power-color-1);
  } 
  .accessibility .access-svg .svg-fill {
    fill: var(--power-color-1);
  }
  .hours .access-svg .svg-stroke {
    stroke: var(--power-color-1);
  } 
  .hours .access-svg .svg-fill {
    fill: var(--power-color-1);
  }
  
  .page-content {
    padding: 30px 0 0 0;
  }
  .page-banner .banner-media {
    min-height: 200px;
  }
  .home-events .main-events {
    padding: 10px 5px;
  }
  .home-events .main-events .swiper-slide .event-image, .home-events .main-events .swiper-slide .event-image-border {
    /*height: 218px;*/
  }
  .home-events .main-events .swiper-slide .event-image {
    clip-path: polygon(5px 5px, calc(100% - 52px) 5px, calc(100% - 5px) calc(0% + 52px), calc(100% - 5px) calc(100% - 30px), 30px calc(100% - 30px), 30px calc(100% - 12px), 12px calc(100% - 30px), 5px calc(100% - 30px));
  }
  .home-events .main-events .swiper-slide .event-image-border {
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% calc(0% + 50px), 100% calc(100% - 25px), 35px calc(100% - 25px), 35px 100%, 10px calc(100% - 25px), 0% calc(100% - 25px));
  }
  .home-events .main-events .events-swiper img {
    /*height: 290px;*/
    /*width: 112%;*/
  }
  .home-events .main-events .events-swiper .swiper-slide .event-heading {
    margin: 10px 0 0 0;
    width: 100%;
    font-size: 22px;
  }
  .home-events .main-events .events-swiper .swiper-slide .event-info {
    margin: 0;
    width: 100%;
  }
  .home-events .main-events .events-swiper .swiper-slide .events-button-pagination {
    margin: 0;
    width: 100%;
    padding-left: 0;
    flex-direction: column;
    gap: 5px;
  }
  .home-events .main-events .events-swiper .swiper-pagination {
    justify-content: flex-start;
    margin: 0;
  }
  .home-events .home-event-content {
    gap: 0;
  }
  .todays-hours {
    margin-bottom: 0;
  }
  
  .list-event .event-about {
    flex-direction: column;
  }
  .quicklinks-container {
    margin: 0px 10px 50px 10px;
  }
  .quicklinks-container .quicklinks {
    flex-wrap: wrap;
    justify-content: center;
  }
  .quicklinks .quicklink {
    width: 120px;
    height: 94px;
  }
  
  .section {
    margin: 0 auto 101px 0;
  }
  .home .section ul.filters {
    width: calc(100% - 50px);
    overflow-x: scroll;
  }
  .home .section.two-col:not(.fill) .column-one:before {
    content: '';
    z-index: 1;
    position: absolute;
    width: 25px;
    height: 25px;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, var(--light, var(--background-1)) var(--dark, var(--dark-background-1)) 100%);
  }
  .home .section.two-col {
    margin: 0 10px 75px 10px;
  }
  .home .section.fill.two-col {
    margin: 0 0 75px 0;
  }
  .section .column-one {
    margin: unset;
    border-top: unset;
    flex-direction: column;
    gap: 15px;
  }
  .section .column-two {
    margin: 0;
  }
  
  .section.fill.two-col .column-two .for-you-audience .column-item .event, .section.fill.two-col .column-two .for-you-audience .column-item .booklist {
    flex-direction: column;
    gap: 10px;
  }
  .section.fill.two-col .column-two .for-you-audience .column-item .event .event-image, .section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists {
    margin: 0;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 2/1;
    height: auto;
  }
  .section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists, .section.fill.two-col .column-two .for-you-audience .column-item .booklist .booklists .book {
    height: 100%;
  }
  
  .swiper.books-slider {
    padding: 0;
  }
  .section ul.filters li {
    margin: unset;
  }
  .section .section-content .content-columns {
    flex-direction: column;
  }
  .section .column-two .column-item.blog {
    border: unset;
    padding: 0;
  }
  .section .column-two.blog-posts {
    margin-top: unset;
  }
  .section.scroll .column-two .column-section {
    padding: 0;
    gap: 15px;
  }
  .section.scroll .column-two .column-section .column-item {
    min-width: unset;
    margin: 0;
  }
  #booklists_section.section.scroll .column-two .column-section .column-item {
    min-width: 300px;
  }
  .section.full {
    width: 100vw;
    max-width: none;
    padding: 50px 15px;
    box-sizing: border-box;
    background: url('/content/_theme_images/bg-pattern.svg');
    background-position: center;
    background-repeat: repeat;
    background-color: var(--power-color-1);
  }
  .section.full .section-content.youtube-section {
    margin: 0;
    flex-direction: column;
    gap: 0px;
    width: 100%;
  }
  .section.full .section-content .youtube-channel {
    width: 100%;
    padding: 0;
  }
  .section.full .section-content .additional-videos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .section.full .section-content .additional-videos a {
    order: 2;
  }
  .section.full .section-content .additional-videos .video-list {
    order: 1;
  }
  .section.full .section-content .about-section {
    width: 100%;
    margin: 75px 0 0 0;
    padding: 0;
  }
  .section.full .section-content.youtube-section iframe.featured-video { 
    width: 100%;
    height: 200px;
  }
  .additional-videos .video-list {
    overflow-x: scroll;
    overflow-y: hidden;
    width: calc(100vw - 30px);
    height: 100%;
  }
  .additional-videos .video-list ul {
    padding: 0;
    display: flex;
    gap: 10px;
  }
  .section .section-content .content-columns .column.form {
    padding: 25px 10px 25px 10px;
  }
  form .field-row {
    flex-direction: column;
    gap: 10px;
  }
  .section .section-content .content-columns .column.newsletter {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .h2-like.blog-posts-title {
    margin: 0 0 10px 0;
  }
  .blog-post-blurb {
    font-size: 14px;
  }
  .main-content.secondary, .main-content.tertiary, .main-content.search-page {
    width: calc(100% - 20px);
    padding: 0;
  }
  .blog-posts .post.first .post-media {
    height: 225px;
  }
  
  .blog-posts .post .post-media.placeholder {
    width: 90%;
    height: 200px;
  }
  .blog-posts .post.flipped .post-content {
    width: 85%;
  }
  .body .lineage-container .lineage-item {
    width: 75%;
    margin-left: 51px;
  }
  .lineage-container .lineage-item .item-media .media {
    height: 125px;
  }
  .main-content.secondary .page-content .left-sidebar, .main-content.tertiary .page-content .left-sidebar, .main-content.secondary .page-content .right-sidebar, .main-content.tertiary .page-content .right-sidebar {
    width: 90%;
  }
  
  .staff .body .section .column-two .column-section {
    margin-left: 0;
    width: 100%;
    margin-top: 50px;
    gap: 20px;
    justify-content: space-between;
  }
  
  .acc-container input:checked ~ article {
    padding: 5px 10px;
  }
  
  .eresources-section .eresource-entities {
    margin-left: 0;
    width: 100%;
  }
  .eresources-section .eresource-entities .eresource {
    flex-direction: column;
    gap: 25px;
  }
  .eresources-section .eresource-entities .eresource .eresource-media, .eresources-section .eresource-entities .eresource .placeholder-book {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 450px) {
  .alert-block .alert-block-content {
    width: calc(100% - 20px);
    height: calc(100% - 25px);
    max-height: none;
    padding: 35px 20px 15px 15px;
    top: 15px;
    left: 10px;
    overflow: scroll;
  }
  .alert-block .alert-block-content .close {
    top: 15px;
    right: 17px;
  }
  .alert-block .alert-block-content p {
    font: var(--paragraph-font);
  }
  .alert-block .alert-block-content ol li {
    font: var(--secondary-button-fonts);
  }
}
