.cert-profiles {
	padding-left: 0px;
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 16px;
}

.cert-profile-item {
	display: flex;
	cursor: pointer;
}

.cert-profile-item {
	display: flex;
	align-items: center;
	border: 1px solid #D2D7D6;
	border-radius: 12px;
	padding: 20px;
}

.cert-profile-active {
	border: 1px solid #DF6B7C;
	background-color: #FEF7F8;
}

.cert-profile-item .cert-profile-left {
	display: block;
	width: 80px;
	height: 80px;
	margin-right: 16px;
	flex-shrink: 0;
}

.cert-profile-item p {
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
	flex-grow: 1;
}

.cert-profile-left {
	display: block;
	position: relative;
}

.cert-profile-image {
	display: block;
	position: absolute;
	width: 80px;
	height: 80px;
	background: #FEF7F8;
	border-radius: 12px;
	padding: 8px;
}

.cert-profile-active .cert-profile-image {
	background: #fff;
}

.cert-profile-mark {
	display: none;
}

.cert-profile-active .cert-profile-mark {
	display: block;
	position: absolute;
	top: -4px;
	left: -4px;
	width: 16px;
	height: 16px;
}

@media (max-width : 991px) {
	.cert-profiles {
		display: grid;
		grid-template-columns: repeat(2, auto);
		gap: 16px
	}
}

@media (max-width : 767px) {
	.cert-profiles {
		display: grid;
		grid-template-columns: repeat(1, auto);
		gap: 16px;
	}
}
