@import 'https://gtcc.evaluationkit.com/canvas/css';
/*********************************************************************/
/***** BEGIN DESIGN TOOLS THEME IMPORT & CUSTOMIZATION  **************/
/*********************************************************************/
/* Import statements need to be at the top of your CSS file */
/* For Main CSS file */
@import url(https://designtools.ciditools.com/css/themes.css);
/* For Mobile app CSS file */
/*@import url(https://designtools.ciditools.com/css/app.css);*/
/* Institution color customizations */
@import url(https://designtools.ciditools.com/css/inst_theme_overrides.css);
/* Theme Colors */
:root {
  --dt-color-primary: #006848;
  --dt-color-primary-contrast: #FFFFFF;
  --dt-color-primary-dark-text: #006848;
  --dt-color-secondary: #89B14B;
  --dt-color-secondary-contrast: #000000;
  --dt-color-secondary-dark-text: #004A36;
  --dt-color-accent: #F05826;
  --dt-color-accent-contrast: #000000;
  --dt-color-graybg: #E6E6E6;
  --dt-color-graybg-contrast: #000000;
}
/*********************************************************************/
/***** END DESIGN TOOLS THEME IMPORT & CUSTOMIZATION   ***************/
/*********************************************************************/

#section-tabs > li.section > a.syllabus {
  display: none;
}

/* ==========================================================
   BLUEPRINT TRIGGER: HIDE GLOBALLY, RESTORE FOR ADMINS
   ========================================================== */

/* 1. Hide the blue square trigger globally for all roles */
.bcs__trigger,
div.bcs__trigger,
[class*="bcs__trigger"] {
    display: none !important;
}

/* 2. Bring it back ONLY when an Account Admin is logged in */
body.primary-account-admin .bcs__trigger,
body.user-is-admin .bcs__trigger,
body[class*="admin"] .bcs__trigger {
    display: inline-block !important;
    visibility: visible !important;
}