/**
 * WOOCOMMERCE CART
 */






/* Loading button */
.woocommerce-error[data-item] a.loading:before,
.woocommerce-notice[data-item] a.loading:before {
	content: "\f463";
	font-family: dashicons;
	display: inline-block;
	line-height: 1;
	font-weight: 400;
	font-style: normal;
	speak: never;
	text-decoration: none;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 20px;
	height: 20px;
	font-size: 20px;
	vertical-align: top;
	text-align: center;
	transition: color .1s ease-in;
	-webkit-animation: sbm_loading_spin 2s linear infinite;
	-moz-animation: sbm_loading_spin 2s linear infinite;
	animation: sbm_loading_spin 2s linear infinite;
}

@-moz-keyframes sbm_loading_spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes sbm_loading_spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes sbm_loading_spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }




