/* only screen and (max-width: 786px)  */

/* product added styling */
.product-added-menu {
	position: fixed;
	transform: translateY(100%) translateX(0);
	top: 30vh;
	top: 30dvh;
	bottom: 0;
	width: 100vw;
	height: auto;
	margin: 0;
	padding: 30px;
	border-radius: 0;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	max-height: 70vh;
	max-height: 70dvh;
	box-shadow: 0 0 35px rgba(0,0,0,0.12);
	background-color: #ffffff;
	clip-path: none;
	border-left: none;
	z-index: 12;
}

.product-added-menu > .content::-webkit-scrollbar { 
	display: none;
}

.product-added-menu.transition {
	transition: visibility 0s linear 0.15s, transform 0.2s ease-in;
}

.product-added-menu.transition.active {
	transform: translateY(0);
	transition: visibility 0s linear 0s, transform 0.15s ease-out;
}

.product-added-menu::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 35px;
	height: 3px;
	border-radius: 2px;
	background-color: rgba(0,0,0,0.2);
}

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

.product-added-menu > .content-title {
	position: relative;
	line-height: 1.3;
	justify-content: center;
	font-weight: 700;
	padding-top: 0;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 25px;
	margin-bottom: 0;
}

.product-added-menu > .content.fixed-footer {
	height: calc(70vh - 189px);
	height: calc(70dvh - 189px);
}

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

.product-added-menu > .content-footer {
	padding: 30px 0;
}

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

.product-added-menu .content .name {
	font-size: 13px;
	font-weight: 700;
}

.product-added-menu .content .sub-header > strong {
	font-size: 16px;
	padding-top: 10px;
	margin-bottom: 25px;
}

.product-added-menu .content .flex-column.image {
	flex: 0 0 25vw;
}

.product-added-menu .content .img-container {
	padding: 5px;
}

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

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