/* Accent border for accordion items when bg is white */

/* Accent border for accordion items when bg is white and flag is set */
.accordion.bg-white .accordion-item.has-border-top {
	border-top: 2px solid #93C9CB;
}
.accordion.bg-white .accordion-item.has-border-bottom {
	border-bottom: 2px solid #93C9CB;
}
.accordion.bg-tertiary .accordion-item.has-border-top {
	border-top: 2px solid white;
}
.accordion.bg-tertiary .accordion-item.has-border-bottom {
	border-bottom: 2px solid white;
}

/* Accent border for SVG icon */
.accordion-item svg {
    transition: all 0.3s ease-out;
}

