/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks-child
*/

:root {
    --clr-primary: #02574f;
    --clr-secondary: #003149;
    --clr-tertiary: #a8c572;
    --clr-light: #ffffff;
    --clr-dark: #000000;
    --clr-bg: #f3f3f3;
}   

/* Post Content */

.brxe-post-content figure {
    width: max-content;
}

.brxe-post-content table th,
.brxe-post-content table td {
    padding: 8px;
    border: 1px solid var(--clr-secondary);
}

.brxe-post-content h2,
.brxe-post-content h3,
.brxe-post-content h4,
.brxe-post-content h5,
.brxe-post-content h6,
.brxe-post-content table {
    margin-bottom: 20px;
}

.brxe-post-content h2 {
    font-size: 28px;
}

.brxe-post-content h3 {
    font-size: 26px;
}

.brxe-post-content h4 {
    font-size: 24px;
}

.brxe-post-content h5 {
    font-size: 22px;
}

.brxe-post-content h6 {
    font-size: 20px;
}

/* Woocommerce */

.woocommerce-breadcrumb {
    font-weight: 500;
    font-size: 16px;
    color: var(--clr-secondary);
}

.woocommerce-breadcrumb a {
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.woocommerce-breadcrumb a:hover {
    color: var(--clr-tertiary);
}

.woocommerce-page .wc-block-components-button {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    border-radius: 10px;
    color: var(--clr-light);
    border: 1px solid var(--clr-primary);
    background-color: var(--clr-primary);
    transition: all 0.2s ease-in-out !important;
}

.woocommerce-page .wc-block-components-button:hover {
    color: var(--clr-primary);
    border-color: var(--clr-tertiary);
    background-color: var(--clr-tertiary);
}

.woocommerce .button {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    border-radius: 10px;
    color: var(--clr-secondary);
    border: 1px solid var(--clr-primary);
    background-color: var(--clr-light);
    transition: all 0.2s ease-in-out;
}

.woocommerce .button:hover {
    color: var(--clr-light);
    background-color: var(--clr-primary);
}

/* Mini Cart */

.brxe-woocommerce-mini-cart.show-cart-details .cart-detail {
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.brxe-woocommerce-mini-cart .button {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    border-radius: 10px;
    color: var(--clr-secondary);
    border: 1px solid var(--clr-primary);
    background-color: var(--clr-light);
    transition: all 0.2s ease-in-out;
}

.brxe-woocommerce-mini-cart .button:hover {
    color: var(--clr-light);
    background-color: var(--clr-primary);
}

.brxe-woocommerce-mini-cart .button.checkout {
    color: var(--clr-light);
    background-color: var(--clr-primary);
}

.brxe-woocommerce-mini-cart .button.checkout:hover {
    color: var(--clr-primary);
    border-color: var(--clr-tertiary);
    background-color: var(--clr-tertiary);
}

.brxe-woocommerce-mini-cart .cart-detail li a {
    font-size: 16px;
    color: var(--clr-secondary);
    transition: color 0.2s ease-in-out;
}

.brxe-woocommerce-mini-cart .cart-detail li a:hover {
    color: var(--clr-tertiary);
}

@media (max-width: 767px) {
    .brxe-woocommerce-mini-cart .cart-detail {
        right: -40px;
        width: 330px;
    }

    .brxe-woocommerce-mini-cart .cart-detail .widget_shopping_cart_content {
        padding: 20px;
    }
}

/* Product */

ul.products {
    gap: 20px;
    align-items: stretch;
} 

li.product {
    display: flex;
    row-gap: 20px;
    flex-direction: column;
}

li.product .woocommerce-loop-product__thumb {
    position: relative;
}

li.product .woocommerce-loop-product__tag {
    position: absolute;
    top: 10px;
    left: 10px;
}

li.product .new-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--clr-light);
    text-transform: uppercase;
    background: var(--clr-primary);
}

li.product .woocommerce-loop-product__sales {
    position: absolute;
    top: 10px;
    right: 10px;
}

li.product .discount-badge {
    position: relative;
    padding: 2px 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 0;
    border-radius: 4px;
    color: var(--clr-light);
    background-color: #c73130;
    z-index: 0;
}

li.product .discount-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    transform: rotate(45deg);
    transform-origin: left top;
    background-color: #c73130;
    z-index: -1;
}

li.product .woocommerce-loop-product__link {
    display: block;
    width: 100%;
}

li.product .attachment-woocommerce_thumbnail {
    width: 100%;
}

li.product .woocommerce-loop-product__content {
    display: flex;
    flex-grow: 1;
    row-gap: 20px;
    flex-direction: column;
}

li.product .woocommerce-loop-product__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: color 0.2s ease-in-out;
}

li.product .woocommerce-loop-product__title:hover {
    color: var(--clr-tertiary);
}

li.product .woocommerce-loop-product__info {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li.product .woocommerce-loop-product__price {
    display: inline-flex;
    gap: 4px 8px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--clr-secondary);
}

li.product .woocommerce-loop-product__price ins {
    text-decoration: none;
}

li.product .woocommerce-loop-product__rating {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

li.product .star-rating {
    width: 88px;
}

li.product .star-rating::before {
    content: "";
    background-image: url(./assets/images/solid-stars.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    width: 100%;
    height: 100%;
}

li.product .star-rating span::before {
    content: "";
    background-image: url(./assets/images/filled-stars.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    width: 100%;
    height: 100%;
}

li.product .woocommerce-loop-product__content .button {
    padding: 10px 50px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    border-radius: 10px;
    color: var(--clr-secondary);
    border: 1px solid var(--clr-primary);
    background-color: var(--clr-light);
    transition: all 0.2s ease-in-out;
}

li.product .woocommerce-loop-product__content .button:hover {
    color: var(--clr-light);
    background-color: var(--clr-primary);
}

li.product .woocommerce-loop-product__content .added_to_cart {
    display: none;
}

@media (max-width: 1024px) {
    ul.products.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    ul.products.columns-4 {
        grid-template-columns: 1fr;
    }
}

/* Archive Woocommerce */

.archive .layout-default .brxe-container {
    padding: 0;
}

.archive .content-products {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    width: 100%;
}

.archive .filter-products {
    width: 20%;
}

.archive .off-canvas__filter {
    display: none;
}

.archive .off-canvas__filter .filter-list {
    margin-top: 0;
}

.archive .woocommerce-result-count-wrap {
    display: flex;
    column-gap: 15px;
}

.archive .filter-list {
    margin: 72px 0 0;
    padding: 0;
    list-style-type: none;
}

.archive .wc-block-product-filters__overlay-content {
    gap: 30px;
}

.archive .wp-block-heading {
    margin-bottom: 10px !important;
    font-size: 20px;
    color: var(--clr-secondary);
}

.archive .wc-block-product-filter-price-slider__range {
    color: var(--clr-primary);
}

.archive .wc-block-product-filter-price-slider__content .text .min,
.archive .wc-block-product-filter-price-slider__content .text .max {
    padding: 0;
    border: none;
	max-width: 110px;
    line-height: 1.5;
}

.archive .wc-block-product-filter-price-slider__content .text .max {
    text-align: end;
}

.archive .wc-block-product-filter-checkbox-list__label {
    gap: 0;
}

.archive .wc-block-product-filter-checkbox-list__input-wrapper {
    color: var(--clr-primary);
}

.archive .wc-block-product-filter-checkbox-list__text {
    font-size: 16px;
    color: var(--clr-secondary);
}

.archive .wp-block-woocommerce-product-filter-rating .wc-block-product-filter-checkbox-list__text {
    color: var(--clr-tertiary);
}

.archive .wp-block-woocommerce-product-filter-rating .wc-block-product-filter-checkbox-list__text svg {
    height: 24px;
}

.archive .bricks-before-shop-loop {
    gap: 10px;
    flex-wrap: wrap;
}

.archive .woocommerce-ordering .orderby {
    border-radius: 10px;
    color: var(--clr-secondary);
    border-color: var(--clr-primary);
}

.archive .brxe-woocommerce-products {
    width: 77%;
}

.archive .woocommerce-pagination {
    display: flex;
    justify-content: center;
}

.archive .woocommerce-pagination .page-numbers.current,
.archive .woocommerce-pagination li:hover .page-numbers {
    color: var(--clr-tertiary);
}

@media (max-width: 1024px) {
    .archive .filter-products {
        display: none;
    }

    .archive .off-canvas__filter {
        display: flex;
    }

    .archive .brxe-woocommerce-products {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .archive .woocommerce-ordering {
        display: none;
    }

    .archive .wp-block-woocommerce-product-filters {
        width: 100%;
    }

    .archive .wc-block-product-filters__overlay {
        position: static;
    }

    .archive .wc-block-product-filters__overlay-wrapper {
        position: static;
    }

    .archive .wc-block-product-filters__open-overlay {
        display: none;
    }

    .archive .wc-block-product-filters__overlay-dialog {
        position: static;
        transform: translateY(0);
    }

    .archive .wc-block-product-filters__overlay-content {
        padding: 0 4px;
    }

    .wc-block-product-filters__overlay-header,
    .wc-block-product-filters__overlay-footer {
        display: none !important;
    }
}

/* Single Woocommerce */

.single main > .brxe-section {
    overflow: hidden;
}

.single #primary .site-main {
    width: 100%;
}

.single .product {
    column-gap: 30px;
}

.single .summary .product_title {
    font-size: 25px;
    color: var(--clr-primary);
}

.single .summary .star-rating {
    width: 88px;
}

.single .summary .star-rating::before {
    content: "";
    background-image: url(./assets/images/solid-stars.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    width: 100%;
    height: 100%;
}

.single .summary .star-rating span::before {
    content: "";
    background-image: url(./assets/images/filled-stars.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    width: 100%;
    height: 100%;
}

.single .summary .price {
    display: inline-flex;
    column-gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
}

.single .summary .variations tr {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.single .summary .variations .label,
.single .summary .variations .value {
    width: max-content;
}

.single .summary .variations .value {
    min-width: 200px;
}

.single .summary .variations label {
    color: var(--clr-secondary);
}

.single .summary .variations select {
    border-radius: 10px;
    color: var(--clr-secondary);
    border-color: var(--clr-primary);
}

.single .summary .price del,
.single .summary .price bdi {
    color: var(--clr-secondary);
}

.single .summary .cart .action,
.single .summary .cart .input-text {
    color: var(--clr-secondary);
    border-color: var(--clr-primary);
}

.single .summary .cart .minus {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.single .summary .cart .plus {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.single .summary .cart .button {
    color: var(--clr-light);
    background-color: var(--clr-primary);
}

.single .summary .cart .button:hover {
    color: var(--clr-primary);
    border-color: var(--clr-tertiary);
    background-color: var(--clr-tertiary);
}

.single .woocommerce-tabs {
    border: none;
}

.single .woocommerce-tabs .panel {
    background-color: var(--clr-bg);
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description .more-content {
    display: none;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description .load-more-btn {
    margin-top: 20px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description .load-more-btn a {
    display: flex;
    column-gap: 2px;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    color: var(--clr-tertiary);
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description .load-more-btn a.expanded::before {
    content: "";
    display: inline-block;
    background-image: url(./assets/images/chevrons-left-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 16px;
    height: 16px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description .load-more-btn a:not(.expanded)::after {
    content: "";
    display: inline-block;
    background-image: url(./assets/images/chevrons-right-svgrepo-com.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 16px;
    height: 16px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description figure {
    width: max-content;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description table th,
.single .woocommerce-tabs .woocommerce-Tabs-panel--description table td {
    padding: 8px;
    border: 1px solid var(--clr-secondary);
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description h2,
.single .woocommerce-tabs .woocommerce-Tabs-panel--description h3,
.single .woocommerce-tabs .woocommerce-Tabs-panel--description h4,
.single .woocommerce-tabs .woocommerce-Tabs-panel--description h5,
.single .woocommerce-tabs .woocommerce-Tabs-panel--description h6,
.single .woocommerce-tabs .woocommerce-Tabs-panel--description table {
    margin-bottom: 20px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description h2 {
    font-size: 28px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description h3 {
    font-size: 26px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description h4 {
    font-size: 24px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description h5 {
    font-size: 22px;
}

.single .woocommerce-tabs .woocommerce-Tabs-panel--description h6 {
    font-size: 20px;
}

.single .woocommerce-tabs .wc-tabs {
    border: none;
    justify-content: center;
}

.single .woocommerce-tabs .wc-tabs li a {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-primary);
}

.single .woocommerce-tabs .wc-tabs li.active a {
    color: var(--clr-tertiary);
}

.single .block-reviews {
    position: relative;
}

.single .block-reviews::before,
.single .block-reviews::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: var(--clr-primary);
    z-index: -1;
}

.single .block-reviews::before {
    right: 99%;
}

.single .block-reviews::after {
    left: 99%;
}

.single .block-reviews .commentlist {
    padding-right: 15px;
    overflow: auto;
    height: 435px;
}

/* CSS Scroll */
.single .block-reviews .commentlist::-webkit-scrollbar {
    width: 4px;
}

.single .block-reviews .commentlist::-webkit-scrollbar-thumb {
    background: var(--clr-tertiary);
}

.single .block-reviews .commentlist::-webkit-scrollbar-track {
    background: var(--clr-light);
}

.single .block-reviews .commentlist .description {
    padding-bottom: 20px;
}

.single .block-reviews .woocommerce-Reviews-title {
    color: var(--clr-tertiary);
}

.single .block-reviews .woocommerce-noreviews {
    color: var(--clr-light);
}

.single .block-reviews .commentlist .description p,
.single .block-reviews .commentlist .woocommerce-review__author,
.single .block-reviews .commentlist .woocommerce-review__published-date {
    color: var(--clr-light);
}

.single .block-reviews .commentlist .star-rating {
    width: 88px;
}

.single .block-reviews .commentlist .star-rating::before {
    content: "";
    background-image: url(./assets/images/solid-stars.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    width: 100%;
    height: 100%;
}

.single .block-reviews .commentlist .star-rating span::before {
    content: "";
    background-image: url(./assets/images/filled-stars.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left top;
    width: 100%;
    height: 100%;
}

.single .block-reviews .commentlist .load-product-reviews {
    display: flex;
    justify-content: center;
}

.single .block-reviews .commentlist .load-product-reviews__btn {
    position: relative;
    font-weight: 700;
    color: var(--clr-light);
    background-color: transparent;
}

.single .block-reviews .commentlist .load-product-reviews__btn::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./assets/images/carvet-down.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}


.single .block-reviews .comment-respond .comment-reply-title {
    color: var(--clr-light);
}

.single .block-reviews .comment-form .stars a::before {
    color: var(--clr-light);
}

.single .block-reviews .comment-form .stars.selected a.active~a::before {
    color: var(--clr-light);
}

.single .block-reviews .comment-form .stars.selected a.active::before,
.single .block-reviews .comment-form .stars.selected a:not(.active)::before {
    color: var(--clr-tertiary);
}

.single .block-reviews .comment-form-cookies-consent {
    display: flex;
    column-gap: 8px;
}

.single .block-reviews .comment-notes {
    color: var(--clr-light);
}

.single .block-reviews .comment-form-cookies-consent input {
    margin-top: 3px;
    padding: 0;
    appearance: none; 
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    background-color: var(--clr-light);
}

.single .block-reviews .comment-form-cookies-consent input:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    line-height: 0;
    color: var(--clr-primary);
    transform: translate(-50%, 50%);
}


.single .block-reviews .comment-form label {
    color: var(--clr-light);
}

.single .block-reviews .comment-form .button {
    padding: 10px 50px;
    color: var(--clr-primary);
    border-color: var(--clr-tertiary);
    background-color: var(--clr-tertiary);
}

.single .block-reviews .comment-form .button:hover {
    color: var(--clr-secondary);
    border-color: var(--clr-primary);
    background-color: var(--clr-light);
}

.single .related .products {
    margin-top: 30px;
}

.single .related .star-rating {
    display: block;
}

.single .related .product .woocommerce-loop-product__thumb {
    display: flex;
    width: 100%;
}

.single .related .product .woocommerce-LoopProduct-link {
    margin-bottom: 0;
    width: 100%;
    text-align: start;
}

@media (min-width: 992px) {
    .single .woocommerce-product-gallery:not(:has(.flex-control-thumbs)) {
        flex-direction: row-reverse;
        max-width: 500px;
    }

    .single .woocommerce-product-gallery:has(.flex-control-thumbs) {
        flex-direction: row-reverse;
        max-height: 500px;
    }

    .single .woocommerce-product-gallery .flex-viewport {
        width: calc(100% - 100px);
    }

    .single .woocommerce-product-gallery .woocommerce-product-gallery__image,
    .single .woocommerce-product-gallery .woocommerce-product-gallery__image a,
    .single
        .woocommerce-product-gallery
        .woocommerce-product-gallery__image
        img {
        height: 100%;
    }

    .single .woocommerce-product-gallery .flex-control-thumbs {
        padding-right: 5px;
        display: flex;
        width: 100px;
        overflow: auto;
        flex-direction: column;
    }

    /* CSS Scroll */
    .single
        .woocommerce-product-gallery
        .flex-control-thumbs::-webkit-scrollbar {
        width: 4px;
    }

    .single
        .woocommerce-product-gallery
        .flex-control-thumbs::-webkit-scrollbar-thumb {
        background: var(--clr-primary);
    }

    .single
        .woocommerce-product-gallery
        .flex-control-thumbs::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
}

@media (max-width: 991px) {
    .single .woocommerce-product-gallery {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .single .product {
        width: 100%;
    }

    .single .woocommerce-tabs .panel {
        padding: 30px 15px;
    }

    .single .woocommerce-tabs .woocommerce-Tabs-panel--description figure {
        margin: 16px 0;
        width: 100%;
    }
}

/* Cart Woocommerce */

.woocommerce-cart .alignwide {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
}

/* Checkout Woocommerce */

.woocommerce-checkout .alignwide {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
}

.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding-top: 0;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
    margin: 0;
}

.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    font-size: 18px;
    color: var(--clr-secondary);
    transition: color 0.2s ease-in-out;
}

.woocommerce-checkout
    .wc-block-components-checkout-return-to-cart-button:hover {
    color: var(--clr-tertiary);
}

/* My Account */

.woocommerce-account .woocommerce:not(#brx-content) {
    width: 50%;
    justify-self: center;
}

.woocommerce-account .u-column > h2 {
    text-align: center;
}

.woocommerce-account .woocommerce-ResetPassword,
.woocommerce-account .woocommerce-form-login:not([class^=brxe-]), 
.woocommerce-account .woocommerce-form-register:not([class^=brxe-]) {
    margin-top: 30px;
    padding: 30px;
    display: flex;
    gap: 20px;
    text-align: start;
    flex-direction: column;
    border: 1px solid var(--clr-primary)
}   

.woocommerce-account form input {
    line-height: 38px;
    border-radius: 10px;
    color: var(--clr-secondary);
    border: 1px solid var(--clr-primary);
}

.woocommerce-account form .show-password-input {
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 40px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.woocommerce-account form .lost_password {
    display: flex;
    justify-content: space-between;
}

.woocommerce-account form .woocommerce-form__label-for-checkbox {
    display: flex;
    column-gap: 8px;
    align-items: center;
}

.woocommerce-account form .woocommerce-form__input-checkbox {
    padding: 0;
    appearance: none; 
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    background-color: #02574f1a;
}

.woocommerce-account form .woocommerce-form__input-checkbox:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    line-height: 0;
    color: var(--clr-primary);
    transform: translate(-50%, 50%);
}

.woocommerce-account form .row-action {
    display: flex;
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
}

.woocommerce-account form .row-action .button  {
    padding: 10px 50px;
    width: max-content;
}

.woocommerce-account form a {
    transition: color .2s ease-in-out;
}

.woocommerce-account form a:hover {
    color: var(--clr-tertiary);
}