.woocommerce-account .my-account {
    display: grid;
    grid-template-columns: 3fr 12fr;
    gap: 45px;
    align-items: flex-start;
}

.woocommerce-MyAccount-content {
    margin-bottom: 60px;
}

.woocommerce-account h3 {
    font-size: 25px;
    margin-bottom: 30px;

}

.woocommerce-MyAccount-navigation {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation a {
    color: var(--black-color);
    text-decoration: none;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.woocommerce-MyAccount-content h1,
.woocommerce-MyAccount-content h2 {
    font-size: 20px;
}

.woocommerce-MyAccount-navigation a:before {
    content: '';
    width: 17px;
    height: 17px;
    background-image: url(../../images/account/dashboard.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--minabestallningar a:before {
    background-image: url(../../images/account/my-orders.svg);
}

.woocommerce-MyAccount-navigation-link--produktlistor a:before {
    background-image: url(../../images/account/lists.svg);
}

.woocommerce-MyAccount-navigation-link--edit-address a:before {
    background-image: url(../../images/account/account-information.svg);
}

.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    background-image: url(../../images/account/log-out.svg);
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
    background-color: var(--grey-color);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header.woocommerce-Address-title.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

header.woocommerce-Address-title.title h3 {
    margin: 0;
    font-size: 20px;
}

.u-columns .woocommerce-Address {
    background: white;
    border-radius: 6px;
    padding: 20px;
}

.u-columns .woocommerce-Address:not(:last-child) {
    margin-bottom: 20px;
}

.u-columns .woocommerce-Address address {
    font-style: normal;
    line-height: 1.5;
}

.u-columns .woocommerce-Address a.edit {
    text-decoration: none;
    color: var(--black-color);
    opacity: .5;
    transition: opacity .2s ease;
}

.u-columns .woocommerce-Address a.edit:hover {
    opacity: 1;
}

.woocommerce-address-fields {
    background: white;
    padding: 25px 20px;
    border-radius: 6px;
}

.woocommerce-MyAccount-content form h3 {
    margin-bottom: 15px !important;
}

.woocommerce-address-fields p {
    margin-top: 20px;
}

.woocommerce-address-fields p button.button {
    background: var(--blue-button);
    color: white;
    transition: .2s ease;
}

.woocommerce-address-fields p button.button:hover {
    background: var(--blue-button-hover);
}

/* Links */

.shortcuts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 0;
}

.shortcut {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0);
    transition: .2s ease;
}

.shortcut:hover {
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.08);
}

.shortcut__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--text-color);
}

.shortcut__text h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.shortcut img {
    margin-right: 15px;
    background-color: var(--site-background-color);
    padding: 15px;
    border-radius: 6px;
}

@media (max-width:1100px) {
    .woocommerce-account .my-account {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .woocommerce-account h3 {
        margin-bottom: 15px;
    }

    .woocommerce-MyAccount-navigation {
        margin-bottom: 0;
    }
}

@media (max-width:767px) {
    .shortcuts {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .shortcut {
        padding: 15px;
    }

    .shortcut__text span {
        display: none;
    }

    .u-columns .woocommerce-Address a.edit {
        font-size: 14px;
    }

    .woocommerce-address-fields p button.button {
        width: 100%;
    }
}