@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

#woo-proof-notifications {
	position: fixed;
	bottom: 15px;
	left: 15px;
	background: white;
	padding: 10px;
	border: 1px solid rgba(216, 217, 226, .5);
	box-shadow: 10px 20px 40px 0 rgba(36,35,40,.1);
	width: 352px;
	z-index: 99999999999;
	border-radius: 99px;
}
.woo-proof-info a, .woo-proof-info a:hover {
	text-decoration: none;
	color: inherit;
}
.woo-proof-info {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	margin-left: -6px;
	margin-bottom: 2px;
	padding: 0 4px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow-x: hidden;
	max-width: 220px;
	width: max-content;
	vertical-align: middle;
	letter-spacing: -.01em;
	border-radius: 4px;
	background: #f0f1f7;
}
.woo-proof-product {
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -.03em;
	margin-left: -2px;
	font-size: 13px;
	margin-bottom: 2px;
	color: #3E3E3E;
	max-width: 230px; /* Set the maximum width */
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; /* Limit the content to 2 lines */
	overflow: hidden;
}
.woo-proof-wrap {
	display: flex;
	align-items: center;
	position: relative;
}
.woo-proof-time {
	font-size: 11px;
	color: #979797;
	margin-left: -2px;
	letter-spacing: -.01em;
}
.woo-proof-state {
	text-transform: uppercase;
}
.woo-proof-close {
    position: absolute;
    right: 16px;
    top: 1px;
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    display: inline-block;
    background-color: #d3d3d3; /* Light gray background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.woo-proof-close:hover {
    background-color: #b0b0b0; /* Slightly darker gray */
    opacity: 1;
}

.woo-proof-close svg {
    width: 12px;
    height: 12px;
}

.woo-proof-info,
.woo-proof-product {
	display: block;
}
.woo-proof-image {
	width: 60px; /* Set the desired width */
	height: 60px; /* Set the desired height */
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	margin-right: 1rem;
	padding: 2px;
}
/* Verified Buyer */
.woo-proof-time-wrap {
	display: flex;
	align-items: center;
}
.woo-proof-verified-buyer {
	display: flex;
	align-items: center;
	margin-left:1rem;
	font-size:10px;
	font-family: 'Open Sans', sans-serif;
	color:#7dd97d;
	font-weight: bold;
}
.woo-proof-verified-buyer svg {
	width:12px;
	height:12px;
	min-width:12px;
	margin-right:3px;
}
.woo-proof-verified-buyer polygon {
	fill:#7dd97d;
}
.woo-proof-verified-buyer path {
	fill:#fff;
}
/* Mobile Devices */
@media (max-width: 600px) {
	.woo-proof-image {
		width: 50px; /* Adjust for smaller screens */
		height: 50px;
		margin-right: 1rem;
		padding: 2px;
	}
	#woo-proof-notifications {
		bottom: 0;
		left: 0;
		padding: 10px;
		border-radius:0;
		border:none;
		border-top: 1px solid rgba(216, 217, 226, .5);
		box-shadow: 10px 20px 40px 0 rgba(36,35,40,.1);
		width: 100%;
	}
}