.cart-panel-overlay {
	position         : fixed;
	top              : 0;
	right            : 0;
	height           : 100vh;
	width            : 100%;
	z-index          : 101;

	background       : rgba(0, 0, 0, 0.3);
	cursor           : pointer;
	opacity          : 0;
	pointer-events   : none;
	visibility       : hidden;
	transition       : opacity .25s ease, visibility 0s linear .25s;
}

.cart-panel-overlay--is-show {
	pointer-events : all;
	opacity        : 1;
	visibility     : visible;
	transition     : opacity .25s ease;
}

.cart-panel {
	position       : fixed;
	top            : 0;
	right          : 0;
	height         : 100vh;
	width          : 100%;
	max-width      : calc(300px + (450 - 300) * ((100vw - 320px) / (1920 - 320)));
	z-index        : 101;
	overflow       : hidden;
	background     : #efede8;
	padding        : 0;
	display        : flex;
	flex-direction : column;
	transform      : translate3d(100%, 0, 0);
	transition     : transform .4s ease-in-out;
}

.cart-panel--is-show {
	transform  : translate3d(0, 0, 0);
}

.cart-panel__header {
	align-items: center;
	background: #efede8;
	border-bottom: 1px solid rgba(31, 49, 112, .12);
	display: flex;
	justify-content: space-between;
	padding: 18px 25px 14px;
}

.cart-panel__title {
	align-items: center;
	color: #1f3170;
	display: flex;
	font-family: var(--typo-primary);
	font-size: 1.15rem;
	gap: 8px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.cart-panel__title-icon {
	display: block;
	height: 18px;
	width: 16px;
}

.cart-panel__close {
	background: transparent;
	border: 0;
	color: rgba(31, 49, 112, .7);
	font-size: 1.5rem;
	height: 28px;
	line-height: 1;
	padding: 0;
	width: 28px;
}

.cart-panel__product-list-wrapper {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 14px 30px 20px;
}

.cart-panel__product-list {
	display: grid;
	gap: 14px;
}

.cart-panel__product-item + .cart-panel__product-item {
	margin-top : 0;
}

.cart-panel__product {
	display: grid;
	grid-gap: 0 14px;
	grid-template-columns: 80px 1fr auto;
	background: #fff;
	border-radius: 18px;
	padding: 12px 12px 10px;
}

.cart-panel__product-image {
	grid-column: 1;
	grid-row: 1 / 3;
}

.cart-panel__product-image img {
	display: block;
	border-radius: 14px;
	object-fit: cover;
	width: 80px;
	height: 80px;
}

.cart-panel__product-info {
	min-width: 0;
}

.cart-panel__product .product-name .label {
	display: block;
	font-family: var(--typo-secondary);
	font-size: 14px;
	font-weight: 700;
	color: var(--cc-color-text);
	line-height: 1.2;
	text-decoration: none;
	text-align: left;
}

.cart-panel__product .product-line-info.product-description {
	font-size: 12px;
	color: var(--cc-color-tertiary);
}

.cart-panel__product-subtitle {
	color: #7b8197;
	font-size: .82rem;
	line-height: 1.35;
	margin-top: 2px;
}

.cart-panel__product .product-price {
	margin: 4px 0 0;
}

.cart-panel__product .product-price .price {
	color: #1f3170;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
}

.cart-panel__product-cart-actions {
	align-items: center;
	display: flex;
	grid-column: 2 / span 2;
	justify-content: space-between;
	margin-top: 2px;
}

.cart-panel__product-cart-actions .remove-from-cart {
	color: rgba(31, 49, 112, .55);
	font-size: 16px;
	margin-left: 10px;
	order: 2;
	transition: all 0.35s ease-in-out;
}

.cart-panel__product-cart-actions .remove-from-cart:hover {
	color: #1f3170;
}

.cart-panel__product-cart-actions .cart-panel__product-cart-qty {
	margin-left: 0;
	order: 1;
}

.cart-panel__summary-wrapper {
	flex: 0 0 auto;
	background: #efede8;
	border-top: 1px solid #e7e2da;
	padding: 14px 0 18px;
}

.cart-panel__summary-bottom-wrapper {
	border-top: 1px solid #e7e2da;
}

.cart-panel__summary-bottom-wrapper .cart-panel__summary-inner {
	padding: 15px 20px;
}

.cart-panel__reassurance {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0 calc(5px + (25 - 5) * ((100vw - 320px) / (1920 - 320)));
	margin-bottom: 18px;
}

.cart-panel__reassurance-item {
	display: flex;
	align-items: center;
	gap: 5px;
	text-align: center;
}

.cart-panel__reassurance-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	height: 40px;
	width: 40px;
}

.cart-panel__reassurance-icon img {
	display: block;
	height: 18px;
	object-fit: contain;
	width: 18px;
}

.cart-panel__reassurance-label {
	font-size: .72rem;
	font-weight: 600;
	color: #7b8197;
	line-height: 1.2;
	text-align: left;
}

.cart-panel__summary {
	margin-bottom: 12px;
}

.cart-panel__summary-line {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
}

.cart-panel__total {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}

.cart-panel__total .label {
	color: #1f3170;
	font-size: 1rem;
	font-weight: 700;
}

.cart-panel__total .value {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--cc-color-text);
}

.cart-panel__validate {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	background: var(--cc-color-text);
	border: 0;
	border-radius: 999px;
	color: #fff;
	text-transform: none;
	width: 100%;
	height: 56px;
	margin-top: 0;
}

.cart-panel__validate:hover {
	color: #fff;
}

.cart-panel__view-cart {
	color: #7b8197;
	display: block;
	font-size: .9rem;
	font-weight: 400;
	margin-top: 12px;
	text-align: center;
	text-decoration: underline;
}

.bootstrap-touchspin {
	align-items: center;
	display: inline-flex;
	max-width: none;
	min-height: 28px;
	padding: 0 30px;
	position: relative;
}

.bootstrap-touchspin .input-group-btn-vertical {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down,
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
	border-radius: 999px !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
	left: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
	right: 0;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(31, 49, 112, .14);
	box-shadow: none;
	color: #7b8197;
	display: inline-flex;
	font-size: 0;
	height: 28px;
	justify-content: center;
	padding: 0;
	position: absolute;
	width: 28px;
	z-index: 1;
}

button.btn.btn-touchspin.js-touchspin.js-decrease-product-quantity.bootstrap-touchspin-down {
	top: 56%;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn:hover,
.bootstrap-touchspin .input-group-btn-vertical > .btn:focus {
	background: #fff;
	border-color: rgba(31, 49, 112, .24);
	color: #1f3170;
}

.bootstrap-touchspin .input-group-btn-vertical i {
	display: none;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn::before,
.bootstrap-touchspin .input-group-btn-vertical > .btn::after {
	background: #1f3170;
	border-radius: 999px;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.bootstrap-touchspin .input-group-btn-vertical > .btn::before {
	height: 2px;
	width: 10px;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down::after {
	display: none;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up::after {
	height: 10px;
	width: 2px;
}

.bootstrap-touchspin .form-control {
	background: transparent;
	border: none !important;
	box-shadow: none;
	color: #1f3170;
	flex: 0 0 auto;
	font-size: .95rem;
	font-weight: 700;
	height: auto;
	padding: 0 8px;
	text-align: center;
	width: 2rem !important;
}

@media (max-width: 767px) {
	.cart-panel {
		max-width: 100%;
	}

	.cart-panel__title {
		font-size: 1.1rem;
	}
}