.gift-progress-wrapper.gift-success {
    border-color: #37a88d;
}

.gift-progress-text {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
}

.gift-tooltip {
    background: #37a88d;
    color: #fff;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 100%;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.gift-popup-close {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
	width: 20px;
    height: 20px;
	display: flex;
    align-items: center;
    justify-content: center;
}


.gift-tooltip:hover {
    opacity: 1;
}

.gift-popup {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: white;
    padding: 16px;
    width: 100%;
    height: 100%;
    display: none;
}

.gift-popup-image {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

.gift-popup-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
	flex-shrink: 0;
}

.gift-name {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.gift-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.gift-popup-title {
    font-size: 14px;
    line-height: 19px;
    margin-top: 8px;
	text-align: center;
}



.gift-success .product-quantity {
    opacity:0;
}

.gift-title-tag {
    color: #37a88d;
}

.cart_item.gift-success td.product-remove {
    opacity: 0.5;
    pointer-events: none;
}

.cart_item.gift-success td.product-subtotal {
    opacity: 0.5;
    pointer-events: none;
}

.cart_item.gift-success {
    border-color: #37a88d !important;
}

.additional-button.gift-upload-button {
    margin-top: 12px;
}


@media screen and (max-width: 768px) {
	.gift-popup-content {
		display: flex;
		flex-direction: row;
		gap: 12px;
		align-items: center;
	}
	
	.gift-progress-text {
		text-align: left;
		margin-top: 4px;
	}
	
	.gift-popup-title {
		text-align: left;
		margin-top: 0;
	}
	
	.gift-popup-img {
		width: 32px;
		height: 32px;
		border-radius: 4px;
	}
	
	.gift-popup-image {
		gap: 6px;
		margin-top: 4px;
	}
	
	.cart_item.gift-success td.product-quantity {
		display:none;
	}
	
	.cart_item.gift-success td.product-subtotal {
		display:none;
	}

}