/**
 * LANDING PAGE STYLES
 **/
:root {
  --vv-content-padding-horz: 15px;
  --vv-header-height: calc(165px + var(--vv-content-padding-horz));
  --vv-content-width-max: 1140px;
	--vv-color-orange: #e8ac00;
	--vv-color-orange-light: #f7c73e;
}
/* Adjust theme page margins */
body.page.lp .moon-page-wrapper > .moon-shop-page-content {
  margin-top: 0;
  margin-bottom: 0;
}
/* Adjust inner column padding */
body.page.lp .vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0;
  padding-bottom: 0;
}

body.page.lp .lp-row-flex {
  display: flex;
  gap: 25px 50px;
}
@media (max-width: 1024px) {
  body.page.lp .lp-row-flex {
    gap: 25px 33px;
  }
}
@media (max-width: 660px) {
  body.page.lp .lp-row-flex {
    flex-direction: column;
    gap: 25px;
  }
}
/* Prevent WP Bakery background pseudo-elements from adding flex gap at start and end */
body.page.lp .lp-row-flex::before,
body.page.lp .lp-row-flex::after {
  position: absolute;
}
/*
body.page.lp .lp-row-flex > .vc_column_container > .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}
*/
body.page.lp .lp-button button,
body.page.lp .lp-button a,
.wpcf7-form input[type="button"],
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="reset"] {
  width: auto;
  height: auto;
  padding: 13px 36px 16px 36px !important;
  color: #fff;
  background-color: #0093d6;
  border: none;
  border-radius: 99999px;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  text-transform: unset;
  transiton: all 0.2s ease;

  /* Todd's direction */
  background-color: #e8ac00;
  border-radius: 0px;
}
body.page.lp .lp-button button:is(:hover, :focus, :active),
body.page.lp .lp-button a:is(:hover, :focus, :active),
.wpcf7-form input[type="button"]:is(:hover, :focus, :active),
.wpcf7-form input[type="submit"]:is(:hover, :focus, :active),
.wpcf7-form input[type="reset"]:is(:hover, :focus, :active) {
    color: #5e5e5e !important;
    background-color: #dcdcdc !important;
    box-shadow: none;

    /* Todd's direction */
    color: #fff !important;
    background-color: #f7c73e !important;
}
body.page.lp .wpcf7-form input[type="button"],
body.page.lp .wpcf7-form input[type="submit"],
body.page.lp .wpcf7-form input[type="reset"] {
    margin-top: 15px;
    float: unset;
    color: #fff !important;
}
body.page.lp h1,
body.page.lp .h1,
body.page.lp #intro h1 {
    margin: 0 0 0.5 0;
    font-weight: 700;
}
body.page.lp #intro h1 {
    margin-bottom: 0.75em;
}
body.page.lp h2,
body.page.lp .h2 {
    margin: 0 0 0.5em 0;
    font-weight: 700;
}
body.page.lp h3,
body.page.lp .h3 {
    margin: 0 0 0.5em 0;
    font-weight: 700;
}
body.page.lp ul.lp-list,
body.page.lp ol.lp-list {
    margin: 0;
    padding: 0;
		list-style-type: disc;
}
body.page.lp ul.lp-list > li,
body.page.lp ol.lp-list > li {
    margin: 0 0 0.4167em 0.9em;
    padding: 0;
}
body.page.lp ul.lp-list > li:last-child,
body.page.lp ol.lp-list > li:last-child {
    margin-bottom: 0.833em;
}
body.page.lp .text-color-reverse * {
    color: #fff;
}
body.page.lp .text-shadow,
body.page.lp .text-shadow * {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}
body.page.lp .text-shadow-white,
body.page.lp .text-shadow-white * {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.66)
}
body.page.lp .accessibility-hidden {
    position: absolute;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/** HEADER **/
body.page.lp #header .wpb_raw_html {
    display: none;
}
body.page.lp #header {
    position: fixed !important;
    left: 0px !important;
    top: 0px !important;
    width: 100vw !important;
    max-width: unset !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: content-box !important;
    z-index: 100;
    overflow: visible;
}
body.page.lp #header > .vc_column_container {
    position: relative;
    width: 100%;
    max-width: unset;
    height: var(--vv-header-height);
    margin: 0;
    padding: 0;
    float: unset;
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
}
body.page.lp #header > .vc_column_container.opaque {
    background-color: #53575acc !important;
    backdrop-filter: blur(4px);
}
body.page.lp #header > .vc_column_container > .vc_column-inner {
    width: calc(100% - (var(--vv-content-padding-horz) * 2));
    max-width: var(--vv-content-width-max);
    height: calc(100% - var(var(--vv-content-padding-horz)));
    margin: 0 auto;
    padding: var(--vv-content-padding-horz) var(--vv-content-padding-horz) 0px var(--vv-content-padding-horz);
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
}
body.page.lp #header > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
body.page.lp #header + .vc_row-full-width + .vc_row {
  /*margin-top: calc(-1 * var(--vv-header-height));*/
  padding-top: var(--vv-header-height);
}
body.page.lp #header-logo-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 35px 0px;
}
body.page.lp #header-logo-col {
    flex: 0 0 30%;
}
body.page.lp #header-logo img {
    width: auto;
    max-width: unset;
    height: 80px;
    max-width: unset;
}
body.page.lp #header-search-col {
    flex: 1 1 auto;
}
body.page.lp #header-search-col > .vc_column-inner {
    height: 100%;
}
body.page.lp #header-search-col > .vc_column-inner > .wpb_wrapper {
    justify-content: right;
      display: flex;
      align-items: center;
      height: 100%;
}
body.page.lp .header-search {
    width: calc(var(--vv-content-width-max) * 0.25);
    margin: 0;
    display: flex;
    justify-content: right;
    align-items: center;
}
body.page.lp .header-search .sin-shop-sidebar {
    background: none;
}
body.page.lp .header-search .widget_search .search-form {
    position: relative;
    background: none;
    border: 1.5px solid #fff;
    border-radius: 15px;
    padding-left: 46px;
    padding-right: 10px;
}
body.page.lp .header-search .widget_search .search-form::before {
    content: '\f002';
    position: absolute;
    top: 7px;
    left: 12px;
    width: auto;
    height: 30px;
    display: block;
    color: #fff;
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    transform: scaleX(-1);
}
body.page.lp .header-search .widget_search .search-form > input {
    background: none;
    border: none;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
}
body.page.lp .header-search .widget_search .search-form > input::placeholder {
    opacity: 0;
}
/* Off-canvas menu search input xget some additional styles */
body.page.lp #off-canvas-menu-search.header-search {
}
body.page.lp #header-nav-row {
}
body.page.lp #header-nav-col {
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
}
body.page.lp #header-nav-menu {
    margin: 0;
}
/* Max Mega Menu off-canvas menu */
#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle ~ button.mega-close,
#mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle.mega-menu-open ~ button.mega-close {
	right: var(--vv-content-padding-horz);
  top: var(--vv-content-padding-horz);
}
body.page.lp #off-canvas-menu-search {
	width: 100% !important;
  padding: 0 10px;
}
body.page.lp #off-canvas-menu-search > .widget_search {
	width: 100%;
}

/* Restyle Max Mega Menu below tablet breakpoint */
@media (max-width: 1100px) {
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
		--button-height: 30px;
		padding: calc(var(--vv-content-padding-horz) + var(--button-height) + 20px) 15px 0px 15px;
	}
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu {
		background-color: unset;
	}
	body.page.lp #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link {
		height: auto;
		padding: 10px;
		line-height: 1.2;
	}
	body.page.lp #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		background: unset;
	}
	body.page.lp #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		padding: 10px;
		color: #fff;
		line-height: 1.2;
    font-weight: 400;
	}
	body.page.lp #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		position: absolute;
		top: calc(50% - (24px / 2));
		right: 10px;
	}
	body.page.lp #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
		background: unset;
	}
	body.page.lp #header-nav-menu li.mega-menu-item:has(#off-canvas-menu-search) {
		margin-top: 20px;
		margin-bottom: 40px;
	}
}

/* Restyle Max Mega Menu above tablet breakpoint */
@media (min-width: 1099px) {
	body.page.lp #header-nav-menu .menu-main_menu-container,
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1.mega-menu-wrap {
	    display: flex;
	    justify-content: right;
	    background-color: unset;
	}
	body.page.lp #header-nav-menu .menu,
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
	    margin: 0;
	    display: flex;
	    flex-direction: row;
	    list-style-type: none;
	}
	body.page.lp #header-nav-menu .menu-item,
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item {
	    position: relative;
	    padding: 0;
	    border: none;
	}
	body.page.lp #header-nav-menu .menu-item {
	    overflow: hidden;
	}
	body.page.lp #header-nav-menu .menu-item > .sub-menu {
	    position: absolute;
	}
	body.page.lp #header-nav-menu .menu-item > a,
	body.page.lp #header-nav-menu .menu-item > a:is(:hover, :focus, :active),
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link,
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link:is(:hover, :focus, :active) {
	    height: auto;
	    padding: 15px 20px;
	    /* font-size: 20px; */
	    line-height: 1;
	    font-weight: 700;
	    color: #fff;
	}
	body.page.lp #header-nav-menu .menu-item > a:is(:hover, :focus, :active),
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link:is(:hover, :focus, :active) {
	    background-color: unset;
	}
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	    display: none;
	}
	body.page.lp #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu {
	    background: rgba(255, 255, 255, 0.93);
	    backdrop-filter: blur(4px); /* NOTE: It would be great to use this here, but it won't work when an ancestor also has a backdrop-filter */
	}
	body.page.lp #header-nav-menu li.mega-menu-item:has(#off-canvas-menu-search) {
		display: none;
	}
}

/* Black-on-light header version */
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #header-logo figure {
    background-color: #000;
    mask-image: url(https://vantagevinyl.com/wp-content/uploads/2020/07/Vantage-Vinyl_stacked_tagline_reverse-C-1.png);
		mask-size: cover;
		mask-repeat: no-repeat;
		-webkit-mask-image: url(https://vantagevinyl.com/wp-content/uploads/2020/07/Vantage-Vinyl_stacked_tagline_reverse-C-1.png);
		-webkit-mask-size: cover;
		-webkit-mask-repeat: no-repeat;
}
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #header-logo img {
    opacity: 0;
}
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) .header-search .widget_search .search-form {
    border-color: #000;
}
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) .header-search .widget_search .search-form::before {
    color: #000;
}
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) .header-search .widget_search .search-form > input {
    color: #000;
}
body.page.lp #header:not(:has(+ .vc_row-full-width + .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #000;
}
@media (max-width: 1100px) {
    body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
        color: #000;
	}
}
@media (min-width: 1099px) {
    body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #header-nav-menu .menu-item > a,
    body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #header-nav-menu .menu-item > a:is(:hover, :focus, :active),
    body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link,
    body.page.lp #header:not(:has(+ .vc_row-full-width +  .vc_row.text-color-reverse)):not(:has(> .vc_column_container.opaque)) #header-nav-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link:is(:hover, :focus, :active) {
        color: #000;
    }
}

/* Hide plugin-provided global site search menu--we are using a search widget for the custom landing page header */
.astm-search-menu {
    display: none !important;
}
body.page.lp #header-nav .widget_nav_menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}
body.page.lp #header-nav .widget_nav_menu ul > li {
  height: auto;
  margin: 0;
  padding: 10px;
}
/* Off-canvas nav at the tablet breakpoint */
@media (max-width: 1100px) {
    :root {
        --vv-header-height: 115px;
    }
    body.page.lp #header-logo-col {
    }
    body.page.lp #header-search-col {
        display: none;
    }
    body.page.lp #header-nav-col {
        width: auto;
        flex: 1 1 auto;
    }
    body.page.lp #header-nav-menu {
        /*display: none;*/
    }
}
@media (max-width: 768px) {
    :root {
        --vv-header-height: 90px;
    }
		body.page.lp #header > .vc_column_container {
			justify-content: center;
		}
		body.page.lp #header > .vc_column_container > .vc_column-inner {
			padding-top: 0;
		}
    body.page.lp #header-logo img {
        height: 60px;
    }
}



/** HERO **/
/* Ensure a somewhat consistent minimum height for the hero */
body.page.lp #intro > .vc_column_container > .vc_column-inner > .wpb_wrapper > .vc_row {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


body.page.lp #vantage-vinyl-verified-mark {
}
body.page.lp #vantage-vinyl-verified-mark .lp-img {
}
body.page.lp #benefits,
body.page.lp #resources,
body.page.lp #ceu-course {
}
body.page.lp #benefits-col-content,
body.page.lp #resources-col-content,
body.page.lp #ceu-course-col-content {
  width: auto;
  flex: 1 1 auto;
}
body.page.lp #benefits-col-images,
body.page.lp #resources-col-images,
body.page.lp #ceu-course-col-images {
  width: 33%;
  flex: 0 0 33%;
}
body.page.lp #benefits-col-images > .vc_column-inner > .wpb_wrapper,
body.page.lp #resources-col-images > .vc_column-inner > .wpb_wrapper,
body.page.lp #ceu-course-col-images > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
body.page.lp #benefits .lp-img img,
body.page.lp #resources .lp-img img,
body.page.lp #ceu-course .lp-img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
    body.page.lp #benefits.lp-row-flex,
    body.page.lp #resources.lp-row-flex,
    body.page.lp #ceu-course.lp-row-flex {
        flex-direction: column;
    }
    body.page.lp #benefits-col-content,
    body.page.lp #benefits-col-images,
    body.page.lp #resources-col-content,
    body.page.lp #resources-col-images,
    body.page.lp #ceu-course-col-content,
    body.page.lp #ceu-course-col-images {
        width: 100%;
        flex: 0 0 100%;
    }
    body.page.lp #benefits-col-images > .vc_column-inner > .wpb_wrapper,
    body.page.lp #resources-col-images > .vc_column-inner > .wpb_wrapper,
    body.page.lp #ceu-course-col-images > .vc_column-inner > .wpb_wrapper {
        flex-direction: row;
    }
    body.page.lp #benefits .lp-img img,
    body.page.lp #resources .lp-img img,
    body.page.lp #ceu-course .lp-img img {
        aspect-ratio: 4 / 3;
    }
}
@media (max-width: 660px) {
    body.page.lp #benefits-col-images > .vc_column-inner > .wpb_wrapper,
    body.page.lp #resources-col-images > .vc_column-inner > .wpb_wrapper,
    body.page.lp #ceu-course-col-images > .vc_column-inner > .wpb_wrapper {
        flex-direction: column;
    }
}

body.page.lp #how-it-works-items {
}
body.page.lp .how-it-works-item > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 25px;
}
body.page.lp .how-it-works-item .lp-img {
  width: 50%;
  min-width: 150px;
  max-width: 225px;
}
body.page.lp .how-it-works-item .lp-img figure {
  border-radius: 99999px;
  overflow: hidden;
}
body.page.lp .how-it-works-item .lp-img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
body.page.lp .how-it-works-item .lp-grid-item-content {
  width: 100%;
}
body.page.lp .how-it-works-item h3 {
}
body.page.lp .how-it-works-item p {
}

/** OLD UNUSED SECTION--REMOVE AFTER APPROVAL **/
/*
body.page.lp #next-step {
}
body.page.lp #next-step .lp-img img {
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  object-position: center;
}
*/


/** CONTACT **/
body.page.lp #contact #contact-form-col h3 {
    color: #fff;
    text-align: center;
}



/** FORM **/
body.page.lp .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
body.page.lp .wpcf7-form .row {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
body.page.lp .wpcf7-form .row::before,
body.page.lp .wpcf7-form .row::after {
    content: unset;
    display: none;
}
body.page.lp .wpcf7-form .wpcf7-form-control-wrap {
    margin-top: 0;
}
body.page.lp .wpcf7-form .cf7sr-g-recaptcha {
    margin-top: 0;
}
/* Fix Contact Form 7's dumb wrapping of form inputs, even multiple inputs, in p tags */
body.page.lp .wpcf7-form .row > p {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}
body.page.lp .wpcf7-form input[type="text"],
body.page.lp .wpcf7-form input[type="password"],
body.page.lp .wpcf7-form input[type="email"],
body.page.lp .wpcf7-form input[type="url"],
body.page.lp .wpcf7-form input[type="search"],
body.page.lp .wpcf7-form input[type="tel"],
body.page.lp .wpcf7-form input[type="number"],
body.page.lp .wpcf7-form input[type="date"],
body.page.lp .wpcf7-form input[type="time"],
body.page.lp .wpcf7-form input[type="week"],
body.page.lp .wpcf7-form input[type="month"],
body.page.lp .wpcf7-form textarea {
    border-radius: 5px;
}


/** FOOTER **/
body.page.lp #footer,
body.page.lp #footer-contact-col,
body.page.lp #footer-contact-col :is(*, p),
body.page.lp #footer-nav-col,
body.page.lp #footer-nav-col ul,
body.page.lp #footer-nav-col ul > li,
body.page.lp #footer-nav-col ul > li * {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
}
body.page.lp #footer-copyright,
body.page.lp #footer-copyright :is(*, p) {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    text-align: right;
}
body.page.lp #footer-nav-col ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
body.page.lp #footer-nav-col ul > li {
    margin: 0 0 0.25em 0;
    padding: 0;
}
body.page.lp #footer a,
body.page.lp #footer a:is(:hover, :focus, :active) {
}
body.page.lp #footer a:is(:hover, :focus, :active) {
    color: #e8ac00;
}
body.page.lp #footer .footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
/* Prevent WP Bakery background pseudo-elements from adding gap at start and end */
body.page.lp #footer .footer-cols::before,
body.page.lp #footer .footer-cols::after {
  position: absolute;
}
body.page.lp #footer .footer-col {
    width: 100%;
}
body.page.lp #footer-logo {
    margin-bottom: 50px !important;
}
body.page.lp #footer-social {
}
body.page.lp ul.social-icons {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: right;
    align-items: end;
    gap: 15px;
    list-style-type: none;
}
body.page.lp ul.social-icons > li {
    margin: 0;
    padding: 0;
}
body.page.lp .social-icon {
    display: block;
    cursor: pointer;
}
body.page.lp .social-icon:is(:hover, :focus, :active)::before {
    color: #e8ac00;
}
body.page.lp .social-icon-facebook::before {
    display: block;
    width: 40px;
    height: 37px;
    color: #4267B2;
    font-size: 35px;
    line-height: 1;
    text-align: center;
}
body.page.lp .social-icon-linkedin::before {
    display: block;
    width: 40px;
    height: 40px;
    color: #0072b1;
    font-size: 40px;
    line-height: 1;
    text-align: center;
}
body.page.lp .social-icon:is(:hover, :focus, :active) {
}
@media (max-width: 768px) {
    body.page.lp #footer .footer-cols {
        grid-template-columns: 100%;
    }
    body.page.lp #footer .footer-col {
        width: 100%;
    }
    body.page.lp #footer-logo-col {
        grid-row: 1;
    }
    body.page.lp #footer-logo {
        text-align: left;
    }
    body.page.lp #footer-logo img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    body.page.lp ul.social-icons {
        justify-content: left;
    }
		body.page.lp #footer-copyright :is(*, p) {
        text-align: left !important;
    }
}

/** GLOBAL SITE FOOTER **/
body.page.lp .footer-area #contact #text-5 > * {
    display: none;
}


.plus-mark {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 200px;
	height: 200px;
	background-color: #fff;
	opacity: 0.33;
	mask-image: url('/wp-content/uploads/2025/10/plus-mark.svg');
	mask-size: cover;
	mask-repeat: no-repeat;
	-webkit-mask-image: url('/wp-content/uploads/2025/10/plus-mark.svg');
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	/* Disable any globally set transitions */
	-webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
/** END STYLES FOR LANDING PAGES **/




























/**
 * PROGRESS REPORT STYLES
 */
:root {
	--content-section-padding-top: 75px;
	--content-section-padding-bottom: 45px;
	--content-section-padding-horz: 15px;
	/* --vv-content-width-max: 1160px; */
	--sponsors-logos-grid-gap-horz: 9%;
}
/** GLOBAL CONTENT STYLES **/
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal),
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) p,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ul,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ol,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) li {
	color: #000000;
	font-family: "PT Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: normal;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) :is(h1, h2, h3, h4, h5, h6, p, ul, ol, li, blockquote):not(:last-child) {
	/* margin-bottom: 15px; */
	margin-bottom: 0.5em;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) h1 {
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
	font-size: 58px;
	line-height: 1.2;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) h2 {
	color: #de7a1c;
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) :not(.lp-button) > a,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) :not(.lp-button) > a:is(:hover, :focus, :active) {
	color: #1983c6;
	text-decoration: underline !important; /* Required to override !important in Elementor or theme */
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) :not(.lp-button) > a:is(:hover, :focus, :active) {
	color: #1983c6;
	text-decoration: underline !important; /* Required to override !important in Elementor or theme */
	cursor: pointer;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ul,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ol {
    margin: 0;
    padding: 0;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ul {
		list-style-type: disc;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ol {
		list-style-type: numeric;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ul > li,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ol > li {
    margin: 0 0 0 1em;
    padding: 0;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) ol {
		list-style-type: numeric;
}
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) .text-color-reverse,
body.page.progress-report :is(.moon-shop-page-content, .jjll-modal) .text-color-reverse * {
	color: #ffffff;
}

/** HEADER **/
body.page.progress-report .header-search {
	display: none;
}

body.page.progress-report .lp-button:last-child {
	margin-bottom: 0;
}
body.page.progress-report .lp-button button,
body.page.progress-report .lp-button a,
.wpcf7-form input[type="button"],
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="reset"] {
  width: auto;
  height: auto;
  padding: 0.54em 1.5em 0.66em 1.5em !important;
  color: #fff;
  background-color: #0093d6;
  border: none;
  border-radius: 99999px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  transiton: all 0.2s ease;

  /* Todd's direction */
  background-color: #e8ac00;
  border-radius: 0px;
	font-size: 14px;
}
body.page.progress-report .wpb_raw_html.hidden {
	display: none;
}
body.page.progress-report .text-cols-3 > .wpb_wrapper {
	columns: 3;
	column-gap: calc(var(--vv-content-width-max) * 0.05);
}

/** BACKGROUND-ANCHORED ELEMENTS **/
body.page.progress-report .bkgd-anchor-container {
	overflow: hidden;
}
body.page.progress-report .bkgd-anchor {
	z-index: 10;
}

/** PARALLAX PLUS MARKS **/
body.page.progress-report .wpb_wrapper:has(> .plus-mark) {
	position: relative;
}
body.page.progress-report .plus-mark {
	--left: 50%;
	--top: 50%;
	--width: 200px;
	position: absolute;
	left: calc(var(--left) - (var(--width) / 2));
	top: calc(var(--top) - (var(--width) / 2));
	width: var(--width);
	height: var(--width);
	background-color: #fff;
	opacity: 0.33;
	mask-image: url('/wp-content/uploads/2025/10/plus-mark.svg');
	mask-size: cover;
	mask-repeat: no-repeat;
	-webkit-mask-image: url('/wp-content/uploads/2025/10/plus-mark.svg');
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	/* Disable any globally set transitions */
	-webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
body.page.progress-report .plus-mark figure {
	display: none; /* The plus mark in the WP Bakery Single Image element is just a placeholder for the backend builder, so hide it. Instead, the plus mark is rendered using a mask image on the parent element so the color can be controlled vis CSS. */
}
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report ul.list-with-plus-mark-markers,
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report ol.list-with-plus-mark-markers {
	padding: 0;
	list-style-type: none;
}
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report ul.list-with-plus-mark-markers > li,
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report ol.list-with-plus-mark-markers > li {
	position: relative;
	margin: 0 0 2em 0;
	padding: 0 0 0 calc(32px + 1em);
	line-height: normal;
}
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report ul.list-with-plus-mark-markers > li::before,
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report ol.list-with-plus-mark-markers > li::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 32px;
	height: 32px;
	display: inline-block;
	background-color: #1983c6;
	mask-image: url('/wp-content/uploads/2025/10/plus-mark.svg');
	mask-size: cover;
	mask-repeat: no-repeat;
	-webkit-mask-image: url('/wp-content/uploads/2025/10/plus-mark.svg');
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
}

/** BOULANGERIE CAROUSELS **/
:root {
	/* We need !important here because the Swiper.JS stylesheet loads after this */
	--swiper-navigation-size: 30px !important; /* 44px default */
	--swiper-navigation-top-offset: 50% !important; /* 50% default */
	/* --swiper-navigation-sides-offset: -60px !important; /* 10px default */
	--swiper-navigation-sides-offset: -5px !important; /* 10px default; And adjust the padding-left/padding-right on .boulangerie-carousel */
}
body.page.progress-report .boulangerie-carousel {
	/* overflow: visible; /* NOTE: This is only needed if the controls are rendered inside the carousel container but are positioned, absolutely or otherwise, outside its bounds */
}
body.page.progress-report .boulangerie-carousel-nav-button-prev,
body.page.progress-report .boulangerie-carousel-nav-button-next {
	/* width: 30px; */
	/* height: 30px; */
	margin: 5px; /* Prevents :focus and :active outline and outline-offset from being clipped */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	border-radius: 50%;
}
body.page.progress-report .boulangerie-carousel-nav-button-prev {
	background-image: url('/wp-content/uploads/2025/11/carousel-nav-button-left.svg');
}
body.page.progress-report .boulangerie-carousel-nav-button-next {
	background-image: url('/wp-content/uploads/2025/11/carousel-nav-button-right.svg');
}
body.page.progress-report .boulangerie-carousel-nav-button-prev:hover,
body.page.progress-report .boulangerie-carousel-nav-button-next:hover {
	background-position: 0px 50%;
}
body.page.progress-report .boulangerie-carousel-nav-button-prev:focus-visible,
body.page.progress-report .boulangerie-carousel-nav-button-next:focus-visible {
	outline: 3px solid #e7ad22;
	outline-offset: 2px;
}
body.page.progress-report .boulangerie-carousel-nav-button-hidden {
}
body.page.progress-report .boulangerie-carousel-nav-disabled .boulangerie-carousel-nav-button-prev,
body.page.progress-report .boulangerie-carousel-nav-disabled .boulangerie-carousel-nav-button-next,
body.page.progress-report .boulangerie-carousel-nav-button-disabled,
body.page.progress-report .boulangerie-carousel-nav-button-locked {
	background-position: 0px 100% !important;
	outline: none;
}

/** CHARTS **/
body.page.progress-report .chart-container h2.chart-heading {
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
}
.chart-container .chart-legend-label {
	font-family: "PT Sans", sans-serif;
	font-weight: 400;
}
.chart-container .chart-legend-label .chart-legend-marker {
	width: 30px;
	height: 20px;
}
body.page.progress-report .chart-container.chart-donut-vv h2.chart-heading {
	text-align: left;
}
body.page.progress-report .chart-container.chart-donut-vv .chart-legend-label .chart-legend-marker {
	width: 22px;
	height: 22px;
}
.chart-container .chart-datasets-select-label {
	margin: 0;
	font-family: "PT Sans", sans-serif;
  font-weight: 400;
}
#chart-company-compliance.chart-container {
	/* Prevent flash of wrong size */
	width: 100%;
}
#chart-company-compliance.chart-container > .vc_column_container {
	/* Prevent flash of wrong size */
	width: 100%;
}
#chart-company-compliance.chart-container > .vc_column_container > .vc_column-inner {
	/* Prevent flash of wrong size */
	width: 100%;
}
#chart-company-compliance.chart-container > .vc_column_container > .vc_column-inner > .wpb_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;

	/* Prevent flash of wrong size */
	width: 100%;
}
.wpb_raw_html:has(#chart-company-compliance-chart.chart-chart) {
	width: 100%;
}
#chart-company-compliance-chart.chart-chart {
  width: 100%;
  /* max-width: 880px; */
  margin: 0 auto;
	aspect-ratio: 2 / 1;

	/* max-width: 990px; /* 15% smaller max-width per True */
	/* max-width: 1024px; /* "Bump size up" per true */

	/* Prevent flash of wrong size */
	position: relative;
	width: 100%;
	max-width: 1024px;
	aspect-ratio: 2 / 1;
}
#chart-company-compliance-chart canvas {
	width: 100% !important;
	height: auto !important;

	/* Prevent flash of wrong size */
	position: absolute;
	inset: 0; /* Modern equivalent of setting top/left */
	width: 100% !important;
	height: 100% !important;
}
.wpb_raw_html:has(#chart-company-compliance-controls) {
	width: 100%;
}
.chart-container.chart-bar-vert-vv .chart-datasets-select-wrapper,
#chart-company-compliance-controls .chart-datasets-select-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}
.chart-container.chart-bar-vert-vv .chart-legend {
	justify-content: center;
}
.chart-container.chart-bar-vert-vv .chart-legend-labels {
	max-width: 100%;
	gap: 15px 55px;
}
body.page.progress-report .chart-container.chart-bar-vert-vv .chart-legend-label {
	margin: 0;
	flex: 0 0 auto;
	align-items: start;
	font-size: 16px;
}
body.page.progress-report .chart-container.chart-bar-vert-vv .chart-legend-label:last-child {
	flex: 1 1 auto;
}
body.page.progress-report .chart-container.chart-bar-vert-vv .chart-legend-label:last-child .chart-legend-marker {
	flex: 0 0 auto;
	width: 38px;
	height: calc((20px + 3px) / 2);
	margin-bottom: calc((20px + 3px) / 2);
	background-image: linear-gradient(to right, #1983c6 55%, #1983c600 0%);
  background-position: 0px bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
/* Chart legend notes */
.chart-container.chart-bar-stacked-horz-vv .chart-legend-wrapper {
	width: fit-content;
	margin: 0 auto 25px auto;
}
body.page.progress-report .chart-legend-notes {
}
body.page.progress-report .chart-legend-notes ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
body.page.progress-report .chart-legend-notes ul > li {
	margin: 0 0 0.5em 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	font-style: italic;
}
body.page.progress-report .chart-legend-notes ul > li:last-child {
	margin-bottom: 0;
}
#chart-company-compliance-controls .chart-legend-notes {
	max-width: fit-content;
}
.chart-container.chart-donut-vv {
	width: 100%;
	max-width: unset;
	display: flex;
}
.chart-container.chart-donut-vv > .vc_column_container:has(.chart-legend) {
	width: unset;
	max-width: unset;
	flex: 0 0 auto;
}
.chart-container.chart-donut-vv .chart-legend-labels {
	gap: 27px 15px;
}
body.page.progress-report .chart-container.chart-donut-vv .chart-legend-label {
	margin: 0;
}
.chart-container.chart-donut-vv > .vc_column_container:has(canvas) {
	width: unset;
	max-width: unset;
	flex: 1 1 auto;
}
#industry-participation .chart-container .controls-col > .vc_column-inner {
	padding-top: var(--content-section-padding-bottom);
	padding-bottom: var(--content-section-padding-bottom);
}
#industry-participation .chart-container .chart-col > .vc_column-inner {
	height: 100%;
}
#industry-participation .chart-container .chart-col > .vc_column-inner > .wpb_wrapper {
	height: 100%;
}
#industry-participation .chart-container .chart-col > .vc_column-inner > .wpb_wrapper > .wpb_content_element {
	height: 100%;
}
#industry-participation .chart-container .chart-col > .vc_column-inner > .wpb_wrapper > .wpb_content_element > .wpb_wrapper {
	width: 100%;
	height: 100%;
	aspect-ratio: 1.2 / 1;
  overflow: hidden;

	aspect-ratio: unset;
}
#chart-industry-participation-chart {
	width: 100%;
	height: 100%;

	display: flex;
	justify-content: center;
}
#chart-industry-participation-chart canvas {
	width: 100% !important; /* !important needed to override attributes and element styles set by Chart.js */
	height: auto !important; /* !important needed to override attributes and element styles set by Chart.js */

	/* max-width: 600px !important; */

	height: 100% !important;
	max-height: 550px !important;
  width: auto !important;
	max-width: 100% !important;
}
.chart-container.chart-bar-stacked-horz-vv {
	width: 100%;
	max-width: unset;
}
.wpb_raw_html:has(.chart-legend) {
	width: fit-content;
	margin: 0;
}
.wpb_raw_html:has(.chart-legend) .wpb_wrapper {
	width: fit-content;
}
.chart-container.chart-bar-stacked-horz-vv .chart-chart {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
}
.chart-container.chart-bar-stacked-horz-vv .chart-legend {
	width: fit-content;
	justify-content: center;
}
body.page.progress-report .chart-container.chart-bar-stacked-horz-vv .chart-legend-labels {
	width: fit-content;
	max-width: 100%;
	gap: 15px 55px;
}
body.page.progress-report .chart-container.chart-bar-stacked-horz-vv .chart-legend-label {
	margin: 0;
	flex: 0 0 auto;
	align-items: start;
	font-size: 16px;
}
body.page.progress-report .chart-container.chart-bar-stacked-horz-vv .chart-legend-label:last-child {
	flex: 1 1 auto;
}
body.page.progress-report .chart-container.chart-bar-stacked-horz-vv .chart-datasets-select-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}
body.page.progress-report #chart-environmental-stewardship-chart canvas {
	width: 100% !important;
	height: auto !important;
}
/* Heading icons for Measuring What Matters charts */
body.page.progress-report #chart-environmental-stewardship h2.chart-heading::before,
body.page.progress-report #chart-social-diligence h2.chart-heading::before,
body.page.progress-report #chart-economic-soundness h2.chart-heading::before,
body.page.progress-report #chart-collaboration h2.chart-heading::before,
body.page.progress-report #chart-open-communication h2.chart-heading::before {
	content: '';
	/* position: absolute; */
	/* top: 0px; */
	/* left: 0px; */
	width: auto;
	height: 50px;
	margin: 0 20px 0 0;
	display: inline-block;
	vertical-align: middle;
	background-color: #1983c6;
	mask-size: cover;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	-webkit-mask-repeat: no-repeat;
}
body.page.progress-report #chart-environmental-stewardship h2.chart-heading::before {
	aspect-ratio: 28 / 22;
	mask-image: url('/wp-content/uploads/2025/11/icon-environmental-stewardship.svg');
	-webkit-mask-image: url('/wp-content/uploads/2025/11/icon-environmental-stewardship.svg');
}
body.page.progress-report #chart-social-diligence h2.chart-heading::before {
	aspect-ratio: 18 / 22;
	mask-image: url('/wp-content/uploads/2025/11/icon-social-diligence.svg');
	-webkit-mask-image: url('/wp-content/uploads/2025/11/icon-social-diligence.svg');
}
body.page.progress-report #chart-economic-soundness h2.chart-heading::before {
	aspect-ratio: 22 / 22;
	mask-image: url('/wp-content/uploads/2025/11/icon-economic-soundness.svg');
	-webkit-mask-image: url('/wp-content/uploads/2025/11/icon-economic-soundness.svg');
}
body.page.progress-report #chart-collaboration h2.chart-heading::before {
	aspect-ratio: 37 / 22;
	mask-image: url('/wp-content/uploads/2025/11/icon-collaboration.svg');
	-webkit-mask-image: url('/wp-content/uploads/2025/11/icon-collaboration.svg');
}
body.page.progress-report #chart-open-communication h2.chart-heading::before {
	aspect-ratio: 30 / 22;
	mask-image: url('/wp-content/uploads/2025/11/icon-open-communications.svg');
	-webkit-mask-image: url('/wp-content/uploads/2025/11/icon-open-communications.svg');
}

/** HERO **/
/* Ensure a somewhat consistent minimum height for the hero */
body.page.progress-report #intro > .vc_column_container > .vc_column-inner > .wpb_wrapper > .vc_row {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

/** HOW VERIFICATION WORKS **/
body.page.progress-report #how-verification-works {
	padding-top: calc(var(--content-section-padding-top) * 1.2);
	padding-bottom:  calc(var(--content-section-padding-top) * 0.8);
}
body.page.progress-report #how-verification-works .text-cols-3 {
	margin: 0;
}
body.page.progress-report #chart-company-compliance.chart-container .chart-legend-labels {}
body.page.progress-report .chart-container.chart-donut-vv {
	/* .chart-container has width properties that break the WPBakery row/column in this instance, so unset them */
	width: unset;
	max-width: unset;
}
body.page.progress-report .chart-container.chart-donut-vv #chart-industry-participation-legend {
	margin: 0 0 50px 0;
}

/** ALL 2-COLUMN IMAGE + CONTENT SECTIONS **/
body.page.progress-report .content-row > .content-col > .vc_column-inner {
	padding-top: var(--content-section-padding-top);
	padding-bottom: calc(var(--content-section-padding-top) * 0.8);
}
body.page.progress-report .content-row > .content-col > .vc_column-inner > .wpb_wrapper > :last-child {
	margin-bottom: 0;
}
body.page.progress-report .content-row > .img-col {
	aspect-ratio: 4 / 3;
}
body.page.progress-report #highlights .content-row,
body.page.progress-report #advancing-sustainability .content-row,
body.page.progress-report #commitment-to-recycling .content-row {
}
body.page.progress-report #highlights .content-col,
body.page.progress-report #advancing-sustainability .content-col,
body.page.progress-report #commitment-to-recycling .content-col {
}
body.page.progress-report #highlights .content-col > .vc_column-inner,
body.page.progress-report #advancing-sustainability .content-col > .vc_column-inner,
body.page.progress-report #commitment-to-recycling .content-col > .vc_column-inner {
}
body.page.progress-report #highlights .img-col,
body.page.progress-report #advancing-sustainability .img-col,
body.page.progress-report #commitment-to-recycling .img-col {
}

/** YEAR IN REVIEW **/
/* Carousel */
body.page.progress-report #year-in-review-carousel.boulangerie-carousel {
	/* height: 350px; */
	width: calc(100% - (55px * 2));

	width: 100%;
	padding-left: 55px;
	padding-right: 55px;
}
/* Carousel item */
body.page.progress-report #year-in-review-carousel .boulangerie-carousel-item {
	/* padding: 0 calc(var(--vv-content-width-max) * 0.05) 0 0; */

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}
body.page.progress-report #year-in-review-carousel .boulangerie-carousel-item-inner {
	width: fit-content; /* Shrink to width of content so content can be centered */
}
body.page.progress-report #year-in-review-carousel .stat-card-label {
	width: 66%; /* This width will be overridden with a width calculated from the slide width via JavaScript */
	margin: 0;
	padding: 0 0 0 10px;
	text-align: left;
}
body.page.progress-report #year-in-review-carousel .stat-card-label p {
	display: inline-block;
}
/* Pagination */
body.page.progress-report #year-in-review-carousel .boulangerie-carousel-pag {
	bottom: calc(-1 * (24px + 35px)); /* Height of pagination + margin */


	bottom: 0;


	height: 24px;
	padding: 0 0 6px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: end;
	gap: 0 6px;
}
body.page.progress-report #year-in-review-carousel .boulangerie-carousel-pag > .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}
/* Navigation and pagination visibility */
@media (min-width: 660px) {
	body.page.progress-report #year-in-review-carousel .boulangerie-carousel-pag {
		display: none;
	}
}
@media (max-width: 659px) {
	body.page.progress-report #year-in-review-carousel.boulangerie-carousel {
		margin-bottom: calc(24px + 35px); /* Accommodate pagination when visible; height of pagination + margin */


		margin-bottom: 0;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: calc(24px + 35px); /* Accommodate pagination when visible; height of pagination + margin */
	}
	body.page.progress-report #year-in-review-carousel .boulangerie-carousel-nav-button-prev,
	body.page.progress-report #year-in-review-carousel .boulangerie-carousel-nav-button-next {
		display: none;
	}
}


/* Airbnb Lottie player animations */
body.page.progress-report #year-in-review .wpb_raw_html:has(lottie-player) {
	width: fit-content;
}
body.page.progress-report #year-in-review lottie-player {
	display: block;
	/* A fixed height that is 47% of the .swiper-slide width will be set via JavaScript. The aspect-ratio to ensure the correct size of the Lottie animation should be set on the lottie-player element itself. */
}



/** MEASURING WHAT MATTERS **/
body.page.progress-report #measuring-what-matters {
	padding-top: calc(var(--content-section-padding-top) * 1.2);
	padding-bottom: calc(var(--content-section-padding-top) * 0.8);
}
body.page.progress-report #measuring-what-matters > .vc_column_container > .vc_column-inner {
	padding-top: 0;
	padding-bottom: 0;
}
.vvgp-pillars-cols {
}
.vvgp-pillars-col {
}
.vvgp-pillars-icon figure.vc_figure {
	margin: 0 0 7px 0;
}
.vvgp-pillars-icon img.vc_single_image-img {
	width: auto;
	min-width: unset;
	max-width: unset;
	/* height: 28px; /* Todd's spec */
	height: 36px; /* Increased size per True */
	min-height: unset;
  max-height: unset;
	display: block;
	filter: invert(39%) sepia(96%) saturate(1067%) hue-rotate(178deg) brightness(84%) contrast(83%); /* Recolor #000000 SVG to #1983c6 */
}
.vvgp-pillars-description,
.vvgp-pillars-description * {
}
/* Boulangerie Carousel */
body.page.progress-report #measuring-what-matters-carousel.boulangerie-carousel {
	/* height: 660px; */



	width: 100%;
	padding-left: 55px;
	padding-right: 55px;
}
body.page.progress-report #measuring-what-matters-carousel .chart-datasets-select-wrapper {}
/* Navigation and pagination visibility */
body.page.progress-report #measuring-what-matters-carousel .boulangerie-carousel-pag {
	bottom: calc(-1 * (24px + 35px)); /* Height of pagination + margin */



	bottom: 0;
}
@media (min-width: 768px) {
	body.page.progress-report #measuring-what-matters-carousel .boulangerie-carousel-pag {
		display: none;
	}
}
@media (max-width: 767px) {
	body.page.progress-report #measuring-what-matters-carousel.boulangerie-carousel {
		margin-bottom: calc(24px + 35px); /* Accommodate pagination when visible; height of pagination + margin */



		margin-bottom: 0;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: calc(24px + 35px); /* Accommodate pagination when visible; height of pagination + margin */
	}
	body.page.progress-report #measuring-what-matters-carousel .boulangerie-carousel-nav-button-prev,
	body.page.progress-report #measuring-what-matters-carousel .boulangerie-carousel-nav-button-next {
		display: none;
	}
}

/** PAST PROGRESS REPORTS **/
body.page.progress-report #past-progress-reports {
	padding-top: 0;
	padding-bottom: var(--content-section-padding-bottom);
}
/* Progress Reports downloads links list */
body.page.progress-report #past-progress-reports ul {
	list-style-type: none;
}
body.page.progress-report #past-progress-reports ul > li {
	margin: 0 0 0.5em 0;
	padding: 0;
}
body.page.progress-report #past-progress-reports ul > li:last-child {
	margin-bottom: 0;
}
/* Progress Reports downloads links */
body.page.progress-report #past-progress-reports ul > li > a,
body.page.progress-report #past-progress-reports ul > li > a:is(:hover, :focus, :active) {
	font-weight: 700;
}


/** ADVANCING SUSTAINABILITY **/


/** SPONSORS **/
body.page.progress-report #sponsors-logos-row {
	padding-left: var(--content-section-padding-horz);
	padding-right: var(--content-section-padding-horz);
}
body.page.progress-report #sponsors-content-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
	/* columns: 2; */
	/* column-gap: calc(var(--vv-content-width-max) * 0.05); */
}
body.page.progress-report .sponsors-logos-grid {
	/* display: grid;
  gap: 75px 14.5%;
  grid-template-columns: repeat(4, auto); */

	display: flex;
  gap: 100px var(--sponsors-logos-grid-gap-horz);
}
body.page.progress-report .sponsors-logos-grid.vc_row::before,
body.page.progress-report .sponsors-logos-grid.vc_row::after {
	display: none;
}
body.page.progress-report .sponsors-logos-grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
body.page.progress-report .sponsors-logos-grid-item > .vc_column-inner {
	padding: 0;
}
body.page.progress-report .sponsors-logos-logo {
	display: flex;
	justify-content: center;
  align-items: end;
}
body.page.progress-report .sponsors-logos-logo[class*="modal-trigger-"] {
	cursor: pointer;
}
body.page.progress-report .sponsors-logos-logo > figure.vc_figure {
	width: 100%;
	aspect-ratio: 2 / 1; /* TODO: If new logos are added, you will need to make sure to put the tallest aspect ratio of all images in the grid here! */
}
body.page.progress-report .sponsors-logos-logo > figure.vc_figure > .vc_single_image-wrapper {
	width: 100%;
	height: 100%;
}
body.page.progress-report .sponsors-logos-logo > figure.vc_figure > .vc_single_image-wrapper > img {
  width: 100%;
	height: 100%;
  object-fit: contain;
	object-position: center;
}
/* Sponsor profile modals */
body.page.progress-report .jjll-modal .jjll-modal-content {
	/* columns: 2; */
	/* column-gap: 50px; */
}
body.page.progress-report .jjll-modal-content .modal-profile {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: unset !important;
	left: unset !important;
}
/* Some weird WPBakery bug adds the .vc_hidden class when the window resize with a modal open. Prevent it from setting the opacity to 0, thus hiding the modal content. */
body.page.progress-report .jjll-modal-content .modal-profile.vc_row.vc_hidden {
	opacity: 1 !important;
}
body.page.progress-report .jjll-modal-content .modal-profile > .vc_column_container {
}
body.page.progress-report .jjll-modal-content .modal-profile > .vc_column_container > .vc_column-inner {
}
body.page.progress-report .jjll-modal-content .modal-profile > .vc_column_container > .vc_column-inner > .wpb_wrapper {
	display: flex;
	flex-direction: column;
}
/* Logo */
body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo {
	order: 1;
	width: 100%;
	height: auto;
	margin-bottom: 35px !important;
}
body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo figure.vc_figure {
	width: 100%;
	height: auto;
}
body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo figure.vc_figure > .vc_single_image-wrapper {
	width: 100%;
	height: auto;
}
body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo figure.vc_figure > .vc_single_image-wrapper > img {
	width: 100%;
	height: auto;

	width: 100%;
	max-width: unset;
	height: auto;
	max-height: 160px;
  object-fit: contain;
  object-position: right center;
	transition: unset;
}
/* Content image */
body.page.progress-report .jjll-modal .modal-profile-content-img {
	order: 2;
}
/* body.page.progress-report .jjll-modal .jjll-modal-content .wpb_single_image:not(.sponsor-logo) figure.vc_figure, */
body.page.progress-report .jjll-modal .modal-profile-content-img > figure.vc_figure {
	width: 100%;
	/* aspect-ratio: 5 / 3; */
}
body.page.progress-report .jjll-modal .modal-profile-content-img > figure.vc_figure > .vc_single_image-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body.page.progress-report .jjll-modal .modal-profile-content-img > figure.vc_figure > .vc_single_image-wrapper > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
@media (max-width: 768px) {
	body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo {
		margin-bottom: 25px !important;
	}
	body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo figure.vc_figure > .vc_single_image-wrapper > img {
		max-height: 80px;
	}
	body.page.progress-report #modal-profile-sika-sarnafil.jjll-modal .wpb_single_image.sponsor-logo figure.vc_figure > .vc_single_image-wrapper > img {
		max-height: 120px;
	}
	body.page.progress-report .jjll-modal .modal-profile-content-img {
	}
	body.page.progress-report .jjll-modal .modal-profile-content-img > figure.vc_figure {
		aspect-ratio: 3 / 4;
		margin-bottom: 35px !important;
	}
	body.page.progress-report .jjll-modal .modal-profile-content-img > figure.vc_figure > .vc_single_image-wrapper {
	}
	body.page.progress-report .jjll-modal .modal-profile-content-heading h2 {
	  font-size: 36px;
	}
}
/* Text content */
body.page.progress-report .jjll-modal .modal-profile-content-heading {
	order: 3;
}
body.page.progress-report .jjll-modal .modal-profile-content-heading h2 {
	margin-bottom: 0;
	color: #de7a1c;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}
body.page.progress-report .jjll-modal .modal-profile-content-body {
	order: 4;
}
body.page.progress-report .jjll-modal .modal-profile-content-body h3 {
	margin-top: 1em;
	color: #000000;
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
}
body.page.progress-report .jjll-modal .modal-profile-content-body h4 {
	color: #000000;
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}
body.page.progress-report .jjll-modal .modal-profile-content-body p:has(+ h4) + h4 {
	margin-top: 1em;
}
body.page.progress-report .jjll-modal .modal-profile-content-body p {
	margin-bottom: 1em;
}
body.page.progress-report .jjll-modal .modal-profile-content-separator {
	height: 1px;
	margin: 35px 0;
	background: #aaaaaa;
	border: unset;
}
body.page.progress-report .jjll-modal .modal-profile-content-aside {
	order: 5;
	font-size: 0.9em;
}
body.page.progress-report .jjll-modal .modal-profile-content-aside h4 {
	color: #000000;
	font-family: "PT Sans", sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
}
body.page.progress-report .jjll-modal .modal-profile-content-aside p:has(+ h4) + h4 {
	margin-top: 1em;
}
body.page.progress-report .jjll-modal .modal-profile-content-disclaimer {
	order: 6;
}
body.page.progress-report .jjll-modal .modal-profile-content-disclaimer :is(*, p) {
	color: #666666;
	font-size: 0.8em;
}
/* Display 2-column layout for modal content on desktop and tablet */
@media (min-width: 769px) {
	body.page.progress-report .jjll-modal .jjll-modal-content .modal-profile > .vc_column_container > .vc_column-inner > .wpb_wrapper {
		display: block;
	}
	body.page.progress-report .jjll-modal .jjll-modal-content .modal-profile {}
	body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo {
		float: right;
		width: 30%;
		min-width: 300px;
		height: auto;
		margin: 0 0 25px 50px !important;
	}
	body.page.progress-report .jjll-modal .modal-profile-content-img {
		float: right;
	  width: 30%;
	  min-width: 300px;
	  margin: 0 0 25px 50px !important;
	  clear: both;
	}
	body.page.progress-report .jjll-modal .modal-profile-content-heading {}
	body.page.progress-report .jjll-modal .modal-profile-content-body {}
	body.page.progress-report .jjll-modal .modal-profile-content-aside {
		/* float: right;
	  width: 30%;
	  min-width: 300px;
	  margin: 0 0 25px 50px !important;
	  clear: both;

		padding: 0;
		border: unset; */
	}
	body.page.progress-report .jjll-modal .modal-profile-content-disclaimer {
		clear: both;
	}
}

/** GLOBAL SITE FOOTER **/
/* Unhide contact form hidden by landing page styles */
body.page.lp.progress-report .footer-area #contact #text-5 > * {
    display: block;
}

/**
 * RESPONSIVE STYLES
 */
/** DESKTOP **/
.min-1024 {
	display: none;
}
@media (min-width: 1025px) {
	.min-1024 {
		display: block;
	}
}
/** TABLET **/
@media (min-width: 769px) {
	body.page.progress-report #highlights .content-col > .vc_column-inner,
	body.page.progress-report #commitment-to-recycling .content-col > .vc_column-inner {
		padding-top: var(--content-section-padding-bottom);
		padding-bottom: var(--content-section-padding-bottom);
		padding-left: calc(var(--vv-content-width-max) * 0.05);
	}
	body.page.progress-report #commitment-to-recycling > .vc_column_container {
		padding-top: var(--content-section-padding-top);
	}
	body.page.progress-report #advancing-sustainability .content-col {
		padding-right: calc(var(--vv-content-width-max) * 0.05);
	}
}
@media (max-width: 1024px) {
	:root {
		--sponsors-logos-grid-gap-horz: calc(var(--vv-content-width-max) * 0.05); /* Match adjacent 2-column content */
	}
	body.page.progress-report #chart-company-compliance.chart-container .chart-legend-labels {
		flex-direction: column;
	}
	body.page.progress-report .chart-container.chart-bar-vert-vv .chart-legend-label:last-child .chart-legend-marker {
		width: 30px;
	  background-position: -3px bottom;
	}
	body.page.progress-report #measuring-what-matters-carousel.chart-container .chart-legend-labels {
		flex-direction: column;
	}
	/* TODO: This could be a more generic selector */
	body.page.progress-report .chart-container.chart-donut-vv #chart-industry-participation-legend {
		margin: 0 0 25px 0;
	}
	body.page.progress-report .chart-container.chart-donut-vv .chart-legend-labels {
		gap: 15px 15px;
	}
	body.page.progress-report .chart-container.chart-donut-vv .chart-legend-label {
		font-size: 16px;
	}
	body.page.progress-report .sponsors-logos-grid {
		padding-left: var(--content-section-padding-horz);
		padding-right: var(--content-section-padding-horz);
		flex-wrap: wrap;
		align-items: center;
	}
	body.page.progress-report .sponsors-logos-grid .sponsors-logos-grid-item {
		flex: 0 0 calc((100% - var(--sponsors-logos-grid-gap-horz)) / 2);
		padding: 0 25px;
	}
	body.page.progress-report .sponsors-logos-logo > figure.vc_figure {
		max-width: 350px;
	}
}

/** MOBILE **/
@media (max-width: 768px) {
	:root {
		--content-section-padding-top: 45px;
		--content-section-padding-bottom: 35px;
	}
	body.page.progress-report h1 {
		font-size: 50px;
	}
	body.page.progress-report .text-cols-3 > .wpb_wrapper {
		columns: 1;
	}
	/* Image above content on mobile for sections where image is on the right on desktop */
	body.page.progress-report .content-row:has(.content-col + .img-col) {
		flex-direction: column-reverse;
	}
	body.page.progress-report .content-row > .content-col > .vc_column-inner {
		padding-bottom: calc(var(--content-section-padding-top) * 1.5);
	}
	body.page.progress-report #chart-company-compliance-controls .chart-datasets-select-wrapper {
		justify-content: left;
	}
	body.page.progress-report #how-verification-works {
		padding-top: var(--content-section-padding-top);
		padding-bottom: var(--content-section-padding-bottom);
	}
	body.page.progress-report #measuring-what-matters {
		padding-top: var(--content-section-padding-top);
		padding-bottom: var(--content-section-padding-bottom);
	}
	.chart-container.chart-bar-stacked-horz-vv .chart-legend-labels {
		flex-direction: column;
	}
	body.page.progress-report #measuring-what-matters-carousel .chart-legend-wrapper {
		margin-left: 0;
		margin-right: 0;
	}
	body.page.progress-report #measuring-what-matters-carousel .chart-legend-wrapper > .vc_column_container > .vc_column-inner {
		padding-left: 0;
		padding-right: 0;
	}
	body.page.progress-report #measuring-what-matters-carousel .chart-datasets-select-wrapper {
		justify-content: left;
	}
	body.page.progress-report .chart-container.chart-donut-vv {
		flex-direction: column-reverse;
	}
	#industry-participation .chart-container .controls-col > .vc_column-inner {
		padding-top: 0;
	}
	body.page.progress-report #chart-environmental-stewardship h2.chart-heading::before,
	body.page.progress-report #chart-social-diligence h2.chart-heading::before,
	body.page.progress-report #chart-economic-soundness h2.chart-heading::before,
	body.page.progress-report #chart-collaboration h2.chart-heading::before,
	body.page.progress-report #chart-open-communication h2.chart-heading::before
	 {
		margin: 0 0 7px 0;
		width: 100%;
		mask-size: contain;
		mask-position: center;
	}
	body.page.progress-report #sponsors-logos-row {}
	body.page.progress-report .sponsors-logos-logo > figure.vc_figure {
	}
	body.page.progress-report .jjll-modal .jjll-modal-content {
		columns: 1;
	}
	body.page.progress-report .jjll-modal .wpb_single_image.sponsor-logo figure.vc_figure > .vc_single_image-wrapper > img {
		/* max-width: 350px; */
		object-position: left center;
	}

}
@media (max-width: 550px) {
	:root {
		--sponsors-logos-grid-gap-horz: 0px;
	}
	body.page.progress-report #sponsors-content-row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
		columns: 1;
	}
	body.page.progress-report #sponsors-logos-row {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		row-gap: 55px;
	}
	body.page.progress-report #sponsors-logos-row .sponsors-logos-grid-item {
		flex: 0 0 100%;
	}
}

/** END PROGRESS REPORT STYLES **/