/* Page my account - login and register section */

.login-page {
    width: 100%;
    display: flex;

    @media (max-width: 1150px) {
        flex-direction: column;
    }
}

#post-14 .entry-header {
    display: none !important;
}

#validation-box-place .wc-block-components-notice-banner {
    min-width: 100%;
    margin: 40px 0 0 !important;
    max-width: unset !important;
}

#set-password-form #validation-box-place .wc-block-components-notice-banner {
    margin: 0 0 40px 0 !important;
}

.login-wrapper {
    width: 50%;
    border-right: 1px solid var(--dark-font-color);
    padding: 69px 93px 120px calc(50vw - 507px - 101px);
    box-sizing: border-box;
    background-color: #cccac7;

    @media(max-width: 1300px) {
        padding: 69px 43px 120px calc(50vw - 507px - 51px);
    }

    @media(max-width: 1200px) {
        padding: 69px 30px 120px;
    }

    @media (max-width: 1150px) {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--dark-font-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 30px;
    }

    @media (max-width: 600px) {
        padding: 30px 20px 60px;
    }
}

.login-wrapper form {
    border: 1px solid var(--form-gray-color);
    border-radius: 40px;
    padding: 60px;
    box-sizing: border-box;
    background-color: white;
    width: 100%;

    @media(max-width: 1150px) {
        max-width: 507px;
    }

    @media (max-width: 600px) {
        padding: 20px;
        border-radius: 20px;
    }
}

.register-wrapper {
    width: 50%;
    background-color: #F6F1C4;
    padding: 69px calc(50vw - 507px - 101px) 120px 93px;
    box-sizing: border-box;

    @media(max-width: 1300px) {
        padding: 69px calc(50vw - 507px - 51px) 120px 43px;
    }

    @media(max-width: 1200px) {
        padding: 69px 30px 120px;
    }

    @media (max-width: 1150px) {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--dark-font-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 30px;
    }

    @media (max-width: 600px) {
        padding: 30px 20px 60px;
    }
}


.register-wrapper form {
    border: 1px solid var(--form-gray-color);
    border-radius: 40px;
    padding: 60px;
    box-sizing: border-box;
    background-color: var(--light-product-background);

    @media(max-width: 1150px) {
        max-width: 507px;
    }

    @media (max-width: 600px) {
        padding: 20px;
        border-radius: 20px;
    }
}

.login-page h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    max-width: 507px
}

.login-input-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.login-input-wrapper input,
.register-wrapper input {
    width: 100%;
    padding: 18px 20px;
    height: 60px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.32px;
    font-family: "Neue Montreal";
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid var(--form-gray-color);
    outline: 0;
    background-color: transparent;
}

.login-input-wrapper input::placeholder {
    color: var(--form-gray-color);
}

.woocommerce-form-login .woocommerce-notices-wrapper .wc-block-components-notice-banner,
.woocommerce-form-register .woocommerce-notices-wrapper .wc-block-components-notice-banner {
    margin: 0 0 40px !important;
    width: 100% !important;
}

.form-login-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    align-items: center;

    @media(max-width: 600px) {
        flex-direction: column;
        padding-top: 0;
        align-items: flex-start;
    }
}

.woocommerce-form-login__rememberme {
    @media(max-width: 600px) {
        order: 1;
        margin-bottom: 20px;
    }
}

#login-button {
    @media(max-width: 600px) {
        order: 2;
    }
}

.woocommerce-form-login__submit {
    background-color: var(--dark-font-color);
    color: var(--white);
    padding: 15px 42px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    border-radius: 40px;
}

.remebmer-me-button {
    box-sizing: border-box;
    min-height: 20px;
    min-width: 20px;
    border: 1px solid var(--form-gray-color);
    margin-right: 10px;
}


.form-login-buttons-wrapper label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me-text {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.lost-password-wrapper {
    margin-top: 40px;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.lost-password-wrapper a {
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.lost-password-wrapper a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--dark-font-color);
    transition: var(--base-transition);
}

.lost-password-wrapper a:hover::before {
    background-color: var(--dark-font-hover-color);
    transition: var(--base-transition);
}

.other-way-login-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.other-way-login-wrapper a {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1977F3;
    transform: var(--base-transition);

    @media(max-width: 600px) {
        font-size: 14px;
        font-weight: 400;
    }
}

.other-way-login-wrapper a .nsl-button {
    border-radius: 40px !important;
}

.other-way-login-wrapper a .nsl-button-label-container {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 125% !important;
    letter-spacing: 0.64px !important;
    text-transform: uppercase !important;
    transform: var(--base-transition);
}

.other-way-login-wrapper a:hover .nsl-button-label-container {
    color: #1977F3 !important;
}

.other-way-login-wrapper a span {
    margin-right: 15px;
    display: flex;
    justify-content: flex-start
}

.nsl-container-buttons {
    width: 100%;
}

div.nsl-container .nsl-button {
    display: flex !important;
    justify-content: center !important;
    padding: 4px 0 !important;
}

div.nsl-button-label-container {
    flex: initial !important;
    padding: 4px 0 !important;
}


.nsl-button {
    display: flex !important;
    justify-content: center !important;
}

div.nsl-button-label-container {
    margin: 0 0px 0 3px !important;
    font-family: "Neue Montreal" !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
}

.other-way-login-wrapper a:first-child {
    margin-bottom: 20px;
    transform: var(--base-transition);
    border: 1px solid #EA4335;
}

.other-way-login-wrapper a:hover:first-child {
    color: #EA4335;
    transform: var(--base-transition);
}

.register-information-row,
.woocommerce-privacy-policy-text p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.register-button,
.woocommerce-ResetPassword .woocommerce-Button {
    color: var(--white);
    font-family: "Neue Montreal";
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    background-color: var(--dark-font-color);
    padding: 14px 42px 16px 42px;
    border-radius: 40px;
    margin-top: 20px;
}

.register-button {
    @media(max-width: 1150px) {
        width: 100%;
    }
}

#reset-password-form p.woocommerce-form-row {
    @media(max-width: 1000px) {
        width: 100%;
        max-width: 387px;
    }
}

.lost-password-confirmation-page-wrapper .lost-password-confirmation-button-wrapper {
    @media(max-width: 1000px) {
        width: 100%;
        max-width: 387px;
    }
}

#reset-password-form p.woocommerce-form-row button {
    width: 100%;
}

.woocommerce-ResetPassword {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 61px calc((100% - 590px) / 2) 120px;
    box-sizing: border-box;
    min-height: 600px;

    @media(max-width: 700px) {
        padding: 20px 20px 60px;
    }
}

.woocommerce-ResetPassword h2 {
    font-size: 34px;
    letter-spacing: 0.68px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 387px;
}

.woocommerce-ResetPassword p {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    text-align: center;
    max-width: 387px;
}

.woocommerce-ResetPassword p.common-input-wrapper {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.44px;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 40px;
}


.woocommerce-ResetPassword input,
.woocommerce-ResetPassword input {
    width: 100%;
    padding: 18px 20px;
    height: 60px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.32px;
    font-family: "Neue Montreal";
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid var(--form-gray-color);
    outline: 0;
    background-color: transparent;
}

#reset-password-form #validation-box-place {
    margin: 0 0 40px !important;
    padding: 0 !important;
}

#reset-password-form #validation-box-place .wc-block-components-notice-banner {
    margin: 0 !important;
}

.woocommerce-lost-password #reset-password-form #validation-box-place .wc-block-components-notice-banner {
    margin: 40px 0 0 !important;
}

.woocommerce-ResetPassword .common-input-wrapper {
    margin: 20px 0;
}

.woocommerce-ResetPassword input::placeholder {
    color: var(--form-gray-color);
}

.woocommerce-ResetPassword .woocommerce-Button {
    margin-top: 0;
}



/* Page my account - content section */
#my-account-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px - 695px);

    @media(max-width: 1000px) {
        justify-content: flex-start;
    }
}

.my-account-page-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1440px;
    padding: 60px 120px 120px;
    box-sizing: border-box;

    @media(max-width: 1250px) {
        padding: 60px 60px 120px;
    }

    @media(max-width: 1000px) {
        flex-direction: column;
        padding: 0 60px 60px;
        justify-content: flex-start;
    }


    @media(max-width: 800px) {
        padding: 0 20px 60px;
    }
}

#my-account-page .woocommerce-MyAccount-navigation {
    width: 285px;

    @media(max-width: 1250px) {
        width: 200px;
    }

    @media(max-width: 1000px) {
        margin-bottom: 40px;
        width: 100%;
        padding-bottom: 16px;
        position: relative;
    }
}


@media(max-width: 1000px) {
    #my-account-page .woocommerce-MyAccount-navigation::after {
        position: absolute;
        content: "";
        bottom: 0;
        width: 100vw;
        left: -60px;
        height: 1px;
        background-color: var(--dark-font-color);
    }
}

@media(max-width: 800px) {
    #my-account-page .woocommerce-MyAccount-navigation::after {
        left: -20px !important;
    }
}


#my-account-page .woocommerce-MyAccount-navigation ul {
    @media(max-width: 1000px) {
        display: flex;
        flex-direction: row;
    }
}

#my-account-page .woocommerce-MyAccount-content {
    width: calc(100% - 285px);
    padding: 0 20px;
    box-sizing: border-box;

    @media(max-width: 1250px) {
        width: calc(100% - 200px);
    }

    @media(max-width: 1000px) {
        padding: 0;
        width: 100%;
    }
}

#my-account-page .woocommerce-MyAccount-content form {
    max-width: 590px;

    @media(max-width: 1000px) {
        max-width: unset;
    }
}


#my-account-page .woocommerce-MyAccount-content table {
    @media(max-width: 1000px) {
        width: 100%;
    }

    @media (max-width: 767px) {
        width: auto;
    }
}

.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
    max-width: 590px;

    @media(max-width: 1000px) {
        max-width: unset;
    }
}

#my-account-page .woocommerce-MyAccount-navigation ul {
    @media(max-width: 1000px) {
        flex-wrap: wrap;
        gap: 5px 50px;
        justify-content: center;
        align-items: center;
    }
}

#my-account-page .woocommerce-MyAccount-navigation ul li {
    height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;

    @media(max-width: 1000px) {
        justify-content: center;
        font-size: 30px;
        margin-bottom: 0;
        height: auto;
    }
}

#my-account-page .woocommerce-MyAccount-navigation ul li a {
    position: relative;
    padding: 6px 0;

    @media(max-width: 1000px) {
        padding: 14px 0 2px;
        box-sizing: border-box;
        position: relative;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.56px;
    }

    @media(max-width: 600px) {
        font-size: 14px;
    }
}

#my-account-page .woocommerce-MyAccount-navigation ul li.is-active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--dark-font-color);
}

.dashboard-section-header {
    font-size: 34px;
    letter-spacing: 0.68px;
    margin-bottom: 40px;
}

.dashboard-section-desciption {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.36px;
}

.account-orders-table {
    min-width: 100%;
}

.account-orders-table .woocommerce-orders-table__cell-order-date {
    min-width: 85px;
}

.account-orders-table thead th span {
    text-transform: uppercase;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.account-orders-table tr th {
    padding: 15px 40px 15px 0;
    text-align: left !important;

    @media(max-width: 1100px) {
        padding: 15px 25px 15px 0;
    }
}

.account-orders-table tr td {
    padding: 40px 40px 40px 0;
    text-align: left !important;
    border-bottom: 1px solid var(--dark-font-color);

    @media(max-width: 1100px) {
        padding: 30px 25px 30px 0;
    }

    @media (max-width: 767px) {
        padding: 10px 0;
        border-bottom: 0;
    }
}

.account-orders-table tr td:first-child {
    @media (max-width: 767px) {
        padding: 30px 0 10px;
        border-bottom: 0;
    }
}

.account-orders-table tr .woocommerce-orders-table__cell-order-actions {
    text-align: right !important;

    @media (max-width: 767px) {
        border-bottom: 1px solid var(--dark-font-color) !important;
    }
}

.account-orders-table tr .woocommerce-orders-table__cell-order-actions a {
    text-transform: uppercase;

    @media (max-width: 767px) {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
}

.account-orders-table tr th {
    border-bottom: 1px solid var(--dark-font-color);
}

.account-orders-table {
    @media (max-width: 767px) {
        border-top: 1px solid var(--dark-font-color);
    }
}

.account-orders-table .woocommerce-orders-table__cell {
    @media (max-width: 767px) {
        display: flex !important;
        justify-content: flex-start !important;
    }
}

.account-orders-table .woocommerce-orders-table__cell::before {
    padding-right: 20px !important;
    min-width: 50% !important;


    @media (max-width: 767px) {
        min-width: 50% !important;
    }
}

.account-orders-table .woocommerce-orders-table__cell:last-child::before {
    display: none
}

.woocommerce-orders-table__header-order-actions {
    opacity: 0;
    /* border-bottom: 1px transparent !important; */
}

.woocommerce-orders-table__cell-order-actions {
    padding: 20px 0 20px 0 !important;
}

.woocommerce-orders-table__cell-order-actions a {
    background-color: var(--dark-font-color);
    color: var(--white);
    height: 50px;
    padding: 15px 42px 15px 42px;
    border-radius: 40px;
    box-sizing: border-box;

    @media (max-width: 767px) {
        margin-bottom: 40px;
        max-width: 60%;
        margin-left: 20%;
    }

    @media (max-width: 600px) {
        max-width: unset;
        margin-left: 0;
    }
}

.orders-table-actions-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 8px 8px;

    @media (max-width: 767px) {
        width: 100%;
        flex-direction: column;
    }
}

.orders-table-actions-wrapper a {
    text-align: center;
    font-size: 13px;
    padding: 10px 15px;
    height: auto;
    font-weight: 500;
    border: 1px solid var(--dark-font-color);
    transition: var(--base-transition);

    @media(max-width: 800px) {
        font-size: 12px;
        padding: 10px 12px;
    }
}

.orders-table-actions-wrapper a:hover {
    opacity: 0.7;
}

.cancel-action-button {
    background-color: rgba(23, 22, 22, 0.05) !important;
    color: var(--dark-font-color) !important;
    border: 1px solid rgba(23, 22, 22, 0.05) !important;

}

.pay-action-button {
    background-color: transparent !important;
    color: var(--dark-font-color) !important;
}

.orders-table-td-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.woocommerce-orders-table td {
    vertical-align: middle;
}

#my-account-page .wc-block-components-notice-banner {
    max-width: unset;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 20px;
    padding: 20px 40px !important;
    background-color: rgba(226, 241, 247, 0.20) !important;
    border: 1px solid #D5DFE1 !important;
    display: flex;
    align-items: center;
    margin-bottom: 40px;

    @media(max-width: 1200px) {
        padding: 20px !important;
    }

    @media(max-width: 1000px) {
        flex-direction: column;
    }
}

#my-account-page .wc-block-components-notice-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media(max-width: 1000px) {
        flex-direction: column;
        text-align: center;
    }
}

#my-account-page .wc-block-components-notice-banner svg {
    fill: var(--white) !important;
    background-color: var(--dark-font-color) !important;
    max-width: 20px !important;
    max-height: 20px !important;

    @media(max-width: 1000px) {
        max-width: unset !important;
        max-height: unset !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }
}

#my-account-page .wc-block-components-notice-banner a svg {
    fill: none !important;
    max-width: unset !important;
    max-height: unset !important;
}

#my-account-page .wc-block-components-notice-banner a svg path {
    stroke: white !important;
}


#my-account-page .wc-block-components-notice-banner a {
    opacity: 1 !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;
    text-transform: uppercase;

    @media(max-width: 1000px) {
        margin-top: 20px;
    }
}

#my-account-page .wc-block-components-notice-banner__content {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.36px;
}

#my-account-page .wc-block-components-notice-banner__content ul li {
    margin-bottom: 5px;
}

#my-account-page .wc-block-components-notice-banner__summary {
    margin-bottom: 0;
}

#my-account-page .woocommerce-addresses {
    display: flex;
    justify-content: space-between;
    width: 100%;

    @media(max-width: 1300px) {
        flex-direction: column;
    }
}

#my-account-page .address-box {
    padding: 40px;
    border: 1px solid var(--dark-font-color);
    width: calc(50% - 10px);
    box-sizing: border-box;
    border-radius: 20px;

    @media(max-width: 1300px) {
        width: 100%;
        margin-bottom: 20px;
    }

    @media(max-width: 600px) {
        padding: 20px;
    }
}

#my-account-page .address-box header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#my-account-page .address-box header h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
}

#my-account-page .address-box header a {
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;
    padding: 6px 0;
    border-bottom: 1px solid var(--dark-font-color);
}

#my-account-page .address-box header a:hover {
    border-bottom: 1px solid var(--dark-font-hover-color);
    transition: var(--base-transition);
}


#my-account-page .address-box address {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.36px;
}


/* Remove display to show fields label */
#my-account-page .woocommerce-address-fields__field-wrapper p label {
    /* display: none !important; */
    margin-bottom: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.24px;
    font-family: "Neue Montreal";
}

#my-account-page .woocommerce-address-fields__field-wrapper p label abbr,
#my-account-page .woocommerce-address-fields__field-wrapper p label span {
    color: inherit;
}

#my-account-page .woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}


#my-account-page .form-row {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

#my-account-page #billing_first_name_field,
#my-account-page #billing_last_name_field,
#my-account-page #billing_postcode_field,
#my-account-page #billing_city_field,
#my-account-page #shipping_first_name_field,
#my-account-page #shipping_last_name_field,
#my-account-page #shipping_postcode_field,
#my-account-page #shipping_city_field,
#my-account-page #shipping_state_field {
    width: calc(50% - 10px);
    box-sizing: border-box;

    @media(max-width: 800px) {
        width: 100%;
    }
}


#my-account-page .woocommerce-address-fields__field-wrapper input {
    width: 100%;
    box-sizing: border-box;
    height: 60px;
    padding: 18px 20px;
    border: 0;
    outline: 1px solid var(--form-gray-color);
    border-radius: 4px;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.32px;
    font-family: "Neue Montreal";
    background-color: transparent !important;
    /* margin-top: 5px; */
}


#my-account-page .woocommerce-address-fields__field-wrapper input:focus {
    border: 0;
    outline: 2px solid var(--form-gray-color);
}

#my-account-page .woocommerce-address-fields__field-wrapper input::placeholder {
    color: var(--form-gray-color);
}

.woocommerce-MyAccount-content form h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin-bottom: 40px;
}

#my-account-page .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single {
    border: 1px solid var(--form-gray-color);
    height: auto;
    box-sizing: border-box;
    /* margin-top: 5px; */
}

#my-account-page .woocommerce-address-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 16px 20px;
}

#my-account-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 23px;
    right: 27px;
}

#my-account-page .select2-container--default .select2-selection--single .select2-selection__arrow b {
    transform: scale(1.9);
}

.select2-search__field {
    border: 1px solid var(--form-gray-color);
    border-radius: 4px;
}

.select2-dropdown {
    border: 1px solid var(--form-gray-color);
    padding: 0 20px 0;
    box-sizing: border-box;
}

#my-account-page .woocommerce-address-fields button {
    margin-top: 20px;
}


#my-account-page .woocommerce-EditAccountForm p {
    display: flex;
    flex-direction: column
}

#my-account-page .woocommerce-EditAccountForm p label {
    margin-bottom: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.24px;
    font-family: "Neue Montreal";
}

#my-account-page .woocommerce-EditAccountForm p label span {
    color: inherit;
}

#my-account-page .woocommerce-EditAccountForm p input {
    width: 100%;
    max-width: 590px;
    padding: 18px 20px;
    box-sizing: border-box;
    outline: 1px solid var(--form-gray-color);
    border: 0;
    height: 60px;
    border-radius: 4px;
    font-family: "Neue Montreal";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.32px;

    @media(max-width: 1000px) {
        max-width: unset;
    }
}

#my-account-page .woocommerce-EditAccountForm p input::placeholder {
    color: var(--form-gray-color);
}


#my-account-page .woocommerce-EditAccountForm p input:focus {
    border: 0;
    outline: 2px solid var(--form-gray-color);
    box-sizing: border-box;
}

#my-account-page .woocommerce-EditAccountForm .form-row {
    margin-bottom: 20px;
}

#my-account-page .woocommerce-EditAccountForm fieldset {
    margin: 40px 0 20px;
    width: 100%;
}

#my-account-page .woocommerce-EditAccountForm fieldset legend {
    font-family: "Neue Montreal";
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin-bottom: 40px;
    width: 100%;
}

#my-account-page .woocommerce-EditAccountForm {
    max-width: 590px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;

    @media(max-width: 1000px) {
        max-width: unset;
    }
}


#my-account-page .woocommerce-EditAccountForm p:nth-child(1),
#my-account-page .woocommerce-EditAccountForm p:nth-child(2) {
    width: calc(50% - 10px);

    @media(max-width: 800px) {
        width: 100%;
    }
}

#my-account-page .woocommerce-EditAccountForm p:nth-child(1) {
    margin-right: 20px;

    @media(max-width: 800px) {
        margin-right: 0;
    }
}

#my-account-page .woocommerce-EditAccountForm fieldset p {
    width: 100% !important;
}


#my-account-page .woocommerce-EditAccountForm fieldset p.woocommerce-form-row span {
    position: relative;
}

#password_current,
#password_1,
#password_2 {
    padding-right: 50px !important;
}

#account-current-password-button,
#account-new-password-button,
#account-confirm-new-password-button {
    position: absolute;
    background-color: transparent;
    right: 22px;
    top: 18px;
    z-index: 1;

    @media(max-width: 600px) {
        right: 10px;
    }
}

#account-current-password-button.visible::after,
#account-new-password-button.visible::after,
#account-confirm-new-password-button.visible::after {
    content: '';
    position: absolute;
    bottom: 6px;
    transform: rotate(45deg);
    transform-origin: left bottom;
    left: 7px;
    height: 100%;
    border: 1px solid black;
}


.one-order-description {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.36px;
    margin: 40px 0;
    max-width: 590px;
}

.one-order-description mark {
    background-color: transparent;
    font-weight: 600 !important;
}

.woocommerce-view-order .woocommerce-MyAccount-content .woocommerce-table--order-details td,
.woocommerce-view-order .woocommerce-MyAccount-content .woocommerce-table--order-details th {
    padding-right: 20px !important;
    width: 50%;
    vertical-align: middle;
    line-height: 150%;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin-bottom: 40px;
}

.woocommerce-order-received .woocommerce-order-details__title {
    margin-bottom: 20px;
}

.woocommerce-order-received .woocommerce-order-details {
    margin-bottom: 80px !important;
}

.woocommerce-order-received .woocommerce-order-overview__total,
.woocommerce-order-received .woocommerce-order-overview__payment-method {
    display: none;
}

table.order_details {
    margin-bottom: 40px;
}

.woocommerce-order-details table th {
    text-align: left;
    padding: 15px 30px 15px 0;
}


.woocommerce-order-details .order_details {
    /* width: 100%; */
    max-width: 590px;
}


.woocommerce-order-details table .order_item td {
    padding: 15px 30px 15px 0;
}


.woocommerce-order-details table tfoot tr th {
    padding: 0px 0 15px;
}

.woocommerce-order-details table tfoot tr:first-child th {
    padding: 30px 0 5px;
}

.wocommerce-order-details table tbody .order_item th {
    padding: 10px 30px 0px 0 !important;
}

.woocommerce-table--order-details tbody td {
    padding: 5px 30px 5px 0 !important;
}

.woocommerce-table--order-details tbody td strong {
    font-weight: 400;
}

/* Hide Country label in address form */
#billing_country_field label,
#shipping_country_field label {
    display: none !important;
}

#shipping_address_1::placeholder {
    display: none !important;
    color: transparent !important;
}

.lost-password-confirmation-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lost-password-confirmation-page-wrapper {
    width: 100%;
    max-width: 668px;
    padding: 120px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media(max-width: 1000px) {
        padding: 60px;
    }

    @media(max-width: 600px) {
        padding: 60px 20px;
    }
}

.lost-password-confirmation-page h2 {
    font-size: 34px;
    letter-spacing: 0.68px;
    text-align: center;
}

.lost-password-confirmation-page .wc-block-components-notice-banner {
    margin: 40px 0px !important;
    width: 100%;
    max-width: 355px !important;
    box-sizing: border-box;
    border-radius: 20px;
    align-items: center
}

.lost-password-confirmation-page .wc-block-components-notice-banner__content {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.36px;
}

.lost-password-confirmation-description {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    text-align: center;
    margin-bottom: 40px;
}

.order-details-form-wrapper {
    width: 100% !important;

}

.order-details-form-wrapper tbody {
    border-bottom: 1px solid var(--dark-font-color);
    border-top: 1px solid var(--dark-font-color);
}

.order-details-form-wrapper tbody tr td {
    padding: 5px 0 !important;
}

.order-details-form-wrapper tbody tr:first-child td {
    padding: 20px 0 5px !important;
}

.order-details-form-wrapper tbody tr:last-child td {
    padding: 5px 0 20px !important;
}

.order-details-form-wrapper tbody tr:first-child td {
    padding-top: 20px !important;
}

.order-details-form-wrapper tfoot tr td,
.order-details-form-wrapper tfoot tr th {
    padding: 20px 0 !important;
    border-bottom: 1px solid var(--dark-font-color);
}

.order-details-form-wrapper tfoot tr:last-child td,
.order-details-form-wrapper tfoot tr:last-child th {
    padding: 20px 0 !important;
    border-bottom: 0;
}

.woocommerce-customer-details address {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--dark-font-color);
    width: 286px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.36px;

    @media(max-width: 750px) {
        width: 100%;
        padding: 20px;
    }

}

.woocommerce-customer-details .addresses {

    @media(max-width: 750px) {
        display: flex;
        flex-direction: column;
    }
}

.woocommerce-customer-details address .woocommerce-customer-details--email {
    margin-top: 27px !important;
    word-wrap: break-word;
}

.woocommerce-customer-details .woocommerce-column:first-child {
    margin-right: 20px;

    @media(max-width: 750px) {
        margin-bottom: 40px;
        margin-right: 0;
    }
}

.woocommerce-customer-details .woocommerce-column__title {
    margin-bottom: 20px;
}

.order-again {
    margin-bottom: 40px;
}

.order-again a {
    max-width: 300px;
}

section.addresses {
    display: flex;
    flex-direction: row;
}

.woocommerce-column--shipping-addres address {
    min-height: 100%;
}

.view-order-go-back {
    margin-bottom: 40px !important;
}

.view-order-go-back a {
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
}


.view-order-go-back span {
    margin-right: 8px;
    transition: var(--base-transition);
}


.view-order-go-back a:hover span {
    transform: translateX(-5px);
}

#order_review .shop_table {
    width: 100%;
}

.pay-order-table-wrapper thead th,
.pay-order-table-wrapper tbody td,
.pay-order-table-wrapper tfoot th {
    text-align: left;
    justify-content: flex-start !important;
    width: 50%;
}


.pay-order-table-wrapper thead tr th {
    padding: 20px 20px 20px 0;
    border-bottom: 1px solid var(--dark-font-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.pay-order-table-wrapper tbody tr td {
    padding: 20px 20px 20px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.36px;
}

.pay-order-table-wrapper tbody tr:last-child td {
    padding-bottom: 60px;
}

.pay-order-table-wrapper tbody tr td .product-quantity {
    margin-left: 5px;
    font-size: inherit;
    font-weight: inherit;
}

.pay-order-table-wrapper tbody {
    border-bottom: 1px solid var(--dark-font-color);
}


.pay-order-table-wrapper tfoot tr td,
.pay-order-table-wrapper tfoot tr th {
    padding: 20px 20px 20px 0;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.36px;
    border-bottom: 1px solid var(--dark-font-color);
}

.pay-order-table-wrapper tfoot tr:last-child td,
.pay-order-table-wrapper tfoot tr:last-child th {
    border-bottom: 0;
}

.pay-order-table-wrapper {
    margin-bottom: 80px;
}

#order_review .payment_methods li {
    margin-bottom: 30px;
}

#order_review .payment_methods input {
    height: 20px;
    width: 20px;
    margin: 0 10px 0 0 !important;
    cursor: pointer;

}

#order_review .payment_methods label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;

}

.payment-input-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

#order_review .payment_box p {
    font-size: 16px;
    line-height: 125%;
    letter-spacing: 0.32px;
}


.payment-methods-header {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin-bottom: 20px;
}

#order_review .comon-dark-button {
    margin-top: 40px;
}

#order_review .woocommerce-privacy-policy-text {
    margin-top: 20px;
}


.select2-selection--single,
.woocommerce-input-wrapper {
    background-color: transparent !important;
}

#billing_address_1::placeholder {
    color: transparent !important;
}

#billing_address_1,
#select2-billing_country-container,
.select2-selection--single {
    background-color: transparent !important;
}


#mailchimp_woocommerce_is_subscribed,
#mailchimp_woocommerce_is_unsubscribed,
#mailchimp_woocommerce_is_transactional {
    width: auto !important;
    max-width: unset !important;
    outline: 0 !important;
    height: auto !important;
    margin: 0 12px 0 0;
    min-height: 20px;
    min-width: 20px;
}

.woocommerce-form-row label[for="mailchimp_woocommerce_is_subscribed"],
.woocommerce-form-row label[for="mailchimp_woocommerce_is_unsubscribed"],
.woocommerce-form-row label[for="mailchimp_woocommerce_is_transactional"] {
    font-size: 16px !important;
    line-height: 150% !important;
    letter-spacing: 0.32px !important;
    font-family: "Neue Montreal" !important;
    font-weight: 400 !important;
    display: flex !important;
}

#footer input.error {
    background-color: var(--white);
}

.woocommerce-account .woocommerce-pagination {
    margin-top: 20px;
}

.thankyou-page-button-wrapper {
    margin-top: 40px;
}


.woocommerce_account_subscriptions {
    width: 100%;
}

.woocommerce_account_subscriptions table {
    width: 100%;

    @media(max-width: 767px) {
        width: 100% !important;
    }
}

.woocommerce_account_subscriptions table thead th {
    border-bottom: 1px solid var(--dark-font-color);
    padding: 20px 0 !important;
}

.woocommerce_account_subscriptions table thead th span {
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 150% !important;
}

.woocommerce_account_subscriptions table tbody tr td {
    padding: 40px 0 !important;
    border-bottom: 1px solid var(--dark-font-color);

    @media(max-width: 767px) {
        border-bottom: 0 !important;
        padding: 10px 0 !important;
    }
}

.woocommerce_account_subscriptions table tbody tr {
    @media(max-width: 767px) {
        border-top: 1px solid var(--dark-font-color);
        padding: 40px 0 !important;
    }
}

.woocommerce_account_subscriptions table tbody tr:last-child {
    @media(max-width: 767px) {
        border-bottom: 1px solid var(--dark-font-color);
    }
}

.woocommerce_account_subscriptions table tbody tr td:first-child {
    @media(max-width: 767px) {
        padding: 40px 0 10px !important;
    }
}

.woocommerce_account_subscriptions table tbody tr td:last-child {
    text-align: right !important;

    @media(max-width: 767px) {
        padding: 40px 0 40px !important;
    }
}

@media(max-width: 767px) {
    .my_account_subscriptions .woocommerce-orders-table__cell-order-actions::before {
        display: none !important;
    }

    .my_account_subscriptions .woocommerce-orders-table__cell-order-actions {
        display: flex !important;
        width: 100%;
    }

    .my_account_subscriptions .woocommerce-orders-table__cell-order-actions a {
        width: 60% !important;
        margin-left: 20% !important;
        text-align: center;
        max-width: unset !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 600px) {
    .my_account_subscriptions .woocommerce-orders-table__cell-order-actions a {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: center;
    }
}

.woocommerce_account_subscriptions .woocommerce-button {
    text-transform: uppercase !important;
    transition: var(--base-transition);
    text-align: center;
    font-size: 13px;
    padding: 10px 15px;
    height: auto;
    font-weight: 500;
}

.woocommerce_account_subscriptions .woocommerce-button:hover {
    opacity: 0.8;
}

.woocommerce_account_subscriptions h2 {
    font-family: "Neue Montreal";
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.68px;
    margin-bottom: 20px;

    @media(max-width: 767px) {
        margin-bottom: 40px;
    }
}

@media(max-width: 767px) {
    .my_account_subscriptions tr td {
        text-align: left !important;
    }

    .my_account_subscriptions tr td::before {
        width: 50%;
        text-align: left;
    }
}

.subscription-details-header {
    font-size: 34px;
    line-height: 120%;
    letter-spacing: 0.68px;
    margin-bottom: 40px;
}

.woocommerce-view-subscription .shop_table {
    width: 100% !important;
}

.woocommerce-view-subscription .shop_table th,
.woocommerce-view-subscription .shop_table td {
    text-align: left;
    width: 25% !important;
    padding: 20px 20px 20px 0;
    border-top: 1px solid var(--dark-font-color);
    box-sizing: border-box;
    vertical-align: middle !important;
}

.woocommerce-view-subscription .subscription_details tr:last-child td a,
.woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child a {
    text-align: center;
    font-size: 13px;
    padding: 10px 15px;
    height: auto;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid var(--dark-font-color);
    border-radius: 40px;
    background-color: transparent;
}

@media(max-width: 767px) {
    .woocommerce-view-subscription .subscription_details tr:last-child td:last-child {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100% !important;
        padding: 20px 0;
        gap: 8px;
    }

    .woocommerce-view-subscription .subscription_details tr:last-child td:last-child a {
        margin: 0 !important;
    }

    .woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child::before {
        display: none;
    }

    .woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child {
        width: 100%;
        box-sizing: border-box !important;
        display: flex;
        gap: 8px;
        justify-content: center;

    }

    .woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child a {
        margin: 0 !important;
        min-width: 30% !important;
    }
}

.woocommerce-view-subscription .subscription_details tr:last-child td a,
.woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child a {
    margin-right: 8px;
    color: var(--dark-font-color)
}

.woocommerce-view-subscription .subscription_details tr:last-child td a:hover,
.woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child a:hover {
    opacity: 0.8;
}

.woocommerce-view-subscription .subscription_details tr:last-child td a:last-child,
.woocommerce-view-subscription .woocommerce-MyAccount-orders tbody tr td:last-child a:last-child {
    margin-right: 0;
    background-color: var(--dark-font-color);
    color: var(--white);
    transition: var(--base-transition)
}

.woocommerce-view-subscription h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin: 80px 0 40px;
}

.woocommerce-view-subscription thead tr th {
    border-top: 0 !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.28px;

}

.woocommerce-view-subscription thead tr th span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.28px;
}


@media(max-width: 767px) {
    .woocommerce-view-subscription .woocommerce-orders-table__row td {
        width: 100% !important;
    }

    .woocommerce-view-subscription .woocommerce-orders-table__row td::before {
        width: 50%;
    }
}

.woocommerce-view-order .woocommerce-order-details header h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.44px;
    margin: 40px 0;
}

.woocommerce-view-order .woocommerce-MyAccount-subscriptions {
    margin-bottom: 80px;
    width: 100% !important;
    max-width: 590px !important;
}

.woocommerce-view-order .woocommerce-MyAccount-subscriptions thead tr th {
    border-bottom: 1px solid var(--dark-font-color);
}

.woocommerce-view-order .woocommerce-MyAccount-subscriptions thead tr th span {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.woocommerce-view-order .woocommerce-MyAccount-subscriptions tbody tr td {
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
    border-bottom: 1px solid var(--dark-font-color)
}

.woocommerce-view-order .woocommerce-MyAccount-subscriptions tbody tr td:last-child a {
    text-transform: uppercase !important;
    transition: var(--base-transition);
    text-align: center;
    font-size: 13px;
    padding: 10px 15px;
    height: auto;
    font-weight: 500;
    transition: var(--base-transition)
}

.woocommerce-view-order .woocommerce-MyAccount-subscriptions tbody tr td:last-child a:hover {
    opacity: 0.8;
}


@media(max-width: 767px) {
    .woocommerce-view-order .woocommerce-MyAccount-subscriptions tbody tr td:last-child:before {
        display: none !important;
    }

    .woocommerce-view-order .woocommerce-MyAccount-subscriptions tbody tr td:last-child {
        text-align: center;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        border-bottom: 0 !important;
    }

    .woocommerce-view-order .woocommerce-MyAccount-subscriptions tbody tr td:last-child a {
        width: 100% !important;
        max-width: 300px !important;
    }
}


.woocommerce-orders .woocommerce-pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-family: "Neue Montreal";
    font-size: 16px;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0.64px;
}

.woocommerce-orders .woocommerce-pagination .current {
    font-weight: 500;
}

.woocommerce_account_subscriptions .no_subscriptions {
    background-color: var(--dark-font-color);
}

.woocommerce-lost-password .input-wrapper-custom {
    margin: 0 0 20px !important;
}

.woocommerce-lost-password .input-wrapper-custom:last-child {
    margin: 0 0 40px !important;
}

#reset-password-form h2 {
    margin-bottom: 0 !important;
}

.new-user-set-password-info {
    padding-bottom: 40px !important;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.36px;
}

.register-information-row,
.woocommerce-privacy-policy-text {
    padding: 0 10px !important;
    box-sizing: border-box !important;
}



#address-form #shipping_phone_field {
    display: none !important;
}

#address-form #update_all_subscriptions_addresses_field {
    display: none !important;
}

.dashboard-section-desciption a {
    font-weight: 500 !important;
}

.wc-block-components-validation-error p {
    color: var(--form-err);
}

.payment-input-wrapper img{
    height: 25px; display: flex;
    margin-left: 15px;
}

#order_review .payment_methods input.payu-blik-code{
    width: 200px;
}

#order_review .woocommerce-privacy-policy-text{
    padding-left: 0px !important;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments{
    margin-bottom: 20px;
    border: 0;
}

.woocommerce-ResetPassword .woocommerce-notices-wrapper {
margin-top: 20px;
outline: none;
border: none;
}

.woocommerce-MyAccount-content .woocommerce-info .main-dark-button{
    text-decoration: none;
    width: max-content;
    display: none;

}

#billing_country_field, #shipping_country_field{
    display: none;
}

.woocommerce-table__line-item.order_item  li, .woosb-itemmeta-bundles{
    font-size: 12px;
}


.yith-wcaf-dashboard .yith-wcaf-dashboard-summary .affiliate-stats .stat-box .stat-item .stat-label{
    color: var(--dark-font-color);
    font-size: 14px;
    font-weight: 400;
    font-family: "Neue Montreal"
}

.yith-wcaf-dashboard .yith-wcaf-dashboard-summary .affiliate-stats .stat-box .stat-item.large .stat-value{
     font-weight: 400;
}

#my-account-page .woocommerce-MyAccount-content table.yith-wcaf-table{
    width: 100%;
    margin-bottom: 20px;
}

.yith-wcaf-dashboard .dashboard-title h3, .yith-wcaf-dashboard .dashboard-title span.view-all{
   
    text-transform: uppercase;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.yith-wcaf-dashboard .yith-wcaf-table-top-bar{
    display: none;
}

.yith-wcaf-dashboard .yith-wcaf-dashboard-settings .affiliate-settings-box .settings-box .toggle-right .toggle{
    margin-right: 0;
}
.yith-wcaf-dashboard .yith-wcaf-toggle+.toggle{
    width: 39px;
}
.yith-wcaf-dashboard .yith-wcaf-toggle+.toggle:after{
    top: 2px;
    width: 18px;
    height: 18px;
}
.yith-wcaf-notice-message{
    font-style: normal;
    line-height: 22px;
}

.yith-wcaf-notice-message b, .yith-wcaf-notice-message strong{
    font-weight: 500;
  
}
.affiliate-info h4, .link-generator h4{
    margin-bottom: 20px;
    text-align: left;
    font-size: 16px;
   
      letter-spacing: 0.28px;
}

.yith-wcaf-link-generator .link-generator-box .affiliate-info .bold-text, .yith-wcaf-link-generator .link-generator-box .link-generator .bold-text {
    font-weight: 500;
}

.yith-wcaf-link-generator .link-generator-box .affiliate-info .bold-text{
    font-size: 14px;
    font-weight: 400;
}

.yith-wcaf-link-generator .copy-field-wrapper{
    margin-top: 10px;
    width: 100%;
}

.yith-wcaf-link-generator .link-generator-box .affiliate-info p .copy-field-wrapper input.copy-target, .yith-wcaf-link-generator .link-generator-box .link-generator p .copy-field-wrapper input.copy-target{
    padding-right: 0px;
    width: 98%;
}
.copy-field-wrapper input{
    padding-top: 10px;
    border-radius: 5px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.yith-wcaf-link-generator .link-generator-box small, .yith-wcaf-link-generator .link-generator-box.double-column .link-generator,
.yith-wcaf-dashboard .yith-wcaf-dashboard-settings .affiliate-settings-box .settings-box small, .woocommerce-MyAccount-content form .settings-box h3{
     font-size: 14px;
   
      letter-spacing: 0.28px;
      line-height: 140%;
}
.yith-wcaf-dashboard .yith-wcaf-dashboard-settings .affiliate-settings-box .settings-box{
    padding-top: 30px;
}



.additional-info .settings-box:first-child .form-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px; /* odstęp między label a input */
}

.additional-info .settings-box:first-child .form-row label {
  flex: 0 0 150px; /* stała szerokość dla etykiet */
  text-align: right;
}

.additional-info .settings-box:first-child .woocommerce-input-wrapper {
  flex: 1; /* wypełni pozostałą przestrzeń */
}
.woocommerce-MyAccount-content form .settings-box h3{
    font-size: 16px;
    font-weight: 400;
}



.settings-box .form.form-row , .link-generator .form-row:first-child{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;

}
 .link-generator .form-row:first-child{
flex-direction:column-reverse;
 gap: 10px;
 }



.settings-box .form.form-row label, .link-generator .form-row:first-child label {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 2; /* przesuwa label na prawą stronę */
}

.settings-box .form.form-row small {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #666;
  order: 3; /* umieszcza opis pod elementami */
}

/* Styl dla checkboxa */
.settings-box .form.form-row input[type="checkbox"] {
  margin: 0;
  order: 1; /* umieszcza checkbox na początku */
}

/* Dla klasy toggle-right */
#my-account-page .settings-box  .form-row.toggle-right {
  flex-wrap: wrap;
  margin-bottom: 0px;
  gap: 0;
}

.additional-info .settings-box:first-child .input-text, .link-generator .form-row:first-child input {
  width: 100%;
  padding: 8px;



    box-sizing: border-box;
    height: 40px;
    padding: 18px 20px;
    border: 0;
    outline: 1px solid var(--form-gray-color);
    border-radius: 4px;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.32px;
    font-family: "Neue Montreal";
    background-color: transparent !important;
 
}
#gateway_bacs_bacs_swift_field{
    display: none;
}

.yith-wcaf-dashboard .yith-wcaf-dashboard-settings input[type=submit]{
    border-radius: 100px;
    background-color: var(--dark-font-color);
    color: var(--white);
    transition: 0.3s;
    border-radius: 40px;
    padding: 14px 42px;
    text-align: center;
    font-family: PP Neue Montreal;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--dark-font-color);
    z-index: 1;
    letter-spacing: 0.64px;
    height: 50px;
    box-sizing: border-box;
    cursor: pointer;
}

/* Opcjonalny tekst w nawiasach */
.additional-info .settings-box:first-child .optional {
  font-size: 0.9em;
  color: #666;
}

.yith-wcaf-link-generator .link-generator-box .affiliate-info p .copy-field-wrapper .copy-trigger, .yith-wcaf-link-generator .link-generator-box .link-generator p .copy-field-wrapper .copy-trigger{
    font-size: 12px;
}

.yith-wcaf-registration-form .already-an-affiliate-wrapper, .yith-wcaf-registration-form .become-an-affiliate-form, .yith-wcaf-registration-form .pending-request-wrapper, .yith-wcaf-registration-form .rejected-request-wrapper{
    background-color:transparent;
}

.yith-wcaf-registration-form .become-an-affiliate-form{
    background-color: transparent;
}

.yith-wcaf-registration-form .become-an-affiliate-form p{
    text-align: left;
    line-height: 140%;
}

.yith-wcaf-registration-form button{
margin-top: 50px;
font-size: 14px;
text-transform: uppercase;
    text-decoration: none;
}

.yith-wcaf-dashboard table.yith-wcaf-table tr td{
    font-size: 13px;
}

.order_details .wc-item-meta p{
    display: inline-block;
}
.yith-wcaf-dashboard .yith-wcaf-toggle+.toggle:after{
    left: 2px;
}

@media (max-width: 760px) {

.yith-wcaf-dashboard table.yith-wcaf-table tr td:first-child{
    border-left: 0;
}
.yith-wcaf-dashboard table.yith-wcaf-table tr td{
    border-bottom: 0;
}
.yith-wcaf-dashboard table.yith-wcaf-table tr td:last-child{
    border-right: 0;
    border-bottom: 1px solid var(--dark-font-color);
}
.yith-wcaf-dashboard table.yith-wcaf-table.shop_table_responsive tr td.column-status{
    text-align: right;
}
.woocommerce-account .yith-wcaf-dashboard-navigation{
    display: block;
        font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.64px;

}
.yith-wcaf-dashboard ul.yith-wcaf-dashboard-navigation{
    padding-bottom: 30px;
 
}

.yith-wcaf-dashboard ul.yith-wcaf-dashboard-navigation li a {
     font-family: Neue Montreal;
         color: var(--dark-font-color);
    padding: 10px 10px;
}
.additional-info .settings-box:first-child .form-row{
    flex-direction: column;
    align-items: inherit;
}
.additional-info .settings-box:first-child .form-row label {
    flex: 0 0 10px;
    text-align: left;
}
.yith-wcaf-dashboard .yith-wcaf-dashboard-settings .affiliate-settings-box .settings-box .toggle-right{
    padding-right: 0;
}
.yith-wcaf-dashboard .yith-wcaf-toggle+.toggle{
    width: 51px;
}
.yith-wcaf-dashboard table.yith-wcaf-table tr td{
    border-top: none;
}

.yith-wcaf-registration-form .already-an-affiliate-wrapper, .yith-wcaf-registration-form .become-an-affiliate-form, .yith-wcaf-registration-form .pending-request-wrapper, .yith-wcaf-registration-form .rejected-request-wrapper{
    padding: 10px;
}
}
