.flex {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 1rem;
    row-gap: 1rem;
}

.flex.no-gap {
    column-gap: 0;
    row-gap: 0;
}

.flex.gap-0 {
    column-gap: 0.5rem;
    row-gap: 0.5rem;
}

.flex.gap-1 {
    column-gap: 1rem;
    row-gap: 1rem;
}

.flex.gap-2 {
    column-gap: 2rem;
    row-gap: 2rem;
}

.flex.col {
    flex-direction: column;
}

.flex.between {
    justify-content: space-between;
}

.flex.end {
    justify-content: end;
}

.flex.center {
    justify-content: center;
}

.flex.stretch {
    align-items: stretch;
}

.flex.top {
    align-items: flex-start;
}

.flex.bot {
    align-items: flex-end;
}

.btn {
    background-color: #2653C3;
    color: white;
    border-radius: 0.5rem;
    font-weight: bold;
    padding: 0.375rem 1.5rem;
    border: solid 1px #2653C3;
    outline: none;
    font-size: 0.875rem;
}

.btn.outline {
    background-color: white;
    color: #2653C3;
    border-color: #2653C3;
}

.btn svg {
    fill: white;
    width: 1.25rem;
    height: 1.25rem;
}

.btn.outline svg, svg {
    fill: #2653C3;
}

.btn.done {
    background-color: #ccc;
    color: black;
    border-color: #ccc;
}

a.act {
    background-color: white;
    color: #2653C3;
    border-color: #2653C3;
}

.act svg path {
    fill: #2653C3;
}

.footer svg {
    fill: #fff;
}

.footer {
    background-color: #C61D38;
    
}

.footer a {
    color: white;
}

.no-margin {
    margin: 0;
}

.rad-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.rad-bottom {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.rad-left {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}

.rad-right {
    border-top-right-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

.btn.rad-left {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}

.btn.rad-right {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.no-border {
    border-width: 0;
}

.hi-text {
    padding: 0.375rem 0.75rem;
    background-color: #3C6EE1;
    border-radius: 0.5rem;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
}

.card.pad-1 {
    padding: 1rem;
}

.hide {
    display: none !important;
}

.red {
    background-color: #E64747;
    color: white;
}

.yellow {
    background-color: #FFBF00;
    color: white;
}

.green {
    background-color: #238823;
    color: white;
}

.txt-right {
    text-align: right;
}

.bx {
    border-left: solid 1px #2653C3;
    border-right: solid 1px #2653C3;
}

.by {
    border-top: solid 1px #2653C3;
    border-bottom: solid 1px #2653C3;
}

.bl {
    border-left: solid 1px #2653C3;
}

.bt {
    border-top: solid 1px #2653C3;
}

.br {
    border-right: solid 1px #2653C3;
}

.bb {
    border-bottom: solid 1px #2653C3;
}