File: D:/HostingSpaces/slenders/slenders.nl/resources/sass/site/5-Components/_components.priceLabel.scss
.c-price-label {
position: relative;
@include flex(center, center, $display: inline-flex);
margin-left: 31px;
padding: 0 15px 0 0;
height: 62px;
background-color: transparent;
@include font(large, 32, semi-bold);
color: palette(primary);
border: 2px solid currentColor;
border-radius: 5px;
border-left-color: transparent;
&:before,
&:after{
$arrowWidth: 44px;
content:"";
position: absolute;
top: 7px;
left: #{$arrowWidth / -2 + 1px};
width: $arrowWidth;
height: $arrowWidth;
background: inherit;
border: inherit;
border-left-color: transparent;
border-bottom-color: transparent;
border-radius: 0 5px 0 0;
transform: rotate(225deg);
}
}
.c-price-label__main {
position: relative;
z-index: 2;
}