.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 9999;
}

.popup-content {
    display: flex;
    min-width: 592px;
    height: 100vh;
    padding: 82px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
	justify-content: space-between;
}

.popup-content .header{
	display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
	margin-bottom:32px;
}

.popup-content .header p{
	margin: 0;
	font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
	color: #000070;
}

.popup-content .header .close-popup svg path{
	fill: #000070;
}

.popup-content #popup-inner-content {
	width: 100%;    
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
	gap:20px;
	overflow: auto;
}

.popup-content #popup-inner-content .product-data{
	display: flex;
    align-items: center;
	border-top: 1px solid #DBEDEB;
}

.popup-content #popup-inner-content .product-data .right{
	width: 100%;
}

.popup-content #popup-inner-content .product-name{
	color: var(--palette-900, #000070);
    font-size: var(--Text-Body, 16px);
    font-style: normal;
    font-weight: 400;
    font-family: 'KH-Teka';
    line-height: 130%;
}

p{
	margin: 0;
}

.popup-content #popup-inner-content .price-div{
 	margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.popup-content #popup-inner-content .price-div .product-price{
	color: var(--palette-900, #000070);
    font-size: var(--Text-Body, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    font-family: 'KH-Teka';
}

.popup-content #popup-inner-content .price-div .in-stock{
	color: var(--palette-900, #000070);
    font-size: var(--Text-Body, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    font-family: 'KH-Teka';
}

#popup-add-to-cart-form .dosage{
	border-bottom: 1px solid #DBEDEB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    align-self: stretch;
}


#popup-add-to-cart-form .dosage p{
	color: var(--palette-900, #000070);
    font-size: var(--Text-Body, 16px);
    font-style: normal;
    font-weight: 400;
    font-family: 'KH-Teka';
    line-height: 130%;
}

#popup-add-to-cart-form .dosage select{
appearance: none;
    display: flex;
    font-family: 'KH-Teka';
    font-size: var(--Text-Body, 16px);
    height: 40px;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--palette-700, #514DC5);
    color: #000070;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 0.499999L8 7.5L15 0.5" stroke="%237973EF"/></svg>') no-repeat center;
    background-position: right 10px center;
    background-repeat: no-repeat;
    padding-right: 30px;
	min-width:70%;
}

#popup-add-to-cart-form .clear-filter-div{
	display: flex;
    justify-content: flex-end;
    margin: 16px 0;
}

#popup-add-to-cart-form .add-to-cart-qty{
	display: flex;
    justify-content: space-between;
}


.custom-quantity-buttons.quantity-wrapper{
	gap: var(--Spacing-1, 4px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-quantity-buttons.quantity-wrapper a.quantity-minus.quantity-btn,
.custom-quantity-buttons.quantity-wrapper a.quantity-plus.quantity-btn{
	display: flex;
    width: var(--Spacing-8, 40px);
    height: var(--Spacing-8, 40px);
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: var(--Spacing-6, 24px);
    border: 1px solid var(--palette-400, #B9B7F6);
}
.custom-quantity-buttons.quantity-wrapper a.quantity-minus.quantity-btn:hover,
.custom-quantity-buttons.quantity-wrapper a.quantity-plus.quantity-btn:hover{
	background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 0px 5px 0px var(--palette-600, #7973EF) inset;
    cursor: pointer;
    outline: none;
}
    

.custom-quantity-buttons.quantity-wrapper input#popup-quantity{
	outline: none;
    color: var(--palette-600, #7973EF);
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    width: var(--Spacing-8, 40px);
    height: var(--Spacing-8, 40px);
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Spacing-6, 24px);
    border: 1px solid var(--palette-400, #B9B7F6);
    font-family: 'KH-Teka';
}
.custom-quantity-buttons.quantity-wrapper input#popup-quantity:hover{
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 0px 5px 0px var(--palette-600, #7973EF) inset;
}


input#popup-quantity::-webkit-outer-spin-button,
input#popup-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}

input#popup-quantity[type=number] {
    -moz-appearance:textfield; 
}

.add-to-cart-popup{
	font-family: "Poppins", Sans-serif;
    min-height: 40px;
    font-size: 16px;
    display: flex;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: normal;
    letter-spacing: 0px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 24px 24px 24px 24px;
    padding: 0px 32px 0px 32px;
    color: #FFFFFF;
    background-color: #7973EF;
    border-color: #7973EF;
    transition: all 0.2s;
    cursor: pointer;
    align-items: center;
    justify-content: center;

}
.add-to-cart-popup:hover{
	background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 0px 12px 0px var(--palette-600, #7973EF) inset;
    color: var(--palette-600, #7973EF);
}

#popup-add-to-cart-form .clear-filter-div .clear-filter{
	min-width: 173px;
	cursor: pointer;
	color: #000070;
	display: flex;
    height: 40px;
    padding: 0px var(--Spacing-7, 32px);
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Spacing-6, 24px);
    border: 1px solid var(--palette-400, #B9B7F6);
    background: rgba(121, 115, 239, 0.00);
    color: var(--palette-600, #7973EF);
    text-align: center;
    font-family: 'KH-Teka';
    font-size: var(--Text-Button, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}
#popup-add-to-cart-form .clear-filter-div .clear-filter:hover{
	border-radius: var(--Spacing-6, 24px);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 0px 12px 0px var(--palette-600, #7973EF) inset;
}

.popup-content .check-more-div a{
	display: flex;
    width: 100%;
    height: 69px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid #7973EF;
    color: #7973EF;
}

@media(max-width:768px){

	#popup-add-to-cart-form .clear-filter-div .clear-filter{
		min-width: 135px;
		height: auto;
		padding: 5px 0;
		font-size: 14px;
		line-height: normal;
	}
	.popup-overlay{
		display: flex;
    	align-items: flex-end;
	}
	.popup-content{
		min-width: unset;
		width: 90vw;
		height: 90vh;
		border-radius: 30px 0 0 30px;
	}
	#popup-add-to-cart-form .dosage select{
		width: auto;
	}
	.popup-content #popup-inner-content .price-div .in-stock{
		display:none;
	}
}

a.close-popup{
	cursor: pointer;
}

.check-more-div{
	padding-top:20px;
}
