.tm-header-cart {
	margin-left: 30px;
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.18s ease;
}

.tm-header-cart:hover {
	background: rgba(225, 225, 225, 0.2);
}

.tm-header-cart:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.tm-header-cart__icon {
	display: block;
	width: 32px;
	height: 32px;
}

.tm-header-cart__count {
	position: absolute;
	top: 2px;
	right: 1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: #20242a;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.tm-header-cart__count.is-empty {
	display: none;
}

@media screen and (max-width: 992px) {
	.tm-header-cart {
		position: fixed;
		top: 0;
		left: 35px;
		z-index: 9999;
	}
}

