/*
	Theme Name: EBM
	Version: 1.0
	Text Domain: ebm
*/

a[href="#no-follow"]{
	cursor: default!important;
    text-decoration: none!important;
}

.search-results-section .not-found-holder h2{
    display: inline-block;
    margin: 0;
}

.brand-link{
    text-decoration: none;  
}

/* Woocommerce */
.woocommerce-error li a{
    color: #515151;
}
.simple-product-btn-row form.cart .quantity,
.variable-product-btn-row .quantity,
.simple-product-btn-row .added_to_cart,
.variable-product-btn-row .added_to_cart,
.variations_form.cart .price,
.material-card-btns .added_to_cart{
    display: none!important;
}

.single_add_to_cart_button.loading,
.add_to_cart_button.loading,
.woo-filters-col ul[data-tax] li.disabled-term {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}

table.variations select option{
    background: #1e1d1d;
}

/* Cart counter animation */
span.horizontal-shake {
  animation: horizontal-shaking 0.35s infinite;
}

@keyframes horizontal-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateX(5px) }
  50% { transform: translateX(-5px) }
  75% { transform: translateX(5px) }
  100% { transform: translateX(0) }
}


/* blockUI */
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.blockUI.blockOverlay {
    position: relative;
}
.blockUI.blockOverlay::before {
    height: 3.8rem;
    width: 3.8rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -0.5em;
    margin-top: -0.5em;
    content: "";
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(images/loader-block.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0,0,0,1);
}

/* Form message */
div.theme-display-none {
    display: none;
}
div.theme-response-output{
    margin: 0.5em 0;
    padding: 1em;
    border: none;
    color: #ffffff;
    background-color: #255379;
    position: relative;
    z-index: 1;
    width: 100%;
}
div.theme-validation-errors{
    background-color: #c90000;
}
div.theme-mail-sent-ok{
    background-color: #0fa55d;
}
.theme-response-output a{
    color: #fff;
}

/* Validations errors */
.form-control.error,
.error-el .form-control{
    border: 1px solid #c90000!important;
}
.wpcf7-list-item.error-el .wpcf7-list-item-label {
    color: #c90000;
}
#login-form .form-group label.error,
#registration-form .form-group label.error,
#edit-user-form .form-group label.error,
.wpcf7-list-item.error-el label.error{
    display: none!important;
}
.processing{
    opacity: 0.9;
    pointer-events: none;
}
