/*
Theme Name: Vapier Child
Theme URI: http://www.wpbingosite.com/vapier
Author: wpbingo
Description: This is a child theme for Vapier
Version: 1.0
Author URI: http://wpbingosite.com
Template: vapier
Text Domain: vapier-child
*/
/*************** ADD YOUR CUSTOM CSS HERE  ***************/
.woocommerce-account #customer_login .button-register input[type=submit]{ background:#000; }
.mini-cart .cart-popup .buttons .button { background:#000; }
.wc-block-cart__submit-button {
    z-index: 0;
	background: #000;
	color: #fff;
}

.wc-block-cart__submit-button:before {
    position:absolute;
    content:"";
    top:auto;
	bottom: 0;
    background:#bd0028;
    left:0;
    width:100%;
    height:0;
    opacity:0;
    visibility:hidden;
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    z-index:-1; 
}

.wc-block-cart__submit-button:hover {
    color: #fff;
}
.wc-block-cart__submit-button:hover:before {
    height: 100%;
    opacity: 1;
    visibility: visible;
}