/*
	Theme Name:		MiWiki 2023
	Theme Part:		j4b-breadcrumb.css
	Description:	CSS-Formatierungen für die Breadcrumb-Navigation
	Author:			Stefan Kuhn
	Author URI:		https://just4business.de/
	Template:		Generatepress Child-Theme MiWiki 2023
	Version:		0.1
*/



.breadcrumb {
	display: none;
}
@media (min-width: 1080px) {
	.breadcrumb {
		display: block;
		width: 100%;
		max-width: 1034px;
		margin: 0 auto;
		font-size: 0.7em;
		font-weight: bold;
		line-height: calc( 3em * 1 / 0.7 );
		color: var(--wp-j4b-theme-color-on-background-medium);
	}
	.breadcrumb + .site.container {
		padding-top: 0;
	}
	.breadcrumblist {
		margin: 0;
	}
	.breadcrumbitem,
	.breadcrumbitem a {
		display: inline-block;
	}
	/*
	.breadcrumbitem:not(:last-of-type)::after {
		content: "\00a0\00bb\00a0";
	}
	*/
	.breadcrumbitem:not(:last-of-type)::after {
		content: "\00a0";
		display: inline-block;
		width: 1em;
		background-color: currentcolor;
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' width='1em' height='1em'%3E%3Cpath d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'%3E%3C/path%3E%3C/svg%3E");
		mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' aria-hidden='true' role='img' xmlns='http://www.w3.org/2000/svg' width='1em' height='1em'%3E%3Cpath d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'%3E%3C/path%3E%3C/svg%3E");
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
	}

	.breadcrumbitem .wp-title {
		display: none;
	}
}