.wtp-message {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin: 0 0 16px;
	padding: 14px 16px;
	border: 1px solid #d7e7d8;
	border-left: 4px solid #3f8f46;
	border-radius: 4px;
	background: #f5fbf5;
	color: #1f3424;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.5;
	transition: background-color 160ms ease, border-color 160ms ease;
}

.wtp-message:hover {
	border-color: #b9dfc5;
	border-left-color: #25d366;
	background: #f0fbf6;
}

.wtp-message__body {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	pointer-events: none;
}

.wtp-message__icon {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	color: #25d366;
}

.wtp-message__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wtp-message__content {
	flex: 0 1 auto;
	min-width: 0;
	pointer-events: none;
}

.wtp-message__click-target {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 4px;
	text-decoration: none;
}

.wtp-message__click-target:focus-visible {
	outline: 2px solid #25d366;
	outline-offset: 3px;
}

.wtp-message p {
	margin: 0 0 8px;
}

.wtp-message p:last-child {
	margin-bottom: 0;
}

.wtp-message a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wtp-message .wtp-message__click-target {
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.wtp-message--cart {
	margin-bottom: 12px;
}

.wtp-message--checkout {
	margin-top: 12px;
}
