.my-topup-module {
	display: grid;
	gap: 20px;
}

.my-topup-copy h2 {
	margin: 0 0 8px;
}

.my-topup-copy p {
	color: #667085;
	margin: 0;
}

.my-topup-wizard {
	background: #fff;
	border: 1px solid #dfe7ee;
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(31, 41, 51, 0.08);
	padding: 28px;
}

.my-topup-wizard .wizard-panel {
	display: none;
}

.my-topup-wizard .wizard-panel.is-active {
	display: block;
}

.my-topup-wizard .wizard-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.my-topup-wizard .wizard-choice-grid label {
	display: block;
}

.my-topup-wizard .wizard-choice-grid input {
	position: absolute;
	opacity: 0;
}

.my-topup-wizard .wizard-choice-grid span {
	border: 1px solid #dfe7ee;
	border-radius: 10px;
	cursor: pointer;
	display: block;
	font-weight: 700;
	padding: 16px;
}

.my-topup-wizard .wizard-choice-grid input:checked + span {
	border-color: #e71916;
	box-shadow: inset 0 0 0 1px #e71916;
}

.my-topup-wizard input[type='text'],
.my-topup-wizard select {
	border: 1px solid #dfe7ee;
	border-radius: 10px;
	font-size: 16px;
	padding: 14px 16px;
	width: 100%;
}

.my-topup-wizard .wizard-review-box {
	background: #f4f7f8;
	border-radius: 10px;
	padding: 16px;
}

.my-topup-wizard .wizard-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	list-style: none;
	margin: 24px 0 18px;
	padding: 0;
}

.my-topup-wizard .wizard-steps li {
	align-items: center;
	color: #667085;
	display: flex;
	flex-direction: column;
	font-size: 13px;
	gap: 6px;
	text-align: center;
}

.my-topup-wizard .wizard-steps li.is-active {
	color: #e71916;
	font-weight: 700;
}

.my-topup-wizard .wizard-actions {
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.my-topup-wizard .button {
	background: #e71916;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	padding: 13px 18px;
}

.my-topup-wizard .button-secondary {
	background: #fff;
	border: 1px solid #dfe7ee;
	color: #1f2933;
}

@media (max-width: 760px) {
	.my-topup-wizard {
		padding: 20px;
	}

	.my-topup-wizard .wizard-choice-grid {
		grid-template-columns: 1fr;
	}

	.my-topup-wizard .wizard-steps span {
		display: none;
	}
}
