/* ==========================================================================
  reset.css – Reset browser default styles
========================================================================== */

/* Tables */
div > table {
	margin: 0;
	margin-block-end: 0;
}

table  tr > td {
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	font-size: var(--e-global-typography-text-font-size);
	font-weight: var(--e-global-typography-text-font-weight);
	color: var(--e-global-color-text);
}

div > table > tbody > tr:hover > td,
div > table > tbody > tr:nth-child(odd) > td, 
div > table > tbody > tr:nth-child(odd) > th {
	background-color: transparent;
}

input[type="radio"] ~ label {
	border: 2px solid var(--wp--preset--color--white);
	background-color: var(--e-global-color-53bbadc);;
	color: var(--wp--preset--color--white);
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
}

/* =========================
  Mobile Overrides
========================= */
@media (max-width: 767px) {
	body h1,
	body h2 {
		padding: 5px 0;
		margin: 5px 0;
		margin-block-end: 0;
    margin-block-start: 0;
	}

	body h1 {
		font-size: 25px;
	}

	body h2 {
		font-size: 22px;
	}

	body h3 {
		font-size: 20px;
	}

	body h3 {
		font-size: 18px;
	}

	body h3 {
		font-size: 16px;
	}

	body h4 {
		font-size: 16px;
	}

	body h5 {
		font-size: 16px;
	}

	body h6 {
		font-size: 16px;
	}

	/* Device specific resets */
	[data-name="dob"] input[type="date"],
	[data-name="payer_dob"] input[type="date"],
	[data-name="primary_dob"] input[type="date"] {
		width: 100%;
		-webkit-appearance: none;
		appearance: none;
		box-sizing: border-box;
		padding-right: 1rem; 
	}

	[data-name="dob"],
	[data-name="payer_dob"],
	[data-name="primary_dob"] {
		overflow: hidden;
	}
}