@charset "utf-8";
.contact-card {
	margin-top: 10px;
	width: auto;
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 11px;
	padding: 7px;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 15px;
}

.contact-card__title {
	margin: 0 0 3px 0;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	color: #000000;
}

.contact-card__seller {
	display: flex;
	align-items: center;
	gap: 3px;
	margin: 0 0 7px 0;
	font-size: 12px;
	line-height: 1.2;
	color: #000000;
}

.contact-card__seller img {
	display: block;
	width: 10px;
	height: auto;
	flex-direction: 0 0 20px;
	padding-right: 2px;
}

.contact-card__action {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 30px;
	margin: 0 0 5px 0;
	padding: 0 15px;
	box-sizing: border-box;
	border: none;
	border-radius: 7px;
	background: #f7f7f7;
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
}

.contact-card__action:last-child {
	margin-bottom: 0;
}

.contact-card__action:hover {
	background: #0047ff;
	color: #fff !important;
}

.contact-card__action:hover img {
	filter: brightness(0) invert(1);
}


.contact-card__action img {
	display: block;
	width: 11px;
	height: auto;
	flex-direction: 0 0 24px;
}