.quickbar {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 60;
	width: 228px;
	transform: translate(178px, -50%);
	transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.quickbar:hover,
.quickbar:focus-within {
	transform: translate(0, -50%);
}

.qb-body {
	width: 228px;
	border-radius: 5px;
	box-shadow: -10px 12px 40px rgba(20, 15, 10, 0.16);
	overflow: hidden;
}

.qb-row {
	display: flex;
	align-items: stretch;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid #efece9;
}

.qb-row:last-child {
	border-bottom: none;
}

.qb-tab {
	flex: 0 0 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 116px;
	padding: 20px 0;
	background: var(--ck-orange, #e77400);
	color: #fff;
	transition: background 0.25s ease;
}

.qb-tab .ic {
	width: 20px;
	height: 20px;
	display: block;
	stroke: currentColor;
}

.qb-tab .lbl {
	color: #fff;
	writing-mode: vertical-rl;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}

.qb-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	min-width: 0;
	padding: 0 18px;
	background: #fff;
}

.qb-info b {
	color: var(--ck-dark, #111);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.5;
	transition: color 0.25s ease;
}

.qb-apply {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #b9b2ab;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.5;
	transition: color 0.25s ease;
}

.qb-apply svg {
	transition: transform 0.3s ease;
}

.qb-row:hover .qb-tab,
.qb-row:focus .qb-tab {
	background: var(--ck-orange-deep, #d96800);
}

.qb-row:hover .qb-info b,
.qb-row:focus .qb-info b,
.qb-row:hover .qb-apply,
.qb-row:focus .qb-apply {
	color: var(--ck-orange, #e77400);
}

.qb-row:hover .qb-apply svg,
.qb-row:focus .qb-apply svg {
	transform: translateX(5px);
}

@media all and (max-width: 767px) {
	.quickbar {
		display: block;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		transform: none;
		z-index: 80;
		background: #fff;
		box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.06);
	}

	.quickbar:hover,
	.quickbar:focus-within {
		transform: none;
	}

	.qb-body {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		width: 100%;
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		padding: 6px 6px 0;
	}

	.qb-row {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		min-height: 68px;
		padding: 8px 5px 9px;
		border-bottom: none;
		border-right: none;
		border-radius: 14px 14px 0 0;
		background: #f4f4f4;
	}

	.qb-row:last-child {
		border-right: none;
	}

	.qb-tab {
		flex: 0 0 auto;
		width: 34px;
		height: 34px;
		min-height: 0;
		padding: 0;
		border-radius: 50%;
		background: var(--ck-orange, #e77400);
	}

	.qb-tab .ic {
		width: 18px;
		height: 18px;
	}

	.qb-tab .lbl {
		display: none;
	}

	.qb-info {
		display: flex;
		padding: 0;
		background: transparent;
		text-align: center;
	}

	.qb-info b {
		color: var(--ck-dark, #111);
		font-size: 13px;
		font-weight: 700;
		line-height: 1.15;
	}

	.qb-apply {
		display: none;
	}
}
