/*
Theme Name:     IEMCO
Theme URI:      n/a
Template:       kadence
Author:         GBG Marketing Team
Author URI:     n/a
Description:    Child Theme Description
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/
#colophon .gform_wrapper {
margin-top: 15px;}

#colophon .gform_wrapper input[type=email]{
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 0px;
	color: #fff;
}

#colophon .gform_footer{
margin-top: 10px}

#colophon .gform_footer input[type=submit]{
	width: 100%;
	border-radius: 0px;
	background-color: rgb(5,129,4
);
	transition: all 0.3s ease-in-out;
}

#colophon .gform_footer input[type=submit]:hover{
	background-color: rgba(5,129,4,0.7
)
}

.kadence-sticky-header.item-is-stuck{

    box-shadow:
        0 1px 0 rgba(0,0,0,0.05),
        3px 5px 5px rgba(0,0,0,0.08);
}

/* ── Navigation submenu stacking fix ─────────────────────────────────────────
   Kadence sets #masthead to z-index:11, which creates a stacking context that
   caps submenus at effectively z-index 11 from the root — below sticky page
   elements like .faq-tabnav and .sa-subnav (both z-index:300).
   Raising #masthead to 1000 puts the entire header stack above those elements,
   so submenus (set to 999 within that context) always clear the page. */
#masthead {
    z-index: 1000;
}

.header-navigation ul ul.sub-menu,
.header-navigation ul ul.submenu {
    z-index: 999;
}

/* =============================================================================
   Services Archive  —  archive-service.php
   ============================================================================= */

/* Break out of Kadence's max-width .wrap so panels span the full viewport.
   overflow-x: clip (not hidden) — clip does NOT create a new formatting context
   so position:sticky on .sa-subnav still works. */
.services-archive-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow-x: clip;
}

/* ── Shared button component (mirrors Kadence global-fill style) ─────────────── */
.iemco-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0.5rem 2rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
    border-radius: 0;
}

.iemco-btn--fill {
    background: var(--global-palette1, #048105);
    color: var(--global-palette7, #fff);
    border-color: var(--global-palette1, #048105);
}

.iemco-btn--fill:hover,
.iemco-btn--fill:focus {
    background: var(--global-palette7, #fff);
    color: var(--global-palette1, #048105);
    border-color: var(--global-palette1, #048105);
    text-decoration: none;
}

.iemco-btn__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.iemco-btn:hover .iemco-btn__icon,
.iemco-btn:focus .iemco-btn__icon {
    transform: translateX(4px);
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.sa-hero {
    position: relative;
    background: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 130px 30px 110px;
    text-align: center;
    overflow: hidden;
}

.sa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(4,129,5,0.18) 0%,
        rgba(10,10,10,0.82) 50%,
        rgba(10,10,10,0.95) 100%
    );
    pointer-events: none;
}

.sa-hero--has-bg .sa-hero__overlay {
    background: linear-gradient(
        160deg,
        rgba(4,129,5,0.12) 0%,
        rgba(10,10,10,0.72) 55%,
        rgba(10,10,10,0.9) 100%
    );
}

.sa-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.sa-hero__title {
    font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
    font-size: 72px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 24px;
}

.sa-hero__subtext {
    font-family: var(--global-body-font-family, 'Raleway', sans-serif);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Sticky sub-navigation ──────────────────────────────────────────────────── */
.sa-subnav {
    position: sticky;
    top: 120px; /* JS overrides this inline once header height is known */
    z-index: 300;
    background: #0a0a0a;
    border-bottom: 2px solid var(--global-palette1, #048105);
    width: 100%;
}

.sa-subnav__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 5px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.sa-subnav__item {
    display: inline-flex;
    align-items: center;
    padding: 14px 16px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px; /* sit on top of the border-bottom */
    transition: color 0.22s ease, border-color 0.22s ease;
}

.sa-subnav__item:hover {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-bottom-color: rgba(4,129,5,0.45);
}

.sa-subnav__item.is-active {
    color: var(--global-palette1, #048105);
    border-bottom-color: var(--global-palette1, #048105);
}

/* ── Category section group ─────────────────────────────────────────────────── */
.sa-category-group {
    scroll-margin-top: 180px; /* header + subnav offset */
}

/* Category header divider */
.sa-category-header {
    background: #f4f4f4;
    border-top: 1px solid #e8e8e8;
    padding: 48px 30px 40px;
}

.sa-category-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 30px;
}

.sa-category-header__title {
    font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--global-palette1, #048105);
    margin: 0;
    line-height: 1;
}

.sa-category-header__desc {
    font-family: var(--global-body-font-family, 'Raleway', sans-serif);
    font-size: 14px;
    color: rgba(15,15,15,0.5);
    margin: 8px 0 0;
    grid-column: 1;
    max-width: 560px;
    line-height: 1.5;
}

.sa-category-header__rule {
    display: block;
    height: 2px;
    background: var(--global-palette1, #048105);
    width: 40px;
    grid-row: 1;
    grid-column: 2;
    flex-shrink: 0;
}

/* ── Service split: full-width row wrapper ───────────────────────────────────── */
.sa-split-wrap {
    padding: 80px 30px;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
}

.sa-split-wrap--image-right {
    background: #f7f7f7;
}

/* ── Service split: 1280px contained grid ────────────────────────────────────── */
.sa-split {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Mirror columns for image-right layout */
.sa-split--image-right .sa-split__image-col { order: 2; }
.sa-split--image-right .sa-split__content-col { order: 1; }

/* ── Image column ────────────────────────────────────────────────────────────── */
.sa-split__image-col {
    position: relative;
}

/* Framed image: green offset border accent behind the image */
.sa-split__img-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: visible; /* let the accent border show outside */
}

.sa-split__img-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--global-palette1, #048105);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 0;
}

.sa-split:hover .sa-split__img-frame::before {
    opacity: 1;
    transform: translate(2px, 2px);
}

/* Image sits on top of the accent border */
.sa-split__img-frame > .sa-split__img,
.sa-split__img-frame > .sa-split__img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sa-split__img {
    object-fit: cover;
    object-position: center;
    display: block;
}

.sa-split__img-placeholder {
    background: linear-gradient(145deg, #d8d8d8 0%, #e8e8e8 100%);
}

/* ── Content column ──────────────────────────────────────────────────────────── */
.sa-split__content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sa-split__eyebrow {
    display: block;
    font-family: var(--global-body-font-family, 'Raleway', sans-serif);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--global-palette1, #048105);
    margin-bottom: 14px;
}

.sa-split__title {
    font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
    font-size: 38px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--global-palette3, #0f0f0f);
    line-height: 1.12;
    margin: 0 0 20px;
    letter-spacing: 0.015em;
}

.sa-split__desc {
    font-family: var(--global-body-font-family, 'Raleway', sans-serif);
    font-size: 16px;
    line-height: 1.78;
    color: var(--global-palette4, rgba(15,15,15,0.8));
    margin: 0 0 36px;
}

.sa-split__desc p { margin: 0 0 1em; }
.sa-split__desc p:last-child { margin-bottom: 0; }

/* ── No results ──────────────────────────────────────────────────────────────── */
.sa-no-results {
    padding: 120px 30px;
    text-align: center;
    font-family: var(--global-body-font-family, 'Raleway', sans-serif);
    color: rgba(15,15,15,0.45);
    font-size: 18px;
}

/* ── Responsive: large tablet ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sa-hero__title { font-size: 56px; }
    .sa-split { gap: 60px; }
    .sa-split__title { font-size: 32px; }
}

/* ── Responsive: tablet ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .sa-hero { padding: 90px 24px 80px; }
    .sa-hero__title { font-size: 44px; }
    .sa-hero__subtext { font-size: 16px; }

    .sa-subnav__item { padding: 6px 14px; font-size: 12px; }

    .sa-split-wrap { padding: 60px 24px; }

    .sa-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Always show image first on tablet/mobile regardless of layout */
    .sa-split--image-right .sa-split__image-col,
    .sa-split--image-right .sa-split__content-col { order: unset; }

    .sa-split__img-frame::before { display: none; } /* hide accent on small screens */
    .sa-split__title { font-size: 28px; }
}

/* ── Responsive: mobile ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .sa-hero { padding: 70px 20px 60px; }
    .sa-hero__title { font-size: 36px; }

    .sa-subnav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .sa-subnav::-webkit-scrollbar { display: none; }
    .sa-subnav__inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 16px;
    }
    .sa-subnav__item { padding: 10px 12px; font-size: 11px; flex-shrink: 0; }

    .sa-category-header { padding: 32px 20px 28px; }
    .sa-category-header__inner { grid-template-columns: 1fr; }
    .sa-category-header__rule { display: none; }

    .sa-split-wrap { padding: 48px 20px; }
    .sa-split { gap: 32px; }
    .sa-split__title { font-size: 26px; }
    .sa-split__desc { font-size: 15px; }

    .iemco-btn { font-size: 14px; padding: 0.5rem 1.5rem; }
}

/* =============================================================================
   FAQ Archive  —  archive-faq.php
   FAQ Category Module  —  [faq_category] shortcode
   ============================================================================= */

/* Break out of Kadence's max-width .wrap (same trick as services archive) */
.faq-archive-wrap {
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	overflow-x: clip;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.faq-hero {
	position: relative;
	background: #0a0a0a;
	padding: 140px 30px 120px;
	text-align: center;
	overflow: hidden;
}

.faq-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(4,129,5,0.22) 0%,
		rgba(10,10,10,0.88) 55%,
		rgba(10,10,10,0.97) 100%
	);
	pointer-events: none;
}

.faq-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 740px;
	margin: 0 auto;
}

.faq-hero__eyebrow {
	font-family: var(--global-body-font-family, 'Raleway', sans-serif);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.26em;
	color: var(--global-palette1, #048105);
	margin: 0 0 18px;
}

.faq-hero__title {
	font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
	font-size: 68px;
	font-weight: 500;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 0.02em;
	line-height: 1.05;
	margin: 0 0 24px;
}

.faq-hero__subtext {
	font-family: var(--global-body-font-family, 'Raleway', sans-serif);
	font-size: 17px;
	line-height: 1.75;
	color: rgba(255,255,255,0.55);
	margin: 0;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.faq-hero__link {
	color: var(--global-palette1, #048105);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	transition: opacity 0.2s ease;
}

.faq-hero__link:hover { opacity: 0.75; }

/* Scroll cue (same as services) */
.faq-hero__scroll-cue { margin-top: 52px; }

.faq-hero__scroll-cue span {
	display: block;
	width: 1px;
	height: 60px;
	background: linear-gradient(to bottom, transparent, rgba(4,129,5,0.7));
	margin: 0 auto;
	animation: faq-scroll-pulse 2s ease-in-out infinite;
}

@keyframes faq-scroll-pulse {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
	50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ── Category tab nav (sticky) ──────────────────────────────────────────────── */
.faq-tabnav {
	position: sticky;
	top: 120px; /* JS sets this to real header height */
	z-index: 300;
	background: #0a0a0a;
	border-bottom: 2px solid var(--global-palette1, #048105);
	width: 100%;
}

.faq-tabnav__inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

.faq-tabnav__item {
	display: inline-flex;
	align-items: center;
	padding: 17px 26px;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
	font-weight: 400;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: color 0.22s ease, border-color 0.22s ease;
}

.faq-tabnav__item:hover {
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	border-bottom-color: rgba(4,129,5,0.4);
}

.faq-tabnav__item.is-active {
	color: var(--global-palette1, #048105);
	border-bottom-color: var(--global-palette1, #048105);
}

/* ── Category section ───────────────────────────────────────────────────────── */
.faq-category-section {
	scroll-margin-top: 180px;
	border-top: 1px solid #e8e8e8;
}

.faq-category-header {
	background: #f4f4f4;
	padding: 44px 30px 38px;
}

.faq-category-header__inner {
	max-width: 860px;
	margin: 0 auto;
}

.faq-category-header__title {
	font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--global-palette1, #048105);
	margin: 0;
	line-height: 1;
}

.faq-category-header__desc {
	font-family: var(--global-body-font-family, 'Raleway', sans-serif);
	font-size: 14px;
	color: rgba(15,15,15,0.5);
	margin: 8px 0 0;
	grid-column: 1;
	max-width: 560px;
	line-height: 1.5;
}

.faq-category-header__rule {
	display: none;
}

/* ── Accordion container ────────────────────────────────────────────────────── */
.faq-accordion {
	max-width: 860px;
	margin: 0 auto;
	padding: 10px 30px 60px;
}

/* ── Individual FAQ item ────────────────────────────────────────────────────── */
.faq-item {
	border-bottom: 1px solid #e4e4e4;
}

.faq-item:first-child {
	border-top: 1px solid #e4e4e4;
	margin-top: 20px;
}

/* Trigger (the question row) */
.faq-item__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 22px 0;
	background: transparent !important;
	border: none;
	box-shadow: none !important;
	cursor: pointer;
	text-align: left;
	color: var(--global-palette3, #0f0f0f) !important;
}

/* Beat any Kadence button :hover/:focus/:active overrides (those often set white text) */
.faq-item__trigger:hover,
.faq-item__trigger:focus,
.faq-item__trigger:active {
	background: transparent !important;
	box-shadow: none !important;
	color: var(--global-palette3, #0f0f0f) !important;
}

/* Kill browser default focus ring on mouse/touch, restore it for keyboard */
.faq-item__trigger:focus { outline: none; }
.faq-item__trigger:focus-visible {
	outline: 2px solid var(--global-palette1, #048105);
	outline-offset: 3px;
}

/* Only the icon picks up the accent on hover — keeps the question row calm */
.faq-item__trigger:hover .faq-item__icon {
	color: var(--global-palette1, #048105);
}

/* Open state — covers all interaction states so nothing can bleed through */
.faq-item.is-open .faq-item__trigger,
.faq-item.is-open .faq-item__trigger:hover,
.faq-item.is-open .faq-item__trigger:focus,
.faq-item.is-open .faq-item__trigger:active {
	color: var(--global-palette1, #048105) !important;
}

.faq-item__question {
	font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	line-height: 1.25;
	flex: 1;
}

/* +/− icon */
.faq-item__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
	transition: color 0.25s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	background: currentColor;
	top: 50%;
	left: 50%;
	border-radius: 2px;
}

/* Horizontal bar */
.faq-item__icon::before {
	width: 12px;
	height: 2px;
	transform: translate(-50%, -50%);
}

/* Vertical bar — rotates + fades out when open */
.faq-item__icon::after {
	width: 2px;
	height: 12px;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(45deg);
}

/* Collapsible answer panel */
.faq-item__panel {
	overflow: hidden;
	height: 0; /* JS manages height; CSS is the pre-JS default */
}

.faq-item.is-open .faq-item__panel {
	height: auto; /* Visible before JS initializes */
}

.faq-item__answer {
	padding: 0 0 28px;
	font-family: var(--global-body-font-family, 'Raleway', sans-serif);
	font-size: 16px;
	line-height: 1.78;
	color: var(--global-palette4, rgba(15,15,15,0.8));
}

.faq-item__answer p { margin: 0 0 1em; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer a {
	color: var(--global-palette1, #048105);
	text-decoration: underline;
}
.faq-item__answer ul,
.faq-item__answer ol {
	padding-left: 1.4em;
	margin: 0 0 1em;
}
.faq-item__answer li { margin-bottom: 0.4em; }

/* ── No results ──────────────────────────────────────────────────────────────── */
.faq-no-results {
	padding: 120px 30px;
	text-align: center;
	font-family: var(--global-body-font-family, 'Raleway', sans-serif);
	color: rgba(15,15,15,0.4);
	font-size: 18px;
}

/* ── Shortcode module ───────────────────────────────────────────────────────── */
.faq-cat-module {
	margin: 0 auto;
}

.faq-cat-module .faq-accordion {
	max-width: 100%;
	padding: 0;
}

.faq-cat-module .faq-item:first-child { margin-top: 0; }

.faq-cat-module__title {
	font-family: var(--global-heading-font-family, 'Oswald', sans-serif);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 500;
	text-transform: uppercase;
	color: var(--global-palette3, #0f0f0f);
	line-height: 1.1;
	margin: 0 0 36px;
	letter-spacing: 0.02em;
}

/* ── Responsive: large tablet ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
	.faq-hero__title { font-size: 52px; }
}

/* ── Responsive: tablet ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.faq-hero { padding: 100px 24px 88px; }
	.faq-hero__title { font-size: 42px; }
	.faq-hero__subtext { font-size: 16px; }

	.faq-tabnav__item { padding: 15px 18px; font-size: 12px; }

	.faq-category-header { padding: 32px 24px 28px; }
	.faq-accordion { padding: 8px 24px 48px; }

	.faq-item__question { font-size: 18px; }
}

/* ── Responsive: mobile ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.faq-hero { padding: 80px 20px 70px; }
	.faq-hero__title { font-size: 34px; }

	.faq-tabnav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.faq-tabnav::-webkit-scrollbar { display: none; }
	.faq-tabnav__inner {
		flex-wrap: nowrap;
		justify-content: flex-start;
		padding: 0 16px;
	}
	.faq-tabnav__item { padding: 14px 16px; font-size: 11px; flex-shrink: 0; }

	.faq-category-header { padding: 28px 20px 24px; }
	.faq-category-header__inner { grid-template-columns: 1fr; }
	.faq-category-header__rule { display: none; }

	.faq-accordion { padding: 6px 20px 40px; }

	.faq-item__question { font-size: 16px; }
	.faq-item__trigger { padding: 18px 0; gap: 14px; }
	.faq-item__icon { width: 24px; height: 24px; }

	.faq-cat-module__title { margin-bottom: 24px; }
}

form .gform_fields{
	grid-row-gap: 10px !important;
	grid-column-gap: 10px !important;
}

.gform_wrapper .gform_required_legend{
	display: none !important;
}
