.woocommerce-MyAccount-navigation {
    padding: 25px 30px;
    background-color: var(--color-gray);

    & ul li {
        padding-left: 0;
        margin-bottom: 0;

        &::before {
            display: none;
        }

        & a {
            text-decoration: none;
            background: none;
            padding-bottom: 10px;
            padding-top: 10px;
            border-bottom: 1px solid var(--color-dark-gray );
            display: block;
            font-weight: 400;

            &:hover {
                background: none;
                color: var( --color-red );
            }
        }
    }
}

.woocommerce .woocommerce-form-login .form-row {
    display: flex;
    justify-content: space-between;
}

.woocommerce .woocommerce-form-login .form-row:before,
.woocommerce .woocommerce-form-login .form-row:after {
    display: none;
}

.woocommerce button.woocommerce-form-login__submit,
.woocommerce button.woocommerce-form-register__submit,
.woocommerce button.woocommerce-Button,
.woocommerce a.checkout-button,
.woocommerce-address-fields button.button  {
    position: relative;
    display: table;
    color: var( --color-white );
    border-radius: 0;
    font-size: 17px;
    line-height: 1.24em;
    font-weight: 400;
    padding: 12px 20px;
    vertical-align: middle;
    text-decoration: none;  
    background: #A22222!important;
    transition: all ease-in-out 0.3s;
    border: 2px solid transparent;

    @media( min-width : 1000px ) {
        display: inline-block;
    }

    &:hover {
        color: var( --color-white);
    }
}

.woocommerce button.woocommerce-form-login__submit,
.woocommerce button.woocommerce-form-register__submit, 
.woocommerce button.woocommerce-Button {
    &:hover {
        background-color: #801515!important;
        color: var( --color-white)!important;
    }
}

.woocommerce h2 {
    font-size: 22px;

    @media( min-width : 1200px ) {
        font-size: 32px;
    }

    @media( min-width : 1200px ) {
        font-size: 45px;
    }
}

.woocommerce-address-fields .address-field {
    display: block!important;

    & label {
        padding-left: 0!important;
        position: relative!important;
    }
}

.select2-results__options li::before {
    display: none;
}

.woocommerce form .password-input, .woocommerce-page form .password-input {
    width: 100%;
}

.woocommerce-privacy-policy-text {
    margin-bottom: 30px;
}

/* Cart  */

.cart-collaterals .cart_totals {
    width: 100%!important;
}


@media (min-width: 900px) {
    .btn+.btn {
        margin-left: 25px;
        margin-top: 0;
    }
}

.shipping-calculator-button {
    color: var( --color-blue );
    background: none;

    &:hover {
        background: none!important;
        color: var( --color-blue )!important;
        opacity: 0.8;
    }

    &::after {
        color: var( --color-blue-01 );
    }
}

/* Shop Page */

.facetwp-selections .facetwp-selection-label {
    display: none;
}

.woocommerce-products-header {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow-x: auto;

    &::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
            border-radius: 10px;
            background-color: #F5F5F5;
        }

    &::-webkit-scrollbar {
        height: 7px;
        background-color: #F5F5F5;
    }

    &::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
        background-color: #366D90;
    }

    @media( min-width : 1200px ) {
        width: auto;
    }

    & .facetwp-selections {
        width: 100%;
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
        scroll-padding-bottom: 5px;

        & ul  {
            display: flex;
            gap: 5px;

            & li {
                display: flex;
                margin: 0;
            }
        }

        
    }
}

.facetwp-selections ul li {
    padding-left: 0;
    white-space: pre;

    &[data-facet="color"] {
        & span[data-value="white"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-white);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="blue"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-blue-01);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="black"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-black);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="red"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-red);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="indigo"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-indigo);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="orange"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-orange);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="green"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: var(--color-green);
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }

        & span[data-value="clear"] {
            &::before {
                content: "";
                width: 15px;
                height: 15px;
                position: relative;
                background-color: transparent;
                border: 2px solid var(--color-dark-gray-01);
                border-radius: 100px;
                left: 0;
                top: 2px;
                display: inline-block;
                margin-right: 5px;
            }
        }
    }

    &::before {
        display: none;
    }

    & span {
        padding: 9px 9px 9px 9px!important;
        background-color: var( --color-dark-gray );
        background-image: none!important;
        text-transform: capitalize;
        transition: all ease 300ms;

        &:hover {
            background-color: var(--color-gray-01);
        }

        &::after {
            margin-left: 10px;
            content: "\e90d";
            font-size: 8px;
            font-family: 'gloveamerica' !important;
            right: 0;
            top: -3px;
            width: 15px;
            height: 15px;
            background-color: var(--color-white);
            padding: 3px;
            position: relative;
        }
    }
}

.product-filter-mobile-container {
    display: flex;
    justify-content: space-between;
}

.product-filter-mobile-container .js-toogle-product-filter {
    padding: 15px 20px;
    text-decoration: none;
    background: none;
    background-color: var( --color-dark-gray );
    width: 35%;
    box-shadow: -1px -6px 5px 1px #0000002e;
    z-index: 3;


    &::after {
        content: "\e902" !important;
        margin-left: 10px;
        font-family: 'gloveamerica' !important;
        right: 0;
        color: var( --color-blue-01 );
        font-size: 14px;
    }
}

.product-filter-toogle-container {
    background-color: var(--color-dark-gray);
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;

    &.is-active {
        height: 100%;
        opacity: 1;
        bottom: 0;
        visibility: visible;
    }
    
}

.product-filter-inner-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-filter-top {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;

    & span {
        font-weight: 700;
        color: var(--color-black-01);
    }

    & a {
        color: var(--color-blue);
        background: none;
    }
}

.product-filter-bottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.product-option {
    display: flex;
    height: 100%;
}

.product-mobile-filter-sidebar {
    max-width: 140px;
    width: 100%;
    height: 100%;

    & button {
        outline: none;
        border: none;
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-dark-gray-01);
        color: var( --color-black-01 );
        border-left: 5px solid transparent;
        width: 100%;
        text-align: left;
        font-weight: 700;

        &.is-active {
            border-left: 5px solid var(--color-blue );
            background-color: var( --color-white );
        }
    }
}

.product-filter-content {
    max-width: 100%;
    overflow-y: auto;
    width: 100%;
    background-color: var( --color-white );
    padding: 25px;
    height: 100%;

    & h3 {
        font-size: 17px;
    }
}

.product-tab-panel-content {
    display: none;

    &.is-active {
        display: block;
    }
}

.woocommerce-cart-form .back-button {
    text-decoration: none;
    background: none;
    color: var( --color-blue );
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 27px;
    text-transform: capitalize;

    &:hover {
        background: none;
        color: var(--color-blue );
        opacity: 0.8;
    }
}

.woocommerce-cart-form__contents.cart {
    border-radius: 0!important;

    & thead {
        & tr {
            background: var( --color-blue );
            color: var( --color-white );
        }
    }
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding-bottom: 0;
}

.woocommerce table.shop_table {
    border-radius: 0!important;
    border-collapse: collapse;
    background-color: #f9f7f7;
}

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    @media( min-width : 1600px ) {
        margin-top: -51px;
    }
}

.woocommerce-cart-form__cart-item .product-name {
    & a {
        color: var( --color-blue );
        background: none;
        
        &:hover {
            color: var( --color-blue );
            background: none;
            opacity: 0.8;
        }
    }
}

.woocommerce-cart-form__cart-item .checkout-product-thumbnail {
    display: none;
}

.woocommerce-Price-amount.amount {
    color: var( --color-blue);
    font-weight: 700;
}

.woocommerce td.product-name dl.variation {
    & dt {
        color: var( --color-blue );
    }

    & dd {
        text-transform: capitalize;
    }
}

.woocommerce-cart td.product-name dl.variation {
    & dd {
        text-transform: capitalize;
        position: relative;
        top: -6px;
    }
}

.woocommerce-cart-form .quantity .qty {
    border: 1px solid var( --color-gray-01 );
    padding: 7px 5px;
    text-align: center;
}

.cart_totals {
    & h2 {
        font-size: 30px;
    }
}

.cart.woocommerce-cart-form__contents .coupon {
    display: flex;

    & input {
        max-width: 290px;
        width: 100%!important;
        margin: 0!important;
    }

    & button {
        background: var( --color-blue-01 );
        max-width: 150px;
        font-weight: 400;
        text-transform: capitalize;
        width: 100%;
        border-radius: 0;
        color: var(--color-blue-02 );
    }
}

.update-cart-button {
    background: transparent!important;
    color: var( --color-red )!important;
    border: 1px solid var( --color-red )!important;
    border-radius: 0!important;

    &:hover {
        background: rgba(162,34,34,.1)!important;
    }
}

/* Table */
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    font-weight: 800;
}

/* Cart Contents Table */
.woocommerce-cart-form__contents tr > *:first-child {
    padding-left: 26px !important;
}

.woocommerce-cart-form__contents tr > *:last-child {
    padding-right: 26px !important;
}

.woocommerce-cart-form__contents tbody tr > * {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* Cart Item */
.woocommerce-cart-form__cart-item td {
    vertical-align: top;
    height: 100%;
    line-height: 1 !important;
}

.woocommerce-cart-form__cart-item .product-remove {
    vertical-align: top !important;
}

.woocommerce-cart-form__cart-item .product-remove a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 14px;
    height: 14px;
    font-size: 0;
    font-weight: 400;
}

.woocommerce-cart-form__cart-item .product-remove a::before {
    content: "\e90d";
    display: block;
    font-family: 'gloveamerica' !important;
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.woocommerce-cart-form__cart-item .product-name {
    vertical-align: middle !important;
}

.woocommerce-cart-form__cart-item .product-name a {
    color: var( --color-black-01 );
}

.woocommerce-cart-form__cart-item .product-price .woocommerce-Price-amount.amount {
    color: var( --color-gray-02 );
    font-weight: 400;
}

.woocommerce-cart-form__cart-item .product-subtotal .woocommerce-Price-amount.amount {
    color: var( --color-black-01 );
}

/* Actions */
.woocommerce-cart-form__contents tbody tr td.actions {
    background-color: var( --color-gray );
}

.woocommerce-cart-form__contents tbody tr td.actions .coupon .input-text.input-text {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 15px;
    font-size: 18px;
}

.woocommerce-cart-form__contents tbody tr td.actions .update-cart-button {
    padding: 19px 35px !important;
    font-size: 19px;
    font-weight: 400;
    border-width: 2px !important;
}

/* Cart Totals */
.cart-collaterals .cart_totals .woocommerce-shipping-methods li {
    padding-left: 0;
}

.cart-collaterals .cart_totals .cart-subtotal td .woocommerce-Price-amount.amount {
    font-weight: 400;
    color: var( --color-gray-02 );
}

.cart-collaterals .cart_totals .order-total td .woocommerce-Price-amount.amount {
    color: var( --color-black-01 );
}

/* Quantity */

.quantity-wrapper {
    position: relative;
    display: inline-block;
    max-width: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
}

.quantity-buttons {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quantity-button {
    color: var( --color-blue-01 );
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}


.icon-arrow-down::before {
    content: "\e902"; 
    font-family: 'icomoon'; 
}

.icon-arrow-up:not(.footer-bottom-wrapper .icon-arrow-up)::before {
    content: "\e903"; 
    font-family: 'gloveamerica'!important;
    transform: rotate(90deg);
}

.quantity-wrapper .quantity {
    display: flex;
    flex-direction: column;
}

.quantity-wrapper .quantity-label {
    color: var( --color-blue );
    font-weight: 700;
}

.cart-logos {
    background-color: #F9F7F7;
    padding: 15px 20px;

    @media( min-width : 1200px ) {
        padding: 15px 65px;
    }

    & h3 {
        font-size: 16px;
        margin-bottom: 0;
    }

    &.footer-payment-option {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.cart-ssl-certification-container {
    max-width: 290px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var( --color-blue );
    margin-top: 20px;
    border: 1px solid var( --color-blue-01 );

    & svg {
        position: relative;
        margin-left: -32px;
    }
}

.cart-ssl-certification-container + .cart-ssl-certification-container {
    display: none;
}

.woocommerce-checkout-review-order .cart-ssl-certification-container {
    margin: 0;
}

.woocommerce-cart table.cart img {
    width: 66px;
}

.woocommerce a.remove {
    background: none;

    &:hover {
        background: none;
        color: var( --color-red )!important;
        opacity: 0.8;
    }
}

.woocommerce-cart table.cart td.product-quantity .quantity-label {
    display: none;
}

.woocommerce-error  {
    margin-bottom: 30px!important;

    & li {
        padding-left: 15px;

        @media( min-width : 1200px ) {
            padding-left: 34px!important;
        }
    }
    
}

.woocommerce-checkout {
    & h3 {
        font-size: 30px;
        text-transform: capitalize;
    }
}

.woocommerce table.shop_table {
    thead {
        tr {
            background: var( --color-blue );
            color: var( --color-white );
        }
    }

    tfoot {
        background:  var( --color-gray);
    }
}

.woocommerce-checkout #payment {
    background: var( --color-gray );
    border-radius: 0;
    margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding-left: 0;
}

.woocommerce form .form-row {
    margin-bottom: 30px;
}

.checkout-product-thumbnail {
    max-width: 66px;
    width: 100%;
    margin-right: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 66px;
}

.woocommerce table.shop_table td.product-name {
    display: flex;
    flex-direction: column;

    & > a {
        margin-bottom: 10px;
    }
}

.woocommerce table.shop_table tr {
    border-top-width: 1px;
}


.woocommerce-checkout .woocommerce table.shop_table td{
    padding: 10px 15px;
}

.woocommerce-checkout .woocommerce table.shop_table td.product-name {
    flex-direction: row;
    display: flex;
    color: var( --color-black-01 );
    font-weight: 700;
    font-size: 20px;
    width: 210px;
}


.woocommerce-checkout .woocommerce table.shop_table td.product-thumbnail{
    width: 200px;
}


.woocommerce-checkout .woocommerce table.shop_table td.product-total{
    width: 150px !important;
}


.woocommerce-checkout .woocommerce table.shop_table td.product-thumbnail img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox]{
    margin-top: 7px !important;
}


.woocommerce-SavedPaymentMethods-saveNew label{
    font-size: 16px !important;
}


.woocommerce-checkout .woocommerce td.product-name dl.variation dt {
    color: var( --color-black-01 );
}

.woocommerce-checkout .woocommerce td.product-name dl.variation dd {
    float: left;
    color: var( --color-gray-02 );
}

.woocommerce-invalid-required-field {
    position: relative;

    &::before {
        content: '';
        background-image: url('/wp-content/themes/gloveamerica/assets/img/required-icon.svg')!important;
        position: absolute;
        right: 0;
        background-size: 24px;
        width: 24px;
        height: 24px;
    }
}

.product-shop {
    & p {
        color: var( --color-white );
    }
}

/* Custom Fields for checkouts  */

.woocommerce-billing-fields {
    margin-bottom: 30px;
}

.label-blue {
    padding: 2px 10px;
    background-color: var( --color-blue );
    color: var( --color-white );
    position: absolute;
    right: 0;
    top: 0;
    font-size: 13px;
    line-height: 1.2;

}

.form-row:not(.place-order) {
    position: relative;
    display: flex;

    & label:not(.field-dropdown) {
        position: absolute;
        left: 0;
        padding-left: 10px;
        font-size: 17px;
        top: 0;
        z-index: 1;
        transition: all 0.3s ease-in-out;

        @media( min-width : 1200px ) {
            padding-left: 20px;
            font-size: 22px;
        }
    }

    & .choices {
        width: 100%;
    }

    & .woocommerce-form__label-for-checkbox {
        padding-left: 0!important;
        position: relative!important;
        margin-bottom: 30px;
    }

    /* Order Notes */
    &.notes {
        margin-top: 30px;
        flex-direction: column;
        font-size: 22px;
        font-weight: 800;
        color: var( --color-black-01 );
        
        label {
            position: relative;
            padding-left: 0;
        }
    }
}

.woocommerce form .form-row.notes {
    width: 100%;

    & .woocommerce-input-wrapper {
        width: 100%;
    }
}

.coupon-row-checkout {
    
    & .checkout_coupon {
        margin: 0!important;
    }
}

.woocommerce form.checkout_coupon {
    border: 1px solid transparent!important;
    padding: 0;
    margin-top: 11px!important;

    & button {
        max-width: 195px;
        width: 100%;
        border-radius: 0;
        font-weight: 400;
        padding: 20px;
        color: var( --color-blue-02 );
        background-color: var( --color-blue-01 );

    }

    & input {
        padding: 20px;
        border-bottom: transparent;
    }
}

.cart-link-back {
    & td {
        display: flex;
        justify-content: space-around;
    }
}

.wqv-product-info .woocommerce-variation-price {
    margin-top: 15px;
}

.woocommerce-error li {
    padding-left: 0!important;

    &::before {
        display: none;
    }
}

.coupon-row.coupon-row-checkout td {
    @media( min-width : 768px ) {
        width: 250px;
    }
}

.woocommerce-EditAccountForm {
    margin-top: 30px;

    @media( min-width : 1200px ) {
        margin-top: 0;
    }

    & .form-row {
        display: block;
    }

    & fieldset {
        & label {
            position: relative!important;
            padding-left: 0!important;
        }

        & p {
            & label {
                font-size: 19px!important;
            }
        }
    }
    
}

.input-has-value {
    display: inline-block !important;
    font-size: 15px !important;
    top: -18px !important;
    left: 0 !important;
    padding-left: 14px !important;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    & label {
        height: auto;
        width: auto;
        clip: auto;
        clip-path: none;
    }

    & input::placeholder {
        color: var( --color-white );
    }
}

.form-row.address-field {
    display: block;
}

/* .address-field  :is(#billing_country_field label, #billing_state_field label,#shipping_country_field label, #shipping_state_field label) {
        position: relative!important;
        top: 0;
} */

.product-name-custom-width {
    @media( min-width : 1200px ) {
        width: 100px;
    }
}

.product-custom-variable {
    display: flex;
}

.woocommerce-checkout-review-order .product-name {
    flex-direction: column!important;
}

.messagepop {

    .field.form-row.form-row-first  {
        display: flex;
        flex-direction: column; 
    
        & label  {
            position: relative!important;
            top: 0;
        }
    }
    

    & form {
        display: flex;
        flex-direction: column;
    }
}

.woocommerce-checkout-review-order {

    & b {
        margin-bottom: 20px;
        display: block;
    }
    & > a {
        margin-bottom: 20px;
        position: relative;
        display: inline-block!important;
        color: var(--color-white);
        border-radius: 0;
        font-size: 17px;
        line-height: 1.24em;
        font-weight: 400;
        padding: 12px 20px;
        vertical-align: middle;
        text-decoration: none;
        background: var(--color-red);
        transition: all ease-in-out 0.3s;
        border: 2px solid transparent;
        margin-right: 10px;

        &:hover {
            color: var(--color-blue);
            background: none;
            opacity: 0.8;
        }
    }

    & button.button-primary  {
        margin-bottom: 20px;
        position: relative;
        display: inline-block!important;
        color: var(--color-white);
        border-radius: 0;
        font-size: 17px;
        line-height: 1.24em;
        font-weight: 400;
        padding: 12px 20px;
        vertical-align: middle;
        text-decoration: none;
        background: var(--color-red);
        transition: all ease-in-out 0.3s;
        border: 2px solid transparent;
        margin-right: 10px;

        &:hover {
            background: #801515;
            color: var( --color-white );
        }
    }
}

.woocommerce-shipping-methods li::before{
    display: none;
}

.woocommerce-order-overview li::before {
    display: none!important;
}

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

.woocommerce-MyAccount-content {
    & address {
        margin-top: 30px;
    }
}

/* Login */

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    padding: 40px;
}

/* Sections */
.woocommerce-checkout-section,
.woocommerce-cart-section {
    margin-top: calc(var(--section-margins) * -0.5);
}

/* Checkout Review Order */
.woocommerce .woocommerce-checkout-review-order-table .woocommerce-Price-amount.amount {
    color: var( --color-black-01 );
    font-weight: 800;
}

.woocommerce .woocommerce-checkout-review-order-table tbody th,
.woocommerce .woocommerce-checkout-review-order-table tbody td {
    padding: 15px 26px;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot th,
.woocommerce .woocommerce-checkout-review-order-table tfoot td {
    padding: 20px 26px;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot th,
.woocommerce .woocommerce-checkout-review-order-table tfoot .coupon-row-checkout td {
    color: var( --color-black-01 );
    font-weight: 800;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot .coupon-row-checkout th,
.woocommerce .woocommerce-checkout-review-order-table tfoot .coupon-row-checkout td {
    font-size: 22px;
}

.woocommerce .woocommerce-checkout-review-order-table form.checkout_coupon{
    padding: 0;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot tr:where(.cart-subtotal, .cart-discount, .woocommerce-shipping-totals, .tax-total) td,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr:where(.cart-subtotal, .cart-discount, .woocommerce-shipping-totals, .tax-total) td .woocommerce-Price-amount.amount {
    color: var( --color-black-01 );
    font-weight: 400;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot tr:where(.order-total) td .woocommerce-Price-amount.amount {
    color: var( --color-black-01 );
}

.woocommerce .woocommerce-checkout-review-order-table tbody td.product-name .product-checkout-title strong {
    font-weight: 400;
    color: var( --color-gray-02 );
}

.woocommerce-page form .show-password-input {
    top: -0.3em;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: transparent!important;
}

/* Variation Price Fix */
.woocommerce-Price-amount {
    order:1;
}

.woocommerce-variation-price small{
    align-content: center;
}
/* Variation Price Fix */


a:not(.btn,.image-button){    
    background: none;    
}

a:hover:not(.btn,.image-button){
    color: var(--color-blue);
    background: none;
    opacity: 0.8;
}

/* Phone validation error styling */
.fx-phone-error {
    color: #e2401c !important;
    font-size: 0.875em;
    margin-top: 5px;
    display: block;
}

.woocommerce-invalid .fx-phone-error {
    display: block;
}