@font-face {
    font-family: "Poppins";
    src: url("/fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html,
body {
    height: 100%;
}

body.itc-desktop,
body.itc-mobile {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.itc-desktop .itc-shell,
body.itc-mobile .itc-shell {
    flex: 1 1 auto;
    height: 100vh;
    max-height: 100vh;
    min-height: 0 !important;
    overflow: hidden;
}

body.itc-desktop .itc-shell > .d-flex {
    flex: 1 1 0;
    min-height: 0;
}

body.itc-desktop .itc-shell > .d-flex > main,
body.itc-mobile .itc-shell > main {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

:root {
    --itc-red: #DF300E;
    --itc-navy: #05152E;
    --itc-orange: #FF7F00;
    --itc-blue: #056E9B;
    --itc-yellow: #FFBF00;
    --itc-teal: #28A9A6;
    --itc-sidebar-width: 250px;
    --itc-topbar-height: 75px;
    --bs-primary: var(--itc-teal);
    --bs-secondary: var(--itc-navy);
    --bs-success: var(--itc-teal);
    --bs-info: var(--itc-blue);
    --bs-warning: var(--itc-yellow);
    --bs-danger: var(--itc-red);
    --bs-light: #f8f5f2;
    --bs-dark: var(--itc-navy);
    --bs-primary-rgb: 40, 169, 166;
    --bs-secondary-rgb: 5, 21, 46;
    --bs-success-rgb: 40, 169, 166;
    --bs-info-rgb: 5, 110, 155;
    --bs-warning-rgb: 255, 191, 0;
    --bs-danger-rgb: 223, 48, 14;
    --bs-light-rgb: 248, 245, 242;
    --bs-dark-rgb: 5, 21, 46;
    --bs-body-font-family: "Poppins", "Segoe UI", sans-serif;
    --bs-body-color: #1c2230;
    --bs-link-color: var(--itc-teal);
    --bs-link-hover-color: var(--itc-blue);
    --bs-link-color-rgb: 40, 169, 166;
}

.itc-shell {
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: #0b1526;
}

.itc-sidebar {
    width: var(--itc-sidebar-width);
    min-height: 100vh;
    flex: 0 0 var(--itc-sidebar-width);
    box-sizing: border-box;
}

.itc-topbar {
    height: var(--itc-topbar-height);
    min-height: var(--itc-topbar-height);
    flex: 0 0 var(--itc-topbar-height);
    max-height: var(--itc-topbar-height);
    overflow: hidden;
    box-sizing: border-box;
}

.itc-topbar > .d-flex:first-child {
    min-width: 0;
}

.itc-topbar .breadcrumb {
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}

.itc-topbar .breadcrumb-item {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.itc-logo {
    width: 140px;
    height: auto;
}

.itc-logo--topbar {
    width: 160px;
}

.itc-body-bg {
    position: relative;
    background-color: var(--itc-body-bg, #f6f7fb);
}

.itc-body-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--itc-body-graphic);
    background-repeat: no-repeat;
    background-position: var(--itc-body-graphic-position, right bottom);
    background-size: var(--itc-body-graphic-size, 420px);
    opacity: var(--itc-body-graphic-opacity, 0.08);
    pointer-events: none;
}

.itc-body-bg > * {
    position: relative;
    z-index: 1;
}

.cursor-pointer {
    cursor: pointer;
}

.itc-body-bg--logo {
    --itc-body-graphic: url("/images/boost-logo-cropped.png");
    --itc-body-graphic-size: 420px;
    --itc-body-graphic-position: right -40px bottom -60px;
    --itc-body-graphic-opacity: 0.08;
}

.itc-body-bg--itc-logo {
    --itc-body-graphic: url("/images/itc-logo-watermark.png");
    --itc-body-graphic-size: 480px;
    --itc-body-graphic-position: right -20px bottom -20px;
    --itc-body-graphic-opacity: 0.08;
}

.itc-body-bg--photo-1 {
    --itc-body-graphic: url("/images/itc-campus-1.webp");
    --itc-body-graphic-size: cover;
    --itc-body-graphic-position: center;
    --itc-body-graphic-opacity: 0.12;
}

.itc-theme-sunrise {
    --itc-body-bg: #f8f5f2;
    --bs-nav-pills-link-active-color: #fff;
}

.itc-theme-ocean {
    --itc-body-bg: #f1f7f7;
    --bs-nav-pills-link-active-bg: var(--itc-teal);
    --bs-nav-pills-link-active-color: #fff;
}

.itc-theme-ocean .nav-pills .nav-link.active {
    background-color: var(--itc-teal);
    color: #fff;
}

.itc-theme-citrus {
    --itc-body-bg: #fdf7ea;
    --bs-nav-pills-link-active-bg: var(--itc-red);
    --bs-nav-pills-link-active-color: #fff;
}

.itc-theme-citrus .nav-pills .nav-link.active {
    background-color: var(--itc-red);
    color: #fff;
}

.itc-shell--stacked .itc-sidebar {
    min-height: calc(100vh - var(--itc-topbar-height));
}

.bg-itc-navy {
    background-color: var(--itc-navy) !important;
}

.bg-itc-red {
    background-color: var(--itc-red) !important;
}

.bg-itc-orange {
    background-color: var(--itc-orange) !important;
}

.bg-itc-blue {
    background-color: var(--itc-blue) !important;
}

.bg-itc-yellow {
    background-color: var(--itc-yellow) !important;
}

.bg-itc-teal {
    background-color: var(--itc-teal) !important;
}

.text-itc-navy {
    color: var(--itc-navy) !important;
}

.text-itc-red {
    color: var(--itc-red) !important;
}

.text-itc-orange {
    color: var(--itc-orange) !important;
}

.text-itc-blue {
    color: var(--itc-blue) !important;
}

.text-itc-teal {
    color: var(--itc-teal) !important;
}

.border-itc-red {
    border-color: var(--itc-red) !important;
}

.border-itc-navy {
    border-color: var(--itc-navy) !important;
}

.border-itc-teal {
    border-color: var(--itc-teal) !important;
}
