@import url(../fonts/dmsans/stylesheet.css);


body {
    --background-color: #fff;
    --background-hover-color: #eeebdd;
    --foreground-color: #171717;
    --foreground-hover-color: #414141;
    --border-color: #151515;
    --border-color-light: rgba(23,23,23,0.4); /* For borders with less contrast */
    --select-bg: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgNSAxMCIgd2lkdGg9IjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iIzQ0NCI+PHBhdGggZD0ibTEuNDEwMTYgNC42Njk2OSAxLjA3LTEuNDkgMS4wNiAxLjQ5eiIvPjxwYXRoIGQ9Im0zLjU0MDE2IDUuMzMwMDgtMS4wNiAxLjQ5LTEuMDctMS40OXoiLz48L2c+PC9zdmc+);
    --active-member-colour: #6ec176;
}

body.dark-theme-mode,
body.nav-overlay-open {
    --background-color: #171717;
    --background-hover-color: #414141;
    --foreground-color: rgb(183, 181, 169);
    --foreground-hover-color: #eeebdd;
    --border-color: var(--foreground-color);
    --border-color-light: rgba(183, 181, 169, 0.4);
    --select-bg: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgNSAxMCIgd2lkdGg9IjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2I3YjVhOSI+PHBhdGggZD0ibTEuNDEwMTYgNC42Njk2OSAxLjA3LTEuNDkgMS4wNiAxLjQ5eiIvPjxwYXRoIGQ9Im0zLjU0MDE2IDUuMzMwMDgtMS4wNiAxLjQ5LTEuMDctMS40OXoiLz48L2c+PC9zdmc+);
}


:root {
  --dark-mode-text-color: #b7b5a9;
  --light-mode-text-color: #151515;  
  --dark-mode-border-color: rgb(183 181 169 / 65%);
  --light-mode-border-color: #151515;
}

:root {
    --fluid-min-width: 420;
    --fluid-max-width: 1500;
  
    --fluid-screen: 100vw;
    --fluid-bp: calc(
      (var(--fluid-screen) - var(--fluid-min-width) / 10 * 1rem) /
        (var(--fluid-max-width) - var(--fluid-min-width))
    );
  }
  
  @media screen and (min-width: 1500px) {
    :root {
      --fluid-screen: calc(var(--fluid-max-width) * 1px);
    }
  }
  
  :root {
    --f--2-min: 11;
    --f--2-max: 13;
    --step--2: calc(
      ((var(--f--2-min) / 10) * 1rem) + (var(--f--2-max) - var(--f--2-min)) *
        var(--fluid-bp)
    );
  
    --f--1-min: 13;
    --f--1-max: 16;
    --step--1: calc(
      ((var(--f--1-min) / 10) * 1rem) + (var(--f--1-max) - var(--f--1-min)) *
        var(--fluid-bp)
    );
  
    --f-0-min: 16.00;
    --f-0-max: 19.00;
    --step-0: calc(
      ((var(--f-0-min) / 10) * 1rem) + (var(--f-0-max) - var(--f-0-min)) *
        var(--fluid-bp)
    );
  
    --f-1-min: 19;
    --f-1-max: 24;
    --step-1: calc(
      ((var(--f-1-min) / 10) * 1rem) + (var(--f-1-max) - var(--f-1-min)) *
        var(--fluid-bp)
    );
  
    --f-2-min: 25;
    --f-2-max: 32;
    --step-2: calc(
      ((var(--f-2-min) / 10) * 1rem) + (var(--f-2-max) - var(--f-2-min)) *
        var(--fluid-bp)
    );
  
    --f-3-min: 38;
    --f-3-max: 48;
    --step-3: calc(
      ((var(--f-3-min) / 10) * 1rem) + (var(--f-3-max) - var(--f-3-min)) *
        var(--fluid-bp)
    );
  
    --f-4-min: 52;
    --f-4-max: 64;
    --step-4: calc(
      ((var(--f-4-min) / 10) * 1rem) + (var(--f-4-max) - var(--f-4-min)) *
        var(--fluid-bp)
    );
  
    --f-5-min: 60;
    --f-5-max: 80;
    --step-5: calc(
      ((var(--f-5-min) / 10) * 1rem) + (var(--f-5-max) - var(--f-5-min)) *
        var(--fluid-bp)
    );
  }

/* -----------------------------------------------------------
    Global Styles
----------------------------------------------------------- */

html {
    font-size: 10px;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
#container .far {
    font-family: 'FontAwesomePro'; /* Make sure we alway use the site version, not the cms */
}
body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', Sans-Serif;
    color: var(--foreground-color);
    font-size: var(--step-0);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
    letter-spacing: -0.015em;
}
p {
    margin: 0;
}
a,
a:visited,
a:hover,
.link_color,
.link_color:hover {
    color: var(--foreground-color);
}
#content_module > ol li a,
#content_module > ul li a,
#content_module > div a,
.description > ol li a,
.description > ol li a,
.prose > ul li a,
.prose > ul li a,
#content p a,
.panel li a {
    border-bottom: 2px solid;
    transition: all 0.3s  ease;
}
#content_module> div a:hover,
#content p a:hover,
.panel li a:hover,
#hero_heading .subtitle a:hover  {
    border-bottom-color: #a2a2a2;
}
h1,
h2,
h3,
h4,
h5,
h6,
#hero_header,
.fullscreen_slideshow .hero_splash_text {
    font-family: 'DM Sans', Sans-Serif;
    font-weight: normal;
    color: var(--foreground-color);
    margin: 0 0 15px;
}
h1 a,
h1 a:visited,
h2 a,
h2 a:visited,
h3 a,
h3 a:visited,
h4 a,
h4 a:visited,
h5 a,
h5 a:visited,
h6 a,
h6 a:visited {
    color: var(--foreground-color);
    text-decoration: none;
}
h1 {
    color: var(--foreground-color);
    letter-spacing: 0;
    line-height: 1.2em;
    margin: 0 0 50px;
}
h1:empty {
    margin: 0;
}



/* -----------------------------------------------------------
   TYPOGRAPHY
   ----------------------------------------------------------- */

h1 {
    font-size: var(--step-3);
}

h2 {
    font-size: var(--step-2);
    line-height: 1.2em;
}

h3 {
    font-size: var(--step-1);
}
h4 {
    font-size: var(--step-0);
    margin: 0 0 10px;
}
h5 {
    font-size: var(--step-0);
    margin: 0 0 6px;
}
h6 {
    font-size: var(--step-0);
    margin: 0 0 6px;
}

.step_4,
.section-video h1,
.cascading-page-header h1,
#hero_heading .title,
.panel_type_3005  .panel_header h2 {
    font-size: var(--step-4);
    line-height: 1.2;
}

.step_3,
.heading-one,
.heading_above_record_list,
.fp_title,
.panel_header h2 {
    font-size: var(--step-3);
    line-height: 1.3;
}

.step_2,
.text_xl {
    font-size: var(--step-2);
    line-height: 1.3
}

.step_1,
.subtitle,
blockquote,
.hero-footer,
#member_login .link,
#member_login_form,
#membersnav,
#custom_top_nav,
.text_l {
    font-size: var(--step-1);
}

.step_0,
.footer_subtitle,
.records_list .subtitle {
    font-size: var(--step-0);
}

.step_-1 {
    font-size: var(--step--1);
}

/* Styles inspired by Tailwind Typography .prose */
.prose {
    color: var(--foreground-color);
    /* max-width: 65ch; */
    font-size: var(--step-0);
    margin: 0 auto
}

.prose>span {
    width: 100%
}

.prose a {
    color: var(--foreground-color);
    /* text-decoration: underline; */
    font-weight: 500
}

.prose strong {
    color: var(--foreground-color);
    font-weight: 500
}
.prose ol,
#content_module > ol,
#content_module > ol ol,
.description > ol,
.description > ol ol {
    list-style-type: decimal;
    padding-left: 1.625em;
}

.prose ol>li,
#content_module ol>li,
.description ol>li {
    position: relative;
    padding-left: 0.375em
}

.prose ol>li::before {
    content: ".";
    position: absolute;
    font-weight: 400;
    color: var(--border-color-light);
    left: 0
}

.prose ::marker,
.description ::marker,
#content_module ::marker {
    color: var(--border-color);
}

.prose ul>li,
.prose ul>li li,
.prose ol>li ul li ,
#content_module>ul>li,
#content_module>ul>li li,
#content_modole>ol>li ul li,
.description>ul>li,
.description>ul>li li,
.description>ul>li li,
.description>ol>li ul li{
    position: relative;
    padding-left: 1.75em
}

/* .prose ul>li::before,
#content_module>ul>li::before,
#content_module>ul li li::before,
#content_module>ol li li::before,
.description>ul>li::before,
.description>ul li li::before,
.description>ol li li::before {
    content: "";
    position: absolute;
    background-color: var(--border-color-light);
    border-radius: 50%;
    width: .375em;
    height: .375em;
    top: calc(.875em - .1875em);
    left: .25em
} */

.prose hr {
    border-color: var(--foreground-color);
    border-top-width: 2px;
    
}
.prose hr,
.description > hr:only-child {
    margin-top: 3em;
    margin-bottom: 3em
}

.prose blockquote {
    font-weight: 500;
    font-style: italic;
    color: var(--foreground-color);
    border-left-width: .25rem;
    border-left-color: var(--border-color);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em
}

.prose blockquote p:first-of-type::before {
    content: open-quote
}

.prose blockquote p:last-of-type::after {
    content: close-quote
}

.prose h1 {
    color: var(--foreground-color);
    font-weight: 500;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: .8888889em;
    line-height: 1.1111111
}

.prose h2 {
    color: var(--foreground-color);
    font-weight: 500;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333
}

.prose h3 {
    color: var(--foreground-color);
    font-weight: 500;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: .6em;
    line-height: 1.6
}

.prose h4,
.prose h5,
.prose h6 {
    color: var(--foreground-color);
    font-weight: 500;
    margin-top: 1.5em;
    margin-bottom: .5em;
    line-height: 1.5
}

.prose figure figcaption {
    font-size: .875em;
    line-height: 1.4285714;
    margin-top: .8571429em
}

.prose table,
#content_module table,
.description table {
    width: 100%;
    table-layout: auto;
    text-align: left;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: .875em;
    line-height: 1.7142857;
    border-collapse: collapse;
}
#content_module table,
.description table {
    width: 100% !important;
    height: auto !important;
}

.prose thead,
#content_module thead,
.description thead {
    color: var(--foreground-color);
    font-weight: 600;
    border-bottom-width: 1px;
    border-bottom-color: var(--border-color-light);
    vertical-align: top;
    border-bottom-style: solid;
}

.prose thead th,
#content_module thead th,
.description thead th {
    vertical-align: bottom;
    padding-right: .5714286em;
    padding-bottom: .5714286em;
    padding-left: .5714286em
}

.prose tbody tr,
#content_module tbody tr,
.description tbody tr {
    border-bottom-width: 1px;
    border-bottom-color: var(--border-color-light);
    border-bottom-style: solid;
}

.prose tbody tr:last-child,
#content_module tbody tr:last-child,
.description tbody tr:last-child {
    border-bottom-width: 0
}

.prose tbody td,
#content_module tbody td,
.description tbody td {
    vertical-align: top;
    padding-top: .5714286em;
    padding-right: .5714286em;
    padding-bottom: .5714286em;
    padding-left: .5714286em
}

.prose {
    font-size: var(--step-0);
    line-height: 1.5
}

.prose p {
    margin-top: 0;
    margin-bottom: 0;
}

.prose img {
    margin-top: 2em;
    margin-bottom: 2em
}

.prose video {
    margin-top: 2em;
    margin-bottom: 2em
}

.prose figure {
    margin-top: 2em;
    margin-bottom: 2em
}

.prose figure>* {
    margin-top: 0;
    margin-bottom: 0
}

.prose ol,
#content_module ol,
.description ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em
}

.prose ul,
#content_module ul,
.description ul {
    margin-top: 1.25em;
    margin-bottom: 1.25em
}

.prose li,
#content_module>ul li,
#content_module>ol li,
.description li {
    margin-top: .5em;
    margin-bottom: .5em
}

.prose>ul>li p,
#content_module>ul>li p,
.description>ul>li p {
    margin-top: .75em;
    margin-bottom: .75em
}

.prose>ul>li>:first-child,
#content_module>ul>li>:first-child,
.description>ul>li>:first-child {
    margin-top: 1.25em
}

.prose>ul>li>:last-child,
#content_module>ul>li>:last-child,
.description>ul>li>:last-child {
    margin-bottom: 1.25em
}

.prose>ol>li>:first-child,
#content_module>ol>li>:first-child,
.description>ol>li>:first-child {
    margin-top: 1.25em
}

.prose>ol>li>:last-child,
#content_module>ol>li>:last-child,
.description>ol>li>:last-child {
    margin-bottom: 1.25em
}

.prose ol ol,
#content_module > ol ul,
#content_module > ul ol,
#content_module > ul ul,
.description > ul ol,
.description > ul ul {
    margin-top: .75em;
    margin-bottom: .75em
}

.prose hr+* {
    margin-top: 0
}

.prose h2+* {
    margin-top: 0
}

.prose h3+* {
    margin-top: 0
}

.prose h4+* {
    margin-top: 0
}

.prose thead th:first-child,
#content_module thead th:first-child,
.description thead th:first-child {
    padding-left: 0
}

.prose thead th:last-child,
#content_module thead th:last-child,
.description thead th:last-child {
    padding-right: 0
}

.prose tbody td:first-child,
#content_module tbody td:first-child,
.description tbody td:first-child {
    padding-left: 0
}

.prose tbody td:last-child,
#content_module tbody td:last-child,
.description tbody td:last-child {
    padding-right: 0
}

.heading-one + p {
    margin-top: 30px;
}

/* -----------------------------------------------------------
   ----------------------------------------------------------- */

body #content_module,
body .content_module {
    word-wrap: break-word;
}
#hero_header,
.feature_panels .panel_hero .hero_heading > h2,
.feature_panels .panel_hero .hero_heading > a > h2 {
    /* font-size: 4.5rem; */
    /* line-height: 4.5rem; */
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#hero_header .subtitle,
.feature_panels .panel_hero .hero_heading .subtitle {
    margin: 0;
    padding: 20px 0 0;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.feature_panels .panel_hero .hero_heading .description {
    margin: 0;
    padding: 20px 0 0;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
select,
textarea {
    font-family: 'DM Sans', Sans-Serif;
    font-weight: normal;
    color: var(--foreground-color);
    font-size: var(--step-1);
    background-color: transparent; 
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--background-color) inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill{
    -webkit-text-fill-color: var(--foreground-color) !important;
}
#sc_checkout_container #save_checkout_delivery_form #sc_additional_fields .form_row .inputField:-internal-autofill-selected {
    border-color: var(--foreground-color);
}
blockquote {
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -moz-box-shadow: 0;
    -webkit-box-shadow: 0;
    box-shadow: none;
    margin: 2em 0;
    background: none;
    background-color: transparent;
    padding: 5px 0 5px 30px;
    width: 85%;
    line-height: inherit;
    overflow: auto;
    text-indent: 0px;
    border-left: 1px solid #151515;
    /* font-size: 2.5rem;
    line-height: 3.4rem; */
}

/* .footer_title {
    font-size: 2.5rem;
    line-height: 1.6em;
} */

.footer_subtitle {
    line-height: 1.3;
}

.footer_subtitle+.footer_subtitle {
    margin-top: 15px;
}

.heading_above_record_list {
    /* font-size: 2.5rem;
    line-height: 3.3rem; */
    padding-bottom: 60px;
    padding-top: 60px;
    border-top: 4px solid black;
}
.button_custom,
.arrow_btn,
.arrow_btn_invert {
    background: var(--foreground-color);
    border-radius: 0;
    border: 0 !important;
    text-decoration: none !important;
    font-size: 2rem;
    line-height: 20px;
    transition: background 0.35s ease-in-out;
    -webkit-transition: background 0.35s ease-in-out;
    height: auto;
    position: relative;
    color: var(--background-color) !important;
    padding: 16px 37px 15px;
}

.button_custom,
.arrow_btn,
.arrow_btn_invert {
    display: inline-block;
    border-radius: 0;
    border: 0 !important;
    text-decoration: none !important;
    /* font-size: 2rem;
    line-height: 20px; */
    font-size: var(--step-0);
    line-height: 1;
    transition: background 0.35s ease-in-out;
    -webkit-transition: background 0.35s ease-in-out;
    height: auto;
    position: relative;
    color: var(--background-color) !important;
    padding: 16px 37px 15px;
}

.button_custom a {
    color: white;
    border-bottom: none !important
}
/* body.dark-theme-mode #container .arrow_btn,
body.dark-theme-mode #container .arrow_btn_invert {
    color: #171717 !important;
    background: #b7b5a9;
    border: 2px solid #b7b5a9 !important;
} */

.arrow_btn,
.arrow_btn_invert {
    padding: 20px 57px 20px 20px;
    position: relative;
    display: inline-block;
}
.panel_header .arrow_btn,
.panel_header .arrow_btn_invert {
    width: 100%;
    max-width: 400px;
    display: block
}
.arrow_btn a,
.arrow_btn_invert a {
    color: var(--background-color) !important;
    border: none !important;
}
.arrow_btn::after,
.arrow_btn_invert::after {
    content: '\f061';
    font-family: "FontAwesomePro";
    font-size: 2.2rem;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
}
.subscript {
    vertical-align: sub;
    font-size: smaller;
}





/* Title/heading typography
----------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
#hero_header,
.fullscreen_slideshow .hero_splash_text,
#logo a,
.navigation ul li a,
#slide_nav_reveal,
#header_quick_search .inputField,
#header_quick_search input,
#header_quick_search select,
#header_quick_search textarea,
#header_quick_search #header_quicksearch_btn,
#footer #artlogic,
#footer #copyright,
.page-artists h1 #artist_years,
.event-details-wrapper .event-details span,
.subsection-press .records_list .content .link a,
.section-press .records_list .content .link a,
#store_cart_widget,
.fullscreen_slideshow .hero_splash_text,
.fullscreen_slideshow .hero_splash_text .title,
.fullscreen_slideshow ul li .content h2,
.fullscreen_slideshow ul li .content h2 a,
.fullscreen_slideshow ul li .content h2 a:visited,
.fullscreen_slideshow ul li .content h2 a .separator,
.fullscreen_slideshow ul li .content h2 a .h1_subtitle,
#image_gallery #content_module h3,
.records_list .content h2,
.records_list .content .subtitle,
.records_list .content .date,
.records_list .content .location,
.records_list .content .description,
.records_list ul li .content .title,
.records_list ul li .content .artist,
.feature_panels .panel_image_text_adjacent .content h2,
.feature_list ul li .content h2,
.feature_list ul li .content .subtitle,
.feature_list ul li .content .date,
.feature_list ul li .content .location,
.full_list ul li .content h2,
.full_list ul li .content .subtitle,
.full_list ul li .content .date,
.records_list.detail_expand_grid
    .expander_detail
    #image_gallery
    #content_module
    .subtitle,
.link,
.button,
.simple_list ul li,
#social_links_list ul li,
.page_stats .ps_item,
.page_stats .ps_pages,
#protected_path_login #container h1,
#protected_path_login #container label,
.subheading,
.poster,
.subtitle,
.h1_subtitle,
.location,
.date,
.price,
#fancybox-title-main .artist strong,
#mc_embed_signup input.button,
#home_splash .content,
#hero_header .subtitle,
.feature_panels .panel_hero .hero_heading .subtitle,
#hero_header,
.feature_panels .panel_hero .hero_heading > h2,
.feature_panels .panel_hero .hero_heading > a > h2,
.section-home .slideshow_pager_inner button {
    text-transform: none;
    letter-spacing: 0;
    /* font-weight: bold; */
}

/* subtitle for news and events detial pages, 
may need to be more specific */
.records_list .content .subtitle,
.subtitle,
.date {
    color: var(--foreground-color);
    opacity: 0.8;    
}

a {
    text-decoration: none;
}


img {
    max-width: 100%;
}

#content_module p {
    font-family: 'DM Sans';
    font-weight: normal;
}
.caption {
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: left;
    margin-bottom: 20px;
}

#container .fas { font-weight: 600; }