/* ==========================================================================
   WooCommerce Buttons styles - begin
   ========================================================================== */

.woocommerce-page .qodef-content,
div.woocommerce {
    a.button,
    a.added_to_cart,
    input[type="submit"],
    button[type="submit"] {
        -webkit-appearance: none;
        background-color: $default-heading-color;
        border: 2px solid $default-heading-color;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        font-family: inherit;
        font-size: 12px;
        font-weight: 700;
        height: 45px;
        letter-spacing: 1px;
        line-height: 41px;
        outline: none;
        padding: 0 21px;
        position: relative;
        text-transform: uppercase;
        vertical-align: middle;
        width: auto;

        @include qodefBoxSizing(border-box);
        @include qodefTransition(color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out);

        &:hover {
            background-color: $first-main-color;
            border-color: $first-main-color;
            color: $default-heading-color;
        }
    }

    a.button.added {
        display: none;
    }

    .button.single_add_to_cart_button {
        height: 45px;
        line-height: 44px;

        &:before {
            content: "\f3f8";
            display: inline-block;
            font-family: 'Ionicons', serif;
            font-size: 16px;
            line-height: 1;
            padding-right: 9px;
            position: relative;
            top: -2px;
            vertical-align: middle;
        }
    }

    .wc-forward:not(.added_to_cart):not(.checkout-button) {
        font-size: 10px;
        height: 38px;
        line-height: 38px;
        padding: 0 20px;
    }
}

/* ==========================================================================
   WooCommerce Buttons styles - end
   ========================================================================== */