/* Gap heights */
.gap-h0 { height: 0; }
.gap-h5 { height: 5px; }
.gap-h10 { height: 10px; }
.gap-h20 { height: 20px; }
.gap-h30 { height: 30px; }
.gap-h40 { height: 40px; }
.gap-h60 { height: 60px; }

/* Dash styles */
.dash-h1 { height: 1px; }

/* Text colors */
.text-green { color: #50A035; }
.text-green-dark { color: #50A035; } /* Same as text-green, can be merged */
.text-red { color: #E9606F; }
.text-black { color: #000; }

/* Title styles */
.title-black-bold {
    color: #000;
    font-weight: bold;
}

/* Font sizing */
.font-size-13 { font-size: 13px; }
.font-size-14 { font-size: 14px; }
.font-size-20 { font-size: 20px; }

/* Layout & Sizing Utilities */
.center-block {
    margin-left: auto;
    margin-right: auto;
}
.float-left { float: left; }
.float-right { float: right; }

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Container max-widths */
.container-mw-802 {
    max-width: 802px;
    margin-left: auto;
    margin-right: auto;
}
.container-mw-820 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.container-mw-840 {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}
.half-width-container {
    max-width: 407px;
    margin-left: auto;
    margin-right: auto;
}

/* Image max-widths */
.img-mw-80 { max-width: 80px; }
.img-mw-387 { max-width: 387px; }
.img-mw-782 { max-width: 782px; }

/* Component styles */
.table-unit {
    float: right;
    font-size: 14px;
    color: #000;
    font-weight: normal;
}

/* Add cursor pointer to clickable elements */
.top_navbar_home, #go-top {
    cursor: pointer;
}