@font-face{
    font-family:"Franklin AK";
    src:url("fonts/ak/FranklinGothicATF-ExLt.otf") format("opentype");
    font-weight:300;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:"Franklin AK";
    src:url("fonts/ak/FranklinGothic-Medium.ttf") format("truetype");
    font-weight:500;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:"Franklin AK";
    src:url("fonts/ak/FranklinGothicATF-Hvy.otf") format("opentype");
    font-weight:800;
    font-style:normal;
    font-display:swap;
}

.ak-help-page{
    --ak-help-red:#b30838;
    --ak-help-red-soft:#c02344;
    --ak-help-cream:#faf4ec;
    --ak-help-text:#6f6a66;

    margin:0;
    background:#ffffff;
    color:var(--ak-help-red);
    font-family:"Franklin AK","Arial Narrow",Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
    text-rendering:geometricPrecision;
}

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

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

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

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

.ak-help-page__row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:55px 24px 42px;
    background:#ffffff;
}

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

.ak-help-page__card:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(20,10,10,.12);
}

.ak-help-page__card:focus-visible{
    outline:3px solid rgba(179,8,56,.3);
    outline-offset:4px;
}

.ak-help-page__card--red{
    border-color:var(--ak-help-red);
    background:var(--ak-help-red);
    color:#ffffff;
}

.ak-help-page__card strong{
    display:block;
    color:currentColor;
    font-size:30px;
    font-weight:500;
    line-height:1.05;
}

.ak-help-page__card small{
    display:block;
    max-width:330px;
    margin-top:7px;
    color:currentColor;
    font-size:19px;
    font-weight:300;
    line-height:1.15;
}

.ak-help-page .ak-help-page__row .ak-help-page__card > img.ak-help-page__icon{
    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;
    width:70px;
    height:70px;
    max-width:none;
    object-fit:contain;
    object-position:center;
    margin:0 auto 13px !important;
    overflow:visible;
}

.ak-help-page .ak-help-page__row .ak-help-page__card > img.ak-help-page__icon--choice{
    width:70px;
    height:70px;
}

.ak-help-page .ak-help-page__row .ak-help-page__card > img.ak-help-page__icon--testdrive{
    width:80px;
    height:70px;
}

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

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

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

.ak-help-page .ak-help-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);
}

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

.ak-help-page .ak-help-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(--ak-help-red);
    color:#ffffff;
    cursor:pointer;
    font:300 32px/40px Arial,sans-serif;
}

.ak-help-page .ak-help-form-modal__close:hover{
    background:var(--ak-help-red-soft);
}

.ak-help-page .ak-help-form-modal__close:focus-visible{
    outline:3px solid rgba(179,8,56,.3);
    outline-offset:3px;
}

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

@media (max-width:720px){
    .ak-help-page__row{
        grid-template-columns:1fr;
        gap:18px;
        padding:26px 18px;
    }

    .ak-help-page__card{
        min-height:168px;
    }

    .ak-help-page__card strong{
        font-size:24px;
    }

    .ak-help-page__card small{
        font-size:17px;
    }

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

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

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

@media (prefers-reduced-motion:reduce){
    .ak-help-page__card{
        transition:none;
    }

    .ak-help-page__card:hover{
        transform:none;
    }
}
