.xoo-wsc-markup *::-webkit-scrollbar {
	width: 8px;
}

.xoo-wsc-markup *::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #f0f0f0;
}

.xoo-wsc-markup *::-webkit-scrollbar-thumb {
	border-radius: 50px;
	background: #d1d1d1;
}

.xoo-wsc-modal * {
	box-sizing: border-box;
}

.xoo-wsc-markup a {
	text-decoration: none;
}

.xoo-wsc-container {
	position: fixed;
	top: 0;
	right: -365px;
	bottom: 0;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	width: 95%;
	max-width: 365px;
	background: #fff;
	transition: right 0.5s ease-out;
}

.xoo-wsc-cart-active .xoo-wsc-container {
	right: 0;
}

.xoo-wsc-opac {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999996;
	height: 0;
	background: #000;
	opacity: 0;
	transition: height 0s 0.4s, opacity 0.4s;
}

.xoo-wsc-cart-active .xoo-wsc-opac {
	height: 100%;
	opacity: 0.8;
	transition: height 0s, opacity 0.4s;
}

body.xoo-wsc-cart-active,
html.xoo-wsc-cart-active {
	overflow: hidden !important;
}

.xoo-wsc-body {
	flex-grow: 1;
	overflow-x: hidden;
	overflow-y: auto;
	background: #f8f9fa;
}

.xoo-wsc-loader {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 10;
	background: #eee;
	opacity: 0.7;
}

.xoo-wsc-loading .xoo-wsc-loader {
	display: block;
}

.xoo-wsc-loader-icon {
	display: none;
}

.xoo-wsc-loading .xoo-wsc-loader-icon {
	display: block;
	position: absolute;
	top: 47%;
	left: 49%;
	z-index: 11;
	width: 24px;
	height: 24px;
	border: 3px solid #c7c7c7;
	border-top-color: #002d25;
	border-radius: 50%;
	animation: lk-side-cart-spin 0.8s linear infinite;
}

@keyframes lk-side-cart-spin {
	to { transform: rotate(360deg); }
}

.xoo-wsc-basket {
	display: flex;
	position: fixed;
	right: 1px;
	bottom: 12px;
	z-index: 9999997;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 10px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 15px 2px #0000001a;
	cursor: pointer;
	transition: right 0.5s ease-out;
}

.xoo-wsc-cart-active .xoo-wsc-basket {
	right: 365px;
}

.xoo-wsc-items-count {
	position: absolute;
	top: -12px;
	left: -12px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-size: 13px;
	line-height: 28px;
	text-align: center;
	overflow: hidden;
}

.xoo-wsc-sc-cont .xoo-wsc-cart-trigger {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.xoo-wsc-sc-count {
	display: inline-block;
	position: absolute;
	top: -4px;
	right: -7px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #002d25;
	color: #fff;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
}

.xoo-wsc-notice-container {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
}

.xoo-wsc-notices {
	margin: 0;
	padding: 0;
	list-style: none;
}

.xoo-wsc-notices li {
	padding: 15px 20px;
	list-style: none;
}

.xoo-wsc-notice-success {
	border: 1px solid #bfe8cb;
	border-left: 3px solid #4caf50;
	background: #dff0d8;
	color: #3c763d;
}

.xoo-wsc-notice-error {
	border: 1px solid #fecaca;
	border-left: 3px solid #c50909;
	background: #fef2f2;
	color: #a94442;
}

.xoo-wsc-header {
	padding: 15px;
	border-bottom: 2px solid #eee;
	background: #fff;
	color: #002d25;
}

.xoo-wsch-top {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.xoo-wsch-text {
	margin-left: 8px;
	font-size: 20px;
}

.xoo-wsch-close {
	position: absolute;
	right: 10px;
	font-size: 16px;
	cursor: pointer;
}

.xoo-wsc-body,
.xoo-wsc-body span.amount,
.xoo-wsc-body a {
	color: #002d25;
	font-size: 16px;
}

.xoo-wsc-product {
	display: flex;
	margin: 10px 15px;
	padding: 10px 15px;
	border-bottom: 1px solid #eee;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 2px 2px #00000005;
}

.xoo-wsc-img-col {
	align-self: center;
	width: 28%;
}

.xoo-wsc-img-col img {
	width: 100%;
	height: auto;
}

.xoo-wsc-sum-col {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	justify-content: center;
	width: 72%;
	padding-left: 15px;
}

.xoo-wsc-sm-info {
	display: flex;
	min-width: 0;
	gap: 10px;
}

.xoo-wsc-sm-left {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	row-gap: 4px;
}

.xoo-wsc-sm-right {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: center;
	row-gap: 4px;
}

.xoo-wsc-smr-del {
	display: block;
	margin: 5px 0;
	font-size: 11px;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
}

.xoo-wsc-product dl.variation {
	display: block;
	flex-wrap: wrap;
	margin: 0;
	font-size: 13px;
}

.xoo-wsc-product dl.variation dt,
.xoo-wsc-product dl.variation dd {
	display: inline-block;
	float: left;
	margin: 0 4px 0 0;
	font-style: italic;
}

.xoo-wsc-product dl.variation dt {
	clear: left;
}

.xoo-wsc-product dl.variation p {
	margin: 0;
	font-size: 13px;
}

.xoo-wsc-footer {
	padding: 10px 20px;
	background: #fff;
	box-shadow: 0 -1px 10px #0000001a;
	color: #002d25;
}

.xoo-wsc-footer,
.xoo-wsc-footer a,
.xoo-wsc-footer .amount {
	font-size: 18px;
}

.xoo-wsc-ft-buttons-cont {
	display: grid;
	grid-template-columns: auto;
	gap: 5px;
	text-align: center;
}

a.xoo-wsc-ft-btn,
.xoo-wsc-container .xoo-wsc-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	flex-wrap: wrap;
	width: 100%;
	text-decoration: none;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-container .xoo-wsc-btn {
	padding: 13px 20px;
	border: 1px solid transparent;
	background: #002d25;
	color: #fff;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-container .xoo-wsc-btn:hover {
	border: 1px solid transparent;
	background: #8aa798;
	color: #fff;
	text-decoration: none;
}

.xoo-wsc-empty-cart {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 30px;
}

.xoo-wsc-empty-cart > * {
	margin-bottom: 20px;
}

.xoo-wsc-empty-cart .xoo-wsc-btn {
	width: auto;
}

.xoo-wsc-ft-btn-checkout .amount {
	color: #fff;
	font-style: italic;
}

.xoo-wsc-ft-btn-checkout .amount::before {
	content: "-";
	margin: 0 8px;
	font-weight: 700;
}

.xoo-wsc-sc-cont {
	color: #002d25;
}

.added_to_cart {
	display: none !important;
}

/* The site theme intentionally hides the plugin-style floating basket. */
.xoo-wsc-modal .xoo-wsc-basket {
	display: none !important;
}
