.cbar {
	position: fixed;
	left: 40px;
	bottom: 40px;
	z-index: 11;
	width: 100%;
	max-width: 600px;
	display: none
}

.cbar.--show {
	display: block
}

.cbar__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background-color: var(--hp-bg-primary);
	color: var(--hp-color-primary);
	border-radius: 6px;
	box-shadow: 0 2px 12px 0 rgba(0,0,0,.12);
	border: 1px solid var(--hp-border-color)
}

.cbar__text {
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500
}

.cbar__text a {
	text-decoration: underline
}

.cbar__text a:hover {
	text-decoration: none;
	color: var(--hp-color-active)
}
@media (max-width: 600px) {
	.cbar {
		left: 16px;
		right: 16px;
		width: auto;
		max-width: initial;
		bottom: 16px;
	}
	.cbar__inner {
		flex-direction: column;
	}
	.cbar__inner .button {
		width: 100%;
	}
}