/*** Account Nav ***/

#accountNav {
    padding: 40px 20px;
    max-width: 445px;
    margin: 0 auto;
}

#accountNavNavigation {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.accountNavNavigationItem {
    border: 1px solid var(--primary-green);
    border-radius: 6px;
    padding: 19px 23px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Eames Century Modern', sans-serif;
    color: var(--primary-green);
    line-height: 1;
}

.accountNavNavigationItem[href="/account/plate-pass/"]{
    display: flex;
    justify-content: space-between;
}

#accountNavigationItemPlatePassExpire{
    font-family: Rebrand, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

#accountNavLogoutButton {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Eames Century Modern', sans-serif;
    line-height: 36px;
    color: var(--primary-green);
    text-align: center;
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

#accountNavLogoutButton img {
    width: 25px;
    height: auto;
}

/******** Account General ******/

.accountTitle {
    font-family: "Eames Century Modern", sans-serif;
    color: var(--primary-green);
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 23px;
}

.accountTitle.center {
    text-align: center;
}

.accountSubTitle {
    font-size: 16px;
    font-weight: lighter;
    line-height: 24px;
    text-align: center;
}


.accountSubTitle a {
    text-decoration: underline;
}

@media (min-width: 999px) {
    .accountTitle {
        font-size: 32px;
    }
}