/* Style the output of a basic UL > LI Repeater lists */
/* Example is used for the 'Benefits' in 'Services' (Classes) */
.stkr-repeater-list--ul ul {
    padding: 0;
    margin-top: var(--space-10);
}
/* Add an SVG icon before the list item */
.stkr-repeater-list--ul ul li {
    margin: var(--space-5) 0;
}
.stkr-repeater-list--ul ul li > span {
    display: inline-flex;
    align-items: center;
	text-decoration: none;
}
.stkr-repeater-list--ul ul li > span::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary); /* This is the icon color */
    -webkit-mask: url('/wp-content/uploads/2026/03/icon-asterisk.svg') no-repeat center / contain;
    mask: url('/wp-content/uploads/2026/03/icon-asterisk.svg') no-repeat center / contain;
    margin-right: var(--space-10);
    flex-shrink: 0;
}

/****** REVIEWS SLIDER *****/
/* This just fixes position of the pagination bullets for the Reviews slider container */
.stkr-reviews__slider ul.splide__pagination {
    bottom: -50px;
} 


/***** NEWSLETTER CTA *****/
/* Let's make sure the button has the same height as the form fields */
.stkr-newsletter__bricks-form .bricks-button {
    height: 100%;
}
/* And remove the bottom padding */
.stkr-newsletter__bricks-form .form-group {
    padding-bottom: initial; 
}   