/* product added styling */
.product-added-menu {
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 570px;
	background-color: var(--background-color);
	z-index: 6;
	transform: translateX(100%);
	box-shadow: 0 0 25px rgba(0,0,0,0.25);
	clip-path: inset(0px 0px 0px -25px);
	border-left: 1px solid rgba(0,0,0,0);
}

.product-added-menu.transition {
	transition: visibility 0s linear 0.2s, transform 0.2s cubic-bezier(0,0,0.1,1);
}

.product-added-menu.active {
	visibility: visible;
	transform: translateX(0);
	transition: visibility 0s linear 0s, transform 0.2s cubic-bezier(0,0,0.1,1);
}

.product-added-menu > .content-title {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 24px;
	padding-top: 27px;
	padding-bottom: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.product-added-menu > .content {
	width: 100%;
	height: calc(100vh);
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: none;
	scroll-behavior: smooth;
	padding-top: 10px;
	padding-bottom: 200px;
}

.product-added-menu > .content-title,
.product-added-menu > .content,
.product-added-menu > .content-footer {
	padding-left: 45px;
	padding-right: 45px;
}

.product-added-menu .content .flex-row {
	margin-bottom: 25px;
	gap: 15px;
}

.product-added-menu .content .product-box {
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.1s linear;
}

.product-added-menu .content .accessories .flex-row:hover {
	background-color: var(--menu-background-color);
}

.product-added-menu .content .flex-row:hover span.underline::after {
	opacity: 1
}

.product-added-menu .content .flex-column {
	justify-content: center;
}

.product-added-menu .content .flex-column.text-right {
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.product-added-menu .content .flex-column.image {
	flex: 0 0 160px;
	mix-blend-mode: multiply;
}

.product-added-menu .content .flex-column small {
	font-size: small;
	margin-right: 5px;
}

.product-added-menu .content .img-container {
	position: relative;
	max-width: 160px;
	max-height: 120px;
	padding: 10px;
}

.product-added-menu .content,
.product-added-menu .content div,
.product-added-menu .content p {
	font-size: 13px;
	line-height: 1.8;
}

.product-added-menu .content .name {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 800;
	display: block;
	text-wrap: balance;
	margin-bottom: 5px;
}

.product-added-menu .content a.name > .underline::after {
	bottom: 2px;
}

.product-added-menu .content hr {
	display: block;
	height: 1px;
	background-color: var(--border-color);
	border: none;
	margin-bottom: 25px;
}

.product-added-menu .content .description,
.product-added-menu .content .description p {
	font-size: 15px;
}

.product-added-menu .content .internal-anchor {
	color: var(--anchor-color);
	transition: color 0.2s linear;
	-webkit-user-select: none;
	user-select: none;
}

.product-added-menu .content .internal-anchor  > span.underline::after {
	background-color: var(--anchor-color);
	bottom: 0.25em;
}

.product-added-menu .content .sub-header > strong {
	display: block;
	font-size: 20px;
	padding-top: 15px;
	margin-bottom: 45px;
}

.product-added-menu .btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
}

.product-added-menu .btn-close > span {
	font-size: 28px;
}

.product-added-menu > .content-footer {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 35px;
	padding-bottom: 35px;
	background-color: var(--background-color);
	gap: 20px;
}

.product-added-menu  > .content-footer .btn {
	display: block;
	margin: 0;
}

.product-added-menu  > .content-footer .btn:only-child  {
	max-width: 320px;
	margin: 0 auto;
}

.product-added-menu > .content.fixed-footer {
	height: calc(100vh - 214px);
}

.product-added-menu > .content.fixed-footer.large-footer {
	height: calc(100vh - 297px);
}

.product-added-menu.header-overflow > .content-title::before {
	content: "";
	position: absolute;
	height: 44px;
	bottom: 0;
	left: 40px;
	right: 40px;
	box-shadow: 0px 10px 20px -20px rgba(0,0,0,1);
	z-index: 1;
	pointer-events: none;
}

.product-added-menu.footer-overflow > .content-footer::before {
	content: "";
	position: absolute;
	height: 44px;
	top: 0;
	left: 40px;
	right: 40px;
	box-shadow: 0px -10px 20px -20px rgba(0,0,0,1);
	pointer-events: none;
}

.product-added-menu > .content::-webkit-scrollbar { 
	width: 2px;
	background: transparent;
}

.product-added-menu > .content::-webkit-scrollbar-thumb {
	background-color: black;
}