.account__inner
{
    display: flex;
    gap: 32px;
    margin: 32px 0;
}

.account-nav,
.account__content
{
    padding: 32px;
    border-radius: 16px;
    background: #fff;
}

.account-nav
{
    flex-basis: 30%;
    height: max-content;
    position: sticky;
    top: 149px;
}

.account__content
{
    flex-basis: 70%;
}

.account-nav__list
{
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-nav__list-item a
{
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-nav__list-item a svg
{
    width: 20px;
    height: 20px;
}

.account-nav__list-item a span,
.account-nav__list-item a svg
{
    transition: transform .3s;
}

.account-nav__list-item a[aria-current="page"] span,
.account-nav__list-item a:hover span
{
    transform: translateX(8px);
}

.account-nav__list-item a[aria-current="page"] svg,
.account-nav__list-item a:hover svg
{
    transform: scale(1.1);
}

.account-nav__list-item a[aria-current="page"] svg path
{
    fill: red;
}

.account-address
{
    margin-bottom: 32px;
}

.account-address:last-child
{
    margin-bottom: 0;
}

.account-address header h2,
.account-address header a
{
    margin-bottom: 8px;
}

.account-address header a
{
    display: inline-block;
}

.account__input p span
{
    color: red;
}

.account__input input {
    height: 50px;
    width: 100%;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    color: #111;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

.account__input input::-webkit-input-placeholder {
    color: #b7b7b7;
}

.account__input input::-moz-placeholder {
    color: #b7b7b7;
}

.account__input input:-ms-input-placeholder {
    color: #b7b7b7;
}

.account__input input::-ms-input-placeholder {
    color: #b7b7b7;
}

.account__input input::placeholder {
    color: #b7b7b7;
}

.account__input .nice-select
{
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-color: #e1e1e1;
}

.account__input p {
    color: #111111;
    margin-bottom: 4px;
}

.account__input
{
    margin-bottom: 6px;
}

.account__title,
.account__content h2
{
    margin-bottom: 16px;
}

.account__btn
{
    display: inline-block;
    background: transparent;
    padding: 4px 16px;
    border: 1px solid #111;
    color: #111;
    outline: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;

    transition: background .3s, color .3s;
}

.account__btn:hover
{
    background: #111;
    color: #fff;
}

.account__content > p > a
{
    position: relative;
    color: #e53637;
}

.account__content > p > a:after
{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e53637;
    content: "";
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.account__content > p > a:hover:after
{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media only screen and (max-width: 767px) {
    .account__inner
    {
        flex-direction: column;
        gap: 16px;
    }

    .account-nav
    {
        z-index: 999;
    }

    .account-nav__list
    {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
}