.kiwi-post-share{
	display: flex;
	align-items: center;
	gap: 24px;
}

.kiwi-post-share > div{
	background: #F6F6F1;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	text-transform: uppercase;
	padding: 16px 28px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	height: fit-content;
}

.kiwi-post-share > div:before{
	content: '';
	background-image: url(assets/share.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 18px;
	height: 18px;
	display: block;
}

.kiwi-post-share ul{
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	list-style: none;
}

.kiwi-post-share li{
	margin: 0 !important;
}

@media (max-width: 549px) {
	.kiwi-post-share > div{
		font-size: 14px;
		padding: 8px 14px;
	}
	
	.kiwi-post-share > div:before{
		width: 14px;
		height: 14px;
	}
	
	.kiwi-post-share{
		align-items: start;
		flex-direction: column;
		gap: 14px;
	}
}