/* FLEX_LP-custom.css */

/* ================== */
/* ctaBox for modules */
/* ================== */
.ctaBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: .75rem 1.25rem 1.5rem;
    background-color: #F9F9F9;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
    border-radius: 0 0 0.25rem 0.25rem;
}

/* formBox toggle - ON = background | OFF = nothing (default) */
body.formBox-on form.mktoForm {
    padding: .75rem 1.25rem 1.5rem;
    background-color: #F9F9F9;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
    border-radius: 0 0 0.25rem 0.25rem;
}

/* =========================== */
/* anchor bar (sub-navigation) */
/* =========================== */
ul.anchor-bar {
    border-bottom: 1px solid #c1c6c8;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.anchor-bar-item a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}
.anchor-bar-item a:hover {
    background-color: #c1c6c8;
}

/* ============================ */
/* resources module (accordion) */
/* ============================ */
h1.accordion-headline {
    border-bottom: 2px solid gray;
    display: inline-block;
    position: relative;
}
h1.accordion-headline::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    display: block;
    position: absolute;
    margin-top: -4px;
    right: 0;
}

/* collapse buttons */
.button-collapse {
    background-color: #0071d9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    margin-bottom: 2px;
    text-align: center;
    line-height: 1;
    padding: 0.5rem 1rem;
}
.button-collapse:hover {
    background-color: #0049B2;
}
[data-panel] {
    display: none;
}
[data-panel].active {
    display: block;
}
/* button grid */
.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.25rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 576px) {
    .button-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (min-width: 768px) {
    .button-grid {
        grid-template-columns: 1fr;
        margin-bottom:0;
    }
}
