﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */


.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-tabs {
    border-bottom-color:white;
}

.nav-tabs .nav-link:not(.active) {
    background-color: #7F91D4 !important;
    color: #fff;
    border-top-color: white !important;
    border-left-color: white !important;
    border-right-color: white !important;
    border-bottom-color: white !important;
}
.nav-item .nav-link:is(.active){
    background-color: #394A9C !important;
    color: #fff;
    border-top-color: white !important;
    border-left-color: white !important;
    border-right-color: white !important;
    border-bottom-color: transparent !important;
}

/*.nav-tabs > li.active > a {
    background-color: #394A9C !important;*/
}
/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #d6d3e0;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    background-color: #d6d3e0;
}

.tab-list {
    margin: 0;
    padding: 0;
}

    .tab-list li {
        display: inline-block;
        list-style-type: none;
    }

.tab-panel {
    display: none;
    min-height: 150px;
    overflow: auto;
}

    .tab-panel.active {
        display: block;
        margin: 20px;
    }

.collapser-control {
    cursor: pointer;
}

.accordion {
    margin: 0;
    padding: 0;
}

.accordion-panel {
    display: none;
}

.intense-dark {
    background-color: #394A9C;
    color: #FFFFFF;
}

.intense-dark > a, .intense-dark > a:visited {
    color: antiquewhite !important;
}


.intense-dark > a:hover, .intense-dark > a:active {
    color: #D4C16A !important;
}

.subheader {
    background-color: #3F3075;
    color: #FFF0AA;
}

/* ------- CALLS ------- */
hr.divider {
    margin-left: 10%;
    margin-right: 10%;
}

.rounded-lg {
    border-radius: 1.25rem !important;
}

.rounded-top {
    border-top-left-radius: 1.25rem !important;
    border-top-right-radius: 1.25rem !important;
}

/* Bubble Spinner */
.loader {
    margin-top: 30%;
}

.load-test {
    text-align: center;
    animation: MoveUpDown .6s .1s linear infinite;
    color: #394A9C;
}

.spinner-grow {
    opacity: 100% !important;
    margin-left: 10px;
    background-color: #394A9C;
    width: 0.8rem;
    height: 0.8rem
}
.loader .spinner-grow:nth-last-child(1) {
    animation: loading .6s .1s linear infinite;
}

.loader .spinner-grow:nth-last-child(2) {
    animation: loading .6s .2s linear infinite;
}

.loader .spinner-grow:nth-last-child(3) {
    animation: loading .6s .3s linear infinite;
}

@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(13px);
    }
}

@keyframes loading {
    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(0,10px);
    }

    100% {
        transform: translate(0,0);
    }
}