/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 11 2026 | 03:33:58 */
/* =========================
   Equal height columns
========================= */
.equal-height-row {

    display: flex;

    align-items: stretch;
}

.equal-height-row > .col {

    display: flex;

    flex-direction: column;
}

.equal-height-row > .col > .col-inner {

    flex: 1;
}