﻿/*!
 * FullCalendar v2.4.0 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2015 Adam Shaw
 */


.fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc { /* extra precedence to overcome jqui */
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}

body {
    /*overflow: hidden;*/
}


/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-popover {
    border-color: #E4E4E4;
}

.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: #fff;
        }

.fc-unthemed .fc-today {
    background: #ECEDEF;
    border-top: 2px solid #1B69A2;
}

.fc-highlight { /* when user is selecting cells */
    background: #4D4D4D;
    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;
    width: 1em;
    height: 1em;
    line-height: 1em;
    font-size: 1em;
    text-align: center;
    overflow: hidden;
    /* don't allow browser text-selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-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;
        margin: 0 -1em; /* ensures character will be centered, regardless of width */
    }

.fc-icon-left-single-arrow:after {
    content: "\02039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
    left: 3%;
}

.fc-icon-right-single-arrow:after {
    content: "\0203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
    left: -3%;
}

.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%;
    left: -2%;
}

.fc-icon-right-triangle:after {
    content: "\25BA";
    font-size: 125%;
    top: 3%;
    left: 2%;
}

.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 */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    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: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    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;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    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;
    box-shadow: 0px 0px 18px rgb(0, 0, 0);
}

    .fc-unthemed .fc-popover .fc-header .fc-close {
     margin-top: 5px;
    background: #848484;
    font-size: 10px;
    padding: 4px 4px;
    line-height: 7px;
    transition:all 1s ease;
    }
    .fc-unthemed .fc-popover .fc-header .fc-close:hover {
        background: #3c3c3c;
        transition:all 1s ease;
    }
/* 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%;
    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 { /* this class goes on elements for guaranteed vertical scrollbars */
    overflow-y: scroll;
    overflow-x: hidden;
}

    .fc-scroller > * { /* we expect an immediate inner element */
        position: relative; /* re-scope all positions */
        width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
        overflow: hidden; /* don't let negative margins or absolute positioning create further scroll */
    }


/* 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;
    background-color: #c63b47; /* default BACKGROUND color */
    font-weight: normal; /* undo jqui's ui-widget-header bold */
    padding: 3px;
}

    /* 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 */
    border-right: 1px solid #000;
}

.fc-event .fc-content {
    position: relative;
    z-index: 2;
}

.fc-event .fc-resizer {
    position: absolute;
    z-index: 3;
}


/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* 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 */

.fc-h-event .fc-resizer { /* positioned it to overcome the event's borders */
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    width: 5px;
}

/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-ltr .fc-h-event .fc-start-resizer:before,
.fc-ltr .fc-h-event .fc-start-resizer:after,
.fc-rtl .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-end-resizer:before,
.fc-rtl .fc-h-event .fc-end-resizer:after {
    right: auto; /* ignore the right and only use the left */
    cursor: w-resize;
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-ltr .fc-h-event .fc-end-resizer:before,
.fc-ltr .fc-h-event .fc-end-resizer:after,
.fc-rtl .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-start-resizer:before,
.fc-rtl .fc-h-event .fc-start-resizer:after {
    left: auto; /* ignore the left and only use the right */
    cursor: e-resize;
}


/* 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-bottom: 1px; /* spacing between events and edges */
    padding: 0 0px;
}


    .fc-day-grid-event .fc-content { /* force events to be one-line tall */
        white-space: nowrap;
        overflow: hidden;
        box-shadow: 0px 2px 0px rgba(204, 204, 204, 0.27);
    }

    .fc-day-grid-event .fc-time {
        font-weight: bold;
        padding-left: 4px;
        padding-right: 4px;
        padding-top: 6px;
    }

    .fc-day-grid-event .fc-resizer { /* enlarge the default hit area */
        left: -3px;
        right: -3px;
        width: 7px;
    }

.fc-icons {
    padding: 0px 2px;
}
    .fc-icons img {
        margin-top:4px;
    }
.fc-title {
    padding: 5px 2px;
}

/* 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:300px;
}

    .fc-more-popover .fc-event-container {
        padding: 10px;
    }

/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
    text-align: center;
}

.fixed-header {
    position: fixed;
    width: 95%;
    background: #FFFFFF;
    z-index: 99;
    text-align: center;
    top: 45px;
    height: 40px;
    padding-top: 10px;
    border-bottom: 1px solid #F3F3F3;
}

    .fixed-header .weekhd {
        margin: 0 auto;
        font-size: 16px;
        font-weight: 300;
        color: #535353;
    }

    .fixed-header h2 span {
        font-size: 15px;
        margin-left: 20px;
    }

    .fixed-header .fa-chevron-right {
        color: #16265f;
        margin-top: 5px;
        color: #b1b1b1;
        cursor: pointer;
    }

        .fixed-header .fa-chevron-right:hover {
            color: #000;
            transition: all 1s ease;
        }

    .fixed-header .fa-chevron-left {
        color: #16265f;
        margin-top: 5px;
        margin-right: 15px;
        color: #b1b1b1;
        cursor: pointer;
        font-weight: 100;
    }

        .fixed-header .fa-chevron-left:hover {
            color: #000;
            transition: all 1s ease;
        }

.fc-toolbar .fc-left {
    float: left;
}

.fc-toolbar .fc-right {
    float: right;
}

.fc-toolbar .fc-center {
    display: inline-block;
}

.fc-center {
    margin-top: 10px;
    width: 100%;
    margin-bottom: 10px;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
    float: left;
}

/* 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 auto;
    font-size: 16px;
    font-weight: 300;
    color: #535353;
    margin-top: 10px;
    width: 200px;
}

.fc-toolbar h3 {
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
    color: #535353;
    margin-top: 10px;
}

.fc-toolbar h2 span {
    font-size: 15px;
    margin-left: 20px;
}

/* 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 {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    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;
    padding-right: 5px;
    padding-top: 5px;
}

.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-bgevent-skeleton,
    .fc-time-grid .fc-content-skeleton {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .fc-time-grid .fc-bgevent-skeleton {
        z-index: 3;
    }

    .fc-time-grid .fc-highlight-skeleton {
        z-index: 4;
    }

    .fc-time-grid .fc-content-skeleton {
        z-index: 5;
    }

    .fc-time-grid .fc-helper-skeleton {
        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-time-grid .fc-event-container, /* a div within a cell within the fc-content-skeleton */
    .fc-time-grid .fc-bgevent-container { /* a div within a cell within the fc-bgevent-skeleton */
        position: relative;
    }

.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-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 */

    .fc-time-grid-event .fc-resizer {
        left: 0;
        right: 0;
        bottom: 0;
        height: 8px;
        overflow: hidden;
        line-height: 8px;
        font-size: 11px;
        text-align: center;
        cursor: s-resize;
    }

        .fc-time-grid-event .fc-resizer:after {
            content: "=";
        }

/*---------------------- Custom Calendar CSS----------------------*/

.fc-widget-header {
    background: #3C3C3C;
    padding: 8px 0;
    border-bottom: 1px solid #DADADA !important;
    border-left: 0px !important;
    border-right: 0px !important;
}

.fc-center .fa-chevron-right {
    color: #16265f;
    /*background: #e6e6e6;*/
    margin-top: 10px;
    /*padding: 3px 5px;*/
    /*margin-right: 15px;*/
    /*border: 1px solid #e4e4e4;*/
    color: #b1b1b1;
    cursor: pointer;
}

    .fc-center .fa-chevron-right:hover {
        color: #000;
        transition: all 1s ease;
    }

.fc-center .fa-chevron-left {
    color: #16265f;
    /*background: #e6e6e6;*/
    margin-top: 10px;
    /*padding: 3px 5px;*/
    margin-right: 15px;
    /*border: 1px solid #e4e4e4;*/
    color: #b1b1b1;
    cursor: pointer;
}

    .fc-center .fa-chevron-left:hover {
        color: #000;
        transition: all 1s ease;
    }

.fc-center .fa-calendar {
    width: 100%;
}

.fc-day-header {
    font-weight: normal;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
}


.margbottom13 {
    margin-bottom: 12px;
}

.calp-t-40 {
    padding-top: 40px;
}

.margleft10 {
    margin-left: 10px !important;
}

.lineheight22 {
    line-height: 22px;
}

.border {
    border: 1px solid #ccc;
}

.padding5 {
    padding: 5px;
}

/*.borderright {
    border-right: 1px solid #ccc;
}*/

.margright10 {
    margin-right: 10px;
}

.margleft35 {
    margin-left: 35px;
}

.padright10 {
    padding-right: 10px;
}

.margtop10 {
    margin-top: 10px;
}

.pointer {
    cursor: pointer;
}

.no-event {
  margin-top: 300px;
    font-weight: 100;
    color: #C7C7C7;
    letter-spacing: 1px;
    font-size: 24px;
}


.calendar_events ul li {
    list-style-type: none;
    display: block;
    float: left;
    padding: 3px 10px;
    border-left: 1px solid #f1f1f1;
}

    .calendar_events ul li:hover {
        background: #fff;
        cursor: pointer;
    }

    .calendar_events ul li.active {
        background: #fff;
    }

/*.cal-operations {
     border: 1px solid #3C3C3C;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    text-align: center;
    line-height: 26px;
    margin-top: 7px;
    margin-right: 10px;
    color: #8c8c8c;
}

    .social-operations:hover {
        background: #fff;
        transition: all 1s ease;
        color: #000;
        cursor: pointer;
    }*/

.caloperations {
    border: 1px solid #8b8b8b;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    text-align: center;
    line-height: 26px;
    margin-top: 7px;
    margin-right: 10px;
    color: #000;
    transition: all 1s ease;
}

    .caloperations:hover {
        color: #000;
        transition: all 1s ease;
        border: 1px solid #383838;
        cursor: pointer;
        background:#fff;
    }


.borderright {
    border-right: 1px solid #e1e1e1;
    height: 40px;
    width: 1px;
    margin-right: 10px;
}

.op_outlook-icon {
    background: url('../Images/Icons/outlook-icon.png');
    width: 14px;
    height: 14px;
    float: left;
    margin-left: 6px;
    margin-top: 7px;
}
/*----------right pane-------*/

.calright-pane .fa-times-circle:hover {
    color: #221f1f;
    transition: all 1s ease;
    cursor: pointer;
}

.calright-pane .btn-primary {
    color: #fff;
    background-color: #1E1E1E;
    border: none;
    font-size: 11px;
    padding: 7px 6px;
    letter-spacing: 1px;
    outline: none;
}

/*.calright-pane .savebutton {
    color: #fff;
    background-color: #bd1e2c;
    font-size: 13px;
    padding: 4px 15px;
    letter-spacing: 1px;
    outline: none;
    margin-bottom: 20px;
    transition: all 1s ease;
}

    .calright-pane .savebutton:hover {
        transition: all 1s ease;
        background: #ccc;
        color: #000;
        border-color: #ccc;
    }*/

.calright-pane .bdrpadtop {
    border-top: 3px solid #DCDCDC;
    padding-top: 6px;
    background: #E2E2E2;
    height:50px;
}

/*.calright-pane .fa-times {
    color: #D8D8D8;
}*/

.calright-pane .fa-circle-o {
    color: #949494;
    font-size: 18px;
    margin-top: 1px;
    float: left;
    margin-right: 5px;
    cursor: pointer;
}

.calright-pane .fa-check-circle {
    color: #06be58;
    font-size: 18px;
    margin-top: 1px;
    float: left;
    margin-right: 5px;
    cursor: pointer;
}

/*.calright-pane .fa-times:hover {
    color: #c63b47;
}*/

.calright-pane .btn {
    border-radius: 0px;
}

.calright-pane .margbottom10 {
    margin-bottom: 10px;
}


/*.calright-pane .btn-primary:hover {
    background: #c63b47;
    border-color: #c63b47;
    transition: all 1s ease;
    box-shadow: 0px 3px 0px #a80c19;
}*/

.calright-pane .form-control {
    border-radius: 0px;
    border: 1px solid #E8E8E8;
    margin-bottom: 10px;
    padding: 6px 5px;
    height: 30px;
    transition: all 1s ease;
    background: #FFFFFF;
    font-size: 13px;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
}

    .calright-pane .form-control:focus {
        transition: all 1s ease;
        border: 1px solid #E8E8E8;
        /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);*/
    }

.calright-pane .width135 {
    width: 135px;
}

.calright-pane .width65 {
    width: 65px;
}

.calright-pane .header {
    border-radius: 0px;
    color: #fff;
    margin: 0px;
    font-size: 14px;
    padding: 10px;
    /*background: #3C3C3C;*/
    border: 0px;
    box-shadow: 0px 4px 13px rgba(0, 0, 0, 0);
}

.calright-pane .padtop6 {
    padding-top: 6px;
}

.calright-pane .padtop10 {
    padding-top: 10px;
}

.calright-pane .margleft5 {
    margin-left: 5px;
}

.calright-pane .margleft15 {
    margin-left: 15px;
}

.calright-pane .height18 {
    height: 18px;
}

.calright-pane .width50 {
    width: 50px;
}

.calright-pane .width65 {
    width: 65px;
}


.calright-pane .width23 {
    width: 23px;
}

.calright-pane textarea {
    border: 1px solid #E8E8E8;
    margin-bottom: 10px;
    width: 100%;
    outline: none;
    min-height: 80px;
    padding: 5px;
    transition: all 1s ease;
    -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
}

    .calright-pane textarea:focus {
        transition: all 1s ease;
        border: 1px solid #fff;
        /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);*/
    }

.calright-pane .radio-inline {
    margin-bottom: 20px;
}

.calright-pane .checkbox-inline {
    margin-bottom: 8px;
}

.calright-pane .padlefttop10 {
    padding-left: 10px;
    padding-top: 10px;
}

.calright-pane .bdrbottomtop {
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.calright-pane .bdrbottom {
    border-bottom: 1px solid #E8E8E8;
}

.calright-pane .recu-box {
    overflow: hidden;
    width: 100%;
    font-size: 12px;
}

.calright-pane .leftcal {
    border-right: 1px solid #E8E8E8;
    width: 80px;
    min-height: 220px;
    padding-top: 10px;
}

.calright-pane select {
    border: 1px solid #E8E8E8;
    padding: 4px 0;
    margin-top: 1px;
    outline: none;
    background: #fff;
    box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    color: #949494;
}

.calright-pane .rightcal {
    width: 160px;
    padding-top: 10px;
}

.calright-pane .width100 {
    width: 100%;
}

.calright-pane .colorpiker {
    width: 25px;
    height: 30px;
    background: #D2D2D2;
    position: absolute;
    right: 16px;
    text-align: center;
    line-height: 30px;
    color: #000;
    cursor: pointer;
    transition: all 1s ease;
}

    .calright-pane .colorpiker:hover {
        background: #1E1E1E;
        color: #fff;
        transition: all 1s ease;
    }

.calright-pane .innerscrl h5:hover {
    color: #16265f;
    cursor: pointer;
}

.calright-pane .innerscrl h5.active {
    color: #16265f;
}

.calright-pane .vgrouplist {
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0px 15px 0px 0px;
}

    .calright-pane .vgrouplist .row {
        margin-bottom: 11px;
    }

.calright-pane .iconstab {
    margin-right: 30px;
    margin-left: 5px;
}

.calright-pane .radio label, .checkbox label {
    padding-left: 0px;
}

.close-right-pane:hover {
    background: #16265f;
    transition: all 1s ease;
}
/*----------right pane---------*/

/*contextmenu menu*/
.contextmenu {
    position: relative;
    width: 140px;
    border: 0px solid #3C3C3C;
    white-space: nowrap;
    background: #3C3C3C;
    color: #FFF;
    margin: 0px;
    padding: 0px;
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.19);
    display: none;
}

    .contextmenu li {
        cursor: pointer;
        display: block;
        margin-left: 0px;
        border-bottom: 1px solid #5A5A5A;
        position: relative;
        padding: 8px 12px;
    }

        .contextmenu li .fa {
            font-size: 18px;
            margin-right: 8px;
        }

        .contextmenu li:last-child {
            border-bottom: none;
        }

    .contextmenu .cal_save-btn {
        margin: 0px auto;
        width: 140px;
        text-align: center;
    }

    .contextmenu li div {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .contextmenu li:hover {
        background: #e3e3e3;
        color: #000;
    }

    .contextmenu ul {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
    }


        .contextmenu ul ul {
            position: absolute;
            left: 0%;
            top: 0;
            width: 100%;
            visibility: hidden;
            opacity: 0;
            transition: transform 0.2s;
            transform: translateX(50px);
        }

    .contextmenu li:hover > ul {
        left: 100%;
        visibility: visible;
        opacity: 1;
        transform: translateX(0px);
        background: #3C3C3C;
        color: #fff;
        margin: 0px;
        padding: 0px;
        box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.19);
    }

    .contextmenu .submenu-scroll {
        max-height: 200px;
        overflow-x: hidden;
        overflow-y: auto;
    }

        .contextmenu .submenu-scroll .fa-check-circle {
            color: #06be58 !important;
        }

        .contextmenu .submenu-scroll .fa-circle-o {
            color: #c1c1c1 !important;
        }

/*-----------structure--------------*/

.top_header_band {
    height: 45px;
    background: #F6F6F6;
    border-bottom: 1px solid #dcdcdc;
    line-height: 40px;
    color: #7e7e7e;
    box-sizing: border-box;
}

.caltop_leftheader_band {
    height: 45px;
    background: #16265F;
    color: #fff;
    box-sizing: border-box;
    line-height: 40px;
    text-align: center;
}

.side-right-arrow {
    height: 38px;
    background: url('../../Images/side-leftarrow.png') no-repeat;
    width: 15px;
    position: absolute;
    top: 1px;
    left: 288px;
    z-index: 99;
    background-size: cover;
}

.side-left-arrow {
    height: 39px;
    background: url('../../Images/side-rightarrow.png') no-repeat;
    width: 17px;
    position: absolute;
    top: 0px;
    left: 90px;
    z-index: 99;
}

.calleft_operation {
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 95vh;
}

    .calleft_operation h1 {
    font-size: 14px;
    color: #1B69A2;
    font-weight: bold;
    margin: 0px;
    margin-top: 10px;
    cursor: pointer;
    padding-bottom: 5px;
    padding-left: 3px;
    }

        .calleft_operation h1:hover {
            color:#545454;
        }

        .calleft_operation h1 .fa {
            font-size: 16px;
        }

/*----------left nav---------------*/

.cal-leftnav ul {
    margin: 0px;
    padding: 5px 0;
}

    .cal-leftnav ul li {
        margin: 0px;
    list-style-type: none;
    padding: 10px 8px;
    cursor: pointer;
    transition: all 1s ease;
    float: left;
    border-radius: 50%;
    background: #ECEDEF;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    text-align: center;
    border: 1px solid #1B69A2;

        /*margin: 0px;
        list-style-type: none;
        padding: 8px 5px;
        cursor: pointer;
        transition: all 1s ease;
        float: left;
        border-radius: 50%;
        background: #B4CEEA;
        width: 40px;
        height: 40px;
        margin-right: 17px;
        text-align: center;
        border: 3px solid #FFFFFF;
        box-shadow: 0px 0px 4px rgba(146, 146, 146, 0.81);*/
    }

        .cal-leftnav ul li .fa {
            margin-right: 5px;
            margin-left: 5px;
        }

        .cal-leftnav ul li:hover {
            background: #FFFFFF;
            color: #fff;
            border: 2px solid #16265F;
            transition: all 1s ease;
        }


        .cal-leftnav ul li.active {
            background: #FFFFFF;
            color: #fff;
            border: 3px solid #06be58;
        }
/*----------left nav---------------*/
.google-icon {
    width: 14px;
    height: 14px;
    background: url(../Images/Icons/google-icon.png) no-repeat;
    float: left;
    margin: 2px 5px;
}

.fb-icon {
    width: 14px;
    height: 14px;
    background: url('../Images/Icons/fb-icon.png') no-repeat;
    float: left;
    margin: 2px 5px;
}

.outlook-icon {
    width: 14px;
    height: 14px;
    background: url(../Images/Icons/outlook-icon.png) no-repeat;
    float: left;
    margin: 2px 5px;
}

.cal-fb {
    width: 40px;
    height: 40px;
    background: #0071c5;
    border-radius: 100%;
    cursor: pointer;
}

.cal-outlook {
    width: 40px;
    height: 40px;
    background: #05358e;
    border-radius: 100%;
    margin-right: 18px;
    cursor: pointer;
}

.calleft_pane {
    width: 210px;
    float: left;
    height: 100vh;
    background: #ECEDEF;
    margin-left: 90px;
    border-right: 1px solid #C4C7CC;
    /*width: 210px;
    float: left;
    height: 100vh;
   background: url('../../Images/bg-pattern.png');
    background-repeat: repeat;
    margin-left: 89px;
    border-right: 1px solid #D6D2D2;*/
}

.calcenter_pane {
    float: left;
    height: 100vh;
    width: calc(100% - 300px);
    /*overflow: auto;*/
}

.calcenter_pane_lefthide {
    float: left;
    width: 100%;
    padding-left: 100px;
}

.calcenter_left {
    float: left;
    height: calc(100vh - 40px);
    width: 100%;
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.calcenter_left_rhtcollp {
    float: left;
    height: calc(100vh - 40px);
    width: calc(100% - 300px);
    /*overflow-x: hidden;
    overflow-y: scroll;*/
    padding: 0px 15px;
}

.calcenter_right {
    float: left;
    width: 300px;
    height: 95vh;
    background: #F1F1F1;
    border-left: 1px solid #E6E6E6;
}

    .calcenter_right .bdr-top {
        border-top: 1px solid #DCDCDC;
    }

    .calcenter_right .froala-box {
        position: relative;
        border: 1px solid #E8E8E8;
        margin-bottom: 10px;
        padding: 10px 10px;
        background: #fff;
        box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.06);
    }

    .calcenter_right .innerscrl {
        height: 81vh;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 10px 0px;
    }

.calValidation {
    border: 1px solid #bd1e2c !important;
}

/*-----------structure--------------*/



/*.modal-confirm .modal-header {
    padding: 10px 15px 5px 15px;
    color: #bd1e2c;
}

.modal-confirm .modal-body {
    padding: 5px 15px 5px 15px;
}

.modal-confirm .modal-footer {
    padding: 0px 15px 15px 15px;
    border: none;
}

.modal-confirm .btn {
    border-radius: 0px;
}

.modal-confirm .btn-default {
    background: #808080;
    border-color: #808080;
    color: #fff;
    outline: none;
    padding: 5px 9px;
}*/

.event-tooltip {
    background: #5A5A5A;
    padding: 4px 8px;
    position: absolute;
    z-index: 9999;
    max-width: 200px;
    color: #fff;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin-left: 20px;
    margin-top: 70px;
}
/*.event-tooltip:before {
      content: "";
    border-top: 8px solid #626262;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    bottom:-8px;
    left: 11px;
    z-index: 10;
    }*/

.dnone {
    display: none;
}

.agenda .agenda-date-box {
    width: 100px;
}

.agenda .agenda-info-box {
    width: calc(100% - 100px);
}

.agenda .rowpad {
    padding-left: 50px;
    margin-top: 5px;
}

.agenda .a-datebox {
    width: 80px;
    height: 95px;
    background: #DCDCDC;
    border: 1px solid #fff;
    border-top: 5px solid #8E8E8E;
    /* box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.10); */
    /*width: 80px;
    height: 100px;
    border-bottom-left-radius: 25px;
    /*border-bottom-right-radius: 40px;*
    background: #DCDCDC;
    border: 1px solid #fff;
    border-top: 5px solid #BD1E2C;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.10);*/
}

.agenda .calbox {
    text-align: center;
    border-bottom: 1px solid #AFAFAF;
    padding: 4px 0;
    font-weight: 600;
}

    .agenda .calbox:last-child {
        border-bottom: 0px solid #AFAFAF;
    }

.agenda .bldhd {
    font-weight: 700;
    color: #3C3C3C;
}

.agenda .rowpad img {
    margin-right: 5px;
    padding: 1px;
    /*background: #ccc;*/
}

.agenda .Ehidden {
    /*overflow: hidden;*/
    width: 100%;
}

.agenda .eventshd {
    font-weight: 600;
    color: #1B69A2;
    /*background: #F1F1F1;*/
    padding: 5px;
    border-bottom: 1px solid #F1F1F1;
    margin-bottom: 10px;
}

.agenda {
    /*border-bottom: 1px solid #e6e6e6;*/
    margin-bottom: 10px;
}

    .agenda h1 {
        font-size: 13px;
        color: #000000;
        background: #F3F3F3;
        padding: 5px 10px;
        border-left: 5px solid #DCDCDC;
        transition: all 1s ease;
        margin: 0px;
        /*margin-top: 15px;*/
        font-weight: 400;
        line-height: normal;
    }

        .agenda h1:hover {
            background: #f8f8f8;
            color: #1B69A2;
            transition: all 1s ease;
            border-left: 5px solid #1B69A2;
        }

        .agenda h1.active {
               background: #f8f8f8;
                 color: #1B69A2;
                 border-left: 5px solid #1B69A2;
        }

    /*.agenda h4 {
        margin: 0px;
        font-size: 14px;
        color: #777;
        font-weight: normal;
        margin-top: 10px;
        margin-bottom: 7px;
    }*/

    .agenda .eventshow {
        padding: 10px;
        border: 1px solid #F3F3F3;
        /*overflow: hidden;*/
    }

.agweeks {
      color: #16265F;
    /*color: #bd1e2c;*/
    margin-top: 20px;
}

.fa-chevron-circle-left, .fa-chevron-circle-right {
    font-size: 16px;
    color: #989898;
    margin-right: 5px;
}

/*.agenda .fa {
    cursor: pointer;
}

    .agenda .fa:hover {
        color: #bd1e2c;
    }*/

.agenda .nextprev:hover {
    color: #000;
}

.agenda-prev {
    margin-top: 1px;
    margin-right: 15px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
}

.agenda-next {
    margin-top: 1px;
    margin-right: 7px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
    border-left: 1px solid #ccc;
    padding-left: 11px;
}




.agenda h1 .fa {
    color: #B3B3B3;
    float: right;
    font-size: 20px;
    margin-top: -2px;
}

.agenda h1 .fa-caret-down {
    color: #16265F;
}


/*.agenda h2 {
    font-size: 14px;
    color: #BD1E2C;
    margin: 0px;
    line-height: normal;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 12px;
}

.agenda h3 {
    font-size: 14px;
    color: #8C8C8C;
    font-weight: 100;
    line-height: 20px;
    margin: 0px;
    margin-bottom: 20px;
}*/

.agenda .share-right {
    float: right;
}

    .agenda .share-right span {
        color: #16265f;
        font-weight: 600;
    }

.agenda .social-operations {
    border: 1px solid #989898;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    text-align: center;
    line-height: 24px;
    margin-left: 15px;
    color: #fff;
    background: #AAAAAA;
    position: relative;
    transition: all 1s ease;
}

    .agenda .social-operations:hover {
        background: #fff;
        transition: all 1s ease;
        color: #000;
        cursor: pointer;
    }

.agenda .borderright {
    border-right: 1px solid #e1e1e1;
    height: 20px;
    width: 1px;
    margin-right: 5px;
    margin-left: 10px;
}

.agenda .attch-topcount {
    height: 18px;
    width: 18px;
    background: #FFFFFF;
    border-radius: 100%;
    font-size: 10px;
    color: #000 !important;
    text-align: center;
    position: absolute;
    left: 228px;
    top: -10px;
    border: 1px solid #16265f;
    line-height: 18px;
}

.agenda .attachments {
    background: #fff;
    width: 157px;
    height: 26px;
    line-height: 25px;
    border: 1px solid #DEDEDE;
    margin-left: 15px;
    margin-top: 10px;
}

    .agenda .attachments:hover {
        background: #f2f2f2;
        border: 1px solid #DEDEDE;
        transition: all 1s ease;
    }

    .agenda .attachments .fa-times {
        color: #e0e0e0;
    }

        .agenda .attachments .fa-times:hover {
            color: #16265f;
            cursor: pointer;
        }

.agenda .format-icons {
    width: 25px;
    height: 25px;
    background: #DEDEDE;
    margin-right: 5px;
    color: #8c8c8c;
    text-align: center;
}

.agenda .att-title {
    width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    color: #A29E9E;
    font-size: 13px;
}

.calright-pane .nav-tabs > li {
    border-right: 1px solid #FAFAFA;
    background: #ccc;
    padding: 5px 6px;
    cursor: pointer;
}

    .calright-pane .nav-tabs > li:last-child {
        border-right: 0px solid #DADADA;
    }

    /*.calright-pane .nav-tabs > li > a {
        border-radius: 0px;
        border: 0px;
        color: #000;
        margin-right: 0px;
        background: #ccc;
    }*/

    .calright-pane .nav-tabs > li.active {
        border: 0px;
        background: #3C3C3C;
        color: #fff;
        transition: all 1s ease;
    }

    .calright-pane .nav-tabs > li:hover {
        background: #3C3C3C;
        color: #fff;
        transition: all 1s ease;
    }

.calright-pane .panel-body {
    padding: 0px;
}


/*------agenda-------*/

.eventsfrom-icon {
    border: 3px solid rgba(34, 31, 31, 0.4);
    background: #7A7A7A;
}

.cal_light {
    color: #ffffff !important;
}

.cal_dark {
    color: #000000 !important;
}

.cal_vgroup {
    width: 250px;
    height: auto;
    background: rgba(60, 60, 60, 0.97);
    position: absolute;
    z-index: 999;
    top: 42px;
    right: 7px;
    padding: 10px 15px;
    text-align: left;
}

    .cal_vgroup .vgroup-box {
        height: 100px;
        overflow-x: hidden;
        overflow-y: auto;
        margin-bottom: 6px;
    }

    .cal_vgroup .vGroup {
        border-bottom: 1px solid #4C4C4C;
        padding: 4px 0px;
        margin-bottom: 5px;
    }

    .cal_vgroup h2 {
        color: #fff;
        font-size: 14px;
        margin: 0px;
        /* margin-bottom: 10px; */
        margin-left: 5px;
        margin-top: 1px;
    }

.cal_selectall-btn {
    background: #7e7e7e;
    border-color: #7e7e7e;
    color: #fff;
    outline: none;
    padding: 2px 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 1s ease;
    float: left;
}

.cal_save-btn {
    background: #16265F;
    border-color: #16265F;
    color: #fff;
    outline: none;
    padding: 2px 6px;
    font-size: 13px;
    /*margin-right: 10px;*/
    cursor: pointer;
    transition: all 1s ease;
    float: left;
}

.cal_cancel-btn {
    background: #1E1E1E;
    border-color: #1E1E1E;
    color: #fff;
    outline: none;
    padding: 2px 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 1s ease;
    float: left;
}

.caleventright {
    float: right;
    margin-top: 5px;
    padding-right: 5px;
    padding-top: 3px;
}

.red-btn {
    /*background: #16265F !important;*/
    color: #fff !important;
    outline: none;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 1s ease;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #16265F;
}
.red-btn:hover {
    transition: all 1s ease;
    /*background: #16265F;*/
    color: #fff;
    border-color: #ccc;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Source Sans Pro',sans-serif;
}
.none{
    display:none;
}
/*---------------------- Custom Calendar CSS----------------------*/

/*---------------------- Event details CSS----------------------*/
.edetails h3 {
    color: #16265f;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    margin: 0px;
}

.edetails p {
    margin: 0px;
    font-size: 14px;
    line-height: initial;
}

.edetails h3 span {
    color: #000;
    font-weight: 200;
    margin-left: 10px;
    font-weight: initial;
}

.edetails .brbottom {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 5px;
    padding-bottom: 10px;
}
/*---------------------- Event details CSS----------------------*/


@media (max-width: 991px) {
    .calcenter_pane {
        float: left;
        height: 100vh;
        width: 100%;
    }

    .caloperations {
        margin-left: 40px;
    }

    .side-right-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .fc-toolbar h3 {
        font-size: 13px;
    }
}
