.blpaczka__buttons {
	border: 2px solid #4285f4;
	border-radius: 100px;
	color: #4285f4;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	line-height: 13px;
	padding: 8px 24px;
	text-decoration: none;
	transition-duration: .2s;
	transition-property: all;
	transition-timing-function: ease;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 0.5em;

	svg {
		height: 28px;
	}

	&:hover {
		background-color: #4285f4;
		border: 2px solid #4285f4;
		color: #fff;
	}

	&--red {
		border: 2px solid #d92222;
		color: #d92222 !important;
		&:hover {
			background-color: #d92222;
			border: 2px solid #d92222;
			color: #fff !important;
		}
	}
}