/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

svg {
	display: block;
}

.bricks-button:is(.bricks-background-light, .bricks-background-dark) {
	padding: 11px 15px 11px 19px;
}

.bricks-button:not(.button--no-arrow, .bricks-background-muted)::after {
	content: '';
	height: 10px;
	width: 10px;
	flex-shrink: 0;
	border-radius: 50%;
	transition-property: background, height, width, border-radius;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	background: url('/wp-content/themes/bricks-child/assets/svg/arrow-right-up-white.svg') no-repeat center / contain,
		var(--bricks-color-white);
}

.bricks-button.bricks-background-light:not(.button--no-arrow, .bricks-background-muted)::after {
	background: url('/wp-content/themes/bricks-child/assets/svg/arrow-right-up-pink.svg') no-repeat center / contain,
		var(--bricks-color-secondary-700);
}

.bricks-button:hover:not(.button--no-arrow, .bricks-background-muted)::after {
	width: 14px;
	height: 14px;
	border-radius: 0;
	background-color: transparent;
}
