.CookieConsent {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #000;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    border-top: 1px solid #ccc;
}

#scrollTopBtn.actived {
    right: 30px;
    opacity: 1;
    bottom: 80px;
}

h5, h6 {
    color: #252775;
    font-family: "Titillium Web", sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 3px;
}

.logo-dark {
    height: 80px;
    width: 100%;
}

.sylablogo {
    margin-left: 100px;
    width: 40%;
}

.bg-secondary {
    background-color: #2c2d78 !important;
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-announcement {
    width: 100%;
    background: linear-gradient(90deg, #e20118, #b31200);
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 9999;
}

.top-announcement .announcement-wrapper {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.top-announcement .announcement-text {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    animation: scrollText 18s linear infinite;
}

.top-announcement i {
    margin: 0 8px;
    color: #fff;
}

.top-announcement .divider {
    margin: 0 20px;
    opacity: 0.6;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.btn-icon {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

@media only screen and (max-width: 768px) {

    .sylablogo {
        margin-top: 15px;
        margin-left: 0;
        width: 30%;
    }

    .logo-dark {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .top-announcement .announcement-text {
        font-size: 13px;
        animation-duration: 12s;
    }

    .header-topbar {
        background: #f8f9fa;
        display: block !important;
    }

    .header-topbar .contact-list,
    .header-topbar .social-icons {
        display: none !important;
    }

    .header-topbar .d-flex {
        justify-content: center !important;
        width: 100%;
    }

    .header-topbar-search {
        width: 90%;
        margin: 0 auto;
        border: #ffdddd solid 1px;
        display: flex;
        justify-content: center;
    }

    .header-topbar-search input[type="text"] {
        width: 90%;
    }

    .header-topbar-search input[type="button"] {
        margin-left: 8px;
    }
}