/* FONT */
@import "./fonts/Magistral/magistral-stylesheet.css";
@import "./fonts/Graphik/graphik-stylesheet.css";
/* STYLE SHEETS */
@import "./theme/theme.css";

:root{

}

body{
    font-family: "Graphik", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Magistral", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.primary-font {
    font-family: "Magistral", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ALERTS */
.alert {
    --bs-alert-margin-bottom: none;
}
.alert-dismissible {
    padding-right: 0rem;
}
.alert-text {
    color: rgba(33,37,41,1);
}


/* OTHER */
.bg-navy {
    background-color: #0c2180;
}
.bg-pw {
    background-color: #009cd7;
}
.btn-navy {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0c2180;
    --bs-btn-border-color: #0c2180;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0d6efd;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d6efd;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0c2180;
    --bs-btn-disabled-border-color: #0c2180;
}
.btn-outline-navy {
    --bs-btn-color: #0c2180;
    --bs-btn-border-color: #0c2180;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0c2180;
    --bs-btn-hover-border-color: #0c2180;
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0c2180;
    --bs-btn-active-border-color: #0c2180;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0c2180;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0c2180;
    --bs-gradient: none;
}
.border {
    border: 1px solid #ccc !important;
}
.border-bottom {
    border-bottom: 1px solid #ccc !important;
}
.border-left {
    border-left: 1px solid #ccc !important;
}
.border-right {
    border-right: 1px solid #ccc !important;
}
.border-top {
    border-top: 1px solid #ccc !important;
}
.fine-print {
    font-family: "IBM Plex Sans", sans-serif;
    font-size:8px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: 0.05px;
}
.fs-1000 {
    font-size: 1rem;
}
.fs-1250 {
    font-size: 1.25rem;
}
.fs-1375 {
    font-size: 1.375rem;
}
.fs-1438 {
    font-size: 1.438rem;
}
.fs-1875 {
    font-size: 1.875rem;
}
.fs-1938 {
    font-size: 1.938rem;
}
.fs-2000 {
    font-size: 2rem;
}
.fs-2250 {
    font-size: 2.25rem;
}
.fs-3188 {
    font-size: 3.188rem;
}
.fs-3750 {
    font-size: 3.75rem;
}
.image-circle {
    border-radius: 50%;
    background-color: #000;
}
.main {
    min-height: calc(100vh - 77px - 204px);
}
.text-navy {
    color: #0c2180;
}
.text-justify {
    text-align:justify !important;
}
.text-pw {
    color: #009CD7;
}

#no-access-msg {
	display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d4f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    animation: fadeInOut 3s ease-in-out forwards;
	    /* Keep it small and centered */
	max-width: 600px;
	height: 50px;
    width: auto;
    white-space: normal; /* allow wrapping */



}

/* Fade in and fade out animation */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -20px); }
    10% { opacity: 1; transform: translate(-50%, 0); }
    90% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}
