/* WC Font Family */
@font-face {
    font-family: WooCommerce;
    src: url(/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff2) format("woff2"),url(/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff) format("woff"),url(/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* Privacy Text */
.woocommerce-privacy-policy-text {
    margin-bottom: 1rem;
}

/* Password Input */
.woocommerce form .password-input,.woocommerce-page form .password-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.woocommerce form .password-input input[type="password"],
.woocommerce-page form .password-input input[type="password"] {
    padding-right: 2.5rem;
}

.woocommerce form .password-input input::-ms-reveal,
.woocommerce-page form .password-input input::-ms-reveal {
    display: none;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    cursor: pointer;
    border: none;
    background: transparent;
}

.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
    font-family: WooCommerce;
    speak: never;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e010";
    text-decoration: none;
}

.woocommerce form .show-password-input.display-password::after,.woocommerce-page form .show-password-input.display-password::after {
    color: #585858;
}

/* Password Strength Indicator */
.woocommerce-password-strength {
    margin-top: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    border: none;
    text-align: center;
    font-weight: 700;
}

.woocommerce-password-strength.strong {
    background-color: #c1e1b9;
}

.woocommerce-password-strength.short {
    background-color: #f1adad;
}

.woocommerce-password-strength.bad {
    background-color: #fbc5a9;
}

.woocommerce-password-strength.good {
    background-color: #ffe399;
}

.woocommerce-password-hint {
    margin: 0.25rem 0 0;
    display: block;
}

/* Dashboard */
.woocommerce-MyAccount-navigation {}

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

.woocommerce-MyAccount-navigation-link {
    margin-top: -1px;
    margin-bottom: 0;
    padding-left: 0;
}

.woocommerce-MyAccount-navigation-link:before {
    display: none;
}

.woocommerce-MyAccount-navigation-link a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.woocommerce-MyAccount-navigation-link a i {
    font-size: 1.25rem;
}

.woocommerce-MyAccount-navigation-link a:hover {
    background-color: #f7f7f7;
}

/* Recipes */
.customer-recipes-table {
    table-layout: fixed;
}

.customer-recipes-table td {
    word-wrap: break-word;
}

.customer-document-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.customer-document-btn-group > .btn {
    margin: 0;
}

/* Privacy Policy */
.woocommerce-privacy-policy-text {
    padding: 1.25rem;
    border-radius: 0.25rem;
    background-color: #e0e0e0;
}

/* Login/Signup Screen */
.auth-panel {
    margin: 0 auto;
    padding: 2rem 1rem;
    max-width: 35rem;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    color: #6e6e6e;
    /* transform: scale(0.9); */
    transform-origin: top center;
}

.auth-panel p {
    margin-bottom: 0.75rem;
}

.auth-panel__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.auth-panel__logo {
    max-width: 6rem;
    height: 100%;
    object-fit: contain;
}

.auth-panel__tagline {
    max-width: 20rem;
    margin-bottom: -4rem;
    object-fit: contain;
    transform: translateY(-3rem) rotateZ(-5.18deg);
}

.auth-panel__divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.auth-panel__divider:before,
.auth-panel__divider:after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background-color: #6e6e6e;
}

.auth-panel__footer {
    text-align: center;
}

.auth-panel__footer a {
    color: #094fff;
}

.social-auth-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
}

.social-auth-list li {
    margin-bottom: 0 !important;
}

.social-auth-list img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.account-sidenav-toggle {
    padding: 0;
    border: none;
    background: none;
    font-size: 1.25rem;
}

@media (min-width: 600px) {
    .account-sidenav-toggle {
        font-size: 2rem;
    }
}

@media (min-width: 1025px) {
    .woocommerce-MyAccount-navigation ul {
        gap: 0;
    }

    .woocommerce-MyAccount-navigation-link {
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .woocommerce-MyAccount-navigation-link a {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .woocommerce-MyAccount-navigation-link a i {
        font-size: 1.5rem;
    }
}