/*-----------------------------------------------
|   Theme Styles
-----------------------------------------------*/
:root,
[data-bs-theme=light] {
    /*--falcon-navbar-vertical-vibrant-bg-image: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(86,9,121,1) 50%, rgba(0,212,255,1) 100%);*/
    /* --falcon-primary: #172983;*/
    --falcon-bg-shape-bg-ltd: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(23,41,131,1) 20%, rgba(0,212,255,1) 100%);
    --falcon-bg-shape-bg-dtl: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(23,41,131,1) 20%, rgba(0,212,255,1) 100%);
    
}

[data-bs-theme=dark] {
    --falcon-primary: #e63757;
    --falcon-primary-rgb: 230, 55, 87;
    /*--falcon-bg-shape-bg-dtl: linear-gradient(-45deg, #172983, #4695ff);
    --falcon-bg-shape-bg-ltd: linear-gradient(-45deg, #4695ff, #172983);*/
    
}
.navbar-vertical.navbar-inverted .navbar-collapse {
    background-color: #172983;
}
.bg-shape {
    background-color: #172983;
}
.page-title {
    background-image: var(--falcon-bg-shape-bg-ltd);
    padding: 4px;
    margin-bottom: 10px;
    text-align: center;
    vertical-align: center;
    color: #fff;
    font-size: x-large;
    font-weight: bold;
    font-family: var(--falcon-font-sans-serif);
}
@font-face {
    font-family: 'serpentine';
    src: url('../customfont/sfbo____-webfont.woff2') format('woff2'), url('../customfont/sfbo____-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.table tr th {
    background-color: #172983;
    color:#fff;
}
/* Loading Overlay */
.loading-overlay-showing {
    overflow: hidden;
}

    .loading-overlay-showing > .loading-overlay {
        opacity: 1;
        visibility: visible;
    }

.loading-overlay {
    -webkit-transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
    transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
    visibility: hidden;
    background: #FFF;
}

body > .loading-overlay {
    position: fixed;
    z-index: 999999;
}
/* Bounce Loading */
.bounce-loader {
    -webkit-transition: all 0.2;
    transition: all 0.2;
    margin: -9px 0 0 -35px;
    text-align: center;
    width: 70px;
    height: 20px;
    line-height: 20px;
    left: 50%;
    position: absolute;
    top: 50%;
    z-index: 10000;
}

    .bounce-loader .bounce1,
    .bounce-loader .bounce2,
    .bounce-loader .bounce3 {
        -webkit-animation: 1.4s ease-in-out 0s normal both infinite running bouncedelay;
        animation: 1.4s ease-in-out 0s normal both infinite running bouncedelay;
        background-color: #172983;
        border-radius: 100%;
        -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
        display: inline-block;
        height: 18px;
        width: 18px;
    }

    .bounce-loader .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .bounce-loader .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
