@import 'https://cuyamaca.evaluationkit.com/canvas/css';
/*********************************************************************/
/***** BEGIN DESIGNPLUS THEME IMPORT & CUSTOMIZATION  ****************/
/*********************************************************************/
/*** Legacy Sidebar ***/
/* 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);

/*** New Sidebar ***/
/* For Main CSS files */
@import url(https://designplus.ciditools.com/css/content.css);
@import url(https://designplus.ciditools.com/css/editor.css);
/* For Mobile app CSS file */
/*@import url(https://designplus.ciditools.com/css/mobile.css);*/

:root {
    --dt-color-primary: #1D4E91;
    --dt-color-primary-contrast: #FFFFFF;
    --dt-color-primary-dark-text: #1D4E91;
    --dt-color-secondary: #EA9610;
    --dt-color-secondary-contrast: #000000;
    --dt-color-secondary-dark-text: #8F600A;
    --dt-color-accent: #FFFFFF;
    --dt-color-accent-contrast: #000000;
    --dt-color-accent-dark-text: #707070;
    --dt-color-gray: #CCCCCC;
    --dt-color-gray-contrast: #000000;
    --dt-color-gray-dark-text: #636363;
    --dt-color-white: #FFFFFF;
    --dt-color-white-contrast: #000000;
    --dt-color-white-dark-text: #707070;
    --dt-color-graybg: #E6E6E6;
    --dt-color-graybg-contrast: #000000;
}

/*********************************************************************/
/***** END DESIGNPLUS THEME IMPORT & CUSTOMIZATION   *****************/
/*********************************************************************/
/*
 *
 *   cc-main.css only, do not use in cc-mobile.css 
 *
 */



/* fix for Dashboard and Commons breaking into two lines in the global navigation bar
   
   e.g. Dashboar
           d

        Common
           s

   original value is:
    word-wrap: break-word;

   Changing word-wrap to normal forces a horizontal scroll of the global navigation bar rather than 
   having text wrap for one or two letters
*/ 

body.primary-nav-expanded .menu-item__text {
    word-wrap: normal;
}

/****************************************************************************************************
 *
 *   Everything below is included in cc-mobile.css 
 *
 *
 */

/* 
    cc-nav
    Cuyamaca Navigation buttons
    Creates a horizontal bar of buttons by
    assigning two classes to a <ul> tag
*/

ul.cc-flex-space-around {
    justify-content: space-around;
}
ul.cc-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0 30px;
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1.8;
    text-align: center;
    list-style: none;
}
.cc-nav > li {
    flex: 1 0 auto;
    margin: .5em;
    border-radius: 4px;
    background-color: #002F5F;
    transition: background-color 0.3s ease;
}
.cc-nav li:hover {
    background-color: #001933;
}
.cc-nav li a {
    text-decoration: none !important;
    color: white;
    display: block;
    padding: 8px 20px;
}
.cc-nav-white li {
    background-color: #fff;
    border: 1px solid #ccc;
}
.cc-nav-white li a {
    color: #3355aa;
}
.cc-nav-white li:hover {
    background-color: #fbfbfb;
}
.cc-nav-blue li {
    background-color: #004B96;
}
.cc-nav-blue li:hover {
    background-color: #003b77;
}
.cc-nav-red li {
    background-color: #D32F2F;
}
.cc-nav-red li:hover {
    background-color: #b22929;
}
.cc-nav-purple li {
    background-color: #473C67;
}
.cc-nav-purple li:hover {
    background-color: #302847;
}
.cc-nav-green li {
    background-color: #00796B;
}
.cc-nav-green li:hover {
    background-color: #00695C;
}
.cc-nav-gray li {
    background-color: #444;
}
.cc-nav-gray li:hover {
    background-color: #222;
}

/* end .cc-nav */


/* Boxes */

.cc-box {
  /* keep this class in case it's being used by someone */
    color: white;
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #004B96;
}

.cc-box-white {
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 5px;
}
.cc-box-blue {
    color: white;
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #004B96;
}
.cc-box-red {
    color: white;
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #D32F2F;
}
.cc-box-purple {
    color: white;
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #5e287f;
}
.cc-box-green {
    color: white;
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #00796B;
}
.cc-box-gray {
    color: white;
    padding: 30px 30px;
    border-radius: 6px;
    background-color: #444;
}

/* Card styles */

ul.cc-cards {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
}
.cc-cards li {
    display: block;
    background: #fff;
    list-style: none;
    font-size: 1.2em;
    text-align: center;
    margin: .8em;
    position: relative;
    vertical-align: text-top;
    max-width: 210px;
    min-width: 210px;
    border: 1px solid #fafafa;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
.cc-cards li:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.cc-cards li a {
    display: block;
    text-decoration: none !important;
    color: #004B96;
    line-height: 1.3;
    padding: 30px;
}
.cc-cards img {
    max-width: 180px;
    max-height: 180px;
    padding-bottom: 10px;
}

/* Box Borders */

.cc-box-border {
    padding: 30px;
    margin: 30px;
    border-radius: 4px; 
}
.cc-box-border-gray {
    border: 1px solid #ccc;
}
.cc-box-border-blue {
    border: 1px solid #004B96;
}
.cc-box-border-red {
    border: 1px solid #D32F2F;
}


/* CSS to make embedded iframes flexible and display better */
.cc-flex-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
} 
.cc-flex-embed iframe,
.cc-flex-embed object,
.cc-flex-embed embed { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* Print Styles */

@media print {
    .cc-page-break-before {
        page-break-before: always;
    }
}