/* @group @variables */

/*[class*="m-chapter-headline-price"] {
--heading-3-color: var(--color-secondary);
--heading-3-font-weight: var(--text-font-weight-bolder);
}*/

/* @end @variables */

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

/* @group @variables */

[class*="m-price"] {
--heading-3-margin-bottom: 0;
--heading-3-font-size: 1rem;
--price-padding: .75rem;
--price-border-radius: .125rem;
--price-color: var(--color-text);
}

/* @end @variables */

/* @group @m-price */

[class*="m-price"] {
padding: var(--price-padding);
background-color: var(--color-white);
border-radius: var(--price-border-radius);
color: var(--price-color);
text-align: center;
}


[class*="a-price-label"] {
font-size: 1.25rem;
font-weight: var(--text-font-weight-bold);
}

/* @end @m-price */

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

/* @group @a-price-change */

[class*="a-price-change"] {
display: grid;
justify-content: center;
align-items: end;
grid-template-columns: repeat(3, auto);
gap: .125rem;
}

[class*="a-price-change"]:before {
grid-column: 2;
grid-row: 1;
}

[class*="a-price-old-price"] {
grid-column: 1;
grid-row: 1;
}

[class*="a-price-new-price"] {
grid-column: 3;
grid-row: 1;
}

/* @end @a-price-change */

/* @group @variables */

[class*="a-price-change"] {
--price-arrow-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='hsl(0, 0%25, 27%25)' fill-rule='nonzero' d='M6.795 24.124l13.287-11.502a.517.517 0 0 0 0-.756L6.795.368a.504.504 0 0 0-.707.052L3.875 3.002a.498.498 0 0 0-.12.325.5.5 0 0 0 .177.382l10.05 8.535-10.05 8.54a.495.495 0 0 0-.175.34.511.511 0 0 0 .118.366l2.213 2.582a.498.498 0 0 0 .707.052z'/%3E%3C/svg%3E");
--price-arrow-mask-size: .75rem auto;
}

[class*="a-price-price"] {
--price-price-color: var(--color-brand);
}

[class*="m-price"]:nth-of-type(1) [class*="a-price-price"] {
--price-price-color: var(--color-secondary);
}

[class*="m-price"]:nth-of-type(2) {
--content-block-align-content: stretch;
}

[class*="a-price-old-price"],
[class*="a-price-note"] {
--text-block-font-size: .75rem;
}

[class*="a-price-price"] em {
--price-new-price-font-size: 3rem;
}

[class*="m-price"]:nth-of-type(1)  em {
--price-new-price-font-size: 3.75rem;
}

/* @end @variables */

/* @group @a-price-change */

[class*="a-price-change"]:before {
content: '';
width: 1.5rem;
height: 1.5rem;
margin-bottom: .1875rem;
background-color: currentColor;
-webkit-mask-image: var(--price-arrow-mask-image);
mask-image: var(--price-arrow-mask-image);
-webkit-mask-size: var(--price-arrow-mask-size);
mask-size: var(--price-arrow-mask-size);
-webkit-mask-position: center center;
mask-position: center center;
-webkit-mask-repeat: no-repeat;

}

[class*="a-price-old-price"] {
margin-bottom: .1875rem;
font-size: .75rem;
}

[class*="a-price-old-price"],
[class*="a-price-note"] {
font-family: var(--font-family-numeric);
}

[class*="a-price-price"] {
color: var(--price-price-color);
}

[class*="a-price-price"] em {
font-family: var(--font-family-numeric);
font-size: var(--price-new-price-font-size);
line-height: 1;
font-weight: var(--text-font-weight-price-bold);
}

/* @end @a-price-change */