.pcc-bullets-wrap {
	width: 100%;
}

.pcc-bullets-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 48px;
	row-gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pcc-bullet-item {
	border-bottom: 1px solid rgba(31, 42, 68, 0.12);
	min-width: 0;
}

.pcc-bullet-item.pcc-no-border {
	border-bottom-color: transparent;
}

.pcc-bullet-item a,
.pcc-bullet-item .pcc-bullet-static {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding-top: 16px;
	padding-bottom: 16px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.pcc-bullet-item .pcc-bullet-static {
	cursor: default;
}

.pcc-bullet-text {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #1f2a44;
	transition: color .2s ease;
}

.pcc-bullet-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1.5px solid #9c1c6b;
	color: #9c1c6b;
	background-color: transparent;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.pcc-bullet-icon svg {
	width: 11px;
	height: 11px;
	pointer-events: none;
}

@media (max-width: 767px) {
	.pcc-bullets-list {
		grid-template-columns: 1fr !important;
		grid-auto-flow: row !important;
		grid-template-rows: none !important;
	}

	.pcc-bullet-item {
		border-bottom-color: rgba(31, 42, 68, 0.12) !important;
	}

	.pcc-bullet-item:last-child {
		border-bottom-color: transparent !important;
	}
}
