:root {
    --nova-theme: #003a58 !important;
    --nova-theme-text: white !important;
    --nova-announcement-title-text: #0d3d6f;
}

html,
body {
    height: 100%;
    width: 100%;
}

.btn-unset {
    all: unset;
}

/* ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #00273b;
}

::-webkit-scrollbar-thumb {
    background: #7c7777;
} */

/* override bootstrap tooltip font-size */
.tooltip {
    font-size: 0.75rem;
}

@-webkit-keyframes flashing {
    0% {
        background-color: yellow;
        opacity: 1;
    }
    100% {
        background-color: inherit;
    }
}

@keyframes flashing {
    0% {
        background-color: yellow;
        opacity: 1;
    }
    100% {
        background-color: inherit;
    }
}

.flashing {
    -webkit-animation-name: flashing;
    -webkit-animation-duration: 800ms;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    animation-name: flashing;
    animation-duration: 800ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}

.btn-rounded-top-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
