@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@100;200;300;400;500;600;700;800;900&family=VT323&display=swap");

a:link {
    text-decoration: none !important;
}
a:hover {
    text-decoration: underline !important;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

/* Bootstrap classes */

.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: inherit;
    --bs-card-subtitle-color: inherit;
    --bs-card-border-width: 1px;
    --bs-card-border-color: rgba(0, 0, 0, 0.175);
    --bs-card-border-radius: 0.375rem;
    --bs-card-box-shadow: none;
    --bs-card-inner-border-radius: calc(0.375rem - 1px);
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(33, 37, 41, 0.03);
    --bs-card-cap-color: inherit;
    --bs-card-height: auto;
    --bs-card-color: inherit;
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: auto;
    color: #212529;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.375rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.375rem - 1px);
    border-bottom-left-radius: calc(0.375rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    color: inherit;
}

.card-title {
    margin-bottom: 0.5rem;
    color: inherit;
}

.card-subtitle {
    margin-top: calc(-0.25rem);
    margin-bottom: 0;
    color: inherit;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: 1rem;
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    color: inherit;
    background-color: rgba(33, 37, 41, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}

.card-header:first-child {
    border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
}

.card-footer {
    padding: 0.5rem 1rem;
    color: inherit;
    background-color: rgba(33, 37, 41, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.175);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.375rem - 1px) calc(0.375rem - 1px);
}

.card-header-tabs {
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    margin-left: -0.5rem;
    border-bottom: 0;
}

.card-header-tabs .nav-link.active {
    background-color: #fff;
    border-bottom-color: #fff;
}

.card-header-pills {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.375rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.375rem - 1px);
    border-bottom-left-radius: calc(0.375rem - 1px);
}

.card-group > .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

    .card-group > .card {
        flex: 1 0 0;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:last-child) > .card-img-top,
    .card-group > .card:not(:last-child) > .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:not(:last-child) > .card-img-bottom,
    .card-group > .card:not(:last-child) > .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:first-child) > .card-img-top,
    .card-group > .card:not(:first-child) > .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:not(:first-child) > .card-img-bottom,
    .card-group > .card:not(:first-child) > .card-footer {
        border-bottom-left-radius: 0;
    }
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.btn-sm-old {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    margin: 0;
}

.btn-sm {
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    margin: 0;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Theme Tweaks */

.ast-primary-header-bar {
    background: #4f317d;
    background-image: linear-gradient(
        45deg,
        #ecb75c,
        #d43737,
        #4f317d,
        #46ae75
    );
}
.main-header-bar {
    border: 0;
}
.entry-content > .wp-block-columns {
    padding: 0;
}

.uagb-post-grid .uagb-post__title a {
    color: #d43737;
}
.uagb-post-grid .uagb-post__title a:hover {
    color: #4f317d;
}

.site-above-footer-wrap[data-section="section-above-footer-builder"] {
    border-image: linear-gradient(
            45deg,
            #ecb75c,
            #ecb75c,
            #d43737,
            #4f317d,
            #46ae75,
            #ecb75c,
            #d43737,
            #4f317d,
            #46ae75,
            #46ae75
        )
        1;
}

.site-below-footer-wrap[data-section="section-below-footer-builder"] {
    border: 0 !important;
}

.homeposts h4.entry-title {
    font-size: 24px;
    text-weight: bold;
    margin-bottom: 5px;
}

.homeposts h4.entry-title a {
    color: #d43737;
}

.homeposts .entry-meta {
    margin: 5px 0 !important;
}

.homeposts .entry-meta * {
    color: #343a40;
}

.homeposts div.entry-summary {
    margin: 0 !important;
}

.homeposts div.entry-summary p {
    margin: 0 !important;
}

.homeposts header.entry-header {
    margin-bottom: 0 !important;
}

/* PWP Custom Classes */

.nowrap {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-image-banner {
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
    text-align: center;
}

.ellpi a {
    min-width: 250px;
    font-weight: bold;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellpi a:hover {
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.header-color {
    background: #4f317d;
    background-image: linear-gradient(
        45deg,
        #ecb75c,
        #d43737,
        #4f317d,
        #46ae75
    );
}

.PWPbanner {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 1rem 0 !important;
    text-align: center;
}

.PWPbanner {
    width: 100%;
    text-align: center;
    margin: 0 0 1rem 0 !important;
}

.PWPbanner .title {
    display: inline-block; /* allows width-based scaling */
    width: 100%; /* fill container */
    margin: 0;
    padding: 0.5rem 0;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;

    /* MAGIC: scale text to container width */
    font-size: calc(60vw / 12); /* adjust divisor to fit your word length */
    max-font-size: 6rem; /* optional cap */
    min-font-size: 2rem; /* optional floor */

    /* gradient text */
    background-image: linear-gradient(
        45deg,
        #ecb75c,
        #ecb75c,
        #d43737,
        #4f317d,
        #46ae75,
        #ecb75c,
        #d43737,
        #4f317d,
        #46ae75,
        #46ae75
    );
    background-size: 500% 500%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: gradient 60s ease infinite;
}

@media (max-width: 900px) {
    .PWPbanner .title {
        font-size: calc(75vw / 12);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card-max {
    height: 700px;
}

#mastodon {
    height: 675px;
    overflow: auto;
}

#mastodon .card-max {
    font-size: 14px;
}

#mastodon p {
    text-align: left;
    margin-bottom: 0;
}

#mastodon span.invisible {
    position: absolute !important;
}

#mastodon span.invisible {
    font-size: 0 !important;
    line-height: 0 !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
}

.card-max span.invisible img,
#mastodon span.invisible svg {
    margin: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

#mastodon span.ellipsis:after {
    content: "\2026\0020" !important;
}

.btn-xs {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
}

#wtPostLoading {
    position: absolute;
    left: 1rem;
    top: 1rem;
}

#wtBtn {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.listbox {
    height: 575px;
    overflow: auto;
}

.listbox .card {
    margin: 10px;
    padding: 0;
}

.listbox .card-max {
    font-size: 14px;
}

.listbox p {
    text-align: left;
    margin-bottom: 0;
}

.listbox span.invisible {
    position: absolute !important;
}

.listbox span.invisible {
    font-size: 0 !important;
    line-height: 0 !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
}

.card-max span.invisible img,
.listbox span.invisible svg {
    margin: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.listbox span.ellipsis:after {
    content: "\2026\0020" !important;
}

.post_img_full {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}

.post_img_full img {
    width: 100%;
}

.post_img_right {
    width: 400px;
    margin-left: 25px;
    margin-bottom: 25px;
    float: right;
}

.post_img_left {
    width: 400px;
    margin-right: 25px;
    margin-bottom: 25px;
    float: left;
}

.post_img_right img,
.post_img_left img {
    width: 400px;
}

.post_img_full .caption,
.post_img_right .caption,
.post_img_left .caption {
    font-size: 10px;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.pagination {
    --bs-pagination-color: #d43737;
    --bs-pagination-hover-color: #4f317d;
    --bs-pagination-focus-color: #4f317d;
    --bs-pagination-active-bg: #4f317d;
    --bs-pagination-active-border-color: #4f317d;
}

.embed-responsive,
.embed-responsive-item {
    position: relative;
    width: 100%;
}

.embed-responsive::before {
    display: block;
    padding-top: 56.25%;
    content: "";
}

.embed-responsive > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.embed-responsive-16by9 {
    --bs-aspect-ratio: 56.25%;
}

@media (max-width: 576px) {
    .card-max {
        padding: 15px;
    }
}

.card-img-top {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.section {
    scroll-margin-top: 60px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .card-img-top {
        max-height: 100%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .card-img-top {
        max-height: 100%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .card-img-top {
        max-height: 15vw;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
    .card-img-top {
        max-height: 15vw;
    }
}

::placeholder {
    color: #cccccc !important;
}

.card,
.card-header,
.rd25 {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.card,
.card-body,
.rd25b {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

/* K2L Color Set */
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(13, 110, 253, 1) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(108, 117, 125, 1) !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(25, 135, 84, 1) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(13, 202, 240, 1) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(255, 193, 7, 1) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(220, 53, 69, 1) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(248, 249, 250, 1) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(33, 37, 41, 1) !important;
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, 1) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 1) !important;
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(33, 37, 41, 1) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgba(33, 37, 41, 0.75) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.LYellow {
    color: #fce94f;
}

.MYellow {
    color: #edd400;
}

.DYellow {
    color: #c4a000;
}

.LOrange {
    color: #fcaf3e;
}

.MOrange {
    color: #f57900;
}

.DOrange {
    color: #ce5c00;
}

.LBrown {
    color: #e9b96e;
}

.MBrown {
    color: #c17d11;
}

.DBrown {
    color: #8f5902;
}

.LGreen {
    color: #8ae234;
}

.MGreen {
    color: #73d216;
}

.DGreen {
    color: #4e9a06;
}

.LBlue {
    color: #729fcf;
}

.MBlue {
    color: #32174d;
}

.DBlue {
    color: #204a87;
}

.LPlum {
    color: #ad7fa8;
}

.MPlum {
    color: #75507b;
}

.DPlum {
    color: #5c3566;
}

.LRed {
    color: #ef2929;
}

.MRed {
    color: #cc0000;
}

.DRed {
    color: #a40000;
}

.LGrey1 {
    color: #eeeeec;
}

.MGrey1 {
    color: #d3d7cf;
}

.DGrey1 {
    color: #babdb6;
}

.LGrey2 {
    color: #888a85;
}

.MGrey2 {
    color: #555753;
}

.DGrey2 {
    color: #2e3436;
}

.bg-LYellow {
    background-color: #fce94f;
}

.bg-MYellow {
    background-color: #edd400;
}

.bg-DYellow {
    background-color: #c4a000;
}

.bg-LOrange {
    background-color: #fcaf3e;
}

.bg-MOrange {
    background-color: #f57900;
}

.bg-DOrange {
    background-color: #ce5c00;
}

.bg-LBrown {
    background-color: #e9b96e;
}

.bg-MBrown {
    background-color: #c17d11;
}

.bg-DBrown {
    background-color: #8f5902;
}

.bg-LGreen {
    background-color: #8ae234;
}

.bg-MGreen {
    background-color: #73d216;
}

.bg-DGreen {
    background-color: #4e9a06;
}

.bg-LBlue {
    background-color: #729fcf;
}

.bg-MBlue {
    background-color: #32174d;
}

.bg-DBlue {
    background-color: #204a87;
}

.bg-LPlum {
    background-color: #ad7fa8;
}

.bg-MPlum {
    background-color: #75507b;
}

.bg-DPlum {
    background-color: #5c3566;
}

.bg-LRed {
    background-color: #ef2929;
}

.bg-MRed {
    background-color: #cc0000;
}

.bg-DRed {
    background-color: #a40000;
}

.bg-LGrey1 {
    background-color: #eeeeec;
}

.bg-MGrey1 {
    background-color: #d3d7cf;
}

.bg-DGrey1 {
    background-color: #babdb6;
}

.bg-LGrey2 {
    background-color: #888a85;
}

.bg-MGrey2 {
    background-color: #555753;
}

.bg-DGrey2 {
    background-color: #2e3436;
}

/* Blog Oklahoma 2K */
.BOKBlue {
    color: #75a3ed;
}

.BOKGreen {
    color: #9fbe4c;
}

.BOKOrange {
    color: #fb9d39;
}

.EOHBrown {
    color: #6b5039;
}

.EOHGreen {
    color: #1a541e;
}

.EOHSky {
    color: #9fc2de;
}

.brown {
    color: #9b4f19;
}

.bg-BOKBlue {
    background-color: #75a3ed;
}

.bg-BOKGreen {
    background-color: #9fbe4c;
}

.bg-BOKOrange {
    background-color: #fb9d39;
}

.bg-EOHBrown {
    background-color: #6b5039;
}

.bg-EOHGreen {
    background-color: #1a541e;
}

.bg-EOHSky {
    background-color: #9fc2de;
}

.bg-brown {
    background-color: #9b4f19;
}

/* Postits */
.postit_yellow {
    background-color: #fcf0ad;
}

.postit_blue {
    background-color: #f0f8ff;
}

.postit_green {
    background-color: #eefcd2;
}

.postit_pink {
    background-color: #fcd2d2;
}

/* Flat OS Colors */
.flat-bg-turquoise {
    background-color: #1abc9c;
}

.flat-bg-green-sea {
    background-color: #16a085;
}

.flat-bg-emerland {
    background-color: #2ecc71;
}

.flat-bg-nephritis {
    background-color: #27ae60;
}

.flat-bg-peter-river {
    background-color: #3498db;
}

.flat-bg-belize-hole {
    background-color: #2980b9;
}

.flat-bg-amethyst {
    background-color: #9b59b6;
}

.flat-bg-wisteria {
    background-color: #8e44ad;
}

.flat-bg-wet-asphalt {
    background-color: #34495e;
}

.flat-bg-midnight-blue {
    background-color: #2c3e50;
}

.flat-bg-sun-flower {
    background-color: #f1c40f;
}

.flat-bg-orange {
    background-color: #f39c12;
}

.flat-bg-carrot {
    background-color: #e67e22;
}

.flat-bg-pumpkin {
    background-color: #d35400;
}

.flat-bg-alizarin {
    background-color: #e74c3c;
}

.flat-bg-pomegranate {
    background-color: #c0392b;
}

.flat-bg-clouds {
    background-color: #ecf0f1;
}

.flat-bg-silver {
    background-color: #bdc3c7;
}

.flat-bg-concrete {
    background-color: #95a5a6;
}

.flat-bg-asbestos {
    background-color: #7f8c8d;
}

.flat-turquoise {
    color: #1abc9c;
}

.flat-green-sea {
    color: #16a085;
}

.flat-emerland {
    color: #2ecc71;
}

.flat-nephritis {
    color: #27ae60;
}

.flat-peter-river {
    color: #3498db;
}

.flat-belize-hole {
    color: #2980b9;
}

.flat-amethyst {
    color: #9b59b6;
}

.flat-wisteria {
    color: #8e44ad;
}

.flat-wet-asphalt {
    color: #34495e;
}

.flat-midnight-blue {
    color: #2c3e50;
}

.flat-sun-flower {
    color: #f1c40f;
}

.flat-orange {
    color: #f39c12;
}

.flat-carrot {
    color: #e67e22;
}

.flat-pumpkin {
    color: #d35400;
}

.flat-alizarin {
    color: #e74c3c;
}

.flat-pomegranate {
    color: #c0392b;
}

.flat-clouds {
    color: #ecf0f1;
}

.flat-silver {
    color: #bdc3c7;
}

.flat-concrete {
    color: #95a5a6;
}

.flat-asbestos {
    color: #7f8c8d;
}

/* Bootstrap 4 */
.bs4-bg-primary {
    background-color: #007bff;
}

.bs4-bg-secondary {
    background-color: #6c757d;
}

.bs4-bg-success {
    background-color: #28a745;
}

.bs4-bg-info {
    background-color: #17a2b8;
}

.bs4-bg-warning {
    background-color: #ffc107;
}

.bs4-bg-danger {
    background-color: #dc3545;
}

.bs4-bg-light {
    background-color: #f8f9fa;
}

.bs4-bg-dark {
    background-color: #343a40;
}

/* Oklahoma */
.OKLightBlue1-bg {
    background-color: #1da4dc;
}

.OKDarkBlue1-bg {
    background-color: #0164a5;
}

.OKLightGreen-bg {
    background-color: #659a40;
}

.OKDarkGreen-bg {
    background-color: #33691e;
}

.OKLightOrange-bg {
    background-color: #d15521;
}

.OKDarkOrange-bg {
    background-color: #904214;
}

.OKLightGold-bg {
    background-color: #dc8f25;
}

.OKDarkGold-bg {
    background-color: #a9672a;
}

.OKLightBlue2-bg {
    background-color: #177abe;
}

.OKDarkBlue2-bg {
    background-color: #014f9a;
}

.OKLightGrey-bg {
    background-color: #888f92;
}

.OKDarkGrey-bg {
    background-color: #464646;
}

.OKLightBlue1-text {
    color: #1da4dc;
}

.OKDarkBlue1-text {
    color: #0164a5;
}

.OKLightGreen-text {
    color: #659a40;
}

.OKDarkGreen-text {
    color: #33691e;
}

.OKLightOrange-text {
    color: #d15521;
}

.OKDarkOrange-text {
    color: #904214;
}

.OKLightGold-text {
    color: #dc8f25;
}

.OKDarkGold-text {
    color: #a9672a;
}

.OKLightBlue2-text {
    color: #177abe;
}

.OKDarkBlue2-text {
    color: #014f9a;
}

.OKLightGrey-text {
    color: #888f92;
}

.OKDarkGrey-text {
    color: #464646;
}

/* Colourful Wonderland */
.CW-Sunray-bg {
    background-color: #ecb75c;
}

.CW-Jasper-bg {
    background-color: #d43737;
}

.CW-Regalia-bg {
    background-color: #4f317d;
}

.CW-MediumSeaGreen-bg {
    background-color: #46ae75;
}

.CW-Sunray-text {
    color: #ecb75c;
}

.CW-Jasper-text {
    color: #d43737;
}

.CW-Regalia-text {
    color: #4f317d;
}

.CW-MediumSeaGreen-text {
    color: #46ae75;
}

/* Purple */
.bg-purple {
    background-color: #4f317d;
}

.bg-purple2 {
    background-color: #4c2882;
}

.text-purple {
    color: #4f317d;
}

/* Blog Oklahoma Colors */
.OKLightBlue1-bg {
    background-color: #1da4dc;
}

.OKDarkBlue1-bg {
    background-color: #0164a5;
}

.OKLightGreen-bg {
    background-color: #659a40;
}

.OKDarkGreen-bg {
    background-color: #33691e;
}

.OKLightOrange-bg {
    background-color: #d15521;
}

.OKDarkOrange-bg {
    background-color: #904214;
}

.OKLightGold-bg {
    background-color: #dc8f25;
}

.OKDarkGold-bg {
    background-color: #a9672a;
}

.OKLightBlue2-bg {
    background-color: #177abe;
}

.OKDarkBlue2-bg {
    background-color: #014f9a;
}

.OKLightGrey-bg {
    background-color: #888f92;
}

.OKDarkGrey-bg {
    background-color: #464646;
}

.OKLightBlue1-text {
    color: #1da4dc;
}

.OKDarkBlue1-text {
    color: #0164a5;
}

.OKLightGreen-text {
    color: #659a40;
}

.OKDarkGreen-text {
    color: #33691e;
}

.OKLightOrange-text {
    color: #d15521;
}

.OKDarkOrange-text {
    color: #904214;
}

.OKLightGold-text {
    color: #dc8f25;
}

.OKDarkGold-text {
    color: #a9672a;
}

.OKLightBlue2-text {
    color: #177abe;
}

.OKDarkBlue2-text {
    color: #014f9a;
}

.OKLightGrey-text {
    color: #888f92;
}

.OKDarkGrey-text {
    color: #464646;
}

.OKLightFadedBlue1-bg {
    background-color: #8ed2ee;
}

.OKLightFadedGreen-bg {
    background-color: #b2cda0;
}

/*Gradiants*/
.bg-menu1 {
    background-color: #177abe;
    background: linear-gradient(-45deg, #1da4dc, #0164a5, #177abe, #014f9a);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.bg-menu1old {
    background-color: #177abe;
    background: linear-gradient(-45deg, #1da4dc, #0164a5, #177abe, #014f9a);
    border-bottom: 5px solid;
    border-image: linear-gradient(
            77deg,
            #1da4dc,
            #0164a5,
            #dc8f25,
            #d15521,
            #a9672a,
            #33691e,
            #659a40
        )
        1;
}

.bg-grad-blue1 {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #1da4dc, #0164a5);
}

.bg-grad-blue2 {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #177abe, #014f9a);
}

.bg-grad-grey {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #888f92, #464646);
}

.bg-grad-orange {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #d15521, #904214);
}

.bg-grad-green {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #659a40, #33691e);
}

.bg-grad-gold {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #dc8f25, #a9672a);
}

.bg-grad-red {
    background-color: #014f9a;
    background: linear-gradient(-45deg, #ef2929, #a40000);
}

.bg-grad-amazon {
    background-color: #ff9900;
    background: linear-gradient(-45deg, #d15521, #ff9900);
}

.bg-stripe {
    background-color: #014f9a;
    background: linear-gradient(
        77deg,
        #1da4dc,
        #0164a5,
        #dc8f25,
        #d15521,
        #a9672a,
        #33691e,
        #659a40
    );
}

/* Social Colors */
.text-purple {
    color: #645394;
}

.text-facebook {
    color: #3b5998;
}

.text-twitter {
    color: #55acee;
}

.text-instagram {
    color: #c32aa3;
}

.text-linkedin {
    color: #007bb5;
}

.text-youtube {
    color: #ff0000;
}

.text-googleplus {
    color: #dd4b39;
}

.text-snapchat {
    color: #fffc00;
}

.text-flickr {
    color: #ff0084;
}

.text-pinterest {
    color: #cb2027;
}

.text-rss {
    color: #ff6600;
}

.text-spotify {
    color: #1ed760;
}

.text-telegram {
    color: #0088cc;
}

.text-mastodon {
    color: #563acc;
}

.text-reddit {
    color: #ff4500;
}

.text-periscope {
    color: #40a4c4;
}

.text-discord {
    color: #7289da;
}

.text-amazon {
    color: #ff9900;
}

.bg-purple {
    background-color: #4c2882;
}

.bg-mastodon {
    background-color: #563acc;
}

.bg-mastodon-dark {
    background-color: #17063b;
}

.bg-twitter {
    background-color: #55acee;
}

.bg-reddit {
    background-color: #ff4500;
}

.bg-discord {
    background-color: #7289da;
}
