@charset "UTF-8";
/* ----------------------------------------------------------------------------------
Mendes Wood DM

We use responsive.css so we need less hacky overrides.
---------------------------------------------------------------------------------- */
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
/**
 * @mixin set-typography-vars
 * Sets typography-related CSS custom properties for a given primary prefix and, optionally, a fallback prefix.
 *
 * @param {String} $primary-prefix - The primary prefix used for the custom properties.
 * @param {String} [$fallback-prefix=null] - The optional fallback prefix used for the custom properties.
 * @param {String} [$font-family-default=null] - The default font-family value.
 * @param {String} [$font-size-default=null] - The default font-size value.
 * @param {String} [$line-height-default=null] - The default line-height value.
 * @param {String} [$font-weight-default=null] - The default font-weight value.
 * @param {String} [$text-transform-default=null] - The default text-transform value.
 * @param {String} [$color-default=null] - The default color value.
 * @param {Boolean} [$important=false] - Whether to append !important to the generated CSS declarations.
 */
/**
 * Fluid
 * A responsive function that interpolates between a minimum and maximum value based on the viewport width.
 * The function uses a linear equation to interpolate and clamps the output to stay within the specified range.
 * @function fluid
 * @access public
 * @param {Number} $min-px - The minimum value for the output in pixels.
 * @param {Number} $max-px - The maximum value for the output in pixels.
 * @param {Number} [$breakpoint-min-px: 320] - The minimum viewport width in pixels where the output starts to change.
 * @param {Number} [$breakpoint-max-px: 1660] - The maximum viewport width in pixels where the output stops changing.
 * @return {String} - The interpolated and clamped CSS value.
 * @example
 * // If the viewport width is 320px, the output will be 1.6rem (16px). If the viewport width is 1660px, the output will be 2.4rem (24px).
 * // For viewport widths between 320px and 1660px, the output will linearly interpolate between 1.6rem (16px) and 2.4rem (24px).
 * font-size: fluid(1.6, 2.4);
 * @throws {Error} If $min is not a number, or if $max is not a number, or if $breakpoint-min-px is not a number, or if $breakpoint-max-px is not a number.
*/
/**
 * @mixin set-margin-vars
 * Sets margin-related CSS custom properties for a given prefix and assigns them to the margin property.
 *
 * @param {String} $prefix - The prefix used for the custom properties.
 * @param {*} [$my=null] - The margin value for the top and bottom.
 * @param {*} [$mx=null] - The margin value for the left and right.
 * @param {*} [$mt=null] - The margin value for the top.
 * @param {*} [$mr=null] - The margin value for the right.
 * @param {*} [$mb=null] - The margin value for the bottom.
 * @param {*} [$ml=null] - The margin value for the left.
 * @param {*} [$my-default=0] - The default margin value for the top and bottom.
 * @param {*} [$mx-default=0] - The default margin value for the left and right.
 * @param {*} [$mt-default=0] - The default margin value for the top.
 * @param {*} [$mr-default=0] - The default margin value for the right.
 * @param {*} [$mb-default=0] - The default margin value for the bottom.
 * @param {*} [$ml-default=0] - The default margin value for the left.
 * @param {Boolean} [$important=false] - Whether to append !important to the generated CSS declaration.
 */
/**
* Sets custom padding variables for an element using CSS variables.
* @param {string} $prefix - The prefix to use for the CSS variable names.
* @param {number} [$py=null] - The padding value for top and bottom sides.
* @param {number} [$px=null] - The padding value for left and right sides.
* @param {number} [$pt=null] - The padding value for the top side.
* @param {number} [$pr=null] - The padding value for the right side.
* @param {number} [$pb=null] - The padding value for the bottom side.
* @param {number} [$pl=null] - The padding value for the left side.
* @param {number} [$py-default=0] - The default padding value for top and bottom sides.
* @param {number} [$px-default=0] - The default padding value for left and right sides.
* @param {number} [$pt-default=0] - The default padding value for the top side.
* @param {number} [$pr-default=0] - The default padding value for the right side.
* @param {number} [$pb-default=0] - The default padding value for the bottom side.
* @param {number} [$pl-default=0] - The default padding value for the left side.
* @param {boolean} [$important=false] - Whether to use "!important" modifier for the CSS "padding" property.
*/
/**
 * @mixin set-var
 * Sets a single CSS custom property for a given primary prefix and, optionally, a fallback prefix.
 *
 * @param {String} $property - The CSS property to set.
 * @param {String} $primary-prefix - The primary prefix used for the custom property.
 * @param {String} [$fallback-prefix=null] - The optional fallback prefix used for the custom property.
 * @param {String} [$var-name=null] - The custom property name, if different from the CSS property.
 * @param {*} [$default=null] - The default value for the custom property.
 * @param {Boolean} [$important=false] - Whether to append !important to the generated CSS declaration.
 */
.page-param-type-publication_id #sidebar .link, .page-param-type-publication_id .buy.link, .custom-exhibition-filters #filter_btn, .panel_type_4 .link, .feature_panels .panel_hero .button span, div.arprompt .arpromptdefaultbutton, .simple_list ul .simple_list__link--read-more, #quick_search #quicksearch_btn, .fp-featured-record-slider .records_list ul li a .content .link > span:not(.button_loader), .panel_type_9 .link > span:not(.button_loader), .records_list.feature_list .link > span:not(.button_loader),
.fp-featured-record-slider .records_list ul li a .content .link > a,
.panel_type_9 .link > a,
.records_list.feature_list .link > a, #image_gallery .store_item_add_to_cart, .list-ajax-load-more span,
.store_item_add_to_cart span,
.c-button span {
  padding: var(--button-pt, var(--button-py, var(--space-xs))) var(--button-pr, var(--button-px, var(--space-m))) var(--button-pb, var(--button-py, var(--space-xs))) var(--button-pl, var(--button-px, var(--space-m))) !important;
  font-family: var(--button-font-family , var(--base-font-family)) !important;
  font-size: var(--button-font-size , var(--step-0)) !important;
  line-height: var(--button-line-height , var(--leading-normal)) !important;
  font-weight: var(--button-font-weight , var(--base-font-weight)) !important;
  text-transform: var(--button-text-transform , inherit) !important;
  color: var(--button-color , var(--base-color)) !important;
  border-radius: var(--button-border-radius, 0);
  border: var(--button-border, unset);
  background: var(--button-background-color, transparent);
  transition: var(--button-transition, var(--transition));
}
.page-param-type-publication_id #sidebar .link:hover, .page-param-type-publication_id .buy.link:hover, .custom-exhibition-filters #filter_btn:hover, .panel_type_4 .link:hover, .feature_panels .panel_hero .button span:hover, div.arprompt .arpromptdefaultbutton:hover, .simple_list ul .simple_list__link--read-more:hover, #quick_search #quicksearch_btn:hover, .fp-featured-record-slider .records_list ul li a .content .link > span:hover:not(.button_loader), .panel_type_9 .link > span:hover:not(.button_loader), .records_list.feature_list .link > span:hover:not(.button_loader),
.fp-featured-record-slider .records_list ul li a .content .link > a:hover,
.panel_type_9 .link > a:hover,
.records_list.feature_list .link > a:hover, #image_gallery .store_item_add_to_cart:hover, .list-ajax-load-more span:hover,
.store_item_add_to_cart span:hover,
.c-button span:hover, .page-param-type-publication_id #sidebar .link:active, .page-param-type-publication_id .buy.link:active, .custom-exhibition-filters #filter_btn:active, .panel_type_4 .link:active, .feature_panels .panel_hero .button span:active, div.arprompt .arpromptdefaultbutton:active, .simple_list ul .simple_list__link--read-more:active, #quick_search #quicksearch_btn:active, .fp-featured-record-slider .records_list ul li a .content .link > span:active:not(.button_loader), .panel_type_9 .link > span:active:not(.button_loader), .records_list.feature_list .link > span:active:not(.button_loader),
.fp-featured-record-slider .records_list ul li a .content .link > a:active,
.panel_type_9 .link > a:active,
.records_list.feature_list .link > a:active, #image_gallery .store_item_add_to_cart:active, .list-ajax-load-more span:active,
.store_item_add_to_cart span:active,
.c-button span:active, .page-param-type-publication_id #sidebar .link:focus, .page-param-type-publication_id .buy.link:focus, .custom-exhibition-filters #filter_btn:focus, .panel_type_4 .link:focus, .feature_panels .panel_hero .button span:focus, div.arprompt .arpromptdefaultbutton:focus, .simple_list ul .simple_list__link--read-more:focus, #quick_search #quicksearch_btn:focus, .fp-featured-record-slider .records_list ul li a .content .link > span:focus:not(.button_loader), .panel_type_9 .link > span:focus:not(.button_loader), .records_list.feature_list .link > span:focus:not(.button_loader),
.fp-featured-record-slider .records_list ul li a .content .link > a:focus,
.panel_type_9 .link > a:focus,
.records_list.feature_list .link > a:focus, #image_gallery .store_item_add_to_cart:focus, .list-ajax-load-more span:focus,
.store_item_add_to_cart span:focus,
.c-button span:focus {
  color: var(--button-focus-color, var(--button-color)) !important;
  background: var(--button-focus-background-color, var(--button-background-color)) !important;
  border: var(--button-focus-border, var(--button-border)) !important;
}

.panel_type_4 .button, .records_list .content .read_more_label {
  font-family: var(--link-font-family , var(--base-font-family)) !important;
  font-size: var(--link-font-size , var(--base-font-size)) !important;
  line-height: var(--link-line-height , var(--base-line-height)) !important;
  font-weight: var(--link-font-weight , var(--base-font-weight)) !important;
  text-transform: var(--link-text-transform , inherit) !important;
  color: var(--link-color , var(--base-color)) !important;
}
.panel_type_4 .button:hover, .records_list .content .read_more_label:hover, .panel_type_4 .button:focus, .records_list .content .read_more_label:focus {
  color: var(--link-focus-color, var(--link-color)) !important;
  text-decoration: var(--link-text-decoration) !important;
}

.sc_order_summary__order__head__message, #sc_content_above,
#sc_content_below,
#sc_checkout_content_above,
#sc_checkout_shipping_info_content_above,
#sc_checkout_price_summary_content_above,
#privacy_policy_form_msg, .subsection-contact-form #privacy_policy_form_msg, .scroll_section_videos ul li .description, .protected_path_form_description, #protected_path_login #privacy_policy_form_msg {
  --prose-body: var(--base-700);
  --prose-headings: var(--base-900);
  --prose-lead: var(--base-600);
  --prose-links: var(--base-900);
  --prose-bold: var(--base-900);
  --prose-counters: var(--base-500);
  --prose-bullets: var(--base-300);
  --prose-hr: var(--base-200);
  --prose-quotes: var(--base-900);
  --prose-quote-borders: var(--base-200);
  --prose-captions: var(--base-500);
  --prose-code: var(--base-900);
  --prose-pre-code: var(--base-200);
  --prose-pre-bg: var(--base-800);
  --prose-th-borders: var(--base-300);
  --prose-td-borders: var(--base-200);
  --prose-invert-body: var(--base-200);
  --prose-invert-headings: var(--white);
  --prose-invert-lead: var(--base-400);
  --prose-invert-links: var(--white);
  --prose-invert-bold: var(--white);
  --prose-invert-counters: var(--base-400);
  --prose-invert-bullets: var(--base-600);
  --prose-invert-hr: var(--base-700);
  --prose-invert-quotes: var(--base-200);
  --prose-invert-quote-borders: var(--base-700);
  --prose-invert-captions: var(--base-400);
  --prose-invert-code: var(--white);
  --prose-invert-pre-code: var(--base-300);
  --prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --prose-invert-th-borders: var(--base-600);
  --prose-invert-td-borders: var(--base-700);
  font-size: var(--prose-font-size, var(--step-0, 1.4rem));
  line-height: var(--prose-line-height, 1.5);
  color: var(--prose-body);
}
.sc_order_summary__order__head__message img, #sc_content_above img,
#sc_content_below img,
#sc_checkout_content_above img,
#sc_checkout_shipping_info_content_above img,
#sc_checkout_price_summary_content_above img,
#privacy_policy_form_msg img, .subsection-contact-form #privacy_policy_form_msg img, .scroll_section_videos ul li .description img, .protected_path_form_description img, #protected_path_login #privacy_policy_form_msg img {
  max-width: 100%;
  height: auto;
}
.sc_order_summary__order__head__message :where([class~=lead]):not(:where([class~=not-prose] *)), #sc_content_above :where([class~=lead]):not(:where([class~=not-prose] *)),
#sc_content_below :where([class~=lead]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where([class~=lead]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where([class~=lead]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where([class~=lead]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where([class~=lead]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where([class~=lead]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where([class~=lead]):not(:where([class~=not-prose] *)), .protected_path_form_description :where([class~=lead]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where([class~=lead]):not(:where([class~=not-prose] *)) {
  color: var(--prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.sc_order_summary__order__head__message :where(a):not(:where([class~=not-prose] *, [class~=link] *)), #sc_content_above :where(a):not(:where([class~=not-prose] *, [class~=link] *)),
#sc_content_below :where(a):not(:where([class~=not-prose] *, [class~=link] *)),
#sc_checkout_content_above :where(a):not(:where([class~=not-prose] *, [class~=link] *)),
#sc_checkout_shipping_info_content_above :where(a):not(:where([class~=not-prose] *, [class~=link] *)),
#sc_checkout_price_summary_content_above :where(a):not(:where([class~=not-prose] *, [class~=link] *)),
#privacy_policy_form_msg :where(a):not(:where([class~=not-prose] *, [class~=link] *)), .subsection-contact-form #privacy_policy_form_msg :where(a):not(:where([class~=not-prose] *, [class~=link] *)), .scroll_section_videos ul li .description :where(a):not(:where([class~=not-prose] *, [class~=link] *)), .protected_path_form_description :where(a):not(:where([class~=not-prose] *, [class~=link] *)), #protected_path_login #privacy_policy_form_msg :where(a):not(:where([class~=not-prose] *, [class~=link] *)) {
  color: var(--prose-links);
  text-decoration: var(--prose-links-text-decoration, underline);
  font-weight: var(--prose-links-font-weight, 500);
}
.sc_order_summary__order__head__message :where(strong):not(:where([class~=not-prose] *)), #sc_content_above :where(strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(strong):not(:where([class~=not-prose] *)) {
  color: var(--prose-bold);
  font-weight: 600;
}
.sc_order_summary__order__head__message :where(a strong):not(:where([class~=not-prose] *)), #sc_content_above :where(a strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(a strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(a strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(a strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(a strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(a strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(a strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(a strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(a strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(a strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(blockquote strong):not(:where([class~=not-prose] *)), #sc_content_above :where(blockquote strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(blockquote strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(blockquote strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(blockquote strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(blockquote strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(blockquote strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(blockquote strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(blockquote strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(blockquote strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(blockquote strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(thead th strong):not(:where([class~=not-prose] *)), #sc_content_above :where(thead th strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(thead th strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(thead th strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(thead th strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(thead th strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(thead th strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(thead th strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(thead th strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(thead th strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(thead th strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(ol):not(:where([class~=not-prose] *)), #sc_content_above :where(ol):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.sc_order_summary__order__head__message :where(ol[type=A]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=A]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=A]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=A]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=A]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=A]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=A]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=A]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=A]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=A]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=A]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-alpha;
}
.sc_order_summary__order__head__message :where(ol[type=a]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=a]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=a]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=a]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=a]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=a]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=a]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=a]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=a]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=a]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=a]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-alpha;
}
.sc_order_summary__order__head__message :where(ol[type=A s]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=A s]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=A s]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=A s]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=A s]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=A s]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=A s]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=A s]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=A s]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=A s]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=A s]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-alpha;
}
.sc_order_summary__order__head__message :where(ol[type=a s]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=a s]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=a s]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=a s]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=a s]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=a s]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=a s]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=a s]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=a s]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=a s]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=a s]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-alpha;
}
.sc_order_summary__order__head__message :where(ol[type=I]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=I]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=I]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=I]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=I]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=I]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=I]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=I]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=I]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=I]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=I]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-roman;
}
.sc_order_summary__order__head__message :where(ol[type=i]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=i]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=i]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=i]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=i]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=i]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=i]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=i]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=i]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=i]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=i]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-roman;
}
.sc_order_summary__order__head__message :where(ol[type=I s]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=I s]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=I s]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=I s]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=I s]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=I s]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=I s]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=I s]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=I s]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=I s]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=I s]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-roman;
}
.sc_order_summary__order__head__message :where(ol[type=i s]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type=i s]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type=i s]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type=i s]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type=i s]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type=i s]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type=i s]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type=i s]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type=i s]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type=i s]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type=i s]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-roman;
}
.sc_order_summary__order__head__message :where(ol[type="1"]):not(:where([class~=not-prose] *)), #sc_content_above :where(ol[type="1"]):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol[type="1"]):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol[type="1"]):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol[type="1"]):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol[type="1"]):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol[type="1"]):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol[type="1"]):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol[type="1"]):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol[type="1"]):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol[type="1"]):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
}
.sc_order_summary__order__head__message :where(ul):not(:where([class~=not-prose] *)), #sc_content_above :where(ul):not(:where([class~=not-prose] *)),
#sc_content_below :where(ul):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ul):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ul):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ul):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ul):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ul):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ul):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ul):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul):not(:where([class~=not-prose] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.sc_order_summary__order__head__message :where(ol > li):not(:where([class~=not-prose] *))::marker, #sc_content_above :where(ol > li):not(:where([class~=not-prose] *))::marker,
#sc_content_below :where(ol > li):not(:where([class~=not-prose] *))::marker,
#sc_checkout_content_above :where(ol > li):not(:where([class~=not-prose] *))::marker,
#sc_checkout_shipping_info_content_above :where(ol > li):not(:where([class~=not-prose] *))::marker,
#sc_checkout_price_summary_content_above :where(ol > li):not(:where([class~=not-prose] *))::marker,
#privacy_policy_form_msg :where(ol > li):not(:where([class~=not-prose] *))::marker, .subsection-contact-form #privacy_policy_form_msg :where(ol > li):not(:where([class~=not-prose] *))::marker, .scroll_section_videos ul li .description :where(ol > li):not(:where([class~=not-prose] *))::marker, .protected_path_form_description :where(ol > li):not(:where([class~=not-prose] *))::marker, #protected_path_login #privacy_policy_form_msg :where(ol > li):not(:where([class~=not-prose] *))::marker {
  font-weight: 400;
  color: var(--prose-counters);
}
.sc_order_summary__order__head__message :where(ul > li):not(:where([class~=not-prose] *))::marker, #sc_content_above :where(ul > li):not(:where([class~=not-prose] *))::marker,
#sc_content_below :where(ul > li):not(:where([class~=not-prose] *))::marker,
#sc_checkout_content_above :where(ul > li):not(:where([class~=not-prose] *))::marker,
#sc_checkout_shipping_info_content_above :where(ul > li):not(:where([class~=not-prose] *))::marker,
#sc_checkout_price_summary_content_above :where(ul > li):not(:where([class~=not-prose] *))::marker,
#privacy_policy_form_msg :where(ul > li):not(:where([class~=not-prose] *))::marker, .subsection-contact-form #privacy_policy_form_msg :where(ul > li):not(:where([class~=not-prose] *))::marker, .scroll_section_videos ul li .description :where(ul > li):not(:where([class~=not-prose] *))::marker, .protected_path_form_description :where(ul > li):not(:where([class~=not-prose] *))::marker, #protected_path_login #privacy_policy_form_msg :where(ul > li):not(:where([class~=not-prose] *))::marker {
  color: var(--prose-bullets);
}
.sc_order_summary__order__head__message :where(hr):not(:where([class~=not-prose] *)), #sc_content_above :where(hr):not(:where([class~=not-prose] *)),
#sc_content_below :where(hr):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(hr):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(hr):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(hr):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(hr):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(hr):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(hr):not(:where([class~=not-prose] *)), .protected_path_form_description :where(hr):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(hr):not(:where([class~=not-prose] *)) {
  border-color: var(--prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.sc_order_summary__order__head__message :where(blockquote):not(:where([class~=not-prose] *)), #sc_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#sc_content_below :where(blockquote):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(blockquote):not(:where([class~=not-prose] *)), .protected_path_form_description :where(blockquote):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *)) {
  margin: 0;
  border-width: 0;
  border-style: solid;
  font-weight: 500;
  font-style: italic;
  color: var(--prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--prose-quote-borders);
  quotes: "“" "”" "‘" "’";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding: 0.5em 0 0.5em 1em;
}
.sc_order_summary__order__head__message :where(blockquote):not(:where([class~=not-prose] *))::before, #sc_content_above :where(blockquote):not(:where([class~=not-prose] *))::before,
#sc_content_below :where(blockquote):not(:where([class~=not-prose] *))::before,
#sc_checkout_content_above :where(blockquote):not(:where([class~=not-prose] *))::before,
#sc_checkout_shipping_info_content_above :where(blockquote):not(:where([class~=not-prose] *))::before,
#sc_checkout_price_summary_content_above :where(blockquote):not(:where([class~=not-prose] *))::before,
#privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *))::before, .subsection-contact-form #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *))::before, .scroll_section_videos ul li .description :where(blockquote):not(:where([class~=not-prose] *))::before, .protected_path_form_description :where(blockquote):not(:where([class~=not-prose] *))::before, #protected_path_login #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *))::before {
  content: open-quote;
}
.sc_order_summary__order__head__message :where(blockquote):not(:where([class~=not-prose] *))::after, #sc_content_above :where(blockquote):not(:where([class~=not-prose] *))::after,
#sc_content_below :where(blockquote):not(:where([class~=not-prose] *))::after,
#sc_checkout_content_above :where(blockquote):not(:where([class~=not-prose] *))::after,
#sc_checkout_shipping_info_content_above :where(blockquote):not(:where([class~=not-prose] *))::after,
#sc_checkout_price_summary_content_above :where(blockquote):not(:where([class~=not-prose] *))::after,
#privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *))::after, .subsection-contact-form #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *))::after, .scroll_section_videos ul li .description :where(blockquote):not(:where([class~=not-prose] *))::after, .protected_path_form_description :where(blockquote):not(:where([class~=not-prose] *))::after, #protected_path_login #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *))::after {
  content: close-quote;
}
.sc_order_summary__order__head__message :where(blockquote p):not(:where([class~=not-prose] *)), #sc_content_above :where(blockquote p):not(:where([class~=not-prose] *)),
#sc_content_below :where(blockquote p):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(blockquote p):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(blockquote p):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(blockquote p):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(blockquote p):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(blockquote p):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(blockquote p):not(:where([class~=not-prose] *)), .protected_path_form_description :where(blockquote p):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(blockquote p):not(:where([class~=not-prose] *)) {
  display: inline;
}
.sc_order_summary__order__head__message :where(blockquote):not(:where([class~=not-prose] *)), #sc_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#sc_content_below :where(blockquote):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(blockquote):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(blockquote):not(:where([class~=not-prose] *)), .protected_path_form_description :where(blockquote):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(blockquote):not(:where([class~=not-prose] *)) {
  font-family: var(--prose-blockquote-font-family, var(--blockquote-font-family , var(--base-font-family)));
  font-size: var(--prose-blockquote-font-size, var(--blockquote-font-size , var(--base-font-size)));
  line-height: var(--prose-blockquote-line-height, var(--blockquote-line-height , var(--base-line-height)));
  font-weight: var(--prose-blockquote-font-weight, var(--blockquote-font-weight , var(--base-font-weight)));
  text-transform: var(--prose-blockquote-text-transform, var(--blockquote-text-transform , inherit));
  color: var(--prose-blockquote-color, var(--blockquote-color , var(--base-color)));
}
.sc_order_summary__order__head__message :where(h1):not(:where([class~=not-prose] *)), #sc_content_above :where(h1):not(:where([class~=not-prose] *)),
#sc_content_below :where(h1):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h1):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h1):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h1):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h1):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h1):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h1):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h1):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h1):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-weight: var(--prose-h1-heading-font-weight, var(--prose-heading-font-weight, 800));
  font-size: var(--prose-h1-font-size, 2.25em);
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: var(--prose-h1-line-height, 1.1111111);
}
.sc_order_summary__order__head__message :where(h1 strong):not(:where([class~=not-prose] *)), #sc_content_above :where(h1 strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(h1 strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h1 strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h1 strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h1 strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h1 strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h1 strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h1 strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h1 strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h1 strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(h2):not(:where([class~=not-prose] *)), #sc_content_above :where(h2):not(:where([class~=not-prose] *)),
#sc_content_below :where(h2):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h2):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h2):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h2):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h2):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h2):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h2):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h2):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h2):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-weight: var(--prose-h2-heading-font-weight, var(--prose-heading-font-weight, 700));
  font-size: var(--prose-h2-font-size, 1.5em);
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: var(--prose-h2-line-height, 1.3333333);
}
.sc_order_summary__order__head__message :where(h2 strong):not(:where([class~=not-prose] *)), #sc_content_above :where(h2 strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(h2 strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h2 strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h2 strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h2 strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h2 strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h2 strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h2 strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h2 strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h2 strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(h3):not(:where([class~=not-prose] *)), #sc_content_above :where(h3):not(:where([class~=not-prose] *)),
#sc_content_below :where(h3):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h3):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h3):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h3):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h3):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h3):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h3):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h3):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h3):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-weight: var(--prose-h3-heading-font-weight, var(--prose-heading-font-weight, 600));
  font-size: var(--prose-h3-font-size, 1.25em);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: var(--prose-h3-line-height, 1.6);
}
.sc_order_summary__order__head__message :where(h3 strong):not(:where([class~=not-prose] *)), #sc_content_above :where(h3 strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(h3 strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h3 strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h3 strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h3 strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h3 strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h3 strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h3 strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h3 strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h3 strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(h4):not(:where([class~=not-prose] *)), #sc_content_above :where(h4):not(:where([class~=not-prose] *)),
#sc_content_below :where(h4):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h4):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h4):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h4):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h4):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h4):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h4):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h4):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h4):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-size: 1.125em;
  font-weight: var(--prose-h4-heading-font-weight, var(--prose-heading-font-weight, 600));
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: var(--prose-h4-line-height, 1.5);
}
.sc_order_summary__order__head__message :where(h4 strong):not(:where([class~=not-prose] *)), #sc_content_above :where(h4 strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(h4 strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h4 strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h4 strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h4 strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h4 strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h4 strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h4 strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h4 strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h4 strong):not(:where([class~=not-prose] *)) {
  font-weight: 700;
  color: inherit;
}
.sc_order_summary__order__head__message :where(h5):not(:where([class~=not-prose] *)), #sc_content_above :where(h5):not(:where([class~=not-prose] *)),
#sc_content_below :where(h5):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h5):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h5):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h5):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h5):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h5):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h5):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h5):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h5):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-size: 1em;
  font-weight: var(--prose-h5-heading-font-weight, var(--prose-heading-font-weight, 600));
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: var(--prose-h5-line-height, 1.5);
}
.sc_order_summary__order__head__message :where(h5 strong):not(:where([class~=not-prose] *)), #sc_content_above :where(h5 strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(h5 strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h5 strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h5 strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h5 strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h5 strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h5 strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h5 strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h5 strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h5 strong):not(:where([class~=not-prose] *)) {
  font-weight: 700;
  color: inherit;
}
.sc_order_summary__order__head__message :where(h6):not(:where([class~=not-prose] *)), #sc_content_above :where(h6):not(:where([class~=not-prose] *)),
#sc_content_below :where(h6):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h6):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h6):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h6):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h6):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h6):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h6):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h6):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h6):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-size: 1em;
  font-weight: var(--prose-h6-heading-font-weight, var(--prose-heading-font-weight, 600));
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: var(--prose-h6-line-height, 1.5);
}
.sc_order_summary__order__head__message :where(h6 strong):not(:where([class~=not-prose] *)), #sc_content_above :where(h6 strong):not(:where([class~=not-prose] *)),
#sc_content_below :where(h6 strong):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h6 strong):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h6 strong):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h6 strong):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h6 strong):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h6 strong):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h6 strong):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h6 strong):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h6 strong):not(:where([class~=not-prose] *)) {
  font-weight: 700;
  color: inherit;
}
.sc_order_summary__order__head__message :where(img):not(:where([class~=not-prose] *)), #sc_content_above :where(img):not(:where([class~=not-prose] *)),
#sc_content_below :where(img):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(img):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(img):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(img):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(img):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(img):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(img):not(:where([class~=not-prose] *)), .protected_path_form_description :where(img):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(img):not(:where([class~=not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.sc_order_summary__order__head__message :where(figure > *):not(:where([class~=not-prose] *)), #sc_content_above :where(figure > *):not(:where([class~=not-prose] *)),
#sc_content_below :where(figure > *):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(figure > *):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(figure > *):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(figure > *):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(figure > *):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(figure > *):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(figure > *):not(:where([class~=not-prose] *)), .protected_path_form_description :where(figure > *):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(figure > *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.sc_order_summary__order__head__message :where(figcaption):not(:where([class~=not-prose] *)), #sc_content_above :where(figcaption):not(:where([class~=not-prose] *)),
#sc_content_below :where(figcaption):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(figcaption):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(figcaption):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(figcaption):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(figcaption):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(figcaption):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(figcaption):not(:where([class~=not-prose] *)), .protected_path_form_description :where(figcaption):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(figcaption):not(:where([class~=not-prose] *)) {
  color: var(--prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.sc_order_summary__order__head__message :where(code):not(:where([class~=not-prose] *)), #sc_content_above :where(code):not(:where([class~=not-prose] *)),
#sc_content_below :where(code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *)) {
  color: var(--prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.sc_order_summary__order__head__message :where(code):not(:where([class~=not-prose] *))::before, #sc_content_above :where(code):not(:where([class~=not-prose] *))::before,
#sc_content_below :where(code):not(:where([class~=not-prose] *))::before,
#sc_checkout_content_above :where(code):not(:where([class~=not-prose] *))::before,
#sc_checkout_shipping_info_content_above :where(code):not(:where([class~=not-prose] *))::before,
#sc_checkout_price_summary_content_above :where(code):not(:where([class~=not-prose] *))::before,
#privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *))::before, .subsection-contact-form #privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *))::before, .scroll_section_videos ul li .description :where(code):not(:where([class~=not-prose] *))::before, .protected_path_form_description :where(code):not(:where([class~=not-prose] *))::before, #protected_path_login #privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *))::before {
  content: "`";
}
.sc_order_summary__order__head__message :where(code):not(:where([class~=not-prose] *))::after, #sc_content_above :where(code):not(:where([class~=not-prose] *))::after,
#sc_content_below :where(code):not(:where([class~=not-prose] *))::after,
#sc_checkout_content_above :where(code):not(:where([class~=not-prose] *))::after,
#sc_checkout_shipping_info_content_above :where(code):not(:where([class~=not-prose] *))::after,
#sc_checkout_price_summary_content_above :where(code):not(:where([class~=not-prose] *))::after,
#privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *))::after, .subsection-contact-form #privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *))::after, .scroll_section_videos ul li .description :where(code):not(:where([class~=not-prose] *))::after, .protected_path_form_description :where(code):not(:where([class~=not-prose] *))::after, #protected_path_login #privacy_policy_form_msg :where(code):not(:where([class~=not-prose] *))::after {
  content: "`";
}
.sc_order_summary__order__head__message :where(a code):not(:where([class~=not-prose] *)), #sc_content_above :where(a code):not(:where([class~=not-prose] *)),
#sc_content_below :where(a code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(a code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(a code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(a code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(a code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(a code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(a code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(a code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(a code):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(h1 code):not(:where([class~=not-prose] *)), #sc_content_above :where(h1 code):not(:where([class~=not-prose] *)),
#sc_content_below :where(h1 code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h1 code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h1 code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h1 code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h1 code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h1 code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h1 code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h1 code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h1 code):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(h2 code):not(:where([class~=not-prose] *)), #sc_content_above :where(h2 code):not(:where([class~=not-prose] *)),
#sc_content_below :where(h2 code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h2 code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h2 code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h2 code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h2 code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h2 code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h2 code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h2 code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h2 code):not(:where([class~=not-prose] *)) {
  color: inherit;
  font-size: 0.875em;
}
.sc_order_summary__order__head__message :where(h3 code):not(:where([class~=not-prose] *)), #sc_content_above :where(h3 code):not(:where([class~=not-prose] *)),
#sc_content_below :where(h3 code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h3 code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h3 code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h3 code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h3 code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h3 code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h3 code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h3 code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h3 code):not(:where([class~=not-prose] *)) {
  color: inherit;
  font-size: 0.9em;
}
.sc_order_summary__order__head__message :where(h4 code):not(:where([class~=not-prose] *)), #sc_content_above :where(h4 code):not(:where([class~=not-prose] *)),
#sc_content_below :where(h4 code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h4 code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h4 code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h4 code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h4 code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h4 code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h4 code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h4 code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h4 code):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(blockquote code):not(:where([class~=not-prose] *)), #sc_content_above :where(blockquote code):not(:where([class~=not-prose] *)),
#sc_content_below :where(blockquote code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(blockquote code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(blockquote code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(blockquote code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(blockquote code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(blockquote code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(blockquote code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(blockquote code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(blockquote code):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(thead th code):not(:where([class~=not-prose] *)), #sc_content_above :where(thead th code):not(:where([class~=not-prose] *)),
#sc_content_below :where(thead th code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(thead th code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(thead th code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(thead th code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(thead th code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(thead th code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(thead th code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(thead th code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(thead th code):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.sc_order_summary__order__head__message :where(pre):not(:where([class~=not-prose] *)), #sc_content_above :where(pre):not(:where([class~=not-prose] *)),
#sc_content_below :where(pre):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(pre):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(pre):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(pre):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(pre):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(pre):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(pre):not(:where([class~=not-prose] *)), .protected_path_form_description :where(pre):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(pre):not(:where([class~=not-prose] *)) {
  color: var(--prose-pre-code);
  background-color: var(--prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.sc_order_summary__order__head__message :where(pre code):not(:where([class~=not-prose] *)), #sc_content_above :where(pre code):not(:where([class~=not-prose] *)),
#sc_content_below :where(pre code):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(pre code):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(pre code):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(pre code):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(pre code):not(:where([class~=not-prose] *)), .protected_path_form_description :where(pre code):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.sc_order_summary__order__head__message :where(pre code):not(:where([class~=not-prose] *))::before, #sc_content_above :where(pre code):not(:where([class~=not-prose] *))::before,
#sc_content_below :where(pre code):not(:where([class~=not-prose] *))::before,
#sc_checkout_content_above :where(pre code):not(:where([class~=not-prose] *))::before,
#sc_checkout_shipping_info_content_above :where(pre code):not(:where([class~=not-prose] *))::before,
#sc_checkout_price_summary_content_above :where(pre code):not(:where([class~=not-prose] *))::before,
#privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *))::before, .subsection-contact-form #privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *))::before, .scroll_section_videos ul li .description :where(pre code):not(:where([class~=not-prose] *))::before, .protected_path_form_description :where(pre code):not(:where([class~=not-prose] *))::before, #protected_path_login #privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *))::before {
  content: none;
}
.sc_order_summary__order__head__message :where(pre code):not(:where([class~=not-prose] *))::after, #sc_content_above :where(pre code):not(:where([class~=not-prose] *))::after,
#sc_content_below :where(pre code):not(:where([class~=not-prose] *))::after,
#sc_checkout_content_above :where(pre code):not(:where([class~=not-prose] *))::after,
#sc_checkout_shipping_info_content_above :where(pre code):not(:where([class~=not-prose] *))::after,
#sc_checkout_price_summary_content_above :where(pre code):not(:where([class~=not-prose] *))::after,
#privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *))::after, .subsection-contact-form #privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *))::after, .scroll_section_videos ul li .description :where(pre code):not(:where([class~=not-prose] *))::after, .protected_path_form_description :where(pre code):not(:where([class~=not-prose] *))::after, #protected_path_login #privacy_policy_form_msg :where(pre code):not(:where([class~=not-prose] *))::after {
  content: none;
}
.sc_order_summary__order__head__message :where(table):not(:where([class~=not-prose] *)), #sc_content_above :where(table):not(:where([class~=not-prose] *)),
#sc_content_below :where(table):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(table):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(table):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(table):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(table):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(table):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(table):not(:where([class~=not-prose] *)), .protected_path_form_description :where(table):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(table):not(:where([class~=not-prose] *)) {
  border-collapse: collapse;
  border-width: 0;
  border-color: inherit;
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: var(--prose-table-font-size, 0.875em);
  line-height: var(--prose-table-line-height, 1.7142857);
}
.sc_order_summary__order__head__message :where(thead):not(:where([class~=not-prose] *)), #sc_content_above :where(thead):not(:where([class~=not-prose] *)),
#sc_content_below :where(thead):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(thead):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(thead):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(thead):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(thead):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(thead):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(thead):not(:where([class~=not-prose] *)), .protected_path_form_description :where(thead):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(thead):not(:where([class~=not-prose] *)) {
  border-width: 0;
  border-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--prose-th-borders);
}
.sc_order_summary__order__head__message :where(thead th):not(:where([class~=not-prose] *)), #sc_content_above :where(thead th):not(:where([class~=not-prose] *)),
#sc_content_below :where(thead th):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(thead th):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(thead th):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(thead th):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(thead th):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(thead th):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(thead th):not(:where([class~=not-prose] *)), .protected_path_form_description :where(thead th):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(thead th):not(:where([class~=not-prose] *)) {
  color: var(--prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.sc_order_summary__order__head__message :where(tbody tr):not(:where([class~=not-prose] *)), #sc_content_above :where(tbody tr):not(:where([class~=not-prose] *)),
#sc_content_below :where(tbody tr):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tbody tr):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tbody tr):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tbody tr):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tbody tr):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tbody tr):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tbody tr):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tbody tr):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tbody tr):not(:where([class~=not-prose] *)) {
  border-width: 0;
  border-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--prose-td-borders);
}
.sc_order_summary__order__head__message :where(tbody tr:last-child):not(:where([class~=not-prose] *)), #sc_content_above :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tbody tr:last-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tbody tr:last-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tbody tr:last-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tbody tr:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tbody tr:last-child):not(:where([class~=not-prose] *)) {
  border-bottom-width: 0;
}
.sc_order_summary__order__head__message :where(tbody td):not(:where([class~=not-prose] *)), #sc_content_above :where(tbody td):not(:where([class~=not-prose] *)),
#sc_content_below :where(tbody td):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tbody td):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tbody td):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tbody td):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tbody td):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tbody td):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tbody td):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tbody td):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tbody td):not(:where([class~=not-prose] *)) {
  vertical-align: baseline;
}
.sc_order_summary__order__head__message :where(tfoot):not(:where([class~=not-prose] *)), #sc_content_above :where(tfoot):not(:where([class~=not-prose] *)),
#sc_content_below :where(tfoot):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tfoot):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tfoot):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tfoot):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tfoot):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tfoot):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tfoot):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tfoot):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tfoot):not(:where([class~=not-prose] *)) {
  border-top-width: 1px;
  border-top-color: var(--prose-th-borders);
}
.sc_order_summary__order__head__message :where(tfoot td):not(:where([class~=not-prose] *)), #sc_content_above :where(tfoot td):not(:where([class~=not-prose] *)),
#sc_content_below :where(tfoot td):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tfoot td):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tfoot td):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tfoot td):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tfoot td):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tfoot td):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tfoot td):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tfoot td):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tfoot td):not(:where([class~=not-prose] *)) {
  vertical-align: top;
}
.sc_order_summary__order__head__message :where(p):not(:where([class~=not-prose] *)), #sc_content_above :where(p):not(:where([class~=not-prose] *)),
#sc_content_below :where(p):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(p):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(p):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(p):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(p):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(p):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(p):not(:where([class~=not-prose] *)), .protected_path_form_description :where(p):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(p):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.sc_order_summary__order__head__message :where(video):not(:where([class~=not-prose] *)), #sc_content_above :where(video):not(:where([class~=not-prose] *)),
#sc_content_below :where(video):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(video):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(video):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(video):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(video):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(video):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(video):not(:where([class~=not-prose] *)), .protected_path_form_description :where(video):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(video):not(:where([class~=not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.sc_order_summary__order__head__message :where(figure):not(:where([class~=not-prose] *)), #sc_content_above :where(figure):not(:where([class~=not-prose] *)),
#sc_content_below :where(figure):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(figure):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(figure):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(figure):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(figure):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(figure):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(figure):not(:where([class~=not-prose] *)), .protected_path_form_description :where(figure):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(figure):not(:where([class~=not-prose] *)) {
  margin-left: 0;
  margin-right: 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
.sc_order_summary__order__head__message :where(li):not(:where([class~=not-prose] *)), #sc_content_above :where(li):not(:where([class~=not-prose] *)),
#sc_content_below :where(li):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(li):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(li):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(li):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(li):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(li):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(li):not(:where([class~=not-prose] *)), .protected_path_form_description :where(li):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(li):not(:where([class~=not-prose] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.sc_order_summary__order__head__message :where(ol > li):not(:where([class~=not-prose] *)), #sc_content_above :where(ol > li):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol > li):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol > li):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol > li):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol > li):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol > li):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol > li):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol > li):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol > li):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol > li):not(:where([class~=not-prose] *)) {
  padding-left: 0.375em;
}
.sc_order_summary__order__head__message :where(ul > li):not(:where([class~=not-prose] *)), #sc_content_above :where(ul > li):not(:where([class~=not-prose] *)),
#sc_content_below :where(ul > li):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ul > li):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ul > li):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ul > li):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ul > li):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ul > li):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ul > li):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ul > li):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li):not(:where([class~=not-prose] *)) {
  padding-left: 0.375em;
}
.sc_order_summary__order__head__message :where(ul > li p):not(:where([class~=not-prose] *)), #sc_content_above :where(ul > li p):not(:where([class~=not-prose] *)),
#sc_content_below :where(ul > li p):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ul > li p):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ul > li p):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ul > li p):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ul > li p):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ul > li p):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ul > li p):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ul > li p):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li p):not(:where([class~=not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.sc_order_summary__order__head__message :where(ul > li > *:first-child):not(:where([class~=not-prose] *)), #sc_content_above :where(ul > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(ul > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ul > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ul > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ul > li > *:first-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ul > li > *:first-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ul > li > *:first-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ul > li > *:first-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ul > li > *:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
}
.sc_order_summary__order__head__message :where(ul > li > *:last-child):not(:where([class~=not-prose] *)), #sc_content_above :where(ul > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(ul > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ul > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ul > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ul > li > *:last-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ul > li > *:last-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ul > li > *:last-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ul > li > *:last-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ul > li > *:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.25em;
}
.sc_order_summary__order__head__message :where(ol > li > *:first-child):not(:where([class~=not-prose] *)), #sc_content_above :where(ol > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol > li > *:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol > li > *:first-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol > li > *:first-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol > li > *:first-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol > li > *:first-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol > li > *:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
}
.sc_order_summary__order__head__message :where(ol > li > *:last-child):not(:where([class~=not-prose] *)), #sc_content_above :where(ol > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(ol > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ol > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ol > li > *:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ol > li > *:last-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ol > li > *:last-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ol > li > *:last-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ol > li > *:last-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ol > li > *:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.25em;
}
.sc_order_summary__order__head__message :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)), #sc_content_above :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
#sc_content_below :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)), .protected_path_form_description :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.sc_order_summary__order__head__message :where(hr + *):not(:where([class~=not-prose] *)), #sc_content_above :where(hr + *):not(:where([class~=not-prose] *)),
#sc_content_below :where(hr + *):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(hr + *):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(hr + *):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(hr + *):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(hr + *):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(hr + *):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(hr + *):not(:where([class~=not-prose] *)), .protected_path_form_description :where(hr + *):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(hr + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.sc_order_summary__order__head__message :where(h2 + *):not(:where([class~=not-prose] *)), #sc_content_above :where(h2 + *):not(:where([class~=not-prose] *)),
#sc_content_below :where(h2 + *):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h2 + *):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h2 + *):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h2 + *):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h2 + *):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h2 + *):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h2 + *):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h2 + *):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h2 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.sc_order_summary__order__head__message :where(h3 + *):not(:where([class~=not-prose] *)), #sc_content_above :where(h3 + *):not(:where([class~=not-prose] *)),
#sc_content_below :where(h3 + *):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h3 + *):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h3 + *):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h3 + *):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h3 + *):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h3 + *):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h3 + *):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h3 + *):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h3 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.sc_order_summary__order__head__message :where(h4 + *):not(:where([class~=not-prose] *)), #sc_content_above :where(h4 + *):not(:where([class~=not-prose] *)),
#sc_content_below :where(h4 + *):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(h4 + *):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(h4 + *):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(h4 + *):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(h4 + *):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(h4 + *):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(h4 + *):not(:where([class~=not-prose] *)), .protected_path_form_description :where(h4 + *):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(h4 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.sc_order_summary__order__head__message :where(thead th:first-child):not(:where([class~=not-prose] *)), #sc_content_above :where(thead th:first-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(thead th:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(thead th:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(thead th:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(thead th:first-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(thead th:first-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(thead th:first-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(thead th:first-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(thead th:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(thead th:first-child):not(:where([class~=not-prose] *)) {
  padding-left: 0;
}
.sc_order_summary__order__head__message :where(thead th:last-child):not(:where([class~=not-prose] *)), #sc_content_above :where(thead th:last-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(thead th:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(thead th:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(thead th:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(thead th:last-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(thead th:last-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(thead th:last-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(thead th:last-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(thead th:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(thead th:last-child):not(:where([class~=not-prose] *)) {
  padding-right: 0;
}
.sc_order_summary__order__head__message :where(tbody td, tfoot td):not(:where([class~=not-prose] *)), #sc_content_above :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
#sc_content_below :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tbody td, tfoot td):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tbody td, tfoot td):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tbody td, tfoot td):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tbody td, tfoot td):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tbody td, tfoot td):not(:where([class~=not-prose] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.sc_order_summary__order__head__message :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)), #sc_content_above :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)) {
  padding-left: 0;
}
.sc_order_summary__order__head__message :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)), #sc_content_above :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)) {
  padding-right: 0;
}
.sc_order_summary__order__head__message :where(*:first-child):not(:where([class~=not-prose] *)), #sc_content_above :where(*:first-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(*:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(*:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(*:first-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(*:first-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(*:first-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(*:first-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(*:first-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(*:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(*:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.sc_order_summary__order__head__message :where(*:last-child):not(:where([class~=not-prose] *)), #sc_content_above :where(*:last-child):not(:where([class~=not-prose] *)),
#sc_content_below :where(*:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_content_above :where(*:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_shipping_info_content_above :where(*:last-child):not(:where([class~=not-prose] *)),
#sc_checkout_price_summary_content_above :where(*:last-child):not(:where([class~=not-prose] *)),
#privacy_policy_form_msg :where(*:last-child):not(:where([class~=not-prose] *)), .subsection-contact-form #privacy_policy_form_msg :where(*:last-child):not(:where([class~=not-prose] *)), .scroll_section_videos ul li .description :where(*:last-child):not(:where([class~=not-prose] *)), .protected_path_form_description :where(*:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(*:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 0;
}
.sc_order_summary__order__head__message .link a, #sc_content_above .link a,
#sc_content_below .link a,
#sc_checkout_content_above .link a,
#sc_checkout_shipping_info_content_above .link a,
#sc_checkout_price_summary_content_above .link a,
#privacy_policy_form_msg .link a, .scroll_section_videos ul li .description .link a, .protected_path_form_description .link a, #protected_path_login #privacy_policy_form_msg .link a,
.sc_order_summary__order__head__message .link span,
#sc_content_above .link span,
#sc_content_below .link span,
#sc_checkout_content_above .link span,
#sc_checkout_shipping_info_content_above .link span,
#sc_checkout_price_summary_content_above .link span,
#privacy_policy_form_msg .link span,
.scroll_section_videos ul li .description .link span,
.protected_path_form_description .link span,
#protected_path_login #privacy_policy_form_msg .link span {
  font-family: var(--link-font-family, var(--font-family, inherit));
  font-size: var(--link-font-size, var(--font-size, inherit));
  line-height: var(--link-line-height, var(--line-height, inherit));
  font-weight: var(--link-font-weight, var(--font-weight, inherit));
  text-transform: var(--link-text-transform, var(--text-transform, inherit));
  letter-spacing: var(--link-letter-spacing, var(--letter-spacing, inherit));
  color: var(--link-color, var(--text-color, inherit));
  transition: 0.3s all var(--easing);
  text-decoration: none;
}
.sc_order_summary__order__head__message .link a:hover, #sc_content_above .link a:hover,
#sc_content_below .link a:hover,
#sc_checkout_content_above .link a:hover,
#sc_checkout_shipping_info_content_above .link a:hover,
#sc_checkout_price_summary_content_above .link a:hover,
#privacy_policy_form_msg .link a:hover, .scroll_section_videos ul li .description .link a:hover, .protected_path_form_description .link a:hover, #protected_path_login #privacy_policy_form_msg .link a:hover,
.sc_order_summary__order__head__message .link span:hover,
#sc_content_above .link span:hover,
#sc_content_below .link span:hover,
#sc_checkout_content_above .link span:hover,
#sc_checkout_shipping_info_content_above .link span:hover,
#sc_checkout_price_summary_content_above .link span:hover,
#privacy_policy_form_msg .link span:hover,
.scroll_section_videos ul li .description .link span:hover,
.protected_path_form_description .link span:hover,
#protected_path_login #privacy_policy_form_msg .link span:hover {
  color: var(--link-focus-color, var(--text-color));
}

.subsection-contact-form #privacy_policy_form_msg, #protected_path_login #privacy_policy_form_msg {
  font-size: var(--step--1);
  line-height: var(--step--1-lh);
}
.subsection-contact-form #privacy_policy_form_msg :where(ul > li p):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li p):not(:where([class~=not-prose] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.subsection-contact-form #privacy_policy_form_msg :where(ul > li > *:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.1428571em;
}
.subsection-contact-form #privacy_policy_form_msg :where(ul > li > *:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ul > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.1428571em;
}
.subsection-contact-form #privacy_policy_form_msg :where(ol > li > *:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.1428571em;
}
.subsection-contact-form #privacy_policy_form_msg :where(ol > li > *:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(ol > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.1428571em;
}
.subsection-contact-form #privacy_policy_form_msg :where(:first-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.subsection-contact-form #privacy_policy_form_msg :where(:last-child):not(:where([class~=not-prose] *)), #protected_path_login #privacy_policy_form_msg :where(:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  --records-list-display: flex;
  backface-visibility: hidden;
  flex-wrap: nowrap !important;
  height: 100%;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  margin-top: var(--space-l-xl);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: nowrap;
  padding-left: 0;
}
@media only screen and (max-width: 389px) {
  .splide__pagination {
    max-width: 90%;
  }
}
.splide__pagination li {
  --list-item-width: var(--space-m-l);
  width: var(--space-m-l);
  opacity: 1 !important;
  transform: none !important;
  display: inline-block;
  line-height: 0;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide__pagination button {
  text-indent: -99999px;
}

.splide__pagination__page {
  --_color: var(--base-100);
  width: 100%;
  height: 0.4rem;
  background: transparent;
  border-top: 1px solid var(--_color);
  cursor: pointer;
}
.splide__pagination__page:hover {
  --_color: var(--base-400);
}
.splide__pagination__page.is-active {
  --_color: var(--base-700);
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid var(--border-color);
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  height: 20px !important;
  width: 20px !important;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.layout-animation-enabled .splide .records_list:not(#slideshow) ul li {
  transform: none !important;
  opacity: 1;
}

.splide__arrows {
  padding-left: calc(var(--CONTAINER-PADDING) + var(--space-xs));
  padding-right: calc(var(--CONTAINER-PADDING) + var(--space-xs));
  display: flex;
  left: 0;
  right: 0;
  margin: 0 auto;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 459px) {
  .splide__arrows {
    padding-left: var(--CONTAINER-PADDING);
    padding-right: var(--CONTAINER-PADDING);
  }
}

.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

.splide__arrow {
  background: var(--white);
  color: var(--text-primary);
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all var(--easing);
  border-radius: 50rem;
  pointer-events: all;
  opacity: 0.75;
}
@media only screen and (max-width: 1023px) {
  .splide__arrow {
    padding: 0 var(--space-2xs);
  }
}
.splide__arrow:hover {
  cursor: pointer;
  opacity: 1;
}
.splide__arrow:hover path {
  stroke: var(--text-primary);
}
.splide__arrow[disabled] {
  opacity: 0;
  pointer-events: none;
}
.splide__arrow svg {
  width: var(--space-m);
  height: var(--space-m);
}
.splide__arrow path {
  fill: none;
  stroke: var(--text-body);
  stroke-width: 2;
  transition: var(--transition);
}

.splide__arrow--prev svg {
  transform: rotate(180deg);
}

.splide__slide {
  --list-item-width: 100%;
}

.splide:not(.is-overflow) .splide__track {
  padding: var(--splide__track-pt, var(--splide__track-py, 0)) var(--splide__track-pr, var(--splide__track-px, 0)) var(--splide__track-pb, var(--splide__track-py, 0)) var(--splide__track-pl, var(--splide__track-px, 0)) !important;
  --splide-track-max-width: var(--CONTAINER-WIDTH);
  --splide__track-py: 0;
  --splide__track-px: var(--CONTAINER-PADDING);
  max-width: var(--splide-track-max-width);
  margin-left: auto;
  margin-right: auto;
}
.splide:not(.is-overflow) .splide__slide {
  --list-item-width: 33%;
}
@media only screen and (max-width: 767px) {
  .splide:not(.is-overflow) .splide__slide {
    --list-item-width: 50%;
  }
}
@media only screen and (max-width: 459px) {
  .splide:not(.is-overflow) .splide__slide {
    --list-item-width: 100%;
  }
}

body .plyr--playing .plyr__controls {
  display: flex;
}
body .plyr__video-wrapper::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
body .plyr--playing .plyr__video-wrapper::after {
  opacity: 0;
}
body .plyr__control--overlaid {
  background: transparent;
  border: 1px solid var(--white);
  padding: 0;
  width: var(--space-2xl-3xl) !important;
  height: var(--space-2xl-3xl) !important;
  background: unset;
}
body .plyr__control--overlaid::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxOCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuMTI1IDEuMzczMjRMMTYuNSAxMC4yNUwxLjEyNSAxOS4xMjY4TDEuMTI1IDEuMzczMjRaIiBzdHJva2U9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.75em;
  width: var(--space-m-l);
  height: var(--space-m-l);
  display: block;
  margin: 0 auto;
  transform: translateX(0.15em);
}
body .plyr__control--overlaid svg {
  display: none;
}
body .plyr--video .plyr__control.plyr__tab-focus,
body .plyr--video .plyr__control:hover,
body .plyr--video .plyr__control[aria-expanded=true] {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

body .plyr {
  padding-top: 0 !important;
}
body .plyr .dynamic-width-downscaled {
  padding-top: 56.25% !important;
}

.plyr__video-embed__container .fluid-width-video-wrapper {
  display: contents;
}

@keyframes link-underline {
  0% {
    transform: scaleX(100%);
    transform-origin: center right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: center right;
  }
  51% {
    transform-origin: center left;
  }
  100% {
    transform-origin: center left;
    transform: scaleX(100%);
  }
}
.prose blockquote,
.mceContentBody blockquote,
.content_section blockquote,
.detail_view_module:not(.secondary_images) blockquote,
.scroll_section .content_module blockquote,
#bio blockquote,
.subsection-news-record #content_module blockquote,
.subsection-video-record #content_module blockquote,
.subsection-store-record #content_module blockquote,
.description blockquote,
.panel_type_11 .content_columns blockquote,
.panel_type_11 .content_full blockquote,
#publications_text blockquote,
#cookie_notification_message blockquote {
  border-left-width: 0.1rem;
  font-style: normal;
}

.panel_content_autofill_type_exhibitions .content h2 {
  font-style: italic;
}

.panel_content_autofill_type_artworks .content .subtitle {
  font-style: italic;
}

.subheading {
  --section-subheading-color: var(--text-primary);
  --section-subheading-mt: var(--space-2xl-4xl);
  --section-subheading-mb: var(--space-m-l);
}

* {
  text-wrap: wrap;
}

html {
  scroll-behavior: smooth;
}

.divider {
  display: none;
  height: 0 !important;
}

#sidebar .image {
  background: unset;
}

.price {
  display: none !important;
}

#sidebar .image.restricted-image-container::after,
.sidebar .image.restricted-image-container::after,
.feature_panels .image.restricted-image-container > span:not(.caption)::after,
.feature_panels .image .restricted-image-container > span:not(.caption)::after,
.panel_image_text_adjacent .image.restricted-image-container > span:not(.caption)::after,
.panel_image_text_adjacent .image .restricted-image-container > span:not(.caption)::after,
.panel_image_text_adjacent .image .panel_image_slideshow .panel_slide > span:not(.caption)::after {
  padding-top: 75%;
}

@media only screen and (max-width: 767px) {
  #sidebar .image.restricted-image-container .object-fit-container,
  .panel_image_text_adjacent .image.restricted-image-container .object-fit-container {
    position: absolute;
  }
}

.max_height_read_more {
  min-height: calc(var(--base-font-size) * var(--base-line-height) * 12);
  min-height: calc(var(--base-font-size) * var(--base-line-height) * 12);
}

.leave {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 10%;
  height: auto;
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  z-index: 999999999999999;
}
.leave.leave--is-visible {
  opacity: 1 !important;
}
.leave img {
  width: 100%;
  height: auto;
}

:root {
  --blockquote-font-size: var(--step-3);
  --blockquote-color: var(--text-primary);
  --prose-blockquote-font-size: var(--step-2);
}

.page-param-type-publication_id #sidebar .link, .page-param-type-publication_id .buy.link, .panel_type_4 .link, div.arprompt .arpromptdefaultbutton, .simple_list ul .simple_list__link--read-more, .fp-featured-record-slider .records_list ul li a .content .link > span:not(.button_loader), .panel_type_9 .link > span:not(.button_loader), .records_list.feature_list .link > span:not(.button_loader),
.fp-featured-record-slider .records_list ul li a .content .link > a,
.panel_type_9 .link > a,
.records_list.feature_list .link > a, #image_gallery .store_item_add_to_cart, .list-ajax-load-more span,
.store_item_add_to_cart span,
.c-button span {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#image_gallery .store_item_add_to_cart span {
  border: unset !important;
  background: unset !important;
  color: unset !important;
  transition: unset !important;
}

.fp-featured-record-slider .records_list ul li a .content .link:hover > a, .panel_type_9 .link:hover > a, .records_list.feature_list .link:hover > a,
.fp-featured-record-slider .records_list ul li a .content .link:hover > span,
.panel_type_9 .link:hover > span,
.records_list.feature_list .link:hover > span {
  color: var(--button-focus-color);
}
.fp-featured-record-slider .records_list ul li a .content .link > span:not(.button_loader)::after, .panel_type_9 .link > span:not(.button_loader)::after, .records_list.feature_list .link > span:not(.button_loader)::after,
.fp-featured-record-slider .records_list ul li a .content .link > a::after,
.panel_type_9 .link > a::after,
.records_list.feature_list .link > a::after {
  content: unset;
}

:root {
  --link-line-height: var(--leading-loose);
  --link-color: var(--text-body);
  --link-focus-color: var(--text-primary);
}

.panel_type_4 .button a, .records_list .content .read_more_label a, .link a {
  position: relative;
  display: inline-block;
}
.panel_type_4 .button a::after, .records_list .content .read_more_label a::after, .link a::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--text-body);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.panel_type_4 .button a:hover::after, .records_list .content .read_more_label a:hover::after, .link a:hover::after {
  transform: scaleX(100%);
}

a, a:visited {
  text-decoration: none;
}

.navigation {
  --navigation-focus-color: var(--text-primary);
  --horizontal-gap: var(--space-s-m);
  --navigation-focus-color: var(--text-primary);
}
.navigation > ul a {
  position: relative;
  display: inline-block;
}
.navigation > ul a::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.navigation > ul a:hover::after {
  transform: scaleX(100%);
}
.navigation > ul .active {
  --navigation-color: var(--text-primary);
}
.navigation > ul .active a {
  position: relative;
  display: inline-block;
}
.navigation > ul .active a::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
.navigation > ul .active a:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}

.custom-select {
  position: relative;
  z-index: 10;
}
.custom-select ul {
  flex-direction: column;
  border: 1px solid var(--border-color);
  margin: 0;
  max-height: 290px;
  flex-wrap: nowrap;
  overflow: scroll;
  padding: 0;
  font-weight: normal;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
}
.custom-select ul li:hover {
  background: var(--base-100);
  color: var(--white);
  border: 1px solid var(--border-color);
  border-width: 0 0 0 1px;
}
.custom-select ul li:focus {
  border: 1px dashed var(--border-color);
}
.custom-select ul li a {
  --navigation-px: var(--space-s);
  --navigation-py: var(--space-xs);
  width: 100%;
  outline-offset: -1px;
}
.custom-select ul li a::after {
  content: unset !important;
}

.select-css {
  display: block;
  padding: var(--space-xs) calc(var(--space-s) + var(--space-m)) var(--space-xs) var(--space-s);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid var(--border-color);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  position: relative;
  z-index: 10;
}
.select-css::-ms-expand {
  display: none;
}
.select-css:hover {
  border-color: var(--border-color);
}
.select-css:focus {
  color: var(--text-primary);
  outline: none;
}

.custom-select-icons {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  z-index: 20;
  border: 1px solid white;
  background: transparent;
}

.custom-select__icon {
  --_size:var(--space-s);
  width: var(--_size);
  height: var(--_size);
  position: absolute;
  right: var(--space-s);
  top: 50%;
  z-index: 11;
  transform: rotate(90deg) translateX(-50%);
}

.hidden-all {
  display: none !important;
}

.hidden-visually {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

input,
select,
button {
  touch-action: pan-y, pan-x;
}

.form .form_row.form_row--not-empty .inputField {
  background-color: var(--white);
}
.form .form_row label,
.form .form_row legend {
  line-height: var(--leading-relaxed);
  padding-top: var(--space-s);
}
.form .form_row .inputField,
.form .form_row textarea {
  padding: var(--space-s) var(--space-m);
  border-color: var(--border-color);
  line-height: var(--leading-relaxed);
}
.form .form_row .inputField:-webkit-autofill,
.form .form_row textarea:-webkit-autofill {
  background-color: var(--white);
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
}

.fancybox-overlay.fancybox-overlay-ajax,
.fancybox-overlay.fancybox-overlay-html,
.fancybox-overlay.fancybox-overlay-iframe,
.fancybox-overlay.fancybox-overlay-fixed {
  background: rgba(19, 19, 19, 0.65);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#hero_header {
  --hero-heading-color: var(--white);
  --hero-subheading-color: var(--white);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  margin-bottom: var(--section-vertical-space);
}
#hero_header.hero--has-caption {
  margin-bottom: var(--space-s);
}
#hero_header .inner {
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-l);
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
}
#hero_header h2 {
  max-width: 75ch;
}
#hero_header .h1_subtitle {
  display: block;
  margin-top: var(--space-m-xl);
}

.hero_header__caption {
  text-align: center;
  max-width: 75ch;
  margin: 0 auto var(--section-vertical-space);
}

body.layout-hero-header:not(.type-fullscreen) #main_content::before {
  display: none;
}

.fullscreen_slideshow ul li.fullscreen-slide-image-dark:not(.remove-both-masks):not(.remove-bottom-mask)::after,
.fullscreen-slide-dark #parallax-hero_header .fullscreen_slideshow ul li:not(.remove-both-masks)::after,
.fullscreen-slide-dark #hero_header .fullscreen_slideshow ul li:not(.remove-both-masks)::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 18.34%, rgba(0, 0, 0, 0) 61.68%);
}

#slideshow ul li .content {
  bottom: 0;
}
#slideshow .inner {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
#slideshow .subtitle {
  margin-top: var(--space-m-xl);
}

.fullscreen-slide-light #hero_header {
  --hero-heading-color: var(--text-primary);
  --hero-subheading-color: var(--text-primary);
}

#container {
  --header-pt: var(--space-m);
  --header-pb: var(--space-xl);
  --header-logo-height: 24rem;
}
@media only screen and (max-width: 1023px) {
  #container {
    --header-logo-height: calc(var(--step-4) * var(--leading-normal) * 3);
    --header-pt: var(--space-s);
    --header-pb: var(--space-s);
  }
}

#header {
  --header-position: absolute;
  position: var(--header-position, relative) !important;
  top: 0;
}
#header::after {
  content: unset;
}
@media only screen and (max-width: 1023px) {
  #header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
#header .header-ui-wrapper {
  flex: 1;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}

.header-fixed-wrapper-no-follow {
  height: calc(var(--header-pt) + var(--header-pb) + var(--header-logo-height)) !important;
}

body.layout-hero-header.layout-fixed-header .header-fixed-wrapper {
  height: auto;
}

@media only screen and (max-width: 1023px) {
  #top_nav {
    --navigation-font-size: var(--step-5);
    --navigation-color: var(--text-secondary-invert);
    --navigation-focus-color: var(--white);
    max-width: unset !important;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  #top_nav {
    --navigation-font-size: var(--step-3);
  }
}
#top_nav ul {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
#top_nav ul li {
  height: auto;
}
@media only screen and (max-width: 1023px) {
  #top_nav ul li a {
    display: inline-flex !important;
    width: auto !important;
  }
}
@media only screen and (max-width: 1023px) {
  #top_nav ul .active {
    --navigation-color: var(--white);
  }
}

#header.js-header-scroll-animation--down {
  animation: header-scroll-animation--down 500ms var(--easing);
}

@keyframes header-scroll-animation--down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
#header.js-header-scroll-animation--up {
  animation: header-scroll-animation--up 800ms var(--easing);
}

@keyframes header-scroll-animation--up {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-100%);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
#header.js-change-header-appearance {
  --header-pt: var(--space-m);
  --header-pb: var(--space-m);
  --header-logo-height: calc(var(--step-0) * var(--leading-normal));
  --header-position: fixed;
  top: 0;
}
@media only screen and (max-width: 1023px) {
  #header.js-change-header-appearance .inner {
    width: 100%;
  }
}
.cms-frontend-toolbar-active #header.js-change-header-appearance {
  top: 23px;
}
#header.js-change-header-appearance .header-ui-wrapper {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
#header.js-change-header-appearance .header__logo-top {
  display: none;
}
#header.js-change-header-appearance .header__logo-scroll {
  display: flex;
  opacity: 1;
}
#header.js-change-header-appearance #top_nav ul {
  flex-direction: row;
  align-items: center;
  margin-right: var(--horizontal-gap);
}

.loader-active:not(.section-artworks) #header,
.ajax-loading-complete:not(.section-artworks) #header {
  transform: translateY(0) !important;
}

body.pageload-ajax-navigation-active.page-transition .header-fixed-wrapper {
  opacity: 0;
  transition: var(--transition);
}

#page_header h2 {
  --heading-font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #header #page_header .page-header-inner {
    justify-content: space-between;
  }
}

.page-header-inner .clear {
  display: none;
}

#sub-item-enquire-page_header {
  display: none;
}

#header .header-ui-wrapper .header-icons-wrapper.active {
  margin: 0;
  float: unset;
}
#header .header-ui-wrapper .header-icons-wrapper > div {
  margin: 0;
}

body.responsive-nav-side-position-fullscreen #responsive_slide_nav_wrapper #top_nav #top_nav_reveal {
  right: var(--CONTAINER-PADDING);
}
@media only screen and (max-width: 1023px) {
  body.responsive-nav-side-position-fullscreen #responsive_slide_nav_wrapper_inner {
    padding: var(--space-3xl) var(--CONTAINER-PADDING) !important;
  }
}

.header__logo-top {
  margin-right: var(--space-xl);
  width: auto;
  display: block;
  line-height: 0;
}
@media only screen and (max-width: 1023px) {
  .header__logo-top {
    display: none;
  }
}
.header__logo-top svg {
  transition: 0.5s all var(--easing);
  height: var(--header-logo-height);
}

.header__logo-scroll {
  font-weight: bold;
  color: var(--text-primary);
  display: none;
  align-items: center;
  transition: 0.5s all var(--easing);
  opacity: 0;
  text-decoration: none;
}

.header__logo-top {
  opacity: 1;
  transition: 0.3s all ease;
}
.header__logo-top .path-1 {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  opacity: 0;
  animation: dash 2s cubic-bezier(0, 0.19, 0.35, 1) 0.1s forwards;
}
.header__logo-top .path-2 {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  opacity: 0;
  animation: dash 2.1s cubic-bezier(0, 0.19, 0.35, 1) 0.5s forwards;
}

@keyframes dash {
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
#header .inner {
  transition: var(--transition);
  opacity: 1;
}

#translations_nav {
  --horizontal-gap: var(--space-2xs);
}
#translations_nav .active {
  --navigation-font-weight: bold;
  --navigation-color: var(--text-primary);
  position: relative;
  display: inline-block;
}
#translations_nav .active::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
#translations_nav .active:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}

@media only screen and (max-width: 1023px) {
  #topnav_translations {
    --navigation-focus-color: var(--white);
    --navigation-font-size: var(--step-2);
  }
}
@media only screen and (max-width: 1023px) {
  #topnav_translations ul {
    text-align: left !important;
    display: flex !important;
    gap: var(--space-l);
    justify-content: start;
    flex-direction: row;
  }
}
@media only screen and (max-width: 1023px) {
  #topnav_translations ul li {
    margin: 0 !important;
  }
}

#header #store_cart_widget {
  margin-right: var(--space-s-m);
  width: auto !important;
}
.page-top #header #store_cart_widget {
  margin-bottom: var(--space-3xs);
  margin-right: 0;
}
#header #store_cart_widget.active:not(.empty)::before, #header #store_cart_widget.active:not(.empty)::after {
  display: none;
}
#header #store_cart_widget a {
  width: auto;
  height: auto;
  color: var(--navgation-color);
}
#header #store_cart_widget a:hover {
  color: var(--navgation-focus-color);
}
#header #store_cart_widget #scw_items {
  display: none;
}
#header #store_cart_widget #scw_heading {
  display: block !important;
}

@media only screen and (max-width: 1023px) {
  #scw_popup,
  #scw_popup_buttons_container {
    display: none !important;
  }
}

.header-additional-end {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  display: flex;
  top: 0;
  width: 100%;
  padding-top: var(--header-pt);
  padding-bottom: var(--header-pb);
  transition: 0.5s all var(--easing);
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .header-additional-end {
    justify-content: flex-end;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
}
@media only screen and (max-width: 1023px) {
  .header-additional-end {
    position: relative;
  }
}
.js-change-header-appearance .header-additional-end {
  display: none;
}
.header-additional-end a {
  pointer-events: all;
}

.header-additional-end__logo {
  font-size: var(--step-4);
  line-height: var(--leading-normal);
  color: var(--text-primary);
}
.header-additional-end__logo-1, .header-additional-end__logo-2, .header-additional-end__logo-3 {
  display: inline-flex;
  transform: translateX(15px);
  opacity: 0;
}
.header-additional-end__logo-1 {
  animation: fade-down 1.5s ease-out 0.7s forwards;
}
.header-additional-end__logo-2 {
  animation: fade-down 1.5s ease-out 0.5s forwards;
}
.header-additional-end__logo-3 {
  animation: fade-down 1.5s ease-out 0.3s forwards;
}

@keyframes fade-left {
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-down {
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
@keyframes fade-up {
  to {
    opacity: 1;
    transform: translatey(-100%);
  }
}
@media only screen and (min-width: 1024px) {
  #container:not(.page-scroll) .header-ui-wrapper {
    transform: translatey(-25px);
    opacity: 0;
    animation: fade-down 1.5s cubic-bezier(0, 0.19, 0.35, 1) 0.3s forwards;
  }
}

#translations_nav {
  --gap: var(--space-2xs);
  position: static;
}
#translations_nav ul {
  display: flex;
  align-items: center;
}
#translations_nav ul::before {
  content: "/";
  order: 2;
}
#translations_nav ul li {
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
#translations_nav ul li:first-of-type {
  order: 1;
}
#translations_nav ul li:last-of-type {
  order: 3;
}

.records_list {
  --vertical-gap: var(--space-l-xl);
  --horizontal-gap: var(--space-m);
  --grid-columns: 3;
  --list-heading-color: var(--text-primary);
  --list-content-color: var(--text-secondary);
  --list-content-font-size: var(--base-font-size);
  --list-content-line-height: var(--leading-normal);
}
@media only screen and (max-width: 767px) {
  .records_list {
    --grid-columns: 2 ;
  }
}
@media only screen and (max-width: 459px) {
  .records_list {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 389px) {
  .records_list {
    --grid-columns: 1;
  }
}
.records_list li::after {
  content: unset;
}
.records_list .description {
  --list-content-line-height: var(--leading-loose);
  display: none;
  order: 5;
}
.records_list .link {
  display: none;
  order: 6;
}
.records_list .location {
  font-family: var(--list-location-font-family, var(--list-content-font-family , var(--base-font-family)));
  font-size: var(--list-location-font-size, var(--list-content-font-size , var(--step-1)));
  line-height: var(--list-location-line-height, var(--list-content-line-height , var(--base-line-height)));
  font-weight: var(--list-location-font-weight, var(--list-content-font-weight , var(--base-font-weight)));
  text-transform: var(--list-location-text-transform, var(--list-content-text-transform , inherit));
  color: var(--list-location-color, var(--list-content-color , var(--base-color)));
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-s);
}
.records_list .content > * + * {
  --list-content-mt: var(--space-3xs);
}
.records_list .content .location {
  --list-content-font-size: var(--step-0);
}
.records_list .content .artist,
.records_list .content .title_and_year,
.records_list .content .medium,
.records_list .content .dimensions {
  display: inline;
}
.records_list .content .artist::after,
.records_list .content .title_and_year::after,
.records_list .content .medium::after {
  content: ", ";
}
.records_list .content .price {
  --list-content-mt: var(--space-s);
  --list-content-font-weight: bold;
}
.records_list .content .read_more_label {
  position: relative;
  display: inline-block;
  --list-content-mt: var(--space-s);
}
.records_list .content .read_more_label::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--text-body);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
.records_list .content .read_more_label:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}

.c-records-list__item__video-wrapper {
  margin-bottom: var(--space-l-xl);
  width: 100%;
}

.records_list ul li .icon,
.records_list ul li .image {
  overflow: hidden;
}
.records_list ul li .icon span,
.records_list ul li .image span {
  overflow: hidden;
}
.records_list ul li a:hover img {
  transform: scale(1.1);
}
.records_list ul li a img {
  transition: opacity 400ms var(--easing), transform 2s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transform: scale(1);
}

[data-record-type*=artwork] {
  text-align: left;
}

.title_and_year_title {
  font-style: italic;
}

.subsection-exhibitions-grid,
.records_list:not(.feature_list) .item_content_section_exhibitions,
#viewing_rooms-grid-past .records_list, .subsection-news .records_list:not(.feature_list), .records_list:not(.feature_list) .item_content_section_news {
  --list-heading-color: var(--text-secondary);
  --list-subheading-color: var(--text-primary);
  --list-subheading-font-weight: bold;
}
.subsection-exhibitions-grid .content,
.records_list:not(.feature_list) .item_content_section_exhibitions .content,
#viewing_rooms-grid-past .records_list .content, .subsection-news .records_list:not(.feature_list) .content, .records_list:not(.feature_list) .item_content_section_news .content {
  display: flex !important;
  flex-direction: column;
}
.subsection-exhibitions-grid .content h2,
.records_list:not(.feature_list) .item_content_section_exhibitions .content h2,
#viewing_rooms-grid-past .records_list .content h2, .subsection-news .records_list:not(.feature_list) .content h2, .records_list:not(.feature_list) .item_content_section_news .content h2 {
  order: 2;
  font-style: italic;
  --list-content-mt: var(--space-3xs) !important;
}
.subsection-exhibitions-grid .content .subtitle,
.records_list:not(.feature_list) .item_content_section_exhibitions .content .subtitle,
#viewing_rooms-grid-past .records_list .content .subtitle, .subsection-news .records_list:not(.feature_list) .content .subtitle, .records_list:not(.feature_list) .item_content_section_news .content .subtitle {
  order: 1;
  --list-content-mt: 0;
}
.subsection-exhibitions-grid .content .date,
.records_list:not(.feature_list) .item_content_section_exhibitions .content .date,
#viewing_rooms-grid-past .records_list .content .date, .subsection-news .records_list:not(.feature_list) .content .date, .records_list:not(.feature_list) .item_content_section_news .content .date {
  order: 4;
}
.subsection-exhibitions-grid .content .link,
.records_list:not(.feature_list) .item_content_section_exhibitions .content .link,
#viewing_rooms-grid-past .records_list .content .link, .subsection-news .records_list:not(.feature_list) .content .link, .records_list:not(.feature_list) .item_content_section_news .content .link {
  order: 5;
  width: max-content;
}

.subsection-news .records_list:not(.feature_list) .content .subtitle, .records_list:not(.feature_list) .item_content_section_news .content .subtitle {
  --list-content-mb: var(--space-xs);
}
.subsection-news .records_list:not(.feature_list) .content .description, .records_list:not(.feature_list) .item_content_section_news .content .description {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  order: 3;
}
.subsection-news .records_list:not(.feature_list) .content .date, .records_list:not(.feature_list) .item_content_section_news .content .date {
  display: none;
}

.subsection-video-grid .records_list:not(.feature_list),
.subsection-events .records_list:not(.feature_list),
.subsection-art-fairs .records_list:not(.feature_list), .records_list:not(.feature_list) .item_content_section_events,
.records_list:not(.feature_list) .item_content_section_art_fairs {
  --list-heading-color: var(--text-primary);
  --list-heading-font-weight: bold;
  --list-subheading-color: var(--text-secondary);
}

.subsection-publications-grid .records_list:not(.feature_list),
.subsection-publications .records_list:not(.feature_list), .records_list:not(.feature_list) .item_content_section_publications {
  --list-heading-color: var(--text-primary);
  --list-heading-font-weight: bold;
  --list-subheading-color: var(--text-secondary);
}
.subsection-publications-grid .records_list:not(.feature_list) .description,
.subsection-publications .records_list:not(.feature_list) .description, .records_list:not(.feature_list) .item_content_section_publications .description {
  display: block;
}
.subsection-publications-grid .records_list:not(.feature_list) .artist::after,
.subsection-publications .records_list:not(.feature_list) .artist::after, .records_list:not(.feature_list) .item_content_section_publications .artist::after {
  content: unset;
}
.subsection-publications-grid .records_list:not(.feature_list) .format,
.subsection-publications .records_list:not(.feature_list) .format, .records_list:not(.feature_list) .item_content_section_publications .format {
  display: none;
}
.subsection-publications-grid .records_list:not(.feature_list) .price,
.subsection-publications .records_list:not(.feature_list) .price, .records_list:not(.feature_list) .item_content_section_publications .price {
  display: none;
}

.records_list.feature_list {
  --list-heading-font-size: var(--step-5);
  --list-subheading-font-size: var(--step-2);
}
.records_list.feature_list ul li > a {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-m-l);
}
@media only screen and (max-width: 767px) {
  .records_list.feature_list ul li > a {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 639px) {
  .records_list.feature_list ul li > a {
    grid-template-columns: 1fr;
  }
}
.records_list.feature_list ul li .image {
  width: 100%;
  height: 100%;
  float: unset;
}
.records_list.feature_list ul li .content {
  width: 100%;
  padding-left: 0;
}
@media only screen and (min-width: 640px) {
  .records_list.feature_list ul li .content {
    padding-top: var(--space-s-m);
    padding-bottom: var(--space-s-m);
  }
}
.records_list.feature_list ul li .content .artist {
  --list-content-mt: var(--space-l);
  --list-content-font-size: var(--step-1);
  --list-content-color: var(--text-primary);
  display: block;
}
.records_list.feature_list ul li .content .artist::after {
  display: none;
}
.records_list.feature_list ul li .date {
  --list-content-font-size: var(--step-1);
  --list-content-mt: var(--space-m);
}
.records_list.feature_list h2 + .subtitle {
  --list-content-mt: var(--space-xs);
}
.records_list.feature_list * + .description {
  --list-content-mt: var(--space-m-l);
}
.records_list.feature_list * + .date,
.records_list.feature_list * + .location {
  --list-content-mt: var(--space-2xs);
}
.records_list.feature_list .description {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 75ch;
}
.records_list.feature_list .link {
  --list-content-mt: var(--space-m-l);
  display: inline-flex;
}
.records_list.feature_list .button {
  --list-content-mt: var(--space-l-xl);
}

.records_list.flow_list {
  --list-content-line-height: var(--leading-relaxed);
}
.records_list.flow_list .content {
  padding: 0 var(--space-2xs);
}
.records_list.flow_list .flow_list_formatted {
  display: flex;
  flex-direction: column;
  gap: var(--vertical-gap, var(--gap, var(--space-m)));
}
.records_list.flow_list .flow_list_formatted .flow_list_row {
  display: none;
}
.records_list.flow_list .flow_list_formatted .flow_list_row:nth-of-type(1), .records_list.flow_list .flow_list_formatted .flow_list_row:nth-of-type(2), .records_list.flow_list .flow_list_formatted .flow_list_row.revealed {
  display: flex;
}
.records_list.flow_list .flow_list_formatted ul + ul {
  margin-top: 0;
}

.list-reveal-load-more {
  margin-top: var(--space-l-xl);
}

#contact_form strong {
  color: var(--text-primary);
}
#contact_form #contact_form_item_preview .inner {
  max-height: 100px;
}
#contact_form #contact_form_item_preview .content {
  line-height: var(--leading-normal);
}
@media only screen and (max-width: 459px) {
  #contact_form .form:not(.form_layout_hidden_labels):not(.form_style_simplified) .button {
    margin-left: 0;
  }
}

#privacy_policy_form_msg {
  font-size: var(--step--1);
  line-height: var(--leading-relaxed);
}

#contact_form h1,
#contact_form h2,
#main_content #contact_form h1 {
  --heading-font-size: var(--step-2);
  margin: 0 0 var(--space-m);
}

#footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --footer-mt: 0;
  --footer-mx: calc(50% - 50vw);
  border-top: 1px solid var(--border-color);
}

#footer.advanced_footer h2 {
  --heading-font-size: var(--step-4);
}
#footer.advanced_footer h2 a, #footer.advanced_footer h2 a:visited {
  color: var(--text-primary);
}
#footer.advanced_footer h2 a:hover {
  text-decoration: none;
}
#footer.advanced_footer .inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  --columns: 6;
  --horizontal-gap: var(--space-m);
  --vertical-gap: var(--space-xl-2xl);
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: var(--vertical-gap) var(--horizontal-gap);
}
@media only screen and (max-width: 1279px) {
  #footer.advanced_footer .inner {
    --columns: 4;
  }
}
@media only screen and (max-width: 897px) {
  #footer.advanced_footer .inner {
    --columns: 2;
  }
}
@media only screen and (max-width: 459px) {
  #footer.advanced_footer .inner {
    --columns: 1;
    --vertical-gap: var(--space-l);
  }
}
#footer.advanced_footer .clear {
  display: none;
}
#footer.advanced_footer .advanced_footer_item {
  padding: 0;
}
@media only screen and (max-width: 1023px) {
  #footer.advanced_footer .advanced_footer_item:first-child {
    width: 100%;
  }
}
#footer.advanced_footer .advanced_footer_item a:not(:where(h2 *, h3 *)), #footer.advanced_footer .advanced_footer_item a:not(:where(h2 *, h3 *)):visited {
  color: var(--text-body);
}
#footer.advanced_footer .advanced_footer_item a:not(:where(h2 *, h3 *)):hover, #footer.advanced_footer .advanced_footer_item a:not(:where(h2 *, h3 *)):visited:hover {
  color: var(--text-primary);
  text-decoration: underline;
}
#footer.advanced_footer .advanced_footer_item h3 {
  --heading-font-weight: bold;
  margin-bottom: var(--space-s);
}
#footer.advanced_footer .advanced_footer_item h3 a {
  position: relative;
  display: inline-block;
}
#footer.advanced_footer .advanced_footer_item h3 a::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
#footer.advanced_footer .advanced_footer_item h3 a:hover::after {
  transform: scaleX(100%);
}
#footer.advanced_footer .copyright {
  margin: 0;
  grid-column: span 2;
  grid-row: span 2;
}
@media only screen and (max-width: 1279px) {
  #footer.advanced_footer .copyright {
    grid-column: 1/-1;
    grid-row: 4;
  }
}
@media only screen and (max-width: 897px) {
  #footer.advanced_footer .copyright {
    grid-row: 5;
  }
}
@media only screen and (max-width: 459px) {
  #footer.advanced_footer .copyright {
    grid-row: 8;
  }
}
#footer.advanced_footer #copyright .copyright-text,
#footer.advanced_footer #copyright #artlogic {
  margin-right: 0;
  display: block;
}

.advanced_footer_item__logo {
  grid-column: 1/-1;
}

.small-links-container {
  display: flex;
  flex-direction: column;
  line-height: var(--leading-loose);
  gap: 0 var(--space-s-m);
  margin-bottom: var(--space-m);
}

#artlogic a {
  font-size: var(--step--2);
  font-weight: 400;
  margin-top: var(--space-s);
}

.copyright a,
#social_links a {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.copyright a::after,
#social_links a::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.copyright a:hover::after,
#social_links a:hover::after {
  transform: scaleX(100%);
}

#backToTop {
  margin-top: var(--space-m-l);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
}
#backToTop::before {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-ARROW-RIGHT-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
#backToTop:hover::before, #backToTop:focus::before {
  background-image: var(--ICON-ARROW-RIGHT-DARK);
}
#backToTop::before {
  transform: rotate(-90deg);
}

.footerLocation__opening_times {
  margin-top: var(--space-s);
}

#footer #social_links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: var(--space-m);
  gap: 0 var(--space-m);
  line-height: var(--leading-loose);
  padding: 0 !important;
}
@media only screen and (max-width: 459px) {
  #footer #social_links {
    flex-direction: column;
  }
}
#footer #social_links::after {
  display: none;
}
#footer #social_links .social_links_item {
  margin: 0;
  width: auto;
  height: auto;
}
#footer #social_links .social_links_item a {
  text-indent: 0;
  width: auto;
  height: auto;
}
#footer #social_links .social_links_item a .social_media_icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  line-height: auto;
  color: var(--link);
  display: none;
}

.scroll_section {
  position: relative;
  padding: var(--section-vertical-space) 0;
}
.scroll_section::before {
  content: "";
  border-bottom: 1px solid var(--border-color);
  display: block;
  margin-bottom: var(--space-xl);
}
.scroll_section .subheading {
  --section-subheading-mt: 0;
  --section-subheading-mb: 0;
}

.panel:first-child .scroll_section::before,
:not(.panel) > .scroll_section:first-child::before {
  display: none;
}

.scroll_section_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-l-xl);
}
.scroll_section_header .splide__arrows {
  position: static;
  width: auto;
  padding: 0;
  margin: 0;
}

.detail-section.splide {
  --list-location-font-size: var(--step-1);
  --list-location-line-height: var(--leading-normal);
  --list-location-mb: var(--space-s);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.detail-section.splide .splide__track {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  overflow: visible;
  margin: 0 auto;
}
.detail-section.splide .splide__list {
  gap: 0;
}
.detail-section.splide .splide__slide {
  --list-item-mr: var(--horizontal-gap, var(--gap));
  --list-item-width: clamp(27.6rem, 30vw, 49.5rem);
}
.detail-section.splide .splide__arrows {
  max-width: var(--CONTAINER-WIDTH);
}
@media only screen and (max-width: 1023px) {
  .detail-section.splide .splide__arrow {
    padding: var(--space-xs);
  }
}
.detail-section.splide .record-count-1 .splide__slide {
  --list-item-width: 100%;
}

.detail-section--exhibitions {
  --list-image-mt: calc((var(--list-location-font-size) * var(--list-location-line-height)) + var(--list-location-mb));
}
.detail-section--exhibitions .location + .image {
  --list-image-mt: 0;
}

.detail-section--videos.splide .splide__track {
  overflow: hidden;
}
.detail-section--videos.splide .splide__slide {
  --list-item-width: 100%;
  --list-item-mr: var(--CONTAINER-PADDING);
}
.detail-section--videos.splide .splide__pagination {
  display: none;
}

.page-video #related_artists .mini_list,
.page-video #related_exhibitions .mini_list, .page-param-type-news_id #related_artists .mini_list,
.page-param-type-news_id #related_exhibitions .mini_list {
  --list-heading-font-size: var(--step-0);
  --list-heading-font-weight: bold;
}
.page-video #related_artists .mini_list .icon,
.page-video #related_exhibitions .mini_list .icon, .page-param-type-news_id #related_artists .mini_list .icon,
.page-param-type-news_id #related_exhibitions .mini_list .icon {
  width: var(--space-xl-2xl);
}
.page-video #related_artists .mini_list ul,
.page-video #related_exhibitions .mini_list ul, .page-param-type-news_id #related_artists .mini_list ul,
.page-param-type-news_id #related_exhibitions .mini_list ul {
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
}

.related_items_panel {
  padding-top: 0;
  margin: var(--space-l-xl) 0;
}
.related_items_panel .records_list.mini_list ul li .icon {
  padding-right: 0;
}

.related_items_panel_heading {
  --heading-font-size: var(--step-3);
  margin-bottom: var(--space-l-xl);
}

.mini_list {
  --vertical-gap: var(--space-s-xl);
}
.mini_list ul {
  grid-template-columns: repeat(auto-fill, minmax(29.8rem, 1fr));
}
.mini_list ul li::after {
  content: unset;
}
.mini_list ul li .content h2 {
  padding-right: 0;
}

#related_artists::before,
#related_exhibitions::before {
  content: "";
  border-bottom: 1px solid var(--border-color);
  display: block;
  margin-bottom: var(--space-l-xl);
}
#related_artists a,
#related_exhibitions a {
  display: flex;
  align-items: center;
}
#related_artists a:hover .read_more::after,
#related_exhibitions a:hover .read_more::after {
  transform: translateX(5px);
}
#related_artists .icon,
#related_exhibitions .icon {
  width: var(--space-2xl-4xl);
  margin-right: var(--space-2xs-xs);
}
#related_artists .records_list,
#related_exhibitions .records_list {
  --list-heading-font-size: var(--step-1);
  margin-bottom: var(--space-3xs);
}
#related_artists .link,
#related_exhibitions .link {
  display: block;
}
#related_artists .read_more,
#related_exhibitions .read_more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  white-space: nowrap;
}
#related_artists .read_more::after,
#related_exhibitions .read_more::after {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-ARROW-RIGHT-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
#related_artists .read_more:hover::after, #related_artists .read_more:focus::after,
#related_exhibitions .read_more:hover::after,
#related_exhibitions .read_more:focus::after {
  background-image: var(--ICON-ARROW-RIGHT-DARK);
}

.search-overlay {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  max-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s opacity var(--easing);
  padding: var(--CONTAINER-PADDING);
  z-index: 99999999999;
}
.search-overlay.search-overlay--is-open {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.search-overlay form {
  max-width: 60rem;
  width: 100%;
  border-bottom: 0;
}

.search-overlay--is-open #topnav_translations {
  opacity: 0;
  visibility: hidden;
}

#quick_search form {
  display: grid;
  grid-template-columns: 1fr auto;
  float: unset;
}
#quick_search .inputField {
  width: 100%;
  border-radius: 0;
  height: 100%;
  padding: var(--space-xs) var(--space-m);
  background-color: white;
}
#quick_search #quicksearch_btn {
  --button-border-radius: 0;
  --button-background-color: var(--text-primary);
  --button-border: 1px solid var(--text-primary);
  --button-color: var(--text-primary-invert);
  --button-focus-background-color: var(--text-secondary);
  --button-focus-color: var(--text-primary-invert);
  height: 100%;
  display: flex;
  align-items: center;
}
#quick_search #quicksearch_btn:hover {
  text-decoration: none;
}

#footer #quick_search .inputField {
  font-size: var(--step-1);
}
#footer #quick_search #quicksearch_btn {
  --button-font-size: var(--step-1);
}

.search-overlay__close {
  position: relative;
  display: inline-block;
  position: absolute;
  top: var(--space-l-xl);
  right: var(--space-l-xl);
  cursor: pointer;
}
.search-overlay__close::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
}
.search-overlay__close:hover::after {
  animation-name: link-underline;
  animation-duration: 0.6s;
  transform-origin: center right;
  animation-timing-function: var(--easing);
}

.heading_wrapper {
  margin-top: var(--section-vertical-space);
  margin-bottom: var(--space-m-2xl);
}
.heading_wrapper::after {
  content: unset;
}
.heading_wrapper h1,
.heading_wrapper .subtitle {
  max-width: 35ch;
}
@media only screen and (max-width: 1023px) {
  .heading_wrapper .subtitle {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1023px) {
  #main_content h1 {
    margin-bottom: 0;
  }
}

h1.has_subtitle {
  margin-bottom: var(--space-s-m);
}

.heading_wrapper.cascading-page-header h1 {
  float: none;
}

#main_content .heading_wrapper h1:last-child {
  margin-bottom: 0 !important;
}

.page-param-type-video_id .heading_wrapper, .page-param-type-news_id .heading_wrapper {
  --page-subheading-color: var(--text-primary);
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-3xs);
}
.page-param-type-video_id h1, .page-param-type-news_id h1 {
  font-style: italic;
}
.page-param-type-video_id h1.has_subtitle, .page-param-type-news_id h1.has_subtitle {
  margin-bottom: 0;
}

.simple_list {
  margin-top: var(--space-m-l);
}
.simple_list ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m) var(--space-l);
}
.simple_list ul li {
  margin-bottom: 0;
}
.simple_list ul a {
  position: relative;
  display: inline-block;
}
.simple_list ul a::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.simple_list ul a:hover::after {
  transform: scaleX(100%);
}
.simple_list ul .simple_list__link--read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  gap: var(--space-2xs);
  align-items: end;
}
.simple_list ul .simple_list__link--read-more::after {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-ARROW-RIGHT-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
.simple_list ul .simple_list__link--read-more:hover::after, .simple_list ul .simple_list__link--read-more:focus::after {
  background-image: var(--ICON-ARROW-RIGHT-DARK);
}
.simple_list ul .simple_list__link--read-more:hover::after {
  filter: invert(1);
}
.simple_list ul .simple_list__link--read-more::after {
  position: relative;
  transform: unset;
  border-bottom: unset;
}

#ig_slideshow_container {
  display: flex;
  flex-direction: column;
}

#ig_slideshow {
  order: 1;
  margin: 0;
}

#ig_slideshow_thumbnails_container {
  order: 3;
  margin-bottom: 0;
}

#ig_slideshow_caption {
  order: 2;
  margin-bottom: var(--space-s-m);
  padding: 0 var(--space-s-m);
  text-align: center;
}

div.arprompt {
  padding: var(--space-m);
}
div.arprompt h2 {
  --heading-font-size: var(--step-2);
  margin-bottom: var(--space-l);
}
div.arprompt .arpromptbuttons {
  margin-top: var(--space-m);
  padding: var(--space-m) 0 0;
}
div.arprompt .arpromptdefaultbutton {
  width: auto;
}
div.arprompt .arpromptclose a {
  --_size: var(--space-L);
  width: vaR(--_size);
  height: vaR(--_size);
  text-indent: -99999px;
  background-image: var(--ICON-PLUS-MID);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  right: 0;
  left: unset;
}

#scw_popup_inner h3 {
  font-size: var(--step-2);
  text-align: center;
  margin-bottom: var(--space-m-l);
}

#scw_popup_buttons_container .link {
  padding-top: var(--space-m);
  font-size: var(--step-0);
}

#protected_path_login h1 {
  font-size: var(--step-3);
  color: var(--text-primary);
  margin-bottom: var(--space-m-l);
}
#protected_path_login .protected_path_form_main_image {
  margin-left: calc(var(--space-m-l) * -1);
  margin-right: calc(var(--space-m-l) * -1);
}
#protected_path_login #protected_path_buttons_container {
  margin-top: vaR(--space-xs);
}
#protected_path_login #privacy_policy_form_msg {
  margin-top: vaR(--space-m-l);
  padding-top: vaR(--space-m-l);
}

#protected_path_login #container, #protected_path_login #protected_path_login_container {
  padding: var(--space-m-l);
}

.panel {
  --panel-heading-font-size: var(--step-3);
  --panel-subheading-font-size: var(--step-1);
}
.panel > .content > * + * {
  --panel-content-mt: var(--space-2xs);
  margin-top: var(--space-2xs);
}
.panel > .content > * + .link {
  --panel-content-mt: var(--space-m);
}
.panel > .content h2 + .subtitle {
  --panel-content-mt: var(--space-2xs);
  margin-top: var(--space-2xs);
}
.panel h2 {
  max-width: 75ch;
}
.panel .subtitle {
  max-width: 75ch;
}
.panel .description {
  max-width: 100ch;
}
.panel .enquire_button_container {
  --panel-content-mt: var(--space-m);
}

.panel_header {
  --panel-header-mb: var(--space-m-xl);
}
.panel_header .fp_title + .subtitle {
  margin-top: var(--space-2xs);
}

.feature_panels .panel .content .enquire_button_container,
.artworks-page-artwork-list-container .content .enquire_button_container {
  --list-content-mt: var(--space-s);
  padding: 0;
}

.fp-panel {
  --panel-ml: calc(50% - 50vw);
  --panel-mr: calc(50% - 50vw);
  width: 100vw;
}

.fp-panel__header {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  --panel-header-mx: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--space-xs);
}
@media only screen and (max-width: 459px) {
  .fp-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.feature_panels .fp-panel__header {
  display: flex;
}
.fp-panel__header-start {
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 767px) {
  .fp-panel__header-start {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media only screen and (min-width: 768px) {
  .fp-panel__heading + .fp-panel__subheading::before {
    content: "/";
    font-size: var(--step-3);
    color: var(--border-color);
    margin-left: var(--space-xs);
    margin-right: 3px;
  }
}

.fp-panel__header-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
}
.fp-panel__header-link::after {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-ARROW-RIGHT-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
.fp-panel__header-link:hover::after, .fp-panel__header-link:focus::after {
  background-image: var(--ICON-ARROW-RIGHT-DARK);
}
.fp-panel__header-link:hover::after {
  transform: translateX(5px);
}
.fp-panel__header-link span {
  position: relative;
  display: inline-block;
}
.fp-panel__header-link span::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.fp-panel__header-link span:hover::after {
  transform: scaleX(100%);
}

.list-reveal-load-more-wrapper {
  display: flex;
  justify-content: center;
}

.feature_panels .panel_text .content * + .description {
  --panel-content-mt: var(--space-m-l);
}
.feature_panels .panel.panel_text.panel_content_alignment_left .content,
.feature_panels .panel.panel_text.panel_content_alignment_center .content,
.feature_panels .panel.panel_text.panel_content_alignment_right .content {
  max-width: 100ch;
}

.body--has-fp-as-hero .heading_wrapper {
  display: none;
}

.feature_panels .panel_hero {
  --panel-heading-font-size: var(--step-5);
  --panel-subheading-font-size: var(--step-2);
  --panel-pb: var(--section-vertical-space);
}
.feature_panels .panel_hero .scroll_section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.feature_panels .panel_hero .hero_heading {
  padding: 0 var(--CONTAINER-PADDING);
}
@media only screen and (max-width: 767px) {
  .feature_panels .panel_hero .hero_heading {
    padding: var(--space-m-l) var(--CONTAINER-PADDING);
  }
}
.feature_panels .panel_hero .hero_heading > a {
  padding: 0 !important;
}
@media only screen and (max-width: 767px) {
  .feature_panels .panel_hero .hero_heading > a {
    max-width: unset !important;
  }
}
.feature_panels .panel_hero .hero_heading * + .subtitle {
  margin-top: var(--space-s-m);
  padding: 0;
}
.feature_panels .panel_hero .hero_heading * + .description {
  margin-top: var(--space-2xs);
  max-width: 75ch;
}
.feature_panels .panel_hero .enquire_button_container {
  margin-top: var(--space-m-l);
}
.feature_panels .panel_hero .hero_section .hero_image_toolbar {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  padding-top: 0;
  padding-bottom: var(--space-s-m);
}
.feature_panels .panel_hero .button {
  margin-top: var(--space-m-l) !important;
}
.hero_image_toolbar {
  display: block;
  text-align: center;
  padding-top: var(--space-s);
  margin: 0 auto;
  max-width: 75ch;
}

.panel_hero.panel_content_alignment_bottom_left .hero_heading {
  justify-content: end;
  align-items: start;
  text-align: left;
}
.panel_hero.panel_content_alignment_bottom_left .hero_heading a {
  margin: 0 !important;
  text-align: left !important;
  align-items: start !important;
}
.panel_hero.panel_content_alignment_bottom_left .hero_heading .subtitle {
  margin-left: 0;
}

.feature_panels .panel_image_text_adjacent {
  justify-content: space-between;
}
.feature_panels .panel_image_text_adjacent .content {
  max-width: 75ch;
  width: auto;
  flex-grow: 1;
}
.feature_panels .panel_image_text_adjacent .content h2 + .subtitle {
  margin-top: var(--space-s-m);
}
.feature_panels .panel_image_text_adjacent .content .subtitle,
.feature_panels .panel_image_text_adjacent .content .date {
  margin-bottom: 0;
}
.feature_panels .panel_image_text_adjacent .content * + .date,
.feature_panels .panel_image_text_adjacent .content * + .location {
  display: block;
  margin-top: var(--space-3xs);
}
.feature_panels .panel_image_text_adjacent .content * + .description {
  margin-top: var(--space-s-m);
}
.feature_panels .panel_image_text_adjacent .content .description {
  margin-bottom: 0;
  margin-bottom: 0;
}
.feature_panels .panel_image_text_adjacent .content .enquire_button_container {
  padding: 0;
  display: inline-block;
  width: auto;
  vertical-align: middle;
  margin-left: var(--space-m-l);
}
.feature_panels .panel_image_text_adjacent .image {
  width: 66.66%;
}

.panel_type_4 .section {
  display: block;
  margin-bottom: var(--space-xs);
}
.panel_type_4 .link {
  display: inline-block;
  margin-top: var(--space-m-l);
}
.panel_type_4 .link:hover {
  --link-color: var(--link-focus-color);
}
.panel_type_4 .link a::after {
  display: none;
}
.panel_type_4 .button {
  --button-py: 0;
  --button-px: 0;
  --button-border: none;
  display: inline-block;
}

.feature_panels .panel_image_text_adjacent {
  flex-wrap: nowrap;
}
.feature_panels .panel_image_text_adjacent.mobile_order_reversed:not(.panel_variant_2) > a, .feature_panels .panel_image_text_adjacent.panel_image_text_adjacent.panel_variant_2:not(.mobile_order_reversed) > a {
  justify-content: space-between;
}
.feature_panels .panel_image_text_adjacent.panel_variant_2 .content {
  padding: 0 var(--space-l-xl) 0 0;
}
.feature_panels .panel_image_text_adjacent .content {
  padding: 0 0 0 var(--space-l-xl);
}

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

.feature_panels .panel_type_9 .content {
  display: flex;
  flex-direction: column;
}

.panel_type_9 .date {
  order: 1;
}
.panel_type_9 .fp_title {
  order: 2;
}
.panel_type_9 .subtitle {
  order: 3;
}
.panel_type_9 .description {
  order: 4;
}
.panel_type_9 .link {
  --panel-content-mt: var(--space-m-l);
  order: 5;
}
.panel_type_9 .fp_title,
.panel_type_9 .subtitle,
.panel_type_9 .description {
  --panel-content-mt: var(--space-2xs);
}
.panel_type_9.panel_content_alignment_center {
  --panel-content-mx: auto;
}
.panel_type_9.panel_content_alignment_right {
  --panel-content-ml: auto;
}

.fluid-width-video-wrapper + p {
  display: none;
}

.feature_panels .panel_image_text_columns .content {
  padding-left: var(--space-xl-2xl);
}
.feature_panels .panel_image_text_columns .content.feature_variant_2 {
  padding-right: var(--space-xl-2xl);
}
.feature_panels .panel_image_text_columns .content .content_columns.columns_enabled {
  --column-gap: var(--space-xl);
}
.feature_panels .panel_image_text_columns .pull_quote_content blockquote {
  border-left: 1px solid var(--border-color);
  padding-left: var(--space-m);
}

.panel_type_11 .pull_quote_content,
.panel_type_11 .pull_quote_content p {
  color: var(--text-primary);
  font-size: var(--step-2);
}
.panel_type_11 .content_full {
  --panel-content-mt: var(--space-s-m);
}
.panel_type_11 .read_more_link {
  --panel-content-mt: var(--space-l-xl);
  display: flex;
}
.panel_type_11 .enquire_button_container {
  --panel-content-mt: var(--space-l-xl);
}

.fp-record-slider {
  --list-location-font-size: var(--step-1);
}
.fp-record-slider .fp-panel__inner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.fp-record-slider .fp-panel__inner .splide__track {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  overflow: visible;
  margin: 0 auto;
}
.fp-record-slider .fp-panel__inner .splide__list {
  gap: 0;
}
.fp-record-slider .fp-panel__inner .splide__slide {
  --list-item-mr: var(--horizontal-gap, var(--gap));
  --list-item-width: clamp(27.6rem, 30vw, 49.5rem);
}
.fp-record-slider .fp-panel__inner .splide__arrows {
  max-width: var(--CONTAINER-WIDTH);
}
@media only screen and (max-width: 1023px) {
  .fp-record-slider .fp-panel__inner .splide__arrow {
    padding: var(--space-xs);
  }
}

.fp-full-width-record-slider {
  background: var(--white) !important;
}
.fp-full-width-record-slider .fp-panel__inner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.fp-full-width-record-slider .fp-panel__inner .splide__track {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  overflow: visible;
  margin: 0 auto;
}
.fp-full-width-record-slider .fp-panel__inner .splide__list {
  gap: 0;
}
.fp-full-width-record-slider .fp-panel__inner .splide__slide {
  --list-item-mr: var(--horizontal-gap, var(--gap));
  --list-item-width: 100%;
}
.fp-full-width-record-slider .fp-panel__inner .splide__arrows {
  max-width: var(--CONTAINER-WIDTH);
}
@media only screen and (max-width: 1023px) {
  .fp-full-width-record-slider .fp-panel__inner .splide__arrow {
    padding: var(--space-xs);
  }
}
.fp-full-width-record-slider .records_list {
  --list-heading-font-size: var(--step-2);
  --horizontal-gap: 0;
}
.fp-full-width-record-slider .records_list .content > * + * {
  --list-content-mt: var(--space-2xs);
}
.fp-full-width-record-slider .records_list .description {
  display: block;
}

.fp-full-width-record-slider.is-overflow .fp-panel__inner .splide__slide {
  --list-item-px: var(--CONTAINER-PADDING);
}
.fp-full-width-record-slider .fp-panel__header {
  align-items: start;
}
.fp-full-width-record-slider .splide__list {
  gap: 0;
}
.fp-full-width-record-slider .splide__slide {
  --list-item-mr: var(--horizontal-gap, var(--gap));
  background: var(--white);
}
.fp-full-width-record-slider .records_list.grid_dynamic_layout_feature_panels ul li .image::after {
  padding-top: 56.25% !important;
}
.fp-full-width-record-slider .splide__arrows {
  position: relative;
  top: 0;
  transform: unset;
  padding: 0;
  gap: var(--space-3xs);
}
.fp-full-width-record-slider .splide__arrow {
  position: relative;
  height: auto;
  background: transparent;
  z-index: 2;
  text-indent: 0;
}
.fp-full-width-record-slider .splide__arrow::after {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAzMiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxIDAuNUMzMSA4Ljc4NDI3IDI0LjI4NDMgMTUuNSAxNiAxNS41QzcuNzE1NzMgMTUuNSAxIDguNzg0MjcgMSAwLjUiIHN0cm9rZT0iI0M4QzhDOCIvPgo8L3N2Zz4K");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding-top: 100%;
  top: 50%;
  transform: translateY(-40%);
  z-index: -2;
  opacity: 0;
  transition: all 0.5s var(--easing);
}
.fp-full-width-record-slider .splide__arrow:hover::after {
  opacity: 1;
  transform: translateY(-50%);
}
.fp-full-width-record-slider .splide__pagination {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  counter-reset: pagination-num;
  position: absolute;
  right: 0;
  width: 100%;
  left: 0;
  justify-content: flex-end;
  gap: var(--space-3xs);
}
@media only screen and (max-width: 767px) {
  .fp-full-width-record-slider .splide__pagination {
    position: static;
    padding: 0;
  }
}
.fp-full-width-record-slider .splide__pagination:hover .splide__pagination__page:not(.is-active) {
  color: var(--base-300);
}
.fp-full-width-record-slider .splide__pagination:hover .splide__pagination__page:not(.is-active):hover {
  color: var(--text-primary);
}
.fp-full-width-record-slider .splide__pagination__page {
  position: relative;
  height: auto;
  background: transparent;
  z-index: 2;
  text-indent: 0;
  line-height: 2;
  transition: 0.4s all var(--easing);
  border-top: unset;
  cursor: pointer;
}
.fp-full-width-record-slider .splide__pagination__page::after {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAzMiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxIDAuNUMzMSA4Ljc4NDI3IDI0LjI4NDMgMTUuNSAxNiAxNS41QzcuNzE1NzMgMTUuNSAxIDguNzg0MjcgMSAwLjUiIHN0cm9rZT0iI0M4QzhDOCIvPgo8L3N2Zz4K");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding-top: 100%;
  top: 50%;
  transform: translateY(-40%);
  z-index: -2;
  opacity: 0;
  transition: all 0.5s var(--easing);
}
.fp-full-width-record-slider .splide__pagination__page.is-active::after {
  opacity: 1;
  transform: translateY(-50%);
}
.fp-full-width-record-slider .splide__pagination__page:hover {
  cursor: pointer;
  color: var(--text-primary);
}
.fp-full-width-record-slider .splide__pagination__page.is-active {
  background: transparent;
  color: var(--text-primary);
}
.fp-full-width-record-slider .image {
  --list-image-mb: var(--space-l-xl);
}
.fp-full-width-record-slider .image span {
  overflow: hidden;
}
.fp-full-width-record-slider .image img {
  transform: scale(1.1);
  transition: 1s transform var(--easing), 400ms opacity var(--easing);
}
.fp-full-width-record-slider .content {
  transform: translateX(100px);
  opacity: 0;
  transition: 0.75s all var(--easing);
}
.fp-full-width-record-slider .is-active img {
  transform: scale(1);
}
.fp-full-width-record-slider .is-active .content {
  transform: translateX(0);
  opacity: 1;
}

.fp-featured-record-slider {
  background: var(--white) !important;
}
.fp-featured-record-slider .fp-panel__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.fp-featured-record-slider:not(.is-overflow) .splide__slide {
  --list-item-width: 100%;
}
.fp-featured-record-slider .records_list {
  --list-heading-font-size: var(--step-5);
  --list-subheading-font-size: var(--step-2);
  --horizontal-gap: 0;
  --splide__track-px: 0 !important;
}
.fp-featured-record-slider .records_list ul li {
  --list-item-mr: var(--space-l);
}
.fp-featured-record-slider .records_list ul li a {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-auto-flow: dense;
  gap: var(--space-m);
}
@media only screen and (max-width: 767px) {
  .fp-featured-record-slider .records_list ul li a {
    grid-template-columns: 1fr;
  }
}
.fp-featured-record-slider .records_list ul li a::after {
  display: none !important;
}
.fp-featured-record-slider .records_list ul li a .content {
  align-self: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  width: 100%;
  grid-column: 1;
}
@media only screen and (max-width: 767px) {
  .fp-featured-record-slider .records_list ul li a .content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.fp-featured-record-slider .records_list ul li a .content > * + * {
  --list-content-mt: var(--space-2xs);
}
.fp-featured-record-slider .records_list ul li a .content .subtitle,
.fp-featured-record-slider .records_list ul li a .content .fp_title,
.fp-featured-record-slider .records_list ul li a .content h2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-featured-record-slider .records_list ul li a .content h2 {
  --list-content-mt: 0;
}
.fp-featured-record-slider .records_list ul li a .content .subtitle {
  --list-content-mt: var(--space-s-m);
}
.fp-featured-record-slider .records_list ul li a .content .description {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  --list-content-mt: var(--space-l);
  max-width: 75ch;
  display: block;
}
.fp-featured-record-slider .records_list ul li a .content .link {
  --list-content-mt: var(--space-l);
  --link-content-ml: 1px;
}
.fp-featured-record-slider .records_list ul li a .image {
  --list-image-mb: 0;
  width: 100%;
  grid-column: 2;
}
@media only screen and (max-width: 767px) {
  .fp-featured-record-slider .records_list ul li a .image {
    grid-column: 1;
  }
}

.fp-featured-record-slider .fp-panel__header {
  align-items: start;
}
@media only screen and (max-width: 459px) {
  .fp-featured-record-slider .fp-panel__header {
    flex-direction: row;
  }
}
.fp-featured-record-slider .splide__slide {
  --list-item-mr: var(--horizontal-gap, var(--gap));
  background: var(--white);
}
.fp-featured-record-slider .splide__arrows {
  position: relative;
  top: 0;
  transform: unset;
  padding: 0;
  gap: var(--space-3xs);
}
.fp-featured-record-slider .splide__arrow {
  position: relative;
  height: auto;
  background: transparent;
  z-index: 2;
  text-indent: 0;
}
.fp-featured-record-slider .splide__arrow::after {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAzMiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxIDAuNUMzMSA4Ljc4NDI3IDI0LjI4NDMgMTUuNSAxNiAxNS41QzcuNzE1NzMgMTUuNSAxIDguNzg0MjcgMSAwLjUiIHN0cm9rZT0iI0M4QzhDOCIvPgo8L3N2Zz4K");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding-top: 100%;
  top: 50%;
  transform: translateY(-40%);
  z-index: -2;
  opacity: 0;
  transition: all 0.5s var(--easing);
}
.fp-featured-record-slider .splide__arrow:hover::after {
  opacity: 1;
  transform: translateY(-50%);
}
.fp-featured-record-slider .splide__pagination {
  max-width: unset;
  counter-reset: pagination-num;
  width: 100%;
  margin-top: calc(-1 * var(--space-l));
  margin-bottom: 5px;
  padding-left: 0;
  justify-content: start;
  gap: var(--space-3xs);
}
@media only screen and (max-width: 767px) {
  .fp-featured-record-slider .splide__pagination {
    margin-top: var(--space-m);
  }
}
.fp-featured-record-slider .splide__pagination:hover .splide__pagination__page:not(.is-active) {
  color: var(--base-300);
}
.fp-featured-record-slider .splide__pagination:hover .splide__pagination__page:not(.is-active):hover {
  color: var(--text-primary);
}
.fp-featured-record-slider .splide__pagination button {
  text-indent: 0;
}
.fp-featured-record-slider .splide__pagination__page {
  position: relative;
  height: auto;
  background: transparent;
  z-index: 2;
  text-indent: 0;
  width: var(--space-m-l);
  line-height: 2;
  transition: 0.4s all var(--easing);
  border-top: unset;
}
.fp-featured-record-slider .splide__pagination__page::after {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAzMiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMxIDAuNUMzMSA4Ljc4NDI3IDI0LjI4NDMgMTUuNSAxNiAxNS41QzcuNzE1NzMgMTUuNSAxIDguNzg0MjcgMSAwLjUiIHN0cm9rZT0iI0M4QzhDOCIvPgo8L3N2Zz4K");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding-top: 100%;
  top: 50%;
  transform: translateY(-40%);
  z-index: -2;
  opacity: 0;
  transition: all 0.5s var(--easing);
}
.fp-featured-record-slider .splide__pagination__page.is-active::after {
  opacity: 1;
  transform: translateY(-50%);
}
.fp-featured-record-slider .splide__pagination__page:hover {
  cursor: pointer;
  color: var(--text-primary);
}
.fp-featured-record-slider .splide__pagination__page.is-active {
  background: transparent;
  color: var(--text-primary);
}
.fp-featured-record-slider .image span {
  overflow: hidden;
}
.fp-featured-record-slider .image img {
  transform: scale(1.1);
  transition: 1s transform var(--easing), 400ms opacity var(--easing);
}
.fp-featured-record-slider .content {
  transform: translateX(100px);
  opacity: 0;
  transition: 0.75s all var(--easing);
}
.fp-featured-record-slider .is-active img {
  transform: scale(1);
}
.fp-featured-record-slider .is-active .content {
  transform: translateX(0);
  opacity: 1;
}

.fp-current-exibitions__records-list {
  --grid-columns: 1;
}
.fp-current-exibitions__records-list ul li a, .fp-current-exibitions__records-list ul li a:visited {
  display: inline;
}
.fp-current-exibitions__records-list .c-records-list__item__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.fp-current-exibitions__records-list .c-records-list__item__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  margin-bottom: var(--space-xs-m);
  align-items: baseline;
}
@media only screen and (max-width: 1023px) {
  .fp-current-exibitions__records-list .c-records-list__item__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-xs);
  }
}
.fp-current-exibitions__records-list .c-records-list__item__location {
  font-size: var(--step-2);
  color: var(--text-primary);
  margin-bottom: 0;
  max-width: 55ch;
}
.fp-current-exibitions__records-list .c-records-list__item__content {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
}
@media only screen and (max-width: 459px) {
  .fp-current-exibitions__records-list .c-records-list__item__content {
    flex-direction: column;
    gap: var(--space-3xs);
  }
}
.fp-current-exibitions__records-list .c-records-list__item__heading,
.fp-current-exibitions__records-list .c-records-list__item__subheading {
  display: inline;
}
.fp-current-exibitions__records-list .c-records-list__item__subheading {
  font-weight: bold;
  color: var(--text-primary);
}
.fp-current-exibitions__records-list .c-records-list__item__heading {
  padding-left: var(--space-3xs);
  font-style: italic;
  color: var(--text-secondary);
}
.fp-current-exibitions__records-list .c-records-list__item__date {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .fp-current-exibitions__records-list .c-records-list__item__date {
    position: absolute;
    top: 0;
    right: var(--CONTAINER-PADDING);
  }
}
@media only screen and (max-width: 639px) {
  .fp-current-exibitions__records-list .c-records-list__item__date {
    position: static;
  }
}
.fp-current-exibitions__records-list .image {
  --list-image-mb: 0;
}

.fp-current-exibitions__records-list {
  --vertical-gap: var(--space-xl-2xl);
}

.fp-current-exibitions__installation-shot-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.fp-current-exibitions__installation-shot-slider .splide__track {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
  overflow: visible;
  margin: 0 auto;
}
.fp-current-exibitions__installation-shot-slider .splide__list {
  gap: 0;
}
.fp-current-exibitions__installation-shot-slider .splide__slide {
  --list-item-mr: var(--horizontal-gap, var(--gap));
  --list-item-width: clamp(27.6rem, 50vw, 110rem);
}
.fp-current-exibitions__installation-shot-slider .splide__arrows {
  max-width: var(--CONTAINER-WIDTH);
}
@media only screen and (max-width: 1023px) {
  .fp-current-exibitions__installation-shot-slider .splide__arrow {
    padding: var(--space-xs);
  }
}
@media only screen and (max-width: 767px) {
  .fp-current-exibitions__installation-shot-slider .splide__slide {
    --list-item-width: clamp(27.6rem, 75vw, 110rem);
  }
}
.fp-current-exibitions__installation-shot-slider .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.fp-current-exibitions__installation-shot-slider .splide__pagination {
  margin-top: var(--space-m);
}
@media only screen and (min-width: 640px) {
  .fp-current-exibitions__installation-shot-slider .record-count-2 .splide__slide {
    --list-item-width: clamp(40rem, 25vw, 75rem);
  }
}
.fp-current-exibitions__installation-shot-slider:not(.is-overflow) .splide__list {
  transform: none !important;
  gap: var(--horizontal-gap);
}
.fp-current-exibitions__installation-shot-slider:not(.is-overflow) .splide__slide {
  --list-item-width: calc(50% - (var(--horizontal-gap) / 2));
  --list-item-mr: 0;
}

.panel_type_3005 {
  --panel-pt: 0;
}
.panel_type_3005 .fp-panel__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}

.locationsList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.locationsListItem {
  --_child-grid-columns: repeat(auto-fill, minmax(21rem, 1fr));
  padding: var(--section-vertical-space) 0;
  margin: 0 !important;
}
@media only screen and (max-width: 1279px) {
  .locationsListItem {
    --_child-grid-columns: repeat(auto-fill, minmax(18rem, 1fr));
  }
}
@media only screen and (min-width: 898px) {
  .locationsListItem:nth-of-type(odd) .image {
    order: 2;
  }
}
.locationsListItem__header {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-l-xl);
  margin-bottom: var(--space-l-xl);
}
.locationsListItem__heading {
  --heading-font-size: var(--step-3);
}
.locationsListItem__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  align-items: end;
}
@media only screen and (max-width: 897px) {
  .locationsListItem__columns {
    grid-template-columns: 1fr;
  }
}
.locationsListItem__column.image {
  height: 100%;
  max-height: 50vh;
}
.locationsListItem img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.locationsListItem__details {
  margin-bottom: var(--space-l-xl);
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-columns: var(--_child-grid-columns);
  gap: var(--space-3xs) var(--space-m);
}
@media only screen and (min-width: 898px) {
  .locationsListItem__details {
    padding-top: var(--space-l-xl);
  }
}
.locationsListItem__link {
  grid-column: 1;
}
.locationsListItem__link span {
  color: var(--text-body);
  position: relative;
  display: inline-block;
}
.locationsListItem__link span::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.locationsListItem__link span:hover::after {
  transform: scaleX(100%);
}
.locationsListItem__address {
  font-style: normal;
}
.locationsListItem__openingTimes {
  grid-column: 2;
  grid-row: 1/4;
}

.locationsListItem__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: var(--_child-grid-columns);
  gap: var(--space-l) var(--space-m);
}
.locationsListItem__category h3 {
  font-weight: bold;
  margin-bottom: var(--space-3xs);
}
.locationsListItem__teamMembers {
  list-style: none;
  padding: 0;
}
.locationsListItem__teamMember {
  list-style: none;
  margin: 0;
}

.fp-two-column-content .fp-panel__inner {
  max-width: var(--CONTAINER-WIDTH, 1660px);
  margin: 0 auto;
  padding-left: var(--CONTAINER-PADDING);
  padding-right: var(--CONTAINER-PADDING);
}
.fp-two-column-content .wideContent {
  gap: var(--space-xl-2xl);
}
@media only screen and (min-width: 1280px) {
  .fp-two-column-content .wideContent {
    max-width: 91.666%;
  }
}
@media only screen and (min-width: 768px) {
  .fp-two-column-content .wideContent {
    columns: 2;
  }
}
.fp-two-column-content .wideContent + .narrowContent {
  margin-top: var(--space-l-xl);
}
.fp-two-column-content .narrowContent {
  gap: var(--space-m);
}
@media only screen and (min-width: 768px) {
  .fp-two-column-content .narrowContent {
    max-width: 460px;
  }
}
@media only screen and (min-width: 390px) {
  .fp-two-column-content .narrowContent {
    columns: 2;
  }
}

.page-param-type-viewing_room_id .sidebar, .page-param-type-exhibition_id .sidebar, .page-param-type-artist_id .sidebar {
  display: none;
}
.page-param-type-viewing_room_id .subsection-overview, .page-param-type-exhibition_id .subsection-overview, .page-param-type-artist_id .subsection-overview {
  --content-module-pr: 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .page-param-type-viewing_room_id .subsection-overview, .page-param-type-exhibition_id .subsection-overview, .page-param-type-artist_id .subsection-overview {
    justify-content: flex-start;
  }
}
.page-param-type-viewing_room_id .subsection-overview .content_module, .page-param-type-exhibition_id .subsection-overview .content_module, .page-param-type-artist_id .subsection-overview .content_module {
  width: 100%;
  max-width: calc(var(--CONTAINER-WIDTH) - 0.166 * var(--CONTAINER-WIDTH));
}
.page-param-type-viewing_room_id .subsection-overview .content_module:after, .page-param-type-exhibition_id .subsection-overview .content_module:after, .page-param-type-artist_id .subsection-overview .content_module:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .page-param-type-viewing_room_id .subsection-overview .content_module, .page-param-type-exhibition_id .subsection-overview .content_module, .page-param-type-artist_id .subsection-overview .content_module {
    max-width: 75ch;
  }
}
.page-param-type-viewing_room_id .subsection-overview .content_module > .quote, .page-param-type-exhibition_id .subsection-overview .content_module > .quote, .page-param-type-artist_id .subsection-overview .content_module > .quote {
  box-sizing: content-box;
  float: left;
  max-width: 46rem;
  width: 33.333%;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-bottom: 0;
  border-left: unset;
}
.page-param-type-viewing_room_id .subsection-overview .content_module > .quote::before, .page-param-type-exhibition_id .subsection-overview .content_module > .quote::before, .page-param-type-artist_id .subsection-overview .content_module > .quote::before, .page-param-type-viewing_room_id .subsection-overview .content_module > .quote::after, .page-param-type-exhibition_id .subsection-overview .content_module > .quote::after, .page-param-type-artist_id .subsection-overview .content_module > .quote::after {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .page-param-type-viewing_room_id .subsection-overview .content_module > .quote, .page-param-type-exhibition_id .subsection-overview .content_module > .quote, .page-param-type-artist_id .subsection-overview .content_module > .quote {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .page-param-type-viewing_room_id .subsection-overview .content_module > .quote, .page-param-type-exhibition_id .subsection-overview .content_module > .quote, .page-param-type-artist_id .subsection-overview .content_module > .quote {
    width: 100%;
    box-sizing: border-box;
    float: unset;
    max-width: unset;
    padding-right: 0;
  }
  .page-param-type-viewing_room_id .subsection-overview .content_module > .quote + *, .page-param-type-exhibition_id .subsection-overview .content_module > .quote + *, .page-param-type-artist_id .subsection-overview .content_module > .quote + * {
    margin-top: var(--space-m-l);
  }
}
.page-param-type-viewing_room_id .subsection-overview .content_module > .quote *, .page-param-type-exhibition_id .subsection-overview .content_module > .quote *, .page-param-type-artist_id .subsection-overview .content_module > .quote * {
  text-align: left !important;
}
.page-param-type-viewing_room_id .subsection-overview .content_module > .quote blockquote, .page-param-type-exhibition_id .subsection-overview .content_module > .quote blockquote, .page-param-type-artist_id .subsection-overview .content_module > .quote blockquote {
  margin-bottom: var(--space-xs);
}
.page-param-type-viewing_room_id .subsection-overview .content_module > .quote blockquote + *, .page-param-type-exhibition_id .subsection-overview .content_module > .quote blockquote + *, .page-param-type-artist_id .subsection-overview .content_module > .quote blockquote + * {
  font-size: var(--step-0);
  padding-left: var(--step-2);
}
.page-param-type-viewing_room_id .subsection-overview .content_module > #bio div, .page-param-type-exhibition_id .subsection-overview .content_module > #bio div, .page-param-type-artist_id .subsection-overview .content_module > #bio div, .page-param-type-viewing_room_id .subsection-overview .content_module > #bio p, .page-param-type-exhibition_id .subsection-overview .content_module > #bio p, .page-param-type-artist_id .subsection-overview .content_module > #bio p {
  text-align: left !important;
}
.page-param-type-viewing_room_id .subsection-overview .divider, .page-param-type-exhibition_id .subsection-overview .divider, .page-param-type-artist_id .subsection-overview .divider {
  display: none;
}

.page-param-type-artist_id .artist-header {
  display: none;
}
.page-param-type-artist_id #sub_nav ul {
  display: none !important;
}
.page-param-type-artist_id .cv {
  display: none;
}
.page-param-type-artist_id section.scroll_section_news .feature_list .content .date {
  display: none;
}

#bio {
  width: 50%;
  margin-bottom: var(--space-l-xl);
}
@media only screen and (max-width: 767px) {
  #bio {
    width: 100%;
    float: unset;
  }
}

.subsection-overview--links {
  width: 50.01%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m) var(--space-m-l);
}
@media only screen and (max-width: 767px) {
  .subsection-overview--links {
    width: 100%;
    float: unset;
  }
}
.subsection-overview--links .c-button span {
  gap: var(--space-2xs);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
}
.subsection-overview--links .c-button span::before {
  content: "";
  width: var(--step-0);
  height: var(--step-0);
  background-image: var(--ICON-PLUS-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
.subsection-overview--links .c-button span:hover::before, .subsection-overview--links .c-button span:focus::before {
  background-image: var(--ICON-PLUS-DARK);
}
@media only screen and (max-width: 459px) {
  .subsection-overview--links .c-button {
    width: 100%;
  }
}

.subsection-overview--has-quote #bio,
.subsection-overview--has-quote .subsection-overview--links {
  float: right;
}

.section-artists .feature_list .image img {
  object-fit: cover;
}
.section-artists .subsection-exhibitions .subtitle {
  display: none;
}

.section-artists .scroll_section_works .records_list .content .artist {
  display: none;
}

.scroll_section_videos .c-records-list__item__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.scroll_section_videos .records_list .link {
  display: none;
}
.scroll_section_videos ul li h2,
.scroll_section_videos ul li .subtitle,
.scroll_section_videos ul li .date {
  margin-bottom: 0;
}
.scroll_section_videos ul li .date {
  order: 1;
  display: none;
}
.scroll_section_videos ul li h2 {
  --heading-font-size: var(--step-2);
  order: 2;
}
.scroll_section_videos ul li .subtitle {
  order: 3;
  margin-top: var(--space-2xs);
}
.scroll_section_videos ul li .description {
  display: block;
  max-width: 75ch;
  margin-top: var(--space-s);
}

.scroll_section_contact_form::before {
  content: unset;
}
.scroll_section_contact_form .scroll_section_header {
  display: none;
}

.subsection-contact-form {
  --_content-width: 55rem;
  max-width: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .subsection-contact-form {
    display: flex;
    flex-direction: column-reverse;
  }
}
.subsection-contact-form__heading {
  font-size: var(--step-3);
}
.subsection-contact-form__description {
  margin-top: var(--space-s-m);
}
.subsection-contact-form__form-wrapper {
  max-width: var(--_content-width);
  padding-top: var(--space-s-m);
  padding-bottom: var(--space-m-l);
}
.subsection-contact-form__image-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.subsection-contact-form__image {
  padding-top: 66.67%;
  flex-grow: 1;
}
.subsection-contact-form__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.subsection-contact-form__caption {
  --caption-mt: var(--space-2xs-s);
  text-align: left;
}

.subsection-contact-form {
  --button-border-radius: 0;
  --button-background-color: var(--text-secondary);
  --button-color: var(--text-primary-invert);
  --button-focus-color: var(--text-primary-invert);
  --button-focus-background-color: var(--text-primary);
  --button-border: 0;
}
.subsection-contact-form #artlogic_mailinglist_signup_form_wrapper {
  margin-top: var(--space-s-m);
}
.subsection-contact-form #artlogic_mailinglist_signup_form {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .subsection-contact-form #artlogic_mailinglist_signup_form {
    max-width: var(--_content-width);
  }
}
.subsection-contact-form #artlogic_mailinglist_signup_form #mailing_submit_button {
  width: auto;
  float: none;
  margin: 0;
}
.subsection-contact-form .button {
  height: 100%;
}
.subsection-contact-form .submit_button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subsection-contact-form .error {
  width: 100%;
}
.subsection-contact-form .form_row {
  margin: 0;
  position: relative;
  flex-grow: 1;
}
.subsection-contact-form .form_row.form_row--not-empty label {
  top: 0;
  font-size: var(--step--1);
}
.subsection-contact-form .form_row label {
  background: var(--white);
  position: absolute;
  top: 50%;
  left: calc(var(--space-m) - var(--space-3xs));
  padding: 0 var(--space-3xs);
  transform: translateY(-50%);
  width: auto;
  transition: var(--transition);
}
.subsection-contact-form .form_row .inputField {
  width: 100%;
}
.subsection-contact-form .asterisk {
  display: none;
}
.subsection-contact-form #privacy_policy_form_msg {
  line-height: var(--leading-loose);
  border-top: 0;
  margin-top: var(--space-s-m);
  padding-top: 0;
  max-width: 45rem;
}
@media only screen and (max-width: 767px) {
  .subsection-contact-form #privacy_policy_form_msg {
    max-width: var(--_content-width);
  }
}

.artists-header {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

.records_list.columns_list.artists_list_dynamic_columns ul {
  width: 100% !important;
  float: unset;
}

.page-artists .subsection-artist-list-preview {
  --lazyload-background-color: white !important;
}
.page-artists .subsection-artist-list-preview #list_preview_navigation.records_list.columns_list ul li {
  padding-right: 0;
}
.page-artists .subsection-artist-list-preview #sidebar.content_follow_sticky {
  top: 100px;
}

.artist_list_section_wrapper:first-of-type .subheading {
  --section-subheading-mt: 0;
}

.artists_list_dynamic_columns {
  --list-heading-font-size: var(--step-5);
  --list-heading-line-height: var(--leading-tight);
  --artist-list-item-mb: var(--space-m-l);
}
.artists_list_dynamic_columns:hover li {
  --list-heading-color: var(--base-400);
}
.artists_list_dynamic_columns ul li:hover {
  --list-heading-color: var(--text-primary);
}
.artists_list_dynamic_columns ul li a {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-xs);
}
.artists_list_dynamic_columns a::after {
  content: "";
  display: block;
  background: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMzIgMjAiIHdpZHRoPSIzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGNsaXBQYXRoIGlkPSJhIj48cGF0aCBkPSJtMCAwaDMydjIwaC0zMnoiLz48L2NsaXBQYXRoPjxnIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZD0ibTE5Ljk5MTMuOTI1NjA4IDkuMDc0MyA5LjA3NDM5Mm0wIDAtOS4wNzQzIDkuMDc0NG05LjA3NDMtOS4wNzQ0aC0yNi4zOTg2MSIgc3Ryb2tlPSIjODE4MTgxIiBzdHJva2Utd2lkdGg9IjEuMjUiLz48L2c+PC9zdmc+");
  background-position: bottom;
  width: var(--space-l);
  height: var(--space-m);
  transform: translateX(-10px);
  transition: 0.4s all var(--easing);
  opacity: 0;
}
.artists_list_dynamic_columns a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.artists_list_dynamic_columns h2 {
  transition: 0.4s all var(--easing);
}

.section-exhibitions {
  --hero-subheading-font-size: var(--step-2);
  --hero-date-font-size: var(--step-1);
}
.section-exhibitions #hero_header .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.section-exhibitions #hero_header h2 > a {
  display: flex;
  flex-direction: column-reverse;
  font-style: italic;
}
.section-exhibitions #hero_header .h1_subtitle {
  margin-top: 0;
  margin-bottom: var(--space-xs);
  font-style: normal;
}
.section-exhibitions #hero_header .subtitle_date_comma,
.section-exhibitions #hero_header .subtitle_pre_location_comma,
.section-exhibitions #hero_header .subtitle_location {
  display: none;
}
.section-exhibitions #hero_header .date {
  margin-top: var(--space-m-l);
}
.section-exhibitions.page-param-type-exhibition_id:not(.page-param-category) #sub_nav ul {
  display: none !important;
}
.section-exhibitions .back_to_link {
  display: none;
}
.section-exhibitions .scroll_section_works ul li .content {
  display: none;
}
.section-exhibitions .scroll_section_installation_shots .scroll_section_header {
  flex-direction: column;
}
.section-exhibitions .scroll_section_installation_shots .scroll_section_header .subheading {
  align-self: flex-start;
}
.section-exhibitions .scroll_section_installation_shots .scroll_section_header .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section-exhibitions .scroll_section_installation_shots .scroll_section_header .splide__arrows .splide__arrow {
  padding: var(--space-xs);
}

.page-param-type-exhibition_id #popup_links {
  display: none;
}
.page-param-type-exhibition_id .scroll_section_overview .scroll_section_header {
  display: none;
}
@media only screen and (max-width: 767px) {
  .page-param-type-exhibition_id .scroll_section_overview .quote {
    margin-bottom: var(--space-l);
  }
}
.page-param-type-exhibition_id .scroll_section_overview .description {
  width: 50%;
  margin-bottom: var(--space-m-xl);
  position: relative;
  overflow: hidden;
}
.page-param-type-exhibition_id .scroll_section_overview .description.max_height_read_more {
  max-height: 160px;
}
.page-param-type-exhibition_id .scroll_section_overview .description.max_height_read_more :after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10em;
  background: rgb(255, 255, 255);
  background: linear-gradient(to bottom, transparent 50%, white 400%);
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .page-param-type-exhibition_id .scroll_section_overview .description {
    width: 100%;
  }
}
.page-param-type-exhibition_id .scroll_section_overview .description.with_quote {
  float: right;
}
@media only screen and (max-width: 767px) {
  .page-param-type-exhibition_id .scroll_section_overview .description.with_quote {
    float: unset;
  }
}
.page-param-type-exhibition_id .scroll_section_overview .description + .simple_list {
  float: unset;
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list {
  float: right;
  width: 50.01%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m) var(--space-l);
}
@media only screen and (max-width: 767px) {
  .page-param-type-exhibition_id .scroll_section_overview .simple_list {
    width: 100%;
    float: unset;
  }
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m) var(--space-l);
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list li {
  padding: 0;
  margin: 0;
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list a {
  text-decoration: none;
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list .c-button span {
  gap: var(--space-2xs);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list .c-button span::before {
  content: "";
  width: var(--step-0);
  height: var(--step-0);
  background-image: var(--ICON-PLUS-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
.page-param-type-exhibition_id .scroll_section_overview .simple_list .c-button span:hover::before, .page-param-type-exhibition_id .scroll_section_overview .simple_list .c-button span:focus::before {
  background-image: var(--ICON-PLUS-DARK);
}
@media only screen and (max-width: 459px) {
  .page-param-type-exhibition_id .scroll_section_overview .simple_list .c-button {
    width: 100%;
  }
}

#scroll_section_installation_shots .splide .splide__arrows {
  display: none;
}
#scroll_section_installation_shots .splide__slide {
  --list-item-width: clamp(26rem, 80vw, 110rem);
}
#scroll_section_installation_shots .records_list ul li .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#scroll_section_installation_shots .records_list ul li .image::after {
  padding-top: 66.67%;
}
#scroll_section_installation_shots .caption {
  text-align: left;
  opacity: 0;
  transition: var(--transition);
}
#scroll_section_installation_shots .caption .title {
  font-style: italic;
}
#scroll_section_installation_shots .is-active .caption {
  opacity: 1;
}

.page-param-type-exhibition_id #footer {
  --footer-mt: var(--space-l-xl);
}

.section-exhibitions.page-param-category #sub_nav,
.section-exhibitions.no-page-params #sub_nav,
.section-exhibitions .exhibitions_list_filters {
  display: none;
}

.exhibition-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-2xl);
}
.exhibition-list-header h1 {
  margin: 0 !important;
}
@media only screen and (max-width: 639px) {
  .exhibition-list-header {
    flex-direction: column;
    align-items: start;
    gap: var(--space-2xs);
  }
  .exhibition-list-header .custom-exhibition-filters {
    margin-top: var(--space-2xs);
  }
}

.custom-exhibition-filters {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 639px) {
  .custom-exhibition-filters {
    width: 100%;
  }
}
.custom-exhibition-filters input {
  height: 100%;
}
.custom-exhibition-filters #filter_btn {
  --button-border-radius: 0;
  --button-background-color: var(--text-primary);
  --button-border: 1px solid var(--text-primary);
  --button-color: var(--text-primary-invert);
  --button-focus-background-color: var(--text-secondary);
  --button-focus-color: var(--text-primary-invert);
  text-align: center;
}
.custom-exhibition-filters #quick_search {
  margin: 0;
}
@media only screen and (min-width: 390px) {
  .custom-exhibition-filters {
    flex-direction: row;
  }
  .custom-exhibition-filters [id=quick_search] {
    z-index: 10;
  }
  .custom-exhibition-filters [id=quick_search] input {
    border: 1px solid var(--border-color) !important;
  }
  .custom-exhibition-filters [role=listbox] {
    border-top: none;
  }
  .custom-exhibition-filters #filter_by input {
    border-right: none;
    left: 1px;
  }
  .custom-exhibition-filters #filter_by [role=listbox] {
    left: 1px;
  }
}
@media only screen and (max-width: 459px) {
  .custom-exhibition-filters #filter_by {
    margin-bottom: -1px;
  }
}
@media only screen and (max-width: 639px) {
  .custom-exhibition-filters #filter_by_location,
  .custom-exhibition-filters #filter_by_year,
  .custom-exhibition-filters #filter_by_keyword,
  .custom-exhibition-filters #filter_by_artist {
    flex-grow: 1;
  }
}

#exhibitions-grid-container > h2 {
  text-align: left;
  font-size: var(--step-4);
  margin-bottom: 30vh;
}
#exhibitions-grid-container .subheading {
  border-top: 1px solid var(--border-color);
  padding-top: var(--section-subheading-mb);
}
#exhibitions-grid-container li {
  --list-location-font-size: var(--step-1);
  --list-location-color: var(--text-primary);
}
@media only screen and (max-width: 459px) {
  #exhibitions-grid-container li {
    --list-location-font-size: var(--step-0);
  }
}

.subsection-exhibitions-grid {
  --grid-columns: 3;
  padding-bottom: var(--space-xl-2xl);
}
.subsection-exhibitions-grid:first-of-type .subheading {
  --section-subheading-mt: var(--space-l-xl);
}
@media only screen and (min-width: 640px) {
  .subsection-exhibitions-grid .record-count-1,
  .subsection-exhibitions-grid .record-count-2 {
    --grid-columns: 2;
  }
}

#exhibitions-grid-past {
  --grid-columns: 4;
  margin-bottom: var(--space-l-xl);
}
#exhibitions-grid-past .location {
  order: 3;
}
#exhibitions-grid-past .date {
  display: none;
}

.exhibition_archive_label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  margin-bottom: var(--section-vertical-space);
}
.exhibition_archive_label::after {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-ARROW-RIGHT-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
.exhibition_archive_label:hover::after, .exhibition_archive_label:focus::after {
  background-image: var(--ICON-ARROW-RIGHT-DARK);
}
.exhibition_archive_label:hover::after {
  transform: translateX(5px);
}
.exhibition_archive_label span {
  position: relative;
  display: inline-block;
}
.exhibition_archive_label span::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  border-bottom: 1px solid var(--border-color);
  left: 0;
  width: 100%;
  transform: scaleX(100%);
  transition: 0.5s all ease;
  transform: scaleX(0);
  transform-origin: center left;
}
.exhibition_archive_label span:hover::after {
  transform: scaleX(100%);
}

#main_content h1 {
  margin-top: var(--section-vertical-space);
  font-size: var(--page-heading-font-size);
}

.subsection-exhibitions-grid.remove-border .subheading {
  --section-subheading-pt: 0 !important;
  border-top: 0 !important;
}

.section-news {
  --main-content-mb: var(--section-vertical-space);
}
@media only screen and (min-width: 1024px) {
  .section-news {
    --sidebar-pt: var(--space-xs);
  }
}

.news-header {
  padding-right: var(--content-module-pr);
}

.page-param-type-news_id .related_items_panel_heading {
  display: none;
}
.news-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 459px) {
  .news-list-header {
    flex-direction: column;
    gap: var(--space-m-xl);
    align-items: start;
  }
}

@media only screen and (max-width: 459px) {
  #news_years_nav {
    width: 100%;
  }
}

.section-news.no-page-params .records_list {
  --list-subheading-color: var(--text-primary);
}
.section-news.no-page-params .records_list .content {
  display: flex !important;
  flex-direction: column;
}
.section-news.no-page-params .records_list .subtitle {
  order: 1;
  --list-content-mt: 0;
  --list-content-mb: var(--space-xs);
}
.section-news.no-page-params .records_list h2 {
  font-style: italic;
  order: 2;
}
.section-news.no-page-params .records_list .description {
  display: block;
  order: 3;
}
.section-news.no-page-params .records_list .date {
  order: 4;
  display: none;
}
.section-news.no-page-params .records_list .link {
  order: 5;
  width: max-content;
}
.section-news.no-page-params .feature_list {
  --list-subheading-font-size: var(--step-5);
}

.subsection-news-grid .records_list.image_list {
  --list-subheading-font-weight: bold;
}
.subsection-news-grid .records_list.image_list > ul {
  --grid-columns: 3;
}
@media only screen and (max-width: 767px) {
  .subsection-news-grid .records_list.image_list > ul {
    --grid-columns: 2;
  }
}
@media only screen and (max-width: 389px) {
  .subsection-news-grid .records_list.image_list > ul {
    --grid-columns: 1;
  }
}

.records_list.grid_dynamic_layout_news_featured ul li .image::after {
  padding-top: 66.66% !important;
}

:root {
  --artwork-artist-font-size: var(--step-5);
  --artwork-artist-color: var(--text-primary);
  --artwork-title-font-size: var(--step-5);
  --artwork-title-color: var(--text-primary);
  --detail-view-module-mb: var(--space-l);
}

.artwork_details_wrapper h1 {
  margin-bottom: var(--space-3xs);
}
.artwork_details_wrapper .subtitle {
  margin-bottom: var(--space-l) !important;
}
.artwork_details_wrapper .subtitle .title {
  font-style: italic;
}
.artwork_details_wrapper .price {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  #popup_content #image_gallery #image_container_wrapper {
    padding: var(--space-l) var(--space-xl) var(--space-m) !important;
  }
}
@media only screen and (min-width: 768px) {
  #popup_content #image_gallery #image_container_wrapper #image_container {
    left: var(--space-4xl-5xl);
    right: var(--space-xl);
  }
}
@media only screen and (max-width: 767px) {
  #popup_content #image_gallery #image_container_wrapper #image_container {
    left: var(--space-m) !important;
    right: var(--space-m) !important;
    bottom: var(--space-l) !important;
  }
}
#popup_content #image_gallery .image {
  min-height: unset !important;
}

#image_gallery #content_module {
  --content-module-pl: var(--space-xl);
  --content-module-pr: 0;
}
#image_gallery #image_related {
  padding: 0 0 var(--section-vertical-space);
}

#artwork_description2_reveal_button a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
}
#artwork_description2_reveal_button a::before {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-PLUS-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
#artwork_description2_reveal_button a:hover::before, #artwork_description2_reveal_button a:focus::before {
  background-image: var(--ICON-PLUS-DARK);
}

@media only screen and (min-width: 768px) {
  #image_gallery #image_container_wrapper,
  #image_gallery.artwork_full_details_open #image_container_wrapper,
  #image_gallery.record-layout-descriptive #image_container_wrapper,
  #image_gallery.record-layout-descriptive .description {
    width: calc(100% - clamp(320px, 33%, 550px));
  }
}

@media only screen and (min-width: 768px) {
  #image_gallery #content_module,
  #image_gallery.artwork_full_details_open #content_module,
  #image_gallery.record-layout-descriptive #artwork_description_2,
  #image_gallery.record-layout-descriptive #content_module {
    width: clamp(320px, 33%, 550px) !important;
  }
}

#secondary_image_thumbnails {
  --thumbnail-size: var(--space-xl);
}
#secondary_image_thumbnails h3 {
  display: none;
}
#secondary_image_thumbnails ul {
  margin-top: 0;
}
#secondary_image_thumbnails ul li.video_embed a:after, #secondary_image_thumbnails ul li.main_image_overrided_by_video a:after {
  width: 2.4rem;
  height: 2.4rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.artworks-page-artwork-list-container {
  padding-bottom: var(--section-vertical-space);
}

.page-video #main_content > h1 {
  --heading-font-size: var(--step-5);
  margin-bottom: var(--space-l-xl);
}
.page-video .related_items_panel_heading {
  display: none;
}
.page-video #full {
  margin-bottom: var(--section-vertical-space);
}
.body--has-fp-as-hero .heading_wrapper {
  display: inline-block;
  margin-top: 0;
}

.grid_dynamic_layout_publications:not(.feature_list) ul {
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
}
@media only screen and (max-width: 639px) {
  .grid_dynamic_layout_publications:not(.feature_list) ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 459px) {
  .grid_dynamic_layout_publications:not(.feature_list) ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-publications {
  --panel-heading-font-size: var(--step-3);
}
.section-publications .panel_header {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: var(--panel-header-mb);
}
.section-publications .featured-list-container {
  border-top: 1px solid var(--border-color);
  margin-top: var(--section-vertical-space);
  padding-top: var(--space-l-xl);
  margin-bottom: calc(2 * var(--section-vertical-space));
}
.section-publications .content h2 {
  font-style: italic;
}

.records_list.grid_dynamic_layout_publications_featured ul li .image::after {
  padding-top: 66.6666666667%;
}

.subsection-publications-grid {
  margin-bottom: var(--section-vertical-space);
  margin-top: var(--space-xl-2xl);
}

.publications-header {
  display: inline-block;
  width: auto !important;
}

#publications_artists_nav {
  margin-top: var(--space-xs);
  float: right;
  max-width: 20rem;
}
@media only screen and (max-width: 1023px) {
  #publications_artists_nav {
    margin-top: var(--section-vertical-space);
  }
}
@media only screen and (max-width: 459px) {
  #publications_artists_nav {
    float: unset;
    margin-top: 0;
    max-width: 100%;
  }
}

.page-param-type-publication_id {
  --page-subheading-font-size: var(--step-2);
  --lazyload-background-color: transparent;
}
.page-param-type-publication_id .subsection-publication-record h1 {
  font-style: italic;
}
.page-param-type-publication_id .subsection-publication-record h1.has_subtitle {
  margin-bottom: 0;
}
.page-param-type-publication_id .heading_wrapper {
  max-width: 85ch;
}
@media only screen and (min-width: 460px) {
  .page-param-type-publication_id .heading_wrapper {
    margin-bottom: 0;
  }
}
.page-param-type-publication_id .heading_wrapper .subtitle {
  display: none;
}
.page-param-type-publication_id .subtitle_1 {
  margin-top: var(--space-s-m);
}
.page-param-type-publication_id .author_and_year {
  font-size: var(--step-2);
  color: var(--text-secondary);
  margin-bottom: 0;
}
.page-param-type-publication_id .object-fit-container {
  background: var(--white);
}
.page-param-type-publication_id .prose {
  margin-bottom: var(--space-m-l);
}
.page-param-type-publication_id .buy.link {
  margin-bottom: var(--space-m-l);
}
.page-param-type-publication_id .buy.link a::after {
  content: unset;
}
.page-param-type-publication_id .related_items_panel {
  margin-top: calc(2 * var(--section-vertical-space));
}
.page-param-type-publication_id #sidebar {
  text-align: left;
}
.page-param-type-publication_id #sidebar .link {
  margin: var(--space-m) auto 0;
}
.page-param-type-publication_id #sidebar .link a::after {
  content: unset;
}

.formats_item .price {
  order: 1;
  font-weight: bold;
  font-size: var(--step-1);
  margin-bottom: var(--space-s-m);
}
.formats_item .format_description {
  order: 2;
}
.formats_item .buy.button {
  order: 3;
  width: 100%;
  max-width: 40rem;
  margin-top: var(--space-s-m);
}
.formats_item .buy.button a {
  width: 100%;
}

.format_pages,
.format_dimensions,
.format_publisher,
.format_isbn {
  margin-top: var(--space-2xs);
}

.formats_list.formats_list_multiple {
  border-top: 0;
}
.formats_list.formats_list_multiple .formats_item {
  padding: var(--space-s-m) 0;
  border-bottom: 0;
}
.formats_list.formats_list_multiple .formats_item .format_description .format_name {
  margin-bottom: 0;
}
.formats_list.formats_list_multiple .formats_item .format_description > .format_isbn {
  display: block;
}

.store_item_group .store_items_standard {
  margin-bottom: var(--space-m-l);
}

.store_items_standard .store_item {
  padding: var(--space-m) 0;
}
.store_items_standard .store_item .variant {
  font-size: var(--step-0);
  line-height: var(--leading-normal);
  margin: 0 0 var(--space-xs);
}

.store_item:first-child {
  border-top: unset;
}
.store_item .price {
  font-size: var(--step-1);
  font-weight: bold;
  color: var(--text-primary);
}

.page-search {
  --content-module-pr: 0;
  --content-module-pl: 0;
}
.page-search #hero_header,
.page-search #parallax-hero_header {
  display: none;
}
.page-search .description {
  line-break: anywhere;
}

.section-search .heading_wrapper {
  margin-bottom: var(--space-m-xl);
  display: grid;
  grid-template-columns: 1fr auto;
}
@media only screen and (max-width: 639px) {
  .section-search .heading_wrapper {
    grid-template-columns: 1fr;
  }
}
.section-search #quick_search {
  margin: 0;
  float: unset;
  max-width: 40rem;
}
@media only screen and (min-width: 640px) {
  .section-search #quick_search {
    grid-column: 2;
    grid-row: 1;
  }
}

.section-search .records_list .content .description,
.section-search .records_list .content .link {
  display: none;
}

.subsection-store-grid-artworks {
  padding-bottom: var(--section-vertical-space);
}
.subsection-store-grid-artworks .records_list.flow_list .content {
  display: none;
}

.section-viewing-room #hero_header .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.section-viewing-room #hero_header h2 > a {
  display: flex;
  flex-direction: column-reverse;
  font-style: italic;
}
.section-viewing-room #hero_header .h1_subtitle {
  margin-top: 0;
  margin-bottom: var(--space-xs);
  font-style: normal;
}
.section-viewing-room #hero_header .subtitle_date_comma,
.section-viewing-room #hero_header .subtitle_pre_location_comma,
.section-viewing-room #hero_header .subtitle_location {
  display: none;
}
.section-viewing-room #hero_header .date {
  margin-top: var(--space-m-l);
}

@media only screen and (max-width: 767px) {
  .page-param-type-viewing_room_id .subsection-overview {
    flex-direction: column;
  }
}
.page-param-type-viewing_room_id .sidebar,
.page-param-type-viewing_room_id .content_module {
  width: unset;
  flex-basis: 50%;
}
@media only screen and (max-width: 767px) {
  .page-param-type-viewing_room_id .sidebar,
  .page-param-type-viewing_room_id .content_module {
    flex-basis: 100%;
  }
}
.page-param-type-viewing_room_id .sidebar {
  display: block;
}

.subsection-overview {
  max-width: calc(var(--CONTAINER-WIDTH) - 0.166 * var(--CONTAINER-WIDTH));
  margin: 0 auto;
}
.subsection-overview .description {
  margin-bottom: var(--space-l-xl);
}
@media only screen and (max-width: 767px) {
  .subsection-overview .description {
    width: 100%;
    float: unset;
  }
}
.subsection-overview .simple_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-m) var(--space-l);
}

.viewing_room-list-outer-container .subheading {
  border-top: 1px solid var(--border-color);
  padding-top: var(--section-subheading-mb);
}

.subsection-viewing_rooms-grid {
  padding-bottom: var(--space-xl-2xl);
}
.subsection-viewing_rooms-grid:first-of-type .subheading {
  --section-subheading-mt: var(--space-l-xl);
}

#viewing_rooms-grid-container h2 {
  font-style: italic;
}
#viewing_rooms-grid-container .button .read_more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  gap: var(--space-2xs);
}
#viewing_rooms-grid-container .button .read_more::after {
  content: "";
  width: calc(var(--step-1) * 0.9);
  height: calc(var(--step-1) * 0.9);
  background-image: var(--ICON-ARROW-RIGHT-MID);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
  display: block;
}
#viewing_rooms-grid-container .button .read_more:hover::after, #viewing_rooms-grid-container .button .read_more:focus::after {
  background-image: var(--ICON-ARROW-RIGHT-DARK);
}

#viewing_rooms-grid-past .records_list {
  --grid-columns: 2;
}

.subsection-store-basket #sidebar {
  --sidebar-mt: var(--section-vertical-space);
  --sidebar-px: var(--space-m-l);
  --sidebar-py: var(--space-m-l);
  background: var(--base-50);
  max-width: 50rem;
}
@media only screen and (max-width: 1023px) {
  .section-store .subsection-store-basket #sidebar {
    padding-left: var(--sidebar-px) !important;
    max-width: unset;
    --sidebar-mt: 0;
  }
}
@media only screen and (max-width: 459px) {
  .section-store .subsection-store-basket #sidebar {
    --sidebar-mx: calc(var(--CONTAINER-PADDING) * -1);
    width: 100vw !important;
  }
}
.subsection-store-basket #content_module {
  --content-module-pt: var(--section-vertical-space);
}
@media only screen and (max-width: 1023px) {
  .section-store .subsection-store-basket #content_module {
    --content-module-mb: var(--section-vertical-space);
    max-width: 700px !important;
    padding-right: 0 !important;
  }
}
.subsection-store-basket #content_module > h2 {
  font-size: var(--page-heading-font-size);
  color: var(--text-primary);
  margin-bottom: var(--space-m-2xl);
}
.subsection-store-basket .subheading {
  --section-subheading-mt: var(--space-m-xl);
  --section-subheading-mb: var(--space-s-m);
  --section-subheading-font-size: var(--step-1);
  padding-top: var(--space-s-m);
  border-top: 1px solid var(--border-color);
}

#basket_footer #store_payment_logos {
  float: unset;
}
#basket_footer #store_payment_logos:after {
  content: "";
  display: table;
  clear: both;
}

#shopping_cart_information td.sc_cell_item .title,
#wishlist_information td.sc_cell_item .title {
  margin-bottom: var(--space-2xs);
  line-height: var(--leading-normal);
}

#shopping_cart_information .details {
  font-size: var(--step--1);
  line-height: var(--leading-normal);
  color: var(--text-body);
}

#shopping_cart_information th,
#wishlist_information th {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-xs);
}

#shopping_cart_information td,
#wishlist_information td {
  padding: var(--space-s) var(--space-xs) var(--space-s) 0;
  border-bottom: 1px solid var(--border-color);
}

#sc_contents_container #sc_vat_note {
  padding-top: var(--space-s);
  font-size: var(--step--1);
}

#sc_checkout_container > h2 {
  font-size: var(--step-3);
  color: var(--text-primary);
  margin-bottom: var(--space-m-l);
}
#sc_checkout_container .sc_field_group {
  margin-bottom: var(--space-m-xl);
}
#sc_checkout_container #privacy_policy_form_msg {
  margin-top: var(--space-m-l);
  padding-top: 0;
  border-top: unset;
}

#sc_checkout_content #shipping_container #shipping_zones_container {
  border-bottom: unset;
  margin-top: var(--space-m-l);
  margin-bottom: 0;
  padding-bottom: 0;
}
#sc_checkout_content #shipping_container #shipping_zones_container label {
  color: var(--text-primary);
  margin-bottom: var(--space-3xs);
  display: block;
}
#sc_checkout_content #shipping_container #shipping_options_container {
  margin-top: var(--space-m-l);
}
#sc_checkout_content #sc_subtotal,
#sc_checkout_content #sc_discount,
#sc_checkout_content #sc_vat_total,
#sc_checkout_content #sc_vat_rate,
#sc_checkout_content #sc_shipping_total,
#sc_checkout_content #sc_order_total {
  border-bottom: 1px solid var(--border-color);
  margin: 0 0 var(--space-s);
  padding: 0 0 var(--space-s);
}

#sc_checkout_price_summary_content_above {
  margin-bottom: var(--space-m-l);
}

.sub_total_container,
#sc_shipping_total .currency,
.shipping_cost,
#sc_vat_total .currency,
.total_vat_amount,
.order_total_wrapper {
  color: var(--text-primary);
  font-weight: bold;
}

#shopping_cart_information {
  margin-top: var(--space-m-l);
}

.subsection-store-basket .form .form_row label {
  padding-top: 0;
}

#sc_total_price_container .subheading,
#sc_contact_info_field_wrapper .subheading,
#sc_checkout_payment_main_heading .subheading {
  padding-top: 0;
  border-top: unset;
}

.sc_order_summary__row {
  --_gap: var(--space-2xl-4xl);
  grid-template-columns: [first] 1fr [line2] max(250px, 30% - var(--_gap) / 2);
  column-gap: var(--_gap);
}
@media only screen and (max-width: 1023px) {
  .sc_order_summary__row {
    --_gap: var(--space-xl-2xl);
  }
}
@media only screen and (max-width: 639px) {
  .sc_order_summary__row {
    grid-template-columns: 1fr;
  }
}

.sc_order_summary__heading {
  padding-top: vaR(--space-xs);
}

.sc_order_summary__empty,
.sc_order_summary__order__head {
  border-bottom: 1px solid var(--border-color);
}

.sc_order_summary__order__head {
  padding-bottom: var(--space-m-l);
}

.sc_order_summary__heading__message {
  padding-top: 3px;
}

.sc_order_summary__heading__success {
  line-height: 0;
}

.sc_order_summary__heading h1 {
  font-size: vaR(--step-3);
}

.sc_order_summary__order__head__title__name h2 {
  font-size: var(--step-2);
  color: var(--text-primary);
}

.sc_order_summary__order__head__message {
  margin-bottom: 0;
}

.sc_order_summary__order__head__title__date {
  text-transform: unset;
}

.sc_order_summary__order__head__title {
  margin: var(--space-m-l) 0;
}

.sc_order_summary__order__items {
  margin: var(--space-m-l) 0;
  gap: var(--space-m-l);
}

.sc_order_summary__order__items__item {
  grid-template-columns: [first] auto [line2] min(40%, 230px);
  column-gap: var(--space-m-l);
}
@media only screen and (max-width: 1023px) {
  .sc_order_summary__order__items__item {
    grid-template-columns: [first] auto [line2] max-content;
  }
}

.sc_order_summary__order__items__item__cost__quantity {
  color: var(--base-500);
}

@media only screen and (max-width: 459px) {
  .sc_order_summary__order__items__item__details {
    grid-template-columns: [first] 40px [line2] auto;
  }
}

@media only screen and (max-width: 459px) {
  .sc_order_summary__order__items__item__details__image {
    width: 50px;
  }
}

.sc_order_summary__order__items__item__details__info__title {
  color: var(--text-primary);
  margin-bottom: var(--space-3xs);
}

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

@media only screen and (max-width: 1023px) {
  .sc_order_summary__order__items__item__cost {
    justify-content: start;
    flex-direction: column-reverse;
    gap: var(--space-3xs);
  }
}

.sc_order_summary__order__totals {
  margin-bottom: var(--space-m-l);
  padding-top: var(--space-xs-s);
  border-top: 1px solid var(--border-color);
  width: min(40%, 230px);
}
@media only screen and (max-width: 1023px) {
  .sc_order_summary__order__totals {
    width: 100%;
  }
}

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

@media only screen and (max-width: 1023px) {
  .sc_order_summary__contact {
    border-top: 1px solid var(--border-color);
    border-bottom: unset;
    margin-top: 0;
    padding-bottom: var(--space-m-l);
  }
}
@media only screen and (max-width: 639px) {
  .sc_order_summary__contact {
    border-top: unset;
    padding-top: 0;
  }
}
.sc_order_summary__contact .icon::before {
  color: var(--base-400);
}

.sc_order_summary__contact__title {
  margin: var(--space-m-l) 0;
}
.sc_order_summary__contact__title h2 {
  font-size: var(--step-2);
  color: var(--text-primary);
}

.sc_order_summary__contact__details {
  margin-bottom: var(--space-m-l);
}

.sc_order_summary__order__head__message,
.sc_order_summary__order__items__item__details__info,
.sc_order_summary__order__customer__details,
.sc_order_summary__contact__details,
.sc_order_summary__contact__phone,
.sc_order_summary__contact__email,
.sc_order_summary__contact__twitter,
.sc_order_summary__contact__address {
  line-height: var(--leading-normal);
}

.sc_order_summary__order__customer {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-m-l);
  margin-bottom: var(--space-m-l);
}

.sc_order_summary__order__customer__title {
  margin: var(--space-m-l) 0;
}
.sc_order_summary__order__customer__title h2 {
  font-size: var(--step-2);
  color: var(--text-primary);
}

.sc_order_summary__order__customer__details__column {
  row-gap: var(--space-m-l);
}

.sc_order_summary__order__customer__details__detail__title {
  margin-bottom: var(--space-3xs);
  color: var(--text-primary);
}

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