/* =========================================================
   scope01 Accordions
   Global dark-card treatment for Salient/WPBakery toggles.
   ========================================================= */

html body .toggles .toggle {
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 12px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #00e5c8;
}

html body .toggles .toggle > .toggle-title,
html body .toggles .toggle.open > .toggle-title {
    margin-bottom: 0;
    background: transparent;
}

html body .toggles .toggle > .toggle-title > a,
html body .toggles .toggle.open > .toggle-title > a {
    display: block;
    padding: 20px 60px 20px 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: inset 0 0 0 100vmax #000;
}

html body .toggles .toggle > .toggle-title > a:hover,
html body .toggles .toggle > .toggle-title > a:focus,
html body .toggles .toggle.open > .toggle-title > a:hover,
html body .toggles .toggle.open > .toggle-title > a:focus {
    color: #fff;
    box-shadow: inset 0 0 0 100vmax #000;
}

html body .toggles .toggle > .toggle-title > a:focus-visible {
    outline: 2px solid #00e5c8;
    outline-offset: -3px;
}

html body .toggles .toggle > .toggle-title > a > i {
    right: 22px;
    left: auto;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #00e5c8;
    font-size: 0;
}

html body .toggles .toggle > .toggle-title > a > i::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 7px;
    width: 8px;
    height: 8px;
    border: solid #00e5c8;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.2s ease, top 0.2s ease;
}

html body .toggles .toggle.open > .toggle-title > a > i::before {
    top: 9px;
    transform: rotate(-135deg);
}

html body .toggles .toggle > .toggle-title > a > i::after {
    content: none;
}

html body .toggles .toggle > div {
    background: #000;
    border-top: 0;
    box-shadow: none;
    color: #fff;
}

html body .toggles .toggle.open > div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html body .toggles .toggle[data-inner-wrap="true"] > div .inner-toggle-wrap {
    padding: 20px 22px 22px;
}

html body .toggles .toggle > div,
html body .toggles .toggle > div :is(p, li, h1, h2, h3, h4, h5, h6, .wpb_text_column) {
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    html body .toggles .toggle > .toggle-title > a > i::before {
        transition: none;
    }
}
