/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

#billing_address_2 {
  display: none;
}


.wc_payment_method.payment_method_dibs_easy img {
    max-width: 100% !important;
    height: auto;
    display: block;
}

a.button.checkout.wc-forward {
  display: none;
}

#druckfreigabe-wrapper {
  text-align: left;
}

/* Füge diesen Code in deine CSS-Datei oder in einen <style>-Block im <head> deiner HTML-Seite ein */
.message-box.relative.dark {
  animation: shake 3s infinite;
  box-shadow: 0px 0px 20px 0px yellowgreen;
}

@keyframes shake {
  0%, 85%, 100% {
    transform: translateX(0);
  }
  87% {
    transform: translateX(2px);
  }
  89% {
    transform: translateX(-2px);
  }
  91% {
    transform: translateX(2px);
  }
  93% {
    transform: translateX(-2px);
  }
}







@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}