
/* =====================================================
   MOWISE CUSTOM STYLES
   ===================================================== */

/* TOP ANNOUNCEMENT BAR */

.mowise-announcement-logo{
    width:16px;
    height:16px;
    object-fit:contain;
    vertical-align:middle;
    margin-right:8px;
}

.mowise-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(3, 17, 34, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
    z-index: 999999;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mowise-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.mowise-marquee span {
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 50px;
    padding-left: 100%;
    animation: mowiseTicker 40s linear infinite;
    will-change: transform;
}

@keyframes mowiseTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Header offset caused by fixed announcement bar */
.header-area {
    top: 50px !important;
}

/* Content offset */
#smooth-wrapper {
    padding-top: 50px;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .mowise-top-bar {
        height: 42px;
    }

    .mowise-marquee span {
        font-size: 13px;
        line-height: 42px;
        animation-duration: 32s;
    }

    .header-area {
        top: 42px !important;
    }

    #smooth-wrapper {
        padding-top: 42px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mowise-top-bar {
        height: 38px;
    }

    .mowise-marquee span {
        font-size: 12px;
        line-height: 38px;
        animation-duration: 40s;
    }

    .header-area {
        top: 38px !important;
    }

    #smooth-wrapper {
        padding-top: 38px;
    }
}