/* ==========================================================================
  styes.css – All custom styles
========================================================================== */

/* Numbered List */
.numbered-list i {
	padding: 5px 12px;
	margin-right: 10px;
	font-weight: 600;
	background-color: var(--e-global-color-accent);
	color: var(--wp--preset--color--white);
	border-radius: 20px;
	height: fit-content;
}

/* Checked List */
ul.check-list > li {
	display: flex;
	margin: 10px 0;
}

/* Header and nav */
header .elementor-widget-theme-site-logo img {
	max-height: 100px;
	max-width: 300px;
}

header .mobile-logo img {
	max-width: 150px;
	max-height: 50px;
}

header div.top-banner.fixed-nav {
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	z-index: 5;
	background-color: #ececec;
	border-bottom: 2px solid #ececec;
	transition: 0s;
}

header div.top-banner.fixed-nav > div {
	max-width: 1140px;
}

/* Competitors Table */
table.competitors-table {
	border: 2px solid var(--e-global-color-secondary);
	padding: 10px;
	display: block;
	border-collapse: separate;
	border-spacing: 0 10px;
}

table.competitors-table tr {
	margin: 10px 0;
}

table.competitors-table tr.elementor-hidden-mobile.elementor-hidden-tablet > th,
table.competitors-table tr > td.elementor-hidden-mobile.elementor-hidden-tablet {
	border: none;
	background-color: transparent;
	border-block-start: none;
}

table.competitors-table tr > td:first-of-type {
	border: 2px solid var(--e-global-color-secondary);
	border-radius: 10px;
}

table.competitors-table tr:nth-child(1) > td:first-of-type {
	background-color: #f0fdf4;
	color: #15803d;
	border-color: #15803d;
}

table.competitors-table tr:nth-child(1) > td:first-of-type h5 {
	color: #15803d;
}

table.competitors-table tr:nth-child(2) > td:first-of-type {
	background-color: #eff6ff;
}

table.competitors-table tr:nth-child(3) > td:first-of-type {
	background-color: #f0e2ff;
}

table.competitors-table tr:nth-child(4) > td:first-of-type {
	background-color: #fefce8;
}

table.competitors-table tr:nth-child(5) > td:first-of-type {
	background-color: #fff7ed;
}

table.competitors-table td > .e-con {
	padding: 0;
}

table.competitors-table td > .e-con > span {
	margin-right: 10px;
}

table.competitors-table td > .e-con > h5 {
	margin-left: 10px;
}

/* Quote Form */
.quote-page {
	background-color: #fff8ec;
}

.quote-page > .e-con-inner > .e-child,
.quote-page .quote-footer > .e-child {
	background-color: var(--wp--preset--color--white);
	border: 2px solid var(--e-global-color-secondary);
	border-radius: 20px;
}

.quote-page form > .e-con {
	padding: 0;
}

.quote-page .quote-footer > #fca-block {
	background-color: var(--e-global-color-secondary);
}

.quote-page form > .form-btn-con p {
	display: flex;
	justify-content: center;
	align-items: center;
}

.quote-page form > .form-btn-con p > input {
	margin-bottom: 10px;
}

.quote-page form > .form-btn-con p > input:first-of-type {
	margin-right: 10px;
}

.quote-page form > .form-btn-con p > input {
	max-width: 200px;
	width: 100%;
}

/* Quote Cards */
.quote-card {
	position: relative;
	cursor: pointer;
	border: 2px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
	width: 200px;
	transition: border-color .2s, background .2s;
	margin-bottom: 20px;
	text-align: center;
	padding: 0 30px;
	width: 100%;
}

.quote-card > p {
	position: relative;
}

.quote-page form > .e-con > .quote-card.chosen-card {
	border: 3px solid var(--wp--preset--color--black);
}

.quote-page form > .e-con > .quote-card:first-of-type {
	margin-right: 10px;
}

.quote-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
	z-index: 2;
}

/* =========================
  Mobile Overrides
========================= */
@media (max-width: 767px) {
	.competitors-table td,
	.quote-page form > .e-con {
		flex-direction: column;
	} 

	.quote-page form > .form-btn-con p {
		flex-direction: column;
	}
}