/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* Fix newsletter CE - layout inline */
.elementor-widget-email-subscription .elementor-field-group {
  flex-wrap: nowrap;
  align-items: center;
}
.elementor-widget-email-subscription .elementor-field-type-subscribe {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Fix checkout 2 colonnes */
@media (min-width: 992px) {
  .page-order .container.clearfix > .wrapper-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-order .container.clearfix > .wrapper-columns > #notifications {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .page-order .container.clearfix > .wrapper-columns > #content-wrapper {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
    -ms-flex: 0 0 66.666667% !important;
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }
  .page-order .container.clearfix > .wrapper-columns > .cart-grid-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
}
/* Supprime l'espace vide du wrapper-columns interne au checkout */
.page-order .js-content-wrapper > section > .wrapper-columns {
  display: block !important;
}
.page-order .js-content-wrapper > section > .wrapper-columns > .cart-grid-body {
  width: 100% !important;
  max-width: 100% !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
}
.page-order .js-content-wrapper > section > .wrapper-columns > .cart-grid-right {
  display: none !important;
}
