@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Zeyada&display=swap');

* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

:root {
    --bs-primary: #00308F;
    --bs-secondary: #F5EBEB;
    --bs-primary-rgb: 134, 112, 112;
    --bs-secondary-rgb: 245, 235, 235;
    --bs-link-color: #00308F;
    --bs-link-hover-color: #F5EBEB;
}

.custom-gradient-1 {
    background: hsla(294, 63%, 25%, 1);
    
        background: linear-gradient(to right, hsla(294, 63%, 25%, 1) 0%, hsla(196, 99%, 48%, 1) 100%);
    
        background: -moz-linear-gradient(to right, hsla(294, 63%, 25%, 1) 0%, hsla(196, 99%, 48%, 1) 100%);
    
        background: -webkit-linear-gradient(to right, hsla(294, 63%, 25%, 1) 0%, hsla(196, 99%, 48%, 1) 100%);
    
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#867070", endColorstr="#FFFFFF", GradientType=1);
}

.min-vh-30 {
    min-height: 30vh !important;
}

.nav-item .nav-link {
    color: #0c0000;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    font-variant: small-caps;
}

.offcanvas-backdrop,
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #00308F;
    --bs-btn-border-color: #00308F;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(134, 112, 112, 0.7);
    --bs-btn-hover-border-color: #00308F;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00308F;
    --bs-btn-active-border-color: #00308F;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #rgba(12, 0, 36, 0.5);
    --bs-btn-disabled-border-color: #rgba(12, 0, 36, 0.5);
}

.btn-outline-primary {
    --bs-btn-color: #00308F;
    --bs-btn-border-color: #00308F;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #00308F;
    --bs-btn-hover-border-color: #00308F;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00308F;
    --bs-btn-active-border-color: #00308F;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #00308F;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #00308F;
    --bs-gradient: none;
}

.text-justify {
    text-align: justify !important;
}

.fv-caps {
    font-variant: small-caps !important;
}

.text-bg-primary {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: var(--bs-secondary) !important;
}

textarea {
    resize: none !important;
}

@media (max-width: 767.98px) {
    /* .nav-link {
        color: var(--bs-primary) !important;
        font-weight: 800;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    } */

    .offcanvas {
        background: var(--bs-primary) !important;
    }
}


sup {
    color: red;
    /* display: none; */
}

.page-link {
    color: var(--bs-primary);
    padding: 3px 8px;
    font-size: smaller;
}

.dataTables_info {
    font-size: smaller;
}

.page-link.active,
.active>.page-link {
    z-index: 3;
    color: #f8f9fa;
    font-weight: 600;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check-input:checked {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.my-card-hover:hover {
    background-color: var(--bs-primary) !important;
    color: #ffffff !important;
}