@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

/*!
 * <%= meta.title %> v<%= meta.version %> Stylesheet
 * Docs & License: <%= meta.homepage %>
 * (c) <%= meta.copyright %>
 */

.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content, /* for gutter border */
.fc-unthemed .fc-popover {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed .fc-today {
  background: #fcf8e3;
}

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */
}

.fc-bgevent {
  /* default look for background events */
  background: rgb(143, 223, 130);
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */
}

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "\02039";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "\0203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "\000AB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "\000BB";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "\000D7";
  font-size: 200%;
  top: 6%;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
  /* force height to include the border and padding */
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */

.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default {
  /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* icons in buttons */

.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* unthemed */

.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px;
}

/* jqui themed */

.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
  width: 100%;
  box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */

.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */

.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
  background-color: #3a87ad;
  /* default BACKGROUND color */
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */

.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed, /* causes a "warning" cursor. applied on body */
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: .25;
  filter: alpha(opacity=25);
  /* for IE */
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */

.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */

.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */

.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/

.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* bigger touch area when selected */

.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */

/* left resizer  */

.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */

.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */

.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */

.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */

.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25;
  filter: alpha(opacity=25);
  /* for IE */
}

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */

/* left resizer  */

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */

.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/

.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
  text-align: center;
  margin-bottom: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */

.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em;
}

/* the first thing within each left/center/right section */

.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */

.fc-toolbar h2 {
  margin: 0;
}

/* button layering (for border precedence) */

.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */

/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */

.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box;
}

.fc-view, /* scope positioning and z-index's for everything within the view */
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* we are sure there are no day numbers in these views, so... */
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 0 2px;
}

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
  padding-top: 2px;
  padding-bottom: 2px;
}

.fc-basic-view .fc-week-number {
  text-align: center;
}

.fc-basic-view .fc-week-number span {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

.fc-ltr .fc-basic-view .fc-day-number {
  text-align: right;
}

.fc-rtl .fc-basic-view .fc-day-number {
  text-align: left;
}

.fc-day-number.fc-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container, /* so scroll container's z-index is below all-day */
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */

.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

.fc-time-grid .fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\000A0-\000A0";
  /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */
}

/* resizer (cursor device) */

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */

.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */

.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-ltr .fc-basic-view .fc-day-number {
  text-align: left;
  padding-left: 5px;
}

.fc-event .fc-event-actions {
  opacity: 0;
}

.fc-event:hover .fc-event-actions {
  opacity: 1;
}

.fc-event .fc-event-actions a {
  color: #232d4b;
  opacity: 0.3;
}

.fc-event .fc-event-actions a:hover {
  opacity: 1;
}

.fc-day-number {
  position: relative;
}

.fc-day-number .fc-day-actions a {
  color: #232d4b;
  opacity: 0.3;
  text-decoration: none;
}

.fc-day-number .fc-day-actions a:hover {
  opacity: 1;
}

/*.fc-day-number .fc-day-actions {
  opacity: 0;
}

.fc-day-number:hover .fc-day-actions {
  opacity: 1;
}*/

.fc-day-number.fc-other-month {
  opacity: 1;
}

.fc-day-number.fc-other-month > :not(.fc-day-actions) {
  opacity: 0.3;
}

/*.fc-row .fc-bg {
  z-index: 9999;
}*/

#c3_integration_map {
  width:100%;
  border:solid 1px #000;
  color:#333;
  margin:30px auto;
  min-height:400px;
}

#c3_integration_map_pasteboard {
  width:20%;
  background:#e4e2e0;
  float:left;
  min-height:400px;
}

#c3_integration_map_canvas {
  width:80%;
  background:#fff;
  float:left;
  min-height:400px;
}

#c3_integration_map .c3_header {
  background:#bbb4ae;
  font-weight:bold;
  text-transform:uppercase;
  text-align:center;
  line-height:30px;
}

.c3_integration_map_section {
  padding:20px;
  clear:both;
}

#c3_integration_map_pasteboard a {
  margin:2px;
  text-align:center;
  display:block;
  float:left;
  text-decoration:none;
  color:#000;
  font-weight:bold;
  font-size:10px;
}

#c3_integration_map_pasteboard a.c3_assessment {
  opacity:0.5;
  height:30px;
  width:30px;
  line-height:30px;
  color:#000;
  background-image:url('/modules/custom/c3design/images/integration-map/int_assessment_th.png');
}

#c3_integration_map_pasteboard a.c3_assessment.not_connected {
  opacity:1;
}

#c3_integration_map_pasteboard a.c3_activity {
  opacity:0.5;
  height:30px;
  width:30px;
  line-height:30px;
  border-radius:30px;
  color:#000;
  background-image:url('/modules/custom/c3design/images/integration-map/int_activity_th.png');
}

#c3_integration_map_pasteboard a.c3_activity.type-assignment {
  opacity:0.5;
  height:30px;
  width:30px;
  line-height:30px;
  border-radius:30px;
  color:#000;
  background-image:url('/modules/custom/c3design/images/integration-map/int_assignment_th.png');
}

#c3_integration_map_pasteboard a.c3_activity.not_connected {
  opacity:1;
}

#c3_integration_map_pasteboard a.c3_objective {
  opacity:0.5;
  height:35px;
  width:30px;
  line-height:35px;
  background-image:url('/modules/custom/c3design/images/integration-map/int_pasteboard_objective_connected.png');
  color:#000;
}

#c3_integration_map_pasteboard a.c3_objective.not_connected {
  opacity:1;
}

#c3_integration_map_pasteboard a.c3_objective.finks_000000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_000111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_001111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_010111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_011111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_100111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_101111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_110111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110111_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111000_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111001_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111010_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111011_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111100_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111101_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111110_th.png');
}

#c3_integration_map_pasteboard a.c3_objective.finks_111111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111111_th.png');
}

#c3_integration_map_canvas #c3_canvas_window {
  width:100%;
  overflow:auto;
}

#c3_integration_map_canvas #c3_canvas {
  width:100%;
}

#c3_integration_map_canvas #c3_canvas_objectives {
  width:100%;
  display:block;
}

#c3_integration_map_canvas #c3_canvas_assessments {
  width:100%;
  display:block;
}

#c3_integration_map_canvas #c3_canvas_activities {
  width:100%;
  display:block;
}

#c3_integration_map_canvas a {
  margin:2px;
  text-align:center;
  display:block;
  float:left;
  text-decoration:none;
  color:#fff;
  font-size:10px;
}

#c3_integration_map_canvas a.c3_assessment_orig {
  background:#2d7d9c;
  border-radius:70px;
  line-height:70px;
  height:70px;
  width:70px;
  font-size:15px;
  margin:20px;
  color:#000;
}

#c3_integration_map_canvas a.c3_assessment_orig.used {
  background:#8ba9bc;
}

#c3_integration_map_canvas a.c3_activity_orig {
  background:#946f7e;
  border-radius:60px;
  line-height:60px;
  height:60px;
  width:60px;
  font-size:15px;
  margin:20px;
}

#c3_integration_map_canvas a.c3_activity_orig.used {
  background:#946f7e;
}

#c3_integration_map_canvas a.c3_objective_orig {
  background:#cd7a49;
  border-radius:80px;
  line-height:80px;
  height:80px;
  width:80px;
  font-size:20px;
  margin:20px;
}

#c3_integration_map_canvas a.c3_objective_orig.used {
  background:#dfc5b2;
}

#c3_integration_map_canvas a.c3_assessment {
  background-image:url('/modules/custom/c3design/images/integration-map/int_assessment.png');
  line-height:70px;
  height:70px;
  width:70px;
  font-size:16px;
  margin:20px;
  font-weight:bold;
  color:#000;
}

#c3_integration_map_canvas a.c3_assessment.not_connected {
  border:solid 1px #f00;
  border-radius: 20px;
  box-shadow: 0px 0px 5px #f00;
}

#c3_integration_map_canvas a.c3_assessment .c3_assessment_indicator {
  font-size:16px;
  font-weight:bold;
  color:#000;
  background-position:right bottom;
  background:#f6f6f6;
  opacity: 0.8;
  border-radius:3px;
  margin:auto;
  padding:3px 5px;
}

#c3_integration_map_canvas a.c3_activity {
  background-image:url('/modules/custom/c3design/images/integration-map/int_activity.png');
  line-height:60px;
  height:60px;
  width:60px;
  color:#000;
  font-weight:bold;
  font-size:15px;
  margin:20px;
}

#c3_integration_map_canvas a.c3_activity.type-assignment {
  background-image:url('/modules/custom/c3design/images/integration-map/int_assignment.png');
  line-height:60px;
  height:60px;
  width:60px;
  color:#000;
  font-weight:bold;
  font-size:15px;
  margin:20px;
}

#c3_integration_map_canvas a.c3_activity.not_connected {
  border:solid 1px #f00;
  box-shadow: 0px 0px 5px #f00;
  border-radius:50px;
}

#c3_integration_map_canvas a.c3_assessment .c3_activity_indicator {
  font-size:15px;
  font-weight:bold;
  color:#000;
  background-position:right bottom;
  background:#f6f6f6;
  opacity: 0.8;
  border-radius:3px;
  margin:auto;
  padding:3px 5px;
}

#c3_integration_map_canvas a.c3_objective {
  line-height:100px;
  height:100px;
  width:100px;
  font-size:20px;
  margin:20px;
  background-position:center;
  background-repeat:no-repeat;
  font-weight:bold;
  color:#000;
}

#c3_integration_map_canvas a.c3_objective.not_connected {
  border:solid 1px #f00;
  box-shadow: 0px 0px 5px #f00;
  border-radius:50px;
}

#c3_integration_map_canvas a.c3_objective .c3_objective_indicator {
  font-size:20px;
  font-weight:bold;
  color:#000;
  background-position:center;
  background:#fff;
  opacity: 0.8;
  border-radius:3px;
  margin:auto;
  padding:5px 10px;
}

#c3_integration_map_canvas a.c3_objective.finks_000000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_000111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_001111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_010111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_011111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_100111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_101111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_110111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110111.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111000.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111001.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111010.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111011.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111100.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111101.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111110.png');
}

#c3_integration_map_canvas a.c3_objective.finks_111111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111111.png');
}

#c3_integration_map_modal_background {
  width:100%;
  height:100%;
  position:fixed;
  top:0px;
  left:0px;
  background:#000;
  text-align:center;
  vertical-align: middle;
  z-index:10000;
  opacity:.6;
}

#c3_integration_map_modal_container {
  width:100%;
  height:100%;
  position:fixed;
  top:0px;
  left:0px;
  text-align:center;
  vertical-align: middle;
  z-index:10001;
}

#c3_integration_map_modal {
  background:#f6f6f6;
  margin:auto;
  max-width: 90%;
  max-height: 60%;
  padding:20px;
  position:fixed;
  text-align:left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #696969;
  border-radius: 4px;
  overflow: auto;
  clear: both;
}

#c3_integration_map_modal a.close_button {
  position:fixed;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  display:block;
  line-height:25px;
  width:25px;
  background:#f00;
  color:#fff;
  text-align:center;
  border-radius:4px;
}

#c3_integration_map_modal_content {
  width:100%;
  height: 100%;
  overflow:auto;
}

#c3_integration_footer {
}

#c3_integration_footer img {
  border:none;
  box-shadow:none;
}

#c3_integration_footer h2 {
  color:#206279;
  font-size:20px;
  height:40px;
}

#c3_integration_footer h2 img {
  margin-right:20px;
}

#c3_integration_footer #c3_integration_footer_orphans {
  float:left;
  display:block;
  width:20%;
  margin-right:20px;
}

#c3_integration_footer #c3_integration_footer_orphans h2 img {
  border-radius:30px 30px 30px 30px;
  height:30px;
  width:30px;
  border:solid 1px #f00;
  box-shadow: 0px 0px 5px #f00;
}

#c3_integration_footer #c3_integration_footer_orphans ul {
  list-style:none;
  margin:0px;
  padding:0px;
  width:auto;
  display:block;
  border-collapse: collapse;
  border:none ;
  box-shadow: 0px 0px 5px #c9c9c9;
}

#c3_integration_footer #c3_integration_footer_orphans ul li {
  padding:5px;
  margin:0px;
  min-height:50px;
  background:#fff;
}

#c3_integration_footer #c3_integration_footer_orphans ul li.alt {
  background:#f0f0f0;
}

#c3_integration_footer #c3_integration_footer_orphans ul li a {
  float:left;
  border:solid 1px #f00;
  box-shadow: 0px 0px 5px #f00;
  margin:2px 10px 2px 5px;
  color:#000;
  display:block;
  text-align:center;
  margin-right:10px;
  background-position:center;
  background-repeat:no-repeat;
}

#c3_integration_footer #c3_integration_footer_orphans ul li a.orphan_circle {
  border-radius:35px;
  width:35px;
  height:35px;
}

#c3_integration_footer #c3_integration_footer_assessment_weights {
  float:left;
  display:block;
  width:25%;
}

#c3_integration_footer #c3_integration_footer_assessment_weights ul {
  list-style:none;
  margin:0px;
  padding:0px;
  width:auto;
  display:block;
  border-collapse: collapse;
  border:none ;
  box-shadow: 0px 0px 5px #c9c9c9;
}

#c3_integration_footer #c3_integration_footer_assessment_weights ul li {
  padding:5px;
  margin:0px;
  min-height:50px;
  background:#fff;
}

#c3_integration_footer #c3_integration_footer_assessment_weights ul li.alt {
  background:#f0f0f0;
}

#c3_integration_footer #c3_integration_footer_assessment_weights ul li a {
  float:left;
  margin:2px 10px 2px 5px;
  color:#000;
  display:block;
  text-align:center;
  margin-right:10px;
  background-position:center;
  background-repeat:no-repeat;
}

#c3_integration_footer #c3_integration_footer_assessment_weights ul li img {
  float:left;
  margin:2px 10px 2px 5px;
}

#c3_integration_footer #c3_integration_footer_assessment_weights ul li span {
  float:right;
  height:30px;
  line-height:30px;
}

#c3_integration_footer #c3_integration_footer_assessment_weights .c3_assessment_weight_error {
  background-color:#f00;
  line-height:20px;
  width:20px;
  color:#fff;
  font-weight:bold;
  float:right;
  text-align:center;
}

#c3_integration_footer table.shadow_box {
  width:100%;
  margin:0px;
  padding:0px;
  border-collapse: collapse;
  border:none ;
  box-shadow: 0px 0px 5px #c9c9c9;
}

#c3_integration_footer table.shadow_box tr {
  border:none;
}

#c3_integration_footer table.shadow_box tr td {
  border:none;
  padding:5px;
  margin:0px;
  width:50%;
  background:#fff;
}

#c3_integration_footer table.shadow_box tr.alt td {
  background:#f0f0f0;
}

#c3_integration_footer table.shadow_box span {
  float:right;
  line-height:35px;
}

#c3_integration_footer table.shadow_box img {
  margin-right:10px;
}

#c3_integration_footer #c3_integration_footer_finks_taxonomy {
  float:left;
  display:block;
  width:50%;
  margin-right:20px;
}

#c3_integration_footer a.c3_assessment {
  height:30px;
  width:30px;
  line-height:30px;
  background-image:url('/modules/custom/c3design/images/integration-map/int_assessment_th.png');
  color:#000;
}

#c3_integration_footer a.c3_activity {
  height:30px;
  width:30px;
  line-height:30px;
  border-radius:30px;
  background-image:url('/modules/custom/c3design/images/integration-map/int_activity_th.png');
  color:#000;
}

#c3_integration_footer a.c3_activity.type-assignment {
  height:30px;
  width:30px;
  line-height:30px;
  border-radius:30px;
  background-image:url('/modules/custom/c3design/images/integration-map/int_assignment_th.png');
  color:#000;
}

#c3_integration_footer a.c3_objective {
  height:35px;
  width:30px;
  line-height:35px;
  background-image:url('/modules/custom/c3design/images/integration-map/icon_objective.png');
  color:#000;
}

#c3_integration_footer a.c3_objective.finks_000000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000000_th.png');
}

#c3_integration_footer a.c3_objective.finks_000001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000001_th.png');
}

#c3_integration_footer a.c3_objective.finks_000010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000010_th.png');
}

#c3_integration_footer a.c3_objective.finks_000011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000011_th.png');
}

#c3_integration_footer a.c3_objective.finks_000100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000100_th.png');
}

#c3_integration_footer a.c3_objective.finks_000101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000101_th.png');
}

#c3_integration_footer a.c3_objective.finks_000110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000110_th.png');
}

#c3_integration_footer a.c3_objective.finks_000111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_000111_th.png');
}

#c3_integration_footer a.c3_objective.finks_001000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001000_th.png');
}

#c3_integration_footer a.c3_objective.finks_001001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001001_th.png');
}

#c3_integration_footer a.c3_objective.finks_001010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001010_th.png');
}

#c3_integration_footer a.c3_objective.finks_001011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001011_th.png');
}

#c3_integration_footer a.c3_objective.finks_001100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001100_th.png');
}

#c3_integration_footer a.c3_objective.finks_001101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001101_th.png');
}

#c3_integration_footer a.c3_objective.finks_001110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001110_th.png');
}

#c3_integration_footer a.c3_objective.finks_001111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_001111_th.png');
}

#c3_integration_footer a.c3_objective.finks_010000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010000_th.png');
}

#c3_integration_footer a.c3_objective.finks_010001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010001_th.png');
}

#c3_integration_footer a.c3_objective.finks_010010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010010_th.png');
}

#c3_integration_footer a.c3_objective.finks_010011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010011_th.png');
}

#c3_integration_footer a.c3_objective.finks_010100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010100_th.png');
}

#c3_integration_footer a.c3_objective.finks_010101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010101_th.png');
}

#c3_integration_footer a.c3_objective.finks_010110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010110_th.png');
}

#c3_integration_footer a.c3_objective.finks_010111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_010111_th.png');
}

#c3_integration_footer a.c3_objective.finks_011000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011000_th.png');
}

#c3_integration_footer a.c3_objective.finks_011001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011001_th.png');
}

#c3_integration_footer a.c3_objective.finks_011010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011010_th.png');
}

#c3_integration_footer a.c3_objective.finks_011011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011011_th.png');
}

#c3_integration_footer a.c3_objective.finks_011100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011100_th.png');
}

#c3_integration_footer a.c3_objective.finks_011101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011101_th.png');
}

#c3_integration_footer a.c3_objective.finks_011110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011110_th.png');
}

#c3_integration_footer a.c3_objective.finks_011111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_011111_th.png');
}

#c3_integration_footer a.c3_objective.finks_100000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100000_th.png');
}

#c3_integration_footer a.c3_objective.finks_100001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100001_th.png');
}

#c3_integration_footer a.c3_objective.finks_100010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100010_th.png');
}

#c3_integration_footer a.c3_objective.finks_100011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100011_th.png');
}

#c3_integration_footer a.c3_objective.finks_100100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100100_th.png');
}

#c3_integration_footer a.c3_objective.finks_100101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100101_th.png');
}

#c3_integration_footer a.c3_objective.finks_100110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100110_th.png');
}

#c3_integration_footer a.c3_objective.finks_100111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_100111_th.png');
}

#c3_integration_footer a.c3_objective.finks_101000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101000_th.png');
}

#c3_integration_footer a.c3_objective.finks_101001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101001_th.png');
}

#c3_integration_footer a.c3_objective.finks_101010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101010_th.png');
}

#c3_integration_footer a.c3_objective.finks_101011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101011_th.png');
}

#c3_integration_footer a.c3_objective.finks_101100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101100_th.png');
}

#c3_integration_footer a.c3_objective.finks_101101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101101_th.png');
}

#c3_integration_footer a.c3_objective.finks_101110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101110_th.png');
}

#c3_integration_footer a.c3_objective.finks_101111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_101111_th.png');
}

#c3_integration_footer a.c3_objective.finks_110000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110000_th.png');
}

#c3_integration_footer a.c3_objective.finks_110001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110001_th.png');
}

#c3_integration_footer a.c3_objective.finks_110010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110010_th.png');
}

#c3_integration_footer a.c3_objective.finks_110011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110011_th.png');
}

#c3_integration_footer a.c3_objective.finks_110100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110100_th.png');
}

#c3_integration_footer a.c3_objective.finks_110101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110101_th.png');
}

#c3_integration_footer a.c3_objective.finks_110110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110110_th.png');
}

#c3_integration_footer a.c3_objective.finks_110111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_110111_th.png');
}

#c3_integration_footer a.c3_objective.finks_111000 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111000_th.png');
}

#c3_integration_footer a.c3_objective.finks_111001 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111001_th.png');
}

#c3_integration_footer a.c3_objective.finks_111010 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111010_th.png');
}

#c3_integration_footer a.c3_objective.finks_111011 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111011_th.png');
}

#c3_integration_footer a.c3_objective.finks_111100 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111100_th.png');
}

#c3_integration_footer a.c3_objective.finks_111101 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111101_th.png');
}

#c3_integration_footer a.c3_objective.finks_111110 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111110_th.png');
}

#c3_integration_footer a.c3_objective.finks_111111 {
  background-image:url('/modules/custom/c3design/images/objectives/int_objective_111111_th.png');
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: currentColor;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Arial, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

._c3-arrow-down {
  background: url(../../images/arrows.png) 0 -144px;
  display: inline-block;
  height: 96px;
  width: 47px;
}

._c3-arrow-up {
  background: url(../../images/arrows.png);
  display: inline-block;
  height: 96px;
  width: 47px;
}

._c3-button, button:not(.ck-button), input[type="submit"]{
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(35 45 75 / var(--tw-bg-opacity, 1));
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
  text-decoration-line: none !important;
  &:hover{
    opacity: 0.9;
  }
  &._c3-button-small{
    height: 22px;
  }
  &._c3-button-small{
    width: 22px;
  }
  &._c3-button-small{
    padding: 0px;
  }
}

._c3-button.bg-white, button:not(.ck-button).bg-white{
  border-width: 1px !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
}

._c3-button.bg-transparent, button:not(.ck-button).bg-transparent{
  --tw-border-opacity: 1 !important;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1)) !important;
  background-color: transparent !important;
  --tw-text-opacity: 1 !important;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1)) !important;
  background: transparent !important;
}

._c3-icon-bar{
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border-width: 3px;
  --tw-border-opacity: 1;
  border-color: rgb(35 45 75 / var(--tw-border-opacity, 1));
  padding-left: 20px;
  padding-right: 20px;
  & > a{
    padding: 2%;
  }
  & > a {
    &:hover{
      border-width: 1px;
    }
    &:hover{
      --tw-border-opacity: 1;
      border-color: rgb(229 114 0 / var(--tw-border-opacity, 1));
    }
    &:hover{
      --tw-bg-opacity: 1;
      background-color: rgb(218 218 218 / var(--tw-bg-opacity, 1));
    }
  }
}

._c3-label{
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

._c3-schedule-table {
  th{
    border-bottom-width: 3px;
  }
  th{
    --tw-border-opacity: 1;
    border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  }
}

._c3-syllabus{
  overflow-wrap: break-word;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
  padding: 2rem;
  h1{
    text-align: center;
  }
  h2{
    margin: 0px;
  }
  h2{
    text-decoration-line: underline;
  }
  hr{
    margin-bottom: 1rem;
  }
  p{
    margin: 0px;
  }
  table{
    border-collapse: collapse;
  }
  td, td{
    border-width: 1px;
  }
  td, td{
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
  }
  td, td{
    padding: 1.5rem;
  }
  ul{
    margin-top: 0px;
  }
}

._c3-syllabus-rubric{
  border-width: 2px;
  th, td{
    border-width: 2px;
  }
  th, td{
    padding: 0.25rem;
  }
}

._c3-table, ._c3-table-bordered {
  td, th{
    padding: 8px;
  }
}

._c3-table-bordered {
  td{
    border-left-width: 1px;
    border-right-width: 1px;
  }
  td{
    border-bottom-width: 1px;
  }
  td{
    --tw-border-opacity: 1;
    border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  }
}

._c3-well{
  width: 100%;
  overflow-wrap: break-word;
  border-radius: 4px;
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
  padding: 30px;
  border: 1px solid #eee;
}

._c3-content{
  line-height: 24px;
  a{
    display: inline-block;
  }
  a{
    --tw-text-opacity: 1;
    color: rgb(229 114 0 / var(--tw-text-opacity, 1));
  }
  a {
    &:hover{
      --tw-text-opacity: 1;
      color: rgb(35 45 75 / var(--tw-text-opacity, 1));
    }
    &:hover{
      text-decoration-line: underline;
    }
    &:hover{
      transition-duration: 200ms;
    }
    &:hover{
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
  }
  blockquote{
    margin-bottom: 20px;
  }
  blockquote{
    border-left-width: 5px;
  }
  blockquote{
    --tw-border-opacity: 1;
    border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  }
  blockquote{
    padding-left: 20px;
    padding-right: 20px;
  }
  blockquote{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  h2{
    margin-bottom: 20px;
  }
  h3{
    margin-bottom: 33px;
  }
  h3{
    font-size: 27px;
  }
  h3{
    font-weight: 400;
  }
  h3{
    text-transform: uppercase;
  }
  h4{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  iframe{
    display: inline-block;
  }
  .img-thumbnail{
    position: relative;
  }
  .img-thumbnail{
    border-radius: 4px;
  }
  .img-thumbnail{
    border-width: 1px;
  }
  .img-thumbnail{
    --tw-border-opacity: 1;
    border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  }
  .img-thumbnail{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
  .img-thumbnail{
    padding: 4px;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    border-width: 1px !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    --tw-border-opacity: 1 !important;
    border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    --tw-text-opacity: 1 !important;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    border-width: 1px !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    --tw-border-opacity: 1 !important;
    border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  }
  ._c3-button.img-thumbnail, button:not(.ck-button).img-thumbnail{
    --tw-text-opacity: 1 !important;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
  }
  .img-thumbnail {
    .zoom{
      position: absolute;
    }
    .zoom{
      bottom: 8px;
    }
    .zoom{
      right: 8px;
    }
    .zoom{
      display: flex;
    }
    .zoom{
      height: 30px;
    }
    .zoom{
      width: 30px;
    }
    .zoom{
      align-items: center;
    }
    .zoom{
      justify-content: center;
    }
    .zoom{
      border-radius: 9999px;
    }
    .zoom{
      --tw-bg-opacity: 1;
      background-color: rgb(35 45 75 / var(--tw-bg-opacity, 1));
    }
    .zoom{
      --tw-text-opacity: 1;
      color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    }
  }
  p{
    margin-bottom: 20px;
  }
  ol{
    margin-bottom: 20px;
  }
  ol{
    list-style-type: decimal;
  }
  ol{
    padding-left: 40px;
  }
  ul{
    margin-bottom: 20px;
  }
  ul{
    list-style-type: disc;
  }
  ul{
    padding-left: 40px;
  }
}

._c3-dropdown{
  position: relative;
  & > ul{
    position: absolute;
  }
  & > ul{
    z-index: 100;
  }
  & > ul{
    display: none;
  }
  & > ul{
    white-space: nowrap;
  }
  & > ul{
    border-radius: 0.25rem;
  }
  & > ul{
    border-width: 1px;
  }
  & > ul{
    --tw-border-opacity: 1;
    border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  }
  & > ul{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
  & > ul{
    padding: 5px;
  }
  & > ul{
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    border-width: 1px !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    --tw-border-opacity: 1 !important;
    border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    --tw-text-opacity: 1 !important;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    border-width: 1px !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    --tw-border-opacity: 1 !important;
    border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  }
  ._c3-button& > ul, button:not(.ck-button)& > ul{
    --tw-text-opacity: 1 !important;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
  }
  & > ul {
    & > li {
      a{
        display: block;
      }
      a{
        padding-left: 1rem;
        padding-right: 1rem;
      }
      a{
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
      }
      a {
        &:hover{
          --tw-bg-opacity: 1;
          background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
        }
      }
    }
  }
}

._c3-badge{
  margin-left: 5px;
  display: flex;
  height: 18px;
  width: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(210 50 45 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

body{
  font-size: 15px;
  line-height: 1.42857143;
}

.ck-editor__editable {
  min-height: 200px !important;
}

[disabled="disabled"]{
  opacity: 0.5;
}

.font-shadows{
  --tw-text-opacity: 1;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1));
}

.form-item, .form-actions{
  margin: 0px;
}

h2{
  font-family: "Shadows Into Light", cursive;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  --tw-text-opacity: 1;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1));
}

hr{
  margin-top: 22px;
  margin-bottom: 22px;
  height: 1px;
  border-width: 0px;
  background-image: linear-gradient(to right, transparent, #dbdbdb, transparent);
}

html {
}

img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

input[type=text], input[type=number], input[type=email], input[type=password], select, textarea{
  width: 100%;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  padding: 0.5rem;
}

.modal{
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
  .modal-dialog{
    display: flex;
  }
  .modal-dialog{
    height: 100%;
  }
  .modal-dialog{
    width: 100%;
  }
  .modal-dialog{
    align-items: center;
  }
  .modal-dialog{
    justify-content: center;
  }
  .modal-dialog {
    .modal-content{
      margin-left: 15px;
      margin-right: 15px;
    }
    .modal-content{
      height: 90%;
    }
    .modal-content{
      width: 100%;
    }
    .modal-content{
      overflow-y: scroll;
    }
    @media (min-width: 1024px){
      .modal-content{
        width: 75%;
      }
    }
    .modal-content {
      /*@apply flex items-center h-[90%] overflow-y-scroll w-full;*/
    }
  }
}

.modal-backdrop{
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.8);
}

.modal-footer{
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  padding: 1rem;
  text-align: right;
}

.modal-header{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  padding: 1rem;
  h4.modal-title{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.modal-body{
  padding: 1rem;
}

.nivo-caption{
  padding: 15px;
  text-align: center;
  font-size: 21px;
  line-height: 1;
  big{
    font-size: 42px;
  }
}

p{
  margin-bottom: 20px;
}

.panel-group{
  margin-bottom: 20px;
  .panel{
    border-radius: 4px;
  }
  .panel{
    border-width: 1px;
  }
  .panel{
    --tw-border-opacity: 1;
    border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
  }
  .panel {
    & + .panel{
      margin-top: 5px;
    }
    .panel-collapse{
      display: flex;
    }
    .panel-collapse {
      &.collapse{
        display: none !important;
      }
      .panel-body {
        display: grid;
        grid-template-rows: 0fr;
        transition: 300ms grid-template-rows ease
      }
      .panel-body{
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        border-width: 1px !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        --tw-border-opacity: 1 !important;
        border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        --tw-bg-opacity: 1 !important;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        --tw-text-opacity: 1 !important;
        color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        border-width: 1px !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        --tw-border-opacity: 1 !important;
        border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        --tw-bg-opacity: 1 !important;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
      }
      ._c3-button.panel-body, button:not(.ck-button).panel-body{
        --tw-text-opacity: 1 !important;
        color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
      }
      .panel-body {
        & > div {
          /*@apply p-[15px];*/
        }
      }
    }
    .panel-heading {
      .panel-title{
        margin: 0px;
      }
      .panel-title {
        a[data-toggle="collapse"]{
          display: block;
        }
        a[data-toggle="collapse"]{
          display: flex;
        }
        a[data-toggle="collapse"]{
          align-items: center;
        }
        a[data-toggle="collapse"]{
          justify-content: space-between;
        }
        a[data-toggle="collapse"]{
          border-bottom-width: 1px;
        }
        a[data-toggle="collapse"]{
          --tw-border-opacity: 1;
          border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
        }
        a[data-toggle="collapse"]{
          --tw-bg-opacity: 1;
          background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
        }
        a[data-toggle="collapse"]{
          padding-left: 15px;
          padding-right: 15px;
        }
        a[data-toggle="collapse"]{
          padding-top: 10px;
          padding-bottom: 10px;
        }
        a[data-toggle="collapse"]{
          --tw-text-opacity: 1;
          color: rgb(35 45 75 / var(--tw-text-opacity, 1));
        }
        a[data-toggle="collapse"]{
          text-decoration-line: none;
        }
      }
    }
  }
}

.parent-hover:hover {
  .child-hover-bg-blue{
    --tw-bg-opacity: 1;
    background-color: rgb(35 45 75 / var(--tw-bg-opacity, 1));
  }
  .child-hover-text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}

.region-navigation, .block-c3design.block-menu{
  height: 100%;
}

.shepherd-content{
  --tw-bg-opacity: 1;
  background-color: rgb(35 45 75 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  img{
    display: inline;
  }
  img{
    max-height: 20px;
  }
  .shepherd-cancel-icon{
    font-size: 20px;
  }
  .shepherd-button{
    --tw-bg-opacity: 1;
    background-color: rgb(229 114 0 / var(--tw-bg-opacity, 1));
  }
  .shepherd-text{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .shepherd-title{
    margin-bottom: 15px;
  }
  .shepherd-title{
    display: block;
  }
  .shepherd-title{
    font-size: 26px;
  }
  .shepherd-title{
    font-weight: 700;
  }
  .shepherd-title{
    line-height: 1;
  }
  .shepherd-title{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}

.shepherd-enabled.shepherd-element{
  border-style: none;
  background-color: transparent;
}

._c3-button.shepherd-enabled.shepherd-element, button:not(.ck-button).shepherd-enabled.shepherd-element{
  --tw-border-opacity: 1 !important;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1)) !important;
  background-color: transparent !important;
  --tw-text-opacity: 1 !important;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1)) !important;
  background: transparent;
}

table{
  width: 100%;
}

.uib-datepicker-popup{
  position: absolute;
  z-index: 20;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 5px;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

._c3-button.uib-datepicker-popup, button:not(.ck-button).uib-datepicker-popup{
  border-width: 1px !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1)) !important;
}

.ZebraDialog, .ZebraDialogBackdrop {
  z-index: 1100;
}

.container{
  width: 100%;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1200px){
  .container{
    max-width: 1200px;
  }
}

@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}

.visible{
  visibility: visible;
}

.invisible{
  visibility: hidden;
}

.collapse{
  visibility: collapse;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.-bottom-\[10px\]{
  bottom: -10px;
}

.-left-\[20px\]{
  left: -20px;
}

.-right-\[10px\]{
  right: -10px;
}

.-right-\[15px\]{
  right: -15px;
}

.-top-\[10px\]{
  top: -10px;
}

.-top-\[15px\]{
  top: -15px;
}

.bottom-0{
  bottom: 0px;
}

.bottom-\[100px\]{
  bottom: 100px;
}

.bottom-\[8px\]{
  bottom: 8px;
}

.left-0{
  left: 0px;
}

.left-\[15px\]{
  left: 15px;
}

.left-\[24px\]{
  left: 24px;
}

.right-0{
  right: 0px;
}

.right-\[-50px\]{
  right: -50px;
}

.right-\[10px\]{
  right: 10px;
}

.right-\[130px\]{
  right: 130px;
}

.right-\[15px\]{
  right: 15px;
}

.right-\[5px\]{
  right: 5px;
}

.right-\[8px\]{
  right: 8px;
}

.top-0{
  top: 0px;
}

.top-\[160px\]{
  top: 160px;
}

.top-\[25\%\]{
  top: 25%;
}

.top-\[5px\]{
  top: 5px;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-\[100\]{
  z-index: 100;
}

.z-\[20\]{
  z-index: 20;
}

.z-\[500\]{
  z-index: 500;
}

.z-\[90\]{
  z-index: 90;
}

.col-span-1{
  grid-column: span 1 / span 1;
}

.col-span-10{
  grid-column: span 10 / span 10;
}

.col-span-11{
  grid-column: span 11 / span 11;
}

.col-span-12{
  grid-column: span 12 / span 12;
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.col-span-3{
  grid-column: span 3 / span 3;
}

.col-span-4{
  grid-column: span 4 / span 4;
}

.col-span-5{
  grid-column: span 5 / span 5;
}

.col-span-6{
  grid-column: span 6 / span 6;
}

.col-span-7{
  grid-column: span 7 / span 7;
}

.col-span-8{
  grid-column: span 8 / span 8;
}

.col-span-9{
  grid-column: span 9 / span 9;
}

.col-start-2{
  grid-column-start: 2;
}

.m-0{
  margin: 0px;
}

.mx-\[10px\]{
  margin-left: 10px;
  margin-right: 10px;
}

.mx-\[15px\]{
  margin-left: 15px;
  margin-right: 15px;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-\[22px\]{
  margin-top: 22px;
  margin-bottom: 22px;
}

.my-\[30px\]{
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-\[5px\]{
  margin-top: 5px;
  margin-bottom: 5px;
}

.-mb-1{
  margin-bottom: -0.25rem;
}

.mb-0{
  margin-bottom: 0px;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-\[10px\]{
  margin-bottom: 10px;
}

.mb-\[15px\]{
  margin-bottom: 15px;
}

.mb-\[20px\]{
  margin-bottom: 20px;
}

.mb-\[30px\]{
  margin-bottom: 30px;
}

.mb-\[33px\]{
  margin-bottom: 33px;
}

.mb-\[5px\]{
  margin-bottom: 5px;
}

.mb-\[75px\]{
  margin-bottom: 75px;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-\[15px\]{
  margin-left: 15px;
}

.ml-\[5px\]{
  margin-left: 5px;
}

.mr-1{
  margin-right: 0.25rem;
}

.mr-\[-25\%\]{
  margin-right: -25%;
}

.mt-\[5px\]{
  margin-top: 5px;
}

.\!block{
  display: block !important;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.contents{
  display: contents;
}

.\!hidden{
  display: none !important;
}

.hidden{
  display: none;
}

.aspect-square{
  aspect-ratio: 1 / 1;
}

.h-16{
  height: 4rem;
}

.h-2{
  height: 0.5rem;
}

.h-24{
  height: 6rem;
}

.h-32{
  height: 8rem;
}

.h-\[100px\]{
  height: 100px;
}

.h-\[10px\]{
  height: 10px;
}

.h-\[120px\]{
  height: 120px;
}

.h-\[160px\]{
  height: 160px;
}

.h-\[18px\]{
  height: 18px;
}

.h-\[1px\]{
  height: 1px;
}

.h-\[200px\]{
  height: 200px;
}

.h-\[20px\]{
  height: 20px;
}

.h-\[22px\]{
  height: 22px;
}

.h-\[24px\]{
  height: 24px;
}

.h-\[25px\]{
  height: 25px;
}

.h-\[30px\]{
  height: 30px;
}

.h-\[32px\]{
  height: 32px;
}

.h-\[35px\]{
  height: 35px;
}

.h-\[44px\]{
  height: 44px;
}

.h-\[50px\]{
  height: 50px;
}

.h-\[55px\]{
  height: 55px;
}

.h-\[60px\]{
  height: 60px;
}

.h-\[90\%\]{
  height: 90%;
}

.h-\[96px\]{
  height: 96px;
}

.h-\[calc\(100vh-300px\)\]{
  height: calc(100vh - 300px);
}

.h-full{
  height: 100%;
}

.max-h-\[200px\]{
  max-height: 200px;
}

.max-h-\[20px\]{
  max-height: 20px;
}

.min-h-\[400px\]{
  min-height: 400px;
}

.w-0{
  width: 0px;
}

.w-1\/2{
  width: 50%;
}

.w-2\/5{
  width: 40%;
}

.w-3\/5{
  width: 60%;
}

.w-\[10\%\]{
  width: 10%;
}

.w-\[100\%\]{
  width: 100%;
}

.w-\[100px\]{
  width: 100px;
}

.w-\[10px\]{
  width: 10px;
}

.w-\[12px\]{
  width: 12px;
}

.w-\[15\%\]{
  width: 15%;
}

.w-\[15px\]{
  width: 15px;
}

.w-\[160px\]{
  width: 160px;
}

.w-\[17\.5px\]{
  width: 17.5px;
}

.w-\[18px\]{
  width: 18px;
}

.w-\[20\%\]{
  width: 20%;
}

.w-\[20px\]{
  width: 20px;
}

.w-\[22px\]{
  width: 22px;
}

.w-\[24px\]{
  width: 24px;
}

.w-\[25\%\]{
  width: 25%;
}

.w-\[250px\]{
  width: 250px;
}

.w-\[25px\]{
  width: 25px;
}

.w-\[2px\]{
  width: 2px;
}

.w-\[30\%\]{
  width: 30%;
}

.w-\[30px\]{
  width: 30px;
}

.w-\[32px\]{
  width: 32px;
}

.w-\[40\%\]{
  width: 40%;
}

.w-\[47px\]{
  width: 47px;
}

.w-\[54px\]{
  width: 54px;
}

.w-\[60\%\]{
  width: 60%;
}

.w-\[60px\]{
  width: 60px;
}

.w-\[70px\]{
  width: 70px;
}

.w-\[80\%\]{
  width: 80%;
}

.w-\[80px\]{
  width: 80px;
}

.w-\[8px\]{
  width: 8px;
}

.w-\[90\%\]{
  width: 90%;
}

.w-full{
  width: 100%;
}

.min-w-\[6px\]{
  min-width: 6px;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-none{
  flex: none;
}

.table-fixed{
  table-layout: fixed;
}

.border-collapse{
  border-collapse: collapse;
}

.border-spacing-0{
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.cursor-pointer{
  cursor: pointer;
}

.list-decimal{
  list-style-type: decimal;
}

.list-disc{
  list-style-type: disc;
}

.list-none{
  list-style-type: none;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flex-row{
  flex-direction: row;
}

.flex-col{
  flex-direction: column;
}

.items-start{
  align-items: flex-start;
}

.items-end{
  align-items: flex-end;
}

.items-center{
  align-items: center;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.gap-1{
  gap: 0.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-\[10px\]{
  gap: 10px;
}

.gap-\[15px\]{
  gap: 15px;
}

.gap-\[20px\]{
  gap: 20px;
}

.gap-\[30px\]{
  gap: 30px;
}

.gap-\[40px\]{
  gap: 40px;
}

.gap-\[5px\]{
  gap: 5px;
}

.gap-\[8px\]{
  gap: 8px;
}

.gap-x-\[10px\]{
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.gap-x-\[30px\]{
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.overflow-x-scroll{
  overflow-x: scroll;
}

.overflow-y-scroll{
  overflow-y: scroll;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap{
  white-space: nowrap;
}

.break-words{
  overflow-wrap: break-word;
}

.\!rounded-full{
  border-radius: 9999px !important;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-\[10px\]{
  border-radius: 10px;
}

.rounded-\[20px\]{
  border-radius: 20px;
}

.rounded-\[4px\]{
  border-radius: 4px;
}

.rounded-\[5px\]{
  border-radius: 5px;
}

.rounded-\[6px\]{
  border-radius: 6px;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-b-lg{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-b-none{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-tl-none{
  border-top-left-radius: 0px;
}

.\!border{
  border-width: 1px !important;
}

.border{
  border-width: 1px;
}

.border-0{
  border-width: 0px;
}

.border-2{
  border-width: 2px;
}

.border-4{
  border-width: 4px;
}

.border-\[3px\]{
  border-width: 3px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-b-4{
  border-bottom-width: 4px;
}

.border-b-\[3px\]{
  border-bottom-width: 3px;
}

.border-l-\[5px\]{
  border-left-width: 5px;
}

.border-r{
  border-right-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-t-4{
  border-top-width: 4px;
}

.border-t-8{
  border-top-width: 8px;
}

.border-solid{
  border-style: solid;
}

.border-dashed{
  border-style: dashed;
}

.border-none{
  border-style: none;
}

.\!border-darkgray{
  --tw-border-opacity: 1 !important;
  border-color: rgb(153 153 153 / var(--tw-border-opacity, 1)) !important;
}

.\!border-gray{
  --tw-border-opacity: 1 !important;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1)) !important;
}

.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-blue{
  --tw-border-opacity: 1;
  border-color: rgb(35 45 75 / var(--tw-border-opacity, 1));
}

.border-blue-2{
  --tw-border-opacity: 1;
  border-color: rgb(146 205 220 / var(--tw-border-opacity, 1));
}

.border-darkgray{
  --tw-border-opacity: 1;
  border-color: rgb(153 153 153 / var(--tw-border-opacity, 1));
}

.border-gray{
  --tw-border-opacity: 1;
  border-color: rgb(218 218 218 / var(--tw-border-opacity, 1));
}

.border-lightgray{
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity, 1));
}

.border-orange{
  --tw-border-opacity: 1;
  border-color: rgb(229 114 0 / var(--tw-border-opacity, 1));
}

.border-red{
  --tw-border-opacity: 1;
  border-color: rgb(210 50 45 / var(--tw-border-opacity, 1));
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-b-darkgray{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(153 153 153 / var(--tw-border-opacity, 1));
}

.border-b-orange{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(229 114 0 / var(--tw-border-opacity, 1));
}

.border-t-blue{
  --tw-border-opacity: 1;
  border-top-color: rgb(35 45 75 / var(--tw-border-opacity, 1));
}

.border-t-orange{
  --tw-border-opacity: 1;
  border-top-color: rgb(229 114 0 / var(--tw-border-opacity, 1));
}

.\!bg-red{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(210 50 45 / var(--tw-bg-opacity, 1)) !important;
}

.\!bg-transparent{
  background-color: transparent !important;
}

.\!bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}

.\!bg-yellow{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(237 156 40 / var(--tw-bg-opacity, 1)) !important;
}

.bg-\[\#232d4b\]{
  --tw-bg-opacity: 1;
  background-color: rgb(35 45 75 / var(--tw-bg-opacity, 1));
}

.bg-\[\#bbb4ae\]{
  --tw-bg-opacity: 1;
  background-color: rgb(187 180 174 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e4e2e0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(228 226 224 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f6f6f6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fafafa\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(35 45 75 / var(--tw-bg-opacity, 1));
}

.bg-darkergray{
  --tw-bg-opacity: 1;
  background-color: rgb(102 102 102 / var(--tw-bg-opacity, 1));
}

.bg-darkgray{
  --tw-bg-opacity: 1;
  background-color: rgb(153 153 153 / var(--tw-bg-opacity, 1));
}

.bg-darkwhite{
  --tw-bg-opacity: 1;
  background-color: rgb(251 251 251 / var(--tw-bg-opacity, 1));
}

.bg-gray{
  --tw-bg-opacity: 1;
  background-color: rgb(218 218 218 / var(--tw-bg-opacity, 1));
}

.bg-green{
  --tw-bg-opacity: 1;
  background-color: rgb(71 164 71 / var(--tw-bg-opacity, 1));
}

.bg-group-courses-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(215 228 255 / var(--tw-bg-opacity, 1));
}

.bg-group-courses-gray{
  --tw-bg-opacity: 1;
  background-color: rgb(238 238 238 / var(--tw-bg-opacity, 1));
}

.bg-group-courses-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-group-courses-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 205 / var(--tw-bg-opacity, 1));
}

.bg-lightblue{
  --tw-bg-opacity: 1;
  background-color: rgb(233 246 253 / var(--tw-bg-opacity, 1));
}

.bg-lightblue-2{
  --tw-bg-opacity: 1;
  background-color: rgb(233 246 253 / var(--tw-bg-opacity, 1));
}

.bg-lightblue-3{
  --tw-bg-opacity: 1;
  background-color: rgb(91 192 222 / var(--tw-bg-opacity, 1));
}

.bg-lightgray{
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}

.bg-orange{
  --tw-bg-opacity: 1;
  background-color: rgb(229 114 0 / var(--tw-bg-opacity, 1));
}

.bg-red{
  --tw-bg-opacity: 1;
  background-color: rgb(210 50 45 / var(--tw-bg-opacity, 1));
}

.bg-syllabus-green{
  --tw-bg-opacity: 1;
  background-color: rgb(228 255 228 / var(--tw-bg-opacity, 1));
}

.bg-transparent{
  background-color: transparent;
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(237 156 40 / var(--tw-bg-opacity, 1));
}

.bg-\[\#5a83de\]{
  --tw-bg-opacity: 1;
  background-color: rgb(90 131 222 / var(--tw-bg-opacity, 1));
}

.bg-\[\#64b842\]{
  --tw-bg-opacity: 1;
  background-color: rgb(100 184 66 / var(--tw-bg-opacity, 1));
}

.bg-\[\#9f5199\]{
  --tw-bg-opacity: 1;
  background-color: rgb(159 81 153 / var(--tw-bg-opacity, 1));
}

.bg-\[\#d2343f\]{
  --tw-bg-opacity: 1;
  background-color: rgb(210 52 63 / var(--tw-bg-opacity, 1));
}

.bg-\[\#eaea38\]{
  --tw-bg-opacity: 1;
  background-color: rgb(234 234 56 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f38b2f\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 139 47 / var(--tw-bg-opacity, 1));
}

.p-0{
  padding: 0px;
}

.p-1{
  padding: 0.25rem;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-\[10px\]{
  padding: 10px;
}

.p-\[15px\]{
  padding: 15px;
}

.p-\[2\%\]{
  padding: 2%;
}

.p-\[2\.5px\]{
  padding: 2.5px;
}

.p-\[20px\]{
  padding: 20px;
}

.p-\[30px\]{
  padding: 30px;
}

.p-\[4px\]{
  padding: 4px;
}

.p-\[5px\]{
  padding: 5px;
}

.p-\[8px\]{
  padding: 8px;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}

.px-\[12px\]{
  padding-left: 12px;
  padding-right: 12px;
}

.px-\[15px\]{
  padding-left: 15px;
  padding-right: 15px;
}

.px-\[16px\]{
  padding-left: 16px;
  padding-right: 16px;
}

.px-\[20px\]{
  padding-left: 20px;
  padding-right: 20px;
}

.px-\[40px\]{
  padding-left: 40px;
  padding-right: 40px;
}

.px-\[5px\]{
  padding-left: 5px;
  padding-right: 5px;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[1px\]{
  padding-top: 1px;
  padding-bottom: 1px;
}

.py-\[5px\]{
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-\[12px\]{
  padding-bottom: 12px;
}

.pl-\[40px\]{
  padding-left: 40px;
}

.pl-\[7px\]{
  padding-left: 7px;
}

.pr-4{
  padding-right: 1rem;
}

.pt-1{
  padding-top: 0.25rem;
}

.pt-5{
  padding-top: 1.25rem;
}

.pl-\[10px\]{
  padding-left: 10px;
}

.pt-\[5px\]{
  padding-top: 5px;
}

.pt-\[10px\]{
  padding-top: 10px;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.font-sans{
  font-family: Arial, sans-serif;
}

.font-shadows{
  font-family: "Shadows Into Light", cursive;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[12\.75px\]{
  font-size: 12.75px;
}

.text-\[12px\]{
  font-size: 12px;
}

.text-\[13\.5px\]{
  font-size: 13.5px;
}

.text-\[13px\]{
  font-size: 13px;
}

.text-\[14px\]{
  font-size: 14px;
}

.text-\[15px\]{
  font-size: 15px;
}

.text-\[18px\]{
  font-size: 18px;
}

.text-\[20px\]{
  font-size: 20px;
}

.text-\[21px\]{
  font-size: 21px;
}

.text-\[24px\]{
  font-size: 24px;
}

.text-\[25px\]{
  font-size: 25px;
}

.text-\[26px\]{
  font-size: 26px;
}

.text-\[27px\]{
  font-size: 27px;
}

.text-\[30px\]{
  font-size: 30px;
}

.text-\[32px\]{
  font-size: 32px;
}

.text-\[34px\]{
  font-size: 34px;
}

.text-\[36px\]{
  font-size: 36px;
}

.text-\[42px\]{
  font-size: 42px;
}

.text-\[50px\]{
  font-size: 50px;
}

.text-\[60px\]{
  font-size: 60px;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-\[20px\]{
  font-weight: 20px;
}

.font-\[400\]{
  font-weight: 400;
}

.font-bold{
  font-weight: 700;
}

.font-medium{
  font-weight: 500;
}

.uppercase{
  text-transform: uppercase;
}

.italic{
  font-style: italic;
}

.leading-\[1\.42857143\]{
  line-height: 1.42857143;
}

.leading-\[16px\]{
  line-height: 16px;
}

.leading-\[24px\]{
  line-height: 24px;
}

.leading-none{
  line-height: 1;
}

.\!text-blue{
  --tw-text-opacity: 1 !important;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1)) !important;
}

.text-\[\#232d4b\]{
  --tw-text-opacity: 1;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1));
}

.text-\[\#31b0d5\]{
  --tw-text-opacity: 1;
  color: rgb(49 176 213 / var(--tw-text-opacity, 1));
}

.text-\[\#47a447\]{
  --tw-text-opacity: 1;
  color: rgb(71 164 71 / var(--tw-text-opacity, 1));
}

.text-\[\#999999\]{
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.text-\[\#e57200\]{
  --tw-text-opacity: 1;
  color: rgb(229 114 0 / var(--tw-text-opacity, 1));
}

.text-blue{
  --tw-text-opacity: 1;
  color: rgb(35 45 75 / var(--tw-text-opacity, 1));
}

.text-darkergray{
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}

.text-darkgray{
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.text-integration-map-blue{
  --tw-text-opacity: 1;
  color: rgb(43 101 101 / var(--tw-text-opacity, 1));
}

.text-orange{
  --tw-text-opacity: 1;
  color: rgb(229 114 0 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-yellow{
  --tw-text-opacity: 1;
  color: rgb(237 156 40 / var(--tw-text-opacity, 1));
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.underline{
  text-decoration-line: underline;
}

.\!no-underline{
  text-decoration-line: none !important;
}

.no-underline{
  text-decoration-line: none;
}

.opacity-50{
  opacity: 0.5;
}

.opacity-70{
  opacity: 0.7;
}

.opacity-80{
  opacity: 0.8;
}

.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0px_0px_5px_\#f00\]{
  --tw-shadow: 0px 0px 5px #f00;
  --tw-shadow-colored: 0px 0px 5px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200{
  transition-duration: 200ms;
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:bg-lightgray:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity, 1));
}

@media (min-width: 1024px){
  .lg\:absolute{
    position: absolute;
  }

  .lg\:left-auto{
    left: auto;
  }

  .lg\:right-auto{
    right: auto;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .lg\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .lg\:mb-0{
    margin-bottom: 0px;
  }

  .lg\:mb-1{
    margin-bottom: 0.25rem;
  }

  .lg\:mb-\[20px\]{
    margin-bottom: 20px;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:grid{
    display: grid;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:h-20{
    height: 5rem;
  }

  .lg\:h-\[74px\]{
    height: 74px;
  }

  .lg\:w-1\/4{
    width: 25%;
  }

  .lg\:w-3\/4{
    width: 75%;
  }

  .lg\:w-\[15\%\]{
    width: 15%;
  }

  .lg\:w-\[200px\]{
    width: 200px;
  }

  .lg\:w-\[210px\]{
    width: 210px;
  }

  .lg\:w-\[250px\]{
    width: 250px;
  }

  .lg\:w-\[40\%\]{
    width: 40%;
  }

  .lg\:w-\[45\%\]{
    width: 45%;
  }

  .lg\:w-\[540px\]{
    width: 540px;
  }

  .lg\:w-\[560px\]{
    width: 560px;
  }

  .lg\:w-\[75\%\]{
    width: 75%;
  }

  .lg\:flex-1{
    flex: 1 1 0%;
  }

  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:justify-end{
    justify-content: flex-end;
  }

  .lg\:gap-\[30px\]{
    gap: 30px;
  }

  .lg\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:text-\[10px\]{
    font-size: 10px;
  }

  .lg\:text-\[18px\]{
    font-size: 18px;
  }

  .lg\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

