:root {
    /* BRAND COLORS */
    --primary-color: #b5a36a;
    --accent-color: #000;

    --background-dark: var(--primary-color); /* applied with white text */

    /* FONT STACKS */
    --body-font: Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --header-font: var(--body-font);

    /* GLOBAL HEADER STYLES */
    --header-background-color: var(--primary-color);
    --header-text-color:#444545;
    --header-border-color:var(--accent-color);

    /* NAVIGATION STYLES */
    --nav-link-color:#fff;
    --nav-dropdown-background-color:#fff;
    --nav-dropdown-border-color:rgba(0,0,0,0.15);
    --nav-dropdown-link-color:#222;
    --nav-dropdown-link-hover-background-color:rgba(0,0,0,0.05);

    /* MOBILE NAVIGATION BUTTON */
    --nav-mobile-button-background-color:var(--accent-color);
    --nav-mobile-button-icon-color:#fff;

    /* USER TOOLS DROPDOWN */
    --nav-login-container-background:rgba(255,255,255,0.1);
    --nav-login-dropdown-background:var(--accent-color);
    --nav-login-dropdown-text-color:#fff;

    /* HEADING COLOR STYLES */
    --h1-color:#444545;
    --h2-color:#444545;
    --h3-color:#444545;

    /* TEXT LINK COLOR STYLES */
    --link-color:var(--accent-color);
    --link-color-hover:var(--primary-color);

    /* GLOBAL BUTTON STYLES */
    --btn-primary-background-color:#fff;
    --btn-primary-text-color:#444545;
    --btn-primary-background-color-hover:#444545;
    --btn-primary-text-color-hover:#fff;

    /* GLOBAL FOOTER STYLES */
    --footer-background-color:#222;
    --footer-text-color:#ccc;
    --footer-link-color:#fff;
}

/* ------------ STRUCTURE -------------- */
body.campus-management,
body.campus-management > form#aspnetForm {
    display:flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    background:#f7f7f7;
    font-family:var(--body-font);
    font-size:100%;
    line-height:1.5;
}

#structBody {
    flex-grow:2;
}

/* ------------ GENERAL TYPOGRAPHY/TEXT ------------- */

#structBody h1,
#structBody h2,
#structBody h3,
#structBody h4,
#structBody h5 {
    font-weight:bold;
    font-family:var(--header-font);
}

#structBody h1 {
    color:var(--h1-color);
    font-weight: 100;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom:2rem;
}

@media (min-width:768px) {
    #structBody h1 {
        font-size:3rem;
    }
}

#structBody h2 {
    color:var(--h2-color);
}

#structBody h3 {
    color:var(--h3-color);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

html a {
    color:var(--link-color);
    text-decoration:underline;
}

html a:hover, html a:focus {
    color:var(--link-color-hover);
    text-decoration:none;
}

html a:focus {
    outline:2px solid var(--accent-color);
    outline-offset:2px;
}

hr {
    margin-top:2rem;
    margin-bottom:3rem;
}

@media (max-width:767px) {
    #structBody h1 {
        margin-bottom:.5rem;
    }

    h1 + hr {
        margin-bottom:1.5rem;
        margin-top:.5rem;
    }
}

/* ------------ HEADER ------------- */
#structHeader {
    background-color:var(--header-background-color);
    border-top: 0.5rem solid var(--accent-color);
    box-shadow: 0 0 3rem rgba(0,0,0,0.3);
}
#structHeader .container-fluid {
    max-width:90rem;
}
#structHeader a {
    color:var(--header-text-color);
    text-decoration:none;
}

#structHeader a#logo {
    display: inline-block;
    max-width:100%;
    margin: 1rem 0;
}

#structHeader a#logo img {
    max-height:55px;
}

@media (min-width:992px) {
    #structHeader a#logo {}
}

#structHeader a#logo:focus {
    outline-offset:2px;
    outline:2px solid rgba(255,255,255,0.5);
}

#campus-management-main-nav {
    justify-content: flex-end;
    padding-bottom:1rem;
}

@media (min-width:992px) {
    #campus-management-main-nav {
        padding-bottom:0rem;
    }
}

.sfPageEditorWrp #campus-management-main-nav > div {
    /* fix top nav bar issue when editing */
    max-width:100vw;
}

#structHeader .navbar {
    padding:0;
}

#structHeader .navButton {
    text-align: right;
}

/* MOBILE NAVIGATION TOGGLE BUTTON */
#structHeader button.navbar-toggler {
    margin: 0.5rem 0;
    background-color: var(--nav-mobile-button-background-color);
    padding: 0.5rem;
}

#structHeader button.navbar-toggler .navbar-toggler-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

#structHeader button.navbar-toggler .navbar-toggler-icon svg {
    fill: var(--nav-mobile-button-icon-color);
}

/* USER TOOLS DROPDOWN */
#structHeader .campus-management-login-container {
    margin-bottom: 1rem;
    margin-top: 1rem;
    background: var(--nav-login-container-background);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

@media (min-width:992px) {
    #structHeader .campus-management-login-container {
        margin-left:1.5rem;
        padding:0;
        margin-top:0;
        margin-bottom:0;
    }
}

#structHeader .campus-management-login-container .dropdown > div:not(.media) {
    display: flex;
    justify-content: center;
}

#structHeader .campus-management-login-container .dropdown-menu {
    display: block;
    position: relative;
    background: transparent;
    border: none;
    padding-top: 0.25rem;
    margin: 0;
    padding-left: 0.5rem;
}

#structHeader .campus-management-login-container .dropdown-menu a {
    color: inherit;
    padding: 0.25rem 0;
}

#structHeader .campus-management-login-container .dropdown-menu p {
    margin-top: 1rem;
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    font-size: 0.875rem;
    color:var(--nav-login-dropdown-text-color);
}

#structHeader .campus-management-login-container .dropdown-menu a.btn-secondary {
    color: var(--primary-color);
    background-color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width:200px;
    border-color:transparent;
}

#structHeader .campus-management-login-container .dropdown-menu a {
    color:#fff;
}

@media (min-width:992px) {
    #structHeader .campus-management-login-container .dropdown-menu {
        left: auto;
        right: 0;
        margin-top: 0.5rem;
        padding: 1rem;
        width:12rem;
        display:none;
        position:absolute;
        background:var(--nav-login-dropdown-background);
    }
    #structHeader .campus-management-login-container .dropdown-menu.show {
        display: block;
    }
    #structHeader .campus-management-login-container .dropdown-menu p {
        margin-top:0.5rem;
        padding-top:0.5rem;
        color:var(--nav-login-dropdown-text-color);
    }
    
    #structHeader .campus-management-login-container .dropdown-menu a.btn-secondary {
        color: #fff;
        background-color:var(--primary-color);
    }
    #structHeader .campus-management-login-container .dropdown-menu a.btn-secondary:hover,
    #structHeader .campus-management-login-container .dropdown-menu a.btn-secondary:focus {
        color:var(--primary-color);
        background-color:#fff;
    }
}

#structHeader .campus-management-login-container a,
#structHeader .campus-management-login-container button {
    display: block;
    padding: 0.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    border-radius:0.25rem;
}

#structHeader .campus-management-login-container a:hover,
#structHeader .campus-management-login-container button:hover,
#structHeader .campus-management-login-container a:focus,
#structHeader .campus-management-login-container button:focus {
    text-decoration:underline;
}

#structHeader .campus-management-login-container button {
    background: none;
    border: none;
    height: auto;
    margin: 0 1rem 0 0;
    display: block;
    text-align: left;
}

#structHeader .campus-management-login-container a:focus,
#structHeader .campus-management-login-container button:focus {
    outline:2px solid rgba(255,255,255,0.75);
}

#structHeader .campus-management-login-container button:hover,
#structHeader .campus-management-login-container button:focus {
    text-decoration:underline;
}

#structHeader .campus-management-login-container button.profileImg {
    margin:0;
}

#structHeader .campus-management-login-container button.profileImg img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
}

#structHeader .navbar-nav > .nav-item > a {
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius:0.25rem;
}

#structHeader .navbar-nav > .nav-item > a:hover {
    text-decoration:underline;
}

#structHeader .navbar-nav > .nav-item > a:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    text-decoration:underline;
}

#structHeader a.dropdown-item {
    color: var(--nav-dropdown-link-color);
    font-weight: bold;
    padding: 0.75rem 1rem;
    line-height:normal;
}

#structHeader a.dropdown-item.active {
    background-color:var(--nav-dropdown-link-hover-background-color);
}

@media (min-width:992px) {
    #structHeader .navbar-nav > .nav-item + .nav-item {
        margin-left: 0.5rem;
    }
    #structHeader a.dropdown-item {
        color: var(--nav-dropdown-link-color);
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    #structHeader a.dropdown-item:hover,
    #structHeader a.dropdown-item:focus {
        text-decoration:underline;
        background-color:var(--nav-dropdown-link-hover-background-color);
    }
}

#structHeader .navbar-nav .dropdown-menu {
    background-color:var(--nav-dropdown-background-color);
    border-color:var(--nav-dropdown-border-color);
    min-width:11.5rem;
}

/* ----------------- MAIN BODY ------------------- */
#structBody .mainInner {
    padding-top:2rem;
    padding-bottom:3rem;
}

@media (min-width:992px) {
    #structBody .mainInner {
        /*padding-top:5rem;*/
    }
}

/* --------------- FOOTER --------------- */
#structFooter {
    background-color:var(--footer-background-color);
    color:var(--footer-text-color);
    padding:1.5rem 0;
    font-size:0.875rem;
    line-height:1.5;
}

#structFooter a {
    color:var(--footer-link-color);
}

#structFooter p {
    margin:0;
}

#structFooter p + p {
    margin-top:1rem;
}

/* ---------------- FORM & TPC STYLES ------------- */
#structBody .tpc .tpc-required-label {
    color: #D52724;
}
#structBody .col-form-label {
    font-weight:bold;
    line-height:normal;
}

#structBody .k-dropdown .k-dropdown-wrap {
    background: #fff;
    border-color: #ced4da;
}
#structBody .btn-primary {
    background-color:var(--btn-primary-background-color);
    color:var(--btn-primary-text-color);
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration:none;
    border-radius: 0;
    border: 2px solid var(--primary-color);
}

#structBody .btn-primary:hover,
#structBody .btn-primary:focus {
    background-color:var(--btn-primary-background-color-hover);
    color:var(--btn-primary-text-color-hover);
}

#structBody .btn-primary[disabled] {
    background: #000;
    opacity: .2;
    cursor: not-allowed;
}

#structBody .btn-secondary {
    border-color:transparent;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration:none;
}

#structBody .k-widget {
    font-family:inherit;
}

.sf-breadscrumb.breadcrumb {
    font-size:.875rem;
    margin-bottom:2rem;
}
.sf-breadscrumb.breadcrumb a {
    text-decoration: none;
    color: inherit;
}
.sf-breadscrumb.breadcrumb a:hover,
.sf-breadscrumb.breadcrumb a:focus {
    text-decoration:underline;
}

/* ------------ DASHBOARD CARDS ------------- */
.card-succeed-wrap {
    padding-bottom: 1.5rem;
    height:100%;
}
.card-succeed {
    background-color: #000;
    color: #fff;
    border-radius: .25rem;
    overflow: hidden;
    height:100%;
}

.card-succeed .card-inner {
    padding: 2rem 1rem;
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
}

#structBody .card-succeed .card-inner h3 {
    letter-spacing: normal;
    text-transform: none;
  }

/* ------------ EVENT CALENDAR ------------- */
#structBody .k-widget:not(.tpc-required) {
    font-family:inherit;
    font-size:inherit;
    line-height:inherit;
    color:inherit;
    background-color:transparent;
}
#structBody #scheduler {
    background: transparent;
    border: none;
}
#structBody #scheduler .k-event {
    background-color:var(--primary-color)!important;
    color:#fff;
    border:none;
}
#structBody #scheduler .k-toolbar {
    background-color:transparent;
    border:none;
    padding:0;
    margin-bottom:1rem;
    overflow: unset;
    justify-content: flex-start;
    position:relative;
    z-index: 10;
}

#structBody #scheduler .k-scheduler-layout {
    background: #fff;
    border: 1px solid #ccc;
}

#structBody #scheduler span.k-icon.k-i-calendar {
    margin-top:0;
}
#structBody #scheduler .k-scheduler-header th {
    background-color: #333;
    color: #fff;
    border-color: #888;
    font-size: 0.875rem;
    text-transform: uppercase;
}
#structBody #scheduler td.k-other-month {
    background: #eee;
    color: #666;
}

#structBody #scheduler .k-scheduler-navigation {
    margin-top:1rem;
    justify-content: space-between;
}
#structBody #scheduler .k-scheduler-navigation .k-nav-current {
    flex-grow: 1;
}
#structBody #scheduler .k-scheduler-navigation .k-nav-current a.k-link {
    justify-content: flex-end;
}
#structBody #scheduler .k-scheduler-views {
    top:0;
}

@media (min-width:768px) { 
    #structBody #scheduler .k-scheduler-views {}
    #structBody #scheduler .k-scheduler-navigation {
        margin-top:0;
        justify-content: flex-start;
    }
    #structBody #scheduler .k-scheduler-navigation .k-nav-current {
        flex-grow:0;
    }
}

.tpc.tpc-image .empty-image {
    display:block;
    font-size: 0.75rem;
    text-align: center;
}
#structBody #entityimage_wrapper .btn-primary {
    margin-top: 0;
}

.k-icon.k-i-.fa,
.k-icon.k-i-fa {
    font-family: "FontAwesome";
}

.campus-management .k-window {
    max-height: 90vh;
}

@media (max-width:767px) {
    .campus-management .k-window {
        width: 96% !important;
        left: 2% !important;
    }
}

.k-mobile #structBody .mainInner {
    padding: 1rem 0;
}

/* Student Tools */
#structBody .k-toolbar.k-widget {
    border:none;
    padding:0;
    overflow: initial;
    margin-bottom:2rem;
}

#structBody .k-toolbar.k-widget .k-button,
#structBody .k-upload.k-widget .k-button,
#structBody a.k-button-icontext {
    background: var(--btn-primary-background-color);
    border-color: transparent;
    color: var(--btn-primary-text-color);
    font-weight: bold;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

#structBody .k-toolbar.k-widget .k-button:hover,
#structBody .k-toolbar.k-widget .k-button:focus,
#structBody a.k-button-icontext:hover,
#structBody a.k-button-icontext:focus {
    background-color:var(--btn-primary-background-color-hover);
    color:var(--btn-primary-text-color-hover);
}

#structBody .k-toolbar.k-widget .k-button:focus {
    outline:2px solid var(--accent-color);
}

/* CASES Cards */
#structBody .k-widget.k-listview {
    border: none;
}
#structBody .case-card .bg-campus {
    background:rgba(0,0,0,0.125);
    color:#333;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
#structBody .case-card .bg-campus .card-title {
    margin:0;
    color:#333;
    font-size: 1.25rem;
}
#structBody .case-card .case-status {
    padding-top:.75rem;
    padding-bottom:.75rem;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
#structBody .case-card .case-status span {
    color:#fff;
    font-weight:bold;
}

/* SUBGRID DESIGNS */
.tpc.tpc-subgrid {
    background:#fff;
}
.tpc.tpc-subgrid .tpcSubgrid {
    height:auto!important;
}
.tpc.tpc-subgrid .tpcSubgrid .k-header.k-grid-toolbar {
    padding: 0;
    border: none;
}
.tpc.tpc-subgrid .tpcSubgrid .k-grid-content {
    height:auto!important;
}
#structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-content .k-grid-norecords {
    transform:none;
    left:0;
}
.tpc.tpc-subgrid .tpcSubgrid .k-grid-content .alert-tpc {
    margin:0;
    height:4rem;
    display: flex;
    align-items: center;
}
.tpc.tpc-subgrid .tpcSubgrid .k-grid-content .alert-tpc p {
    margin:0;
}
#structBody .tpc.tpc-subgrid .tpcSubgrid td.k-command-cell .k-button {
    padding: 0 !important;
    width: 2rem;
    height: 2rem;
    margin: 0;
    min-width: 2rem;
}
#structBody .tpc.tpc-subgrid .tpcSubgrid td.k-command-cell {
    padding:1rem .25rem;
}

/* ACTIVITIES, TO DOS, MY EVENTS */
.anth-activities,
.anth-todos,
.anth-event {
    border-radius: .25rem!important;
    padding: 1.25rem;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.05);
}
.anth-activities:hover, 
.anth-activities:focus,
.anth-todos:hover, 
.anth-todos:focus {
    background-color: #fff;
}
.anth-activities + .anth-activities,
.anth-todos + .anth-todos,
.anth-event + .anth-event {
    margin-top:1rem;
}
.anth-activities .titleBar,
.anth-todos .titleBar {
    flex-wrap:wrap;
    margin-bottom:1rem;
}

.anth-activities .titleBar .title,
.anth-todos .titleBar .title {
    display: flex;
    align-items: center;
}
.anth-activities .titleBar .title h2,
.anth-todos .titleBar .title h2 {
    margin:0 0 1rem;
    font-size:1.5rem;
}
.anth-activities .titleBar .details,
.anth-todos .titleBar .details {
    flex-shrink:0;
}
.anth-activities .titleBar .details ul,
.anth-todos .titleBar .details ul {
    margin:0;
    padding:0;
    list-style:none;
}
.anth-activities .description,
.anth-todos .description {
    margin: 1rem 0;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}
.anth-activities .status .list-group-item,
.anth-todos .status .list-group-item {
    padding: .25rem 1rem;
    font-weight: bold;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

@media (min-width: 768px) {
    .anth-activities .titleBar,
    .anth-todos .titleBar {
        flex-wrap:nowrap;
    }
    .anth-activities .titleBar .title, 
    .anth-todos .titleBar .title {
        padding-right:2rem;
    }
    .anth-activities .titleBar .title h2,
    .anth-todos .titleBar .title h2 {
        margin-bottom:0;
    }
    .anth-activities .titleBar .titleLeft,
    .anth-todos .titleBar .titleLeft {
        display:flex;
        align-items:center;
    }
    .anth-activities .titleBar .titleLeft .btn-group button:last-child,
    .anth-todos .titleBar .titleLeft .btn-group button:last-child {
        margin-right:1rem;
    }
}

.successnetwork .list-group-item {
    padding: 0;
    border-radius: .25rem!important;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.05);
    border:none;
}
.successnetwork .list-group-item + .list-group-item {
    margin-top:1rem;
}

a#AddHighschool, a#AddCollege {
    width:100%;
}

@media (min-width:600px) {
    a#AddHighschool, a#AddCollege {
        width:auto;
    }
}

@media (max-width:700px) {
    #structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-header {
        display:none;
    }
    #structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-content table[role='grid'],
    #structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-content tbody,
    #structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-content tr {
        display:block;
        width:100%;
    }
    #structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-content td {
        display:block;
        width:100%;
        border:none;
    }
    #structBody .tpc.tpc-subgrid .tpcSubgrid .k-grid-content td.k-command-cell {
        display: inline-block;
        width: 3rem;
        border: none;
        padding-bottom: 0rem;
    }
}

@media (max-width:600px) {
    .sf_2cols_1_50,
    .sf_2cols_2_50 {
        width:100%;
        float:none;
    }
}

#structBody #Addrec {
    display: inline-flex;
    height: 2.125rem;
    align-items: center;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* My Events */
.anth-event {
    border:none;
}
.anth-event h3 {
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.75rem;
}
.eventsWrap h2 {
    margin-bottom:1.5rem;
}
.eventsWrap .btn {
    display:block;
}
.eventsWrap .btn + .btn {
    margin-top: .5rem;
  }
.eventsWrap .eventLabel {
    color: dimgray;
    font-size: .875rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: .125rem;
}
.eventsWrap .eventInfo {
    display: block;
    margin-bottom: 1rem;
}

#structBody .anth-event h3 {
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.5rem;
  }

@media (min-width:767px) and (max-width:991px) {
    #divEventButtonContainer {
        display: flex;
        justify-content: space-between;
    }
    .eventsWrap .btn {
        width:100%;
    }
    .eventsWrap .btn + .btn {
        margin-top:0;
        margin-left:1rem;
    }
}

#structBody .tpc-nodata-error {
    border: none;
    background: rgba(0,0,0,0.05);
    border-radius: .25rem !important;
    padding: 1.25rem;
    font-size: 1.125em;
    font-style: italic;
    color: #6c6c6c;
}
#structBody .tpc-nodata-error p {
    margin:0;
}

/* EVENT CALENDAR */
#staffCalendar .bg-grey {
    background: #fff;
}

#structBody #staffCalendar  #scheduler .k-scheduler-header th {
    background: white;
    padding: 0;
    color: inherit;
}

#structBody #staffCalendar #scheduler .k-scheduler-header th .btn-primary {
    padding:0.375rem 0.75rem;
    text-transform: none;
    letter-spacing: normal;
    line-height:1.5;
  }

#structBody #staffCalendar #scheduler .k-scheduler-header th .btn span:nth-child(3) {
    display: none;
}

#staffCalendar .k-floatwrap.k-header.k-scheduler-toolbar {
    background: #333;
    color: #fff;
    border: none;
}

#staffCalendar .k-floatwrap.k-header.k-scheduler-toolbar .k-link .k-lg-date-format {
    font-weight: 700;
}

@media (max-width:991px) {
    #staffCalendar .col-lg-9 .ml-3 {
        margin-left: 0 !important;
    }
    #structBody #staffCalendar #scheduler .k-scheduler-navigation .k-nav-current a.k-link {
        justify-content: flex-start;
    }
    #structBody #staffCalendar #scheduler .k-scheduler-navigation {
        margin-top:0;
    }
    #structBody #staffCalendar #scheduler .k-scheduler-views {
        top: 0.375rem;
    }
}

/* RFI TEMPLATE STYLES */
.rfi .campus-management-main-body {
    padding: 0 15px;
}

.rfi .campus-management-main-body > .container {
    padding-left: 0;
    padding-right: 0;
}

.rfi .campus-management-content > .row {
    margin: 0;
}

.rfi #structBody .mainInner {
    padding-top: 0;
}
.rfi .campus-management-content {
    background: #fff;
    padding: 0px;
    border-top: 1rem solid var(--accent-color);
    margin: 0 -15px;
}
@media (min-width:576px) {
    .rfi .campus-management-content {
        padding:0;
        margin: -10vw -15px 0;
    }
}
.rfi .campus-management-content img.rfiLogo {
    width: 70%;
    max-width:350px;
    margin-bottom: 2rem;
}
.rfi .campus-management-content .sidebar {
    margin-bottom:2rem;
    background: var(--primary-color);
    padding: 1.5rem;
    margin-top: 0;
    color: #fff;
}
.rfi .campus-management-content .mainform {
    padding: 0 1.5rem;
}
.rfi #structBody h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.rfi #structBody h2 {
    font-size: 1.5rem;
}
.rfi #structBody .sidebar h2 {
    color:rgba(255,255,255,0.8);
}
.rfi #structBody .sidebar hr {
    border-color: rgba(255,255,255,0.3);
    margin: 2rem 0;
}
@media (min-width:992px) {
    .rfi .campus-management-content img.rfiLogo {
        width:100%;
    }
    .rfi .campus-management-content .sidebar {
        padding: 3rem;
        margin-top: -3rem;
        margin-bottom:0;
    }
    .rfi .campus-management-content .mainform {
        padding-left: 4rem;
        padding-top: 3rem;
        padding-right: 4rem;
        padding-bottom: 3rem;
    }
    .rfi #structBody h1 {
        font-size:2.5rem;
    }
    .rfi .campus-management-content {
        margin-top:-5rem;
    }
}
.rfi p.large {
    font-size:1.125em;
}

/* LOGIN STYLES */
.engage-registration, .engage-login.sso-login {
    max-width:60rem;
    padding:0;
    margin: 0 auto !important;
}
.engage-registration .checkbox, 
.engage-login.sso-login .checkbox {
    margin:0;
}
.engage-login.sso-login .inner {
    height:100%;
    background:#fff;
    border-radius: .25rem!important;
    padding: 1.25rem;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.05);
}
.engage-login.sso-login .ssoLogin {
    margin-top:1.5rem;
}
.engage-login.sso-login .btn.btn-primary {
    padding: 1rem 2rem;
    line-height: 1;
    text-transform: uppercase;
  }
@media (min-width:768px) {
    .engage-login.sso-login .ssoLogin {
        margin-top:0;
    }
}

@media only screen and (min-width: 992px) {
    #structHeader .campus-management-login-container {
        margin-left: 0;
        min-width: 48px;
    }
}

.navbar-nav.flex-nowrap {
    flex-wrap: wrap !important;
}

span[style*="color: #00cc00"] {
    color: var(--primary-color) !important;
}

.breadcrumb-item.active {
    color: #000;
}

#structHeader .campus-management-login-container .dropdown-menu a.btn-secondary {
    border-radius: 0;
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.breadcrumb {
    background-color: #edebe5;
}