﻿.scrolling-header {
    width: 100%;
    background-color: #fff3e0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1040;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
    padding-top:30px;
}


.scrolling-header .scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 18s linear infinite;
    color: orangered;
    font-size: 1.05rem;
    font-weight: 600;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.fixed-top-custom {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

