@font-face{
    font-family:"Myriad Pro";
    src:url("fonts/MyriadPro-Light.woff2") format("woff2");
    font-weight:300;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:"Myriad Pro";
    src:url("fonts/MyriadPro-Bold.woff2") format("woff2");
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

.aud7-help-page{
    --aud7-teal:#217f88;
    --aud7-teal-dark:#155a63;
    --aud7-cream:#efe4bf;

    margin:0;
    background:#ffffff;
    color:var(--aud7-teal);
    font-family:"Myriad Pro","Helvetica Neue",Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
    text-rendering:geometricPrecision;
}

.aud7-help-page *{
    box-sizing:border-box;
}

.aud7-help-page a{
    text-decoration:none;
}

.aud7-help-page.eka-modal-open{
    overflow:hidden;
}

.aud7-help-page__wrap{
    width:min(860px, 100%);
    margin:0 auto;
    background:#ffffff;
}

.aud7-help-page .aud7-help-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    padding:20px 24px 28px;
    background:#ffffff;
}

.aud7-help-page .eka-help-card{
    display:flex;
    min-width:0;
    min-height:188px;
    width:100%;
    padding:18px 22px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    overflow:visible;
    border:1px solid var(--aud7-teal);
    border-radius:4px;
    background:#ffffff;
    color:var(--aud7-teal);
    text-align:center;
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.aud7-help-page .eka-help-card--cream{
    border-color:var(--aud7-cream);
    background:var(--aud7-cream);
}

.aud7-help-page .eka-help-card:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(17,36,51,.12);
}

.aud7-help-page .eka-help-card:focus-visible{
    outline:3px solid rgba(199,34,75,.34);
    outline-offset:4px;
}

.aud7-help-page .eka-help-card strong{
    display:block;
    color:var(--aud7-teal);
    font-size:28px;
    font-weight:700;
    line-height:1.05;
}

.aud7-help-page .eka-help-card small{
    display:block;
    max-width:330px;
    margin-top:8px;
    color:var(--aud7-teal);
    font-size:18px;
    font-weight:300;
    line-height:1.2;
}

.aud7-help-page .aud7-help-row .eka-help-card > img.eka-icon-img{
    position:static !important;
    top:auto !important;
    right:auto !important;
    bottom:auto !important;
    left:auto !important;
    display:block !important;
    float:none !important;
    flex:0 0 auto;
    align-self:center !important;
    max-width:none;
    object-fit:contain;
    object-position:center;
    margin:0 auto 16px !important;
    overflow:visible;
}

.aud7-help-page .eka-icon-img--choice{
    width:72px;
    height:72px;
}

.aud7-help-page .eka-icon-img--testdrive{
    width:78px;
    height:70px;
}

.aud7-help-page .eka-form-modal[hidden]{
    display:none;
}

.aud7-help-page .eka-form-modal{
    position:fixed;
    inset:0;
    z-index:200000;
    display:grid;
    place-items:center;
    padding:18px;
}

.aud7-help-page .eka-form-modal__backdrop{
    position:absolute;
    inset:0;
    background:rgba(17,17,17,.72);
}

.aud7-help-page .eka-form-modal__panel{
    position:relative;
    z-index:1;
    width:min(760px, 100%);
    height:min(820px, 90vh);
    padding-top:58px;
    overflow:hidden;
    border-radius:6px;
    background:#ffffff;
    box-shadow:0 24px 70px rgba(0,0,0,.32);
}

.aud7-help-page .eka-form-modal__title{
    position:absolute;
    top:17px;
    right:70px;
    left:22px;
    margin:0;
    overflow:hidden;
    color:var(--aud7-teal-dark);
    font-size:22px;
    font-weight:700;
    line-height:1.15;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.aud7-help-page .eka-form-modal__close{
    position:absolute;
    top:8px;
    right:10px;
    z-index:2;
    width:42px;
    height:42px;
    padding:0;
    border:0;
    border-radius:50%;
    background:var(--aud7-teal);
    color:#ffffff;
    cursor:pointer;
    font:300 32px/40px Arial,sans-serif;
}

.aud7-help-page .eka-form-modal__close:hover{
    background:var(--aud7-teal-dark);
}

.aud7-help-page .eka-form-modal__close:focus-visible{
    outline:3px solid rgba(33,127,136,.35);
    outline-offset:3px;
}

.aud7-help-page .eka-form-modal__frame{
    display:block;
    width:100%;
    height:100%;
    margin:0;
    border:0;
    background:#ffffff;
}

@media (max-width:720px){
    .aud7-help-page .aud7-help-row{
        grid-template-columns:1fr;
        gap:16px;
        padding:18px;
    }

    .aud7-help-page .eka-help-card{
        min-height:150px;
    }

    .aud7-help-page .eka-help-card strong{
        font-size:24px;
    }

    .aud7-help-page .eka-help-card small{
        font-size:16px;
    }

    .aud7-help-page .eka-form-modal{
        padding:8px;
    }

    .aud7-help-page .eka-form-modal__panel{
        height:calc(100vh - 16px);
        max-height:none;
        padding-top:54px;
    }

    .aud7-help-page .eka-form-modal__title{
        top:17px;
        left:16px;
        font-size:19px;
    }
}

@media (prefers-reduced-motion:reduce){
    .aud7-help-page .eka-help-card{
        transition:none;
    }

    .aud7-help-page .eka-help-card:hover{
        transform:none;
    }
}
