/*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS, USE WITH CAUTION.
*/

/* Equal heights only from lg breakpoint */
@media (min-width: 992px) {
  .row > .col-lg-4 { display: flex; }                /* column becomes flex container */
  .row > .col-lg-4 .card {
    display: flex;
    flex-direction: column;
/*     height: 100%; */    /*comment out for 2590998*/
    width: 100%;                                     /* prevents shrink on narrower screens */
  }
}

/* Below lg: let Bootstrap handle stacking */
@media (max-width: 991.98px) {
  .row > [class*="col-"] { display: block; }
  .row > [class*="col-"] .card { height: auto; width: 100%; }
}


/*ticket 2590998*/
@media (min-width: 992px) {
    .row > .col-lg-4 {
         display: block; 
    }
}