﻿.dn {
    display: none !important;
}
.db {
    display: block !important;
}
.di {
    display: inline !important;
}
.vh {
    visibility: hidden !important;
}
.err-msg {
    top: 22px;
    bottom: 22px;
    left: 0;
    font-size: 14px;
    color: red;
}
.w100mw950m0 {
    width: 100%;
    max-width: 950px;
    margin: 0
}

.overflow-hidden {
    overflow: hidden;
}
.no-background {
    background: none; /* or 'initial', depending on your intended behavior */
}

/* CSS classes to replace inline styles from CKEditor content */
/* Used by Html.SanitizedRaw() helper to maintain CSP compliance */

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* Font Weight */
.fw-bold {
    font-weight: bold;
}

.fw-normal {
    font-weight: normal;
}

/* Font Style */
.fst-italic {
    font-style: italic;
}

.fst-normal {
    font-style: normal;
}

/* Text Decoration */
.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-none {
    text-decoration: none;
}

/* Brand Colors */
.text-brand-navy {
    color: rgb(0, 58, 112);
}