/**
 * UK Line Bar Block Styles
 * 
 * Styles for the line bar block with horizontal rule and centered SVG pattern
 */

.uk-line-bar {
	position: relative;
	width: 100%;
	margin: 2rem 0;
}

.uk-line-bar-hr {
	height: 2px;
	background: #B1C9E8;
	border: none;
	margin: 0;
	padding: 0;
	opacity: 1;
}

.uk-line-bar-svg-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0 1rem;
}

.uk-line-bar-pattern {
	display: block;
	width: auto;
	height: auto;
}

