@font-face {
    font-family: 'OSBold';
    src: url('./fonts/OuroSafraBold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'OSRegular';
    src: url('./fonts/OuroSafraRegular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'OSLight';
    src: url('./fonts/OuroSafraLight.otf') format('opentype');
    font-weight: 300;
}

.ticker-bar {
    padding: 0 !important;
    overflow: hidden;
    height: 48px;
    display: flex;
    align-items: center;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
}

.os-inline-flex-to-block {
    display: inline-flex;
}

.font-weight-bold {
    font-weight: bold;
}

.positive {
    color: #00cc00 !important;
}

.negative {
    color: #ff3333 !important;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee:hover {
    animation-play-state: paused;
}

.os-kanban-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
}

.os-kanban-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.os-background {
    background: linear-gradient(45deg, #FFD700, #FFB300);
}

.os-button {
    background: linear-gradient(45deg, #FFD700, #FFB300);
    color: #000000;
    font-weight: 600;
    border-radius: 30px;
}

@media (max-width: 600px) {
    .os-inline-flex-to-block {
        display: block;
        text-align: center;
    }

    .os-kanban-container {
        display: flex;
        flex-direction: column;
        overflow-x: unset;
        white-space: unset;
        align-items: center;
    }

    .os-kanban-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .os-mobile-hidden {
        display: none !important;
    }


}