/* Styling des Anmelde-Popups */
.account-login-inner,
.woocommerce-ResetPassword {
    max-width: 600px;
    margin: 2rem auto;

    .h3 {
        margin-bottom: 2rem;
    }

    .woocommerce-form-login {
        input:not([type="checkbox"]) {height: 48px;}

        label {
            color: var(--gn-text-color);
            font-weight: 400;
        }
    }

    .woocommerce-form-row--first,
    .woocommerce-form-row--last {
        width: 100%;
    }

    .woocommerce-button,
    .woocommerce-Button.button {
        padding: 0.5rem 2rem;
        width: 100%;
    }
}




/* Styling der Account Seiten (Kundenkonto) */

.woocommerce-account {

    .normal-title {
        background-color: transparent;
        border: none;
    }

    .page-title {
        margin: 3rem auto 0 auto;

        h1 {
            font-size: 28px;
            line-height: 36px;
        }
    }

    .account-user.circle {
        display: none;
    }

    .woocommerce-MyAccount-navigation ul { 
        display: flex; 
        column-gap: 12px; 
        justify-content: space-evenly; 
        list-style-type: none; 
        flex-flow: wrap;
        margin-bottom: 2rem;

        li {
            width: auto;
            border-top: none;
        }

        a {
            letter-spacing: 0;
            padding: 6px 0;
        }

        a:before {
            height: 2px;
            left: 50%;
            bottom: 0px;
            width: 100%;
            top: unset;
        }
    }

    .my-account {
        max-width: var(--gn-max-container-width);
        margin: 0 auto;

        .large-3 {
            flex-basis: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .large-9 {
            flex-basis: 100%;
            max-width: 100%;
        }

        .col-border {
            border: none;
        }
    }

    .dashboard-links a {
        border-radius: 0;
    }

    .touch-scroll-table {
        box-shadow: none;
    }

    .button {
        margin-right: 0;
    }

    .woocommerce-orders-table__header-order-total,
    .woocommerce-orders-table__cell-order-total,
    .woocommerce-shipments-table__header-shipment-tracking,
    .woocommerce-shipments-table__cell-shipment-tracking {
        display: none;
    }

    .tracking-instruction {
        a {
            color: var(--gn-blue);
            font-weight: 700;
            text-decoration: underline;
        }
    }

    mark {
        background-color: transparent;
        font-weight: 700;
    }

    .woocommerce-column--billing-address,
    .woocommerce-column--shipping-address {
        margin-bottom: 2rem;
    }

    .woocommerce-Address {
        margin-bottom: 2rem;

        .woocommerce-Address-title {
            margin-bottom: 1rem;
            
            h2 {
                margin-bottom: 0;
            }

            .edit {
                text-decoration: underline;
                font-size: 13px;
            }
        }
    }

    input {
        height: 48px;
    }

    .woocommerce-form__input-checkbox {
        height: unset;
    }

}








@media only screen and (min-width: 550px) {
/*************** Tablet Viewport Breakpoint ***************/
    .woocommerce-account {
        .woocommerce-orders-table__header-order-total,
        .woocommerce-orders-table__cell-order-total,
        .woocommerce-shipments-table__header-shipment-tracking,
        .woocommerce-shipments-table__cell-shipment-tracking {
            display: table-cell;
        }
    }


}



@media only screen and (min-width: 850px) {
/*************** Tablet Landscape Breakpoint ***************/

    .woocommerce-account {
        .page-title {
            h1 {
                font-size: 36px;
                line-height: 42px;
            }
        }
    }

}



@media only screen and (min-width: 1110px) {
/*************** Desktop Breakpoint ***************/



}