﻿/* Utility Classes */
.small { font-size: 14px }

.p-absolute { position: absolute }
.p-relative { position: relative }

.left-0 { left: 0 }

.top-0 { top: 0 }

.d-flex { display: flex }

.break-inside-column { break-inside: avoid-column }

.row-warning { border-left: 5px solid #da1a32 }

.my-4 { margin-bottom: 2rem; margin-top: 2rem }

.mr-2 { margin-right: 1rem }
.mr-1 { margin-right: .5rem }

.ws-nowrap { white-space: nowrap }

.w-fit { width: fit-content }

@media(min-width: 425px) {
    .col-count-sm-2 { column-count: 2 }
}

@media(min-width: 768px) {
    .p-md-absolute { position: absolute }

    .d-md-none { display: none }

    .col-count-md-3 { column-count: 3 }

    .text-md-left { text-align: left }
}
/* END Utility Classes */

