:root {
    --golden: #fcb815;
    --main: #03121C;
    --positive: #50C878;
    --negative: #FA8072;
    --text: #212529;
    --tr-flash: yellow;
}

html {
    scroll-behavior: smooth !important;
}


.sanded {
    border-radius: 0.25rem;
}

body::-webkit-scrollbar {
    width: 0.75em;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--golden);
}

.bg-golden {
    background-color: var(--golden) !important;
}

.text-golden {
    color: var(--golden) !important;
}

.bg-main {
    /*background-color: #008FFB !important;*/
    background-color: var(--main) !important;
}

tbody > tr:hover {
    background-color: var(--golden) !important;
}

.card-title-text {
    font-size: 1.25rem;
    margin-left: 1.25rem;
}

.card-title {
    margin-top: 12px;
    margin-bottom: 0px;
}

.bg-danger-light {
    background-color: lightcoral;
    color: white;
}

.bg-golden {
    background-color: var(--golden) !important;
}

.text-golden {
    color: var(--golden) !important;
}

.scroll-parent {
    position: relative;
    width: 100%;
    height: 2rem;
    overflow-x: hidden;
}

.scroll-element {
    width: inherit;
    height: inherit;
    position: absolute;
    left: 0%;
    top: 0%;
    animation: primary 25s linear infinite;
}

.primary {
    animation: primary 25s linear infinite;
}

.secondary {
    animation: secondary 25s linear infinite;
}

@keyframes primary {
    from {
        left: 0%;
    }

    to {
        left: -100%;
    }
}

@keyframes secondary {
    from {
        left: 100%;
    }

    to {
        left: 0%;
    }
}

.uparrow {
    animation-name: greenToBlank;
    animation-duration: 1s;
}

.downarrow {
    animation-name: redToBlank;
    animation-duration: 1s;
}

@keyframes greenToBlank {
    from {
        background-color: var(--positive);
    }

    to {
        background-color: white;
    }
}

@keyframes redToBlank {
    from {
        background-color: var(--negative);
    }

    to {
        background-color: white;
    }
}

.pipsup {
    color: var(--positive);
}

.pipsdown {
    color: var(--negative);
}

.underline {
    text-decoration: underline;
}

.flash {
    -moz-animation: flash 1s ease-out;
    -moz-animation-iteration-count: 1;
    -webkit-animation: flash 1s ease-out;
    -webkit-animation-iteration-count: 1;
    -ms-animation: flash 1s ease-out;
    -ms-animation-iteration-count: 1;
}

@keyframes flash {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: var(--tr-flash);
    }

    100% {
        background-color: transparent;
    }
}

@-webkit-keyframes flash {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: var(--tr-flash);
    }

    100% {
        background-color: transparent;
    }
}

@-moz-keyframes flash {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: var(--tr-flash);
    }

    100% {
        background-color: transparent;
    }
}

@-ms-keyframes flash {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: var(--tr-flash);
    }

    100% {
        background-color: transparent;
    }
}
