/**
 * global_style
 * @version	2.0
 * @release	12-02-2023
 * @author	msolowski Marcin Sołowski
 * @website	http://msolowski.pl
 */

.global_style ol
{
	margin-left: var(--global_size_25);
}

.global_style ul
{
	margin-left: var(--global_size_25);
	list-style: square;
	list-style: none;
	margin-left: 0;
}

.global_style * > li::marker /* unlimited level */
{
	font-size: 1em;
	line-height: 0;
}

.global_style ul > li::marker /* unlimited level */
{
	color: var(--root_color_lead);
}

.global_style > ul > li > ul > li::marker /* 2 level */
{
	font-size: 1.2em;
}

.global_style > ul > li::marker /* 1 level */
{
	font-size: 1.4em;
}

.global_style * > li
{
	position: relative;
	padding-left: calc(var(--global_size_25) + var(--global_size_20));
}

.global_style * > li + li
{
	margin-top: var(--global_size_10);
}

.global_style * > li::before
{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_535_12996)'%3e%3cpath d='M5 18L12 25L28 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_535_12996'%3e%3crect width='32' height='32' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");

}