/*
|--------------------------------------------------------------------------
| Notice / Ticker
|--------------------------------------------------------------------------
*/

.display-notice {
    width: 100%;
    height: 42px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #2243B6;
    color: #ffffff;

    padding: 0 0;

    box-sizing: border-box;
}

.display-notice marquee {
    display: flex;
    align-items: center;

    width: 100%;
    height: 42px;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;

    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Normalize HTML coming from admin/editor
|--------------------------------------------------------------------------
*/

.display-notice marquee *,
.display-notice p,
.display-notice span,
.display-notice strong,
.display-notice b,
.display-notice div {
    display: inline !important;

    margin: 0 !important;
    padding: 0 !important;

    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: 1.35 !important;

    vertical-align: middle !important;
}

/*
|--------------------------------------------------------------------------
| Optional: stronger readability for Nepali text
|--------------------------------------------------------------------------
*/

.display-notice marquee {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.display-notice p,
.display-notice span,
.display-notice strong {
    line-height: 34px;
    margin-top: 0;
    margin-bottom: 0;
}

.display-footer {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
}

.display-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.display-footer-item p {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.display-footer-powered {
    justify-content: flex-end;
}