.listing-step {
	--size-gap: 16px;
}

.listing-step .listitem-wrapper {
	padding: 26px;
	border: 1px solid var(--gray);
	border-radius: var(--rounded-2lg);
	background-color: rgba(255, 97, 1, 0.1);
}

.listing-step .listing-item:nth-child(3n + 2) .listitem-wrapper {
	background-color: rgba(5, 136, 240, 0.1);
}

.listing-step .listing-item:nth-child(3n + 3) .listitem-wrapper {
	background-color: #efefef;
}

.listing-step .heading-step {
	--icon-size: 55px;
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
}

.listing-step .icon-step {
	width: var(--icon-size);
	height: var(--icon-size);
	background: white;
	border-radius: var(--rounded-md);
	display: flex;
	align-items: center;
	justify-content: center;
}

.listing-step .icon-step img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.listing-step .title-step {
	font-size: var(--text-base);
	font-weight: 600;
	width: calc(100% - var(--icon-size));
	padding-left: 10px;
	padding-top: 4px;
}

.listing-step .prefix-title-step {
	display: block;
	color: var(--blue);
	font-size: var(--text-xs);
}

.listing-step .content-step {
	color: var(--gray-500);
	font-size: var(--text-sm);
}

@media all and (min-width: 601px) and (max-width: 900px) {
	.listing-step .listing-item {
		width: 50%;
	}
}

@media all and (max-width: 600px) {
	.listing-step .listing-item {
		width: 100%;
	}
}
