.custom-menu {
	display: grid;
	grid-template-columns: 100%;
}

.custom-grid-menu-first {
	display: grid;
	max-width: 450px;
	margin: 0 auto;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.custom-panel {
	padding: 40px 0;
}

.custom-panel-title {
	font-size: 30px;
	color: white;
	text-align: center;
}

.code-deddhe-tooltip {
	font-size: small;
	margin-bottom: 15px;
	text-align: center;
}

.code-deddhe-image {
	height: 40px;
	margin-right: 10px;
}

.panel-note {
	margin: 0;
	padding: 0;
	display: flex;
	text-wrap: wrap;
	justify-content: center;
}

@media (min-width: 992px) {
	.custom-menu {
		grid-template-columns: 50% 50%;
	}
	.custom-grid-menu-first {
		display: grid;
		max-width: 1560px;
		margin: 0 auto;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
	.custom-panel {
		min-width: 400px;
		margin: 10px 10px;
		padding: 40px 0;
	}
	.custom-panel-title {
		font-size: 35px;
		color: white;
		text-align: center;
	}
	.code-deddhe-tooltip {
		font-size: small;
		margin-bottom: 15px;
		text-align: center;
	}
	.code-deddhe-image {
		height: 40px;
		margin-right: 10px;
	}
}