/* CSS classes flow
 * .main_cal (.nugget_cal|(.detail_cal (.year_cal|.month_cal|.week_cal|.day_cal)))
 *  .nav_cal
 *  .days_cal
 *  .weeks_cal
 *   (|.othermonth_cal|.hasevent_cal|.selected_cal|.today_cal)
 *  .weeks_cal
 *  .weeks_cal
 *  .weeks_cal
 */

/* Generic Calendar Settings */
.main_cal {
  font-size: 11px;
  color: #000000;
  font-family: Arial, Verdana, Geneva, Arial, Helvetica, sans-serif;
  margin: 5px;
}

/* All calendar links should be displayed as regular text */
.nugget_cal a {
  text-decoration: none;
}
.nugget_cal a:hover {
  text-decoration: underline;
}

/* All the calendar cells should be valigned at top */
.main_cal td {
  vertical-align: middle;
}

/* The calendar navigation */
.nav_cal {
  background-color: #DDDDDD;

}
.nav_cal h2{
    display: inline-block;
    font-size: 22px;
}
/* Extend the next/previous links to 100% so one can click arround */
.nav_cal .np_cal a {
  width: 100%;
  display: block;
  padding:5px;
}

/* The week days style */
.days_cal th {
  border-bottom: 1px solid #DDDDDD;
  font-weight: normal;
   padding:5px;
}

/* How the days from the other months should be styled when viewing the curent month */
.othermonth_cal, .othermonth_cal a {
  color: #999999;
}

/* How the selected day/week should be styled */
.selected_cal {
  text-decoration: underline;
  font-weight: bold;
}
/* Today */
.main_cal .today_cal {
  border: 1px solid #5555AA;
}
/*
*
*
* Start Nugget-Specific styles
*
*
*/
/*the week number */
.nugget_cal .wkno_cal {
  border-right: 1px solid #DDDDDD;
}

/* Change the font to Courier for a better looking for the cells */
.nugget_cal .weeks_cal {
}

/* all cells should have padding and should be aligned to the right */
.nugget_cal .days_cal th, .nugget_cal .weeks_cal td {
  padding: 2px 4px;
  text-align: right;
}

/* if we have a event, bold the day number */
.hasevent_cal {
  background-color:#E0E0E0;
}

/* The weekend days should be colored in red */
.nugget_cal .weekend_cal, .nugget_cal .weekend_cal a {
  color:#6666CC;
}

/*
*
*
* Start Detail-Specific styles
*
*
*/
.detail_cal {
  width: 100%;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right-width: 0;
  border-bottom-width: 0;
  background-color: #FFFFFF;
  margin: 0;
}

/* Set the borders to create a grid */
.detail_cal td, .detail_cal th {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* Set the detail cells paddings */
.detail_cal .days_cal th, .detail_cal .weeks_cal td {
  padding: 3px;
}

/*
*
*
* Start Year View-specific styles
*
*
*/
.year_cal {
  border: 1px solid #bdb2bf;
  margin: 5px;
}
.year_cal .nav_cal {
  border: 1px solid #bdb2bf;
  font-size: 11px;
  color: #000000;
  font-family: Arial, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/*
*
*
* Start Month And Week View-Specific styles
*
*
*/
/* The add / day link should have a bottom spacing */
.main_cal .mw_top_cal {
  margin-bottom: 5px;
}

/* The day link should be on the right */
.main_cal .mw_top_cal div {
  float: right;
  font-weight: bold;
}

/* The "See more..." link */
.detail_cal .weeks_cal .seemore_cal {
  padding-top: 10px;
  text-align: right;
}

/* The hours, displayed on the left side */
.detail_cal .event_cal {
  margin-top: 4px;
}
.detail_cal .event_cal div {
  margin-left: 10px;
}
.detail_cal .event_cal .htitle_cal {
  font-size: 10px;
  margin-left: 0px;
  width: auto;
  text-align: left;
  font-weight: normal;
}


/*
*
*
* Start Month View-Specific styles
*
*
*/
/* Set the width and the height of the cells */
.month_cal .weeks_cal td {
  height: 110px;
  width: 14%;
   vertical-align: top;
}

/*
*
*
* Start Week View-Specific styles
*
*
*/
/* Set the width and the height of the cells */
.week_cal .weeks_cal td {
  height: 120px;
  width: 33%;
}

/*
*
*
* Start Day View-Specific styles
*
*
*/
/* The padding for the cells */
.day_cal .hour_cal td {
  padding: 2px;
}

/* The hours, displayed on the left side */
.day_cal .htitle_cal {
  width: 60px;
  text-align: right;
  font-weight: bold;
}

/* The day events */
.day_cal .event_cal {
  background-color: #FFFFEA;
}

/*
*
*
* Year/Month/Week/Day/Today switcher styles
*
*
*/
.view_switch_cal {
  font-family: lato;
  margin: 5px;
  font-size: 13px;
}
/* used for month view*/
.cal_events{
  border-bottom:1px solid #E1E1E1;
  margin-top:4px;
  text-align:left;
  font-size:11px;
  cursor: pointer;
  border-radius: 4px;
  webkit-border-radius: 4px;
  padding: 4px 6px;
}
.cal_events_course{
  border-bottom:1px solid #E1E1E1;
  margin-top:4px;
  text-align:left;
  font-size:11px;
  cursor: pointer;
  border-radius: 4px;
  webkit-border-radius: 4px;
  padding: 4px 6px;
  color:#1c94c4;
}

.ui-tabs .ui-tabs-nav{
  border: 0;
}
.ui-datepicker th{
      background-color: #DDDDDD;
}
.ui-state-default, .ui-widget-content .ui-state-default{
      border: 1px solid #ddd;
}
.cal_link{
 text-decoration:none;
}
.cal_clear{
 clear:both;
}
.cal_row_color{
 background-color:#F3F8FB;
 padding:5px 5px 0 5px;
 border-left:1px solid #E1E1E1;
 border-right:1px solid #E1E1E1;
 border-bottom:1px solid #E1E1E1;
}
.cal_row_color2{
 padding:5px 5px 0 5px;
 border-left:1px solid #E1E1E1;
 border-right:1px solid #E1E1E1;
 border-bottom:1px solid #E1E1E1;
}
.float_right{
 float:right;
}
.cal_seperator{
  border-bottom:1px solid #E1E1E1;
  margin:5px 0 0 0;
}
.more_events{
	color:#3871E5;
	margin-top:3px;
	cursor:pointer;
}
.cal_events_heading{
  border-radius: 5px;
  display: inline-block;
  /*background-color: #42A5F5;
  padding: 4px 6px 4px;*/
}
.cal_events_heading_left{
    display: inline-block;
}
.cal_events_heading_left a{
 color:var(--header-content-icon);
 text-decoration:none;
 cursor:pointer;
 position: relative;
}
.cal_events_heading_left a::after{
  /* content: "\f196";
  font: normal normal normal 18px/1 FontAwesome; */
  position: absolute;
  top: -3px;
  left: 3px;
  font-family:"Font Awesome 5 Pro";
  content: '\f0fe';
  font-size: 16px; 
  font-weight: 300;
}
.cal_events_heading_right{
  text-align: right;
  margin-right: 5px;
  display: inline-block;
  float: right;
      color: #666666;
}
.cal_active{
 background-color:#FCF8E3;
}
.cal_previous{
 border-radius:5px;
}
.cal_previous a{
 color:#9999A4;
 text-decoration:none;
 cursor:pointer;
}
.cal_event_color{
/* margin-top:2px; */
 margin-right:5px;
 border-radius:3px;
 float:left;
 width:18px;
 height:20px;
 text-align:center;
/* background-color:#D06B64; */
}
.cal_event_radio{
 float:left;
 /* margin:3px; */
 margin: 3px 2px !important;
}
/* used for week view*/

/* The week days style */
.days_cal th {
  background: #f9f9f9;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 0 !important ;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  color:
  rgba(0,0,0,.65);
  font-weight: 600;
}
.cal_week{
 padding:2px;
 padding-left: 6px;
 height:75px;
}
.weekdays_cal .cal_week {
  text-align: left;
  vertical-align: middle;
  padding-left: 6px;
}
tr.days_cal th:first-child {
  width: 10px !important;
}
.cal_pointer{
	text-decoration:none;
	cursor:pointer;
}
.cal_pointer i {
  color: var(--header-content-icon);
  font-size: 16px;
  font-weight: 300;
  margin-right: 4px;
}
.cal-nav a{
  display: inline-block;
  background-color: #EAEAEA;
  padding: 8px 15px;
}
.cal-nav a:hover{
  background-color: #003E7E;
  color: #fff;
}

.cal-top-head{
  overflow: hidden;
}
.week-days th{
  background: #f9f9f9;
font-size: 14px;
line-height: 20px;
padding: 10px 0;
text-transform: uppercase;
text-align: center;
font-size: 13px;
    color: rgba(0,0,0,.65);
font-weight: 600;
}
.cal-head{
  padding: 10px 0;
}
.cal-head h2{
  display: inline-block;
  font-size: 24px;
  margin: 0;
}
.button-group li a{
  color: #fff;
}
/* #tabs-1{
    padding: 1em 0 0;
} */