/* Minification failed. Returning unminified contents.
(10260,30): run-time error CSS1034: 
(10260,30): run-time error CSS1042: Expected function, found ','
(10260,34): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
/*!
 * FullCalendar v3.8.0
 * Docs & License: https://fullcalendar.io/
 * (c) 2017 Adam Shaw
 */
.fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc {
    /* extra precedence to overcome jqui */
    font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
    /* when user is selecting cells */
    background: #bce8f1;
    opacity: .3;
}

.fc-bgevent {
    /* default look for background events */
    background: #8fdf82;
    opacity: .3;
}

.fc-nonbusiness {
    /* default look for non-business-hours areas */
    /* will inherit .fc-bgevent's styles */
    background: #d7d7d7;
}

/* 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;
    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, 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;
}

/* 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 */
    }

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
    cursor: pointer;
}

    a[data-goto]:hover {
        text-decoration: underline;
    }

/* 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 .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
    /* see-through to the background below */
    /* extra precedence to prevent theme-provided backgrounds */
    background: none;
    /* in case <td>s are globally styled */
    border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
    /* don't put a border between events and/or the day number */
    border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.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 */
}

.fc-event,
.fc-event-dot {
    background-color: #3a87ad;
    /* default BACKGROUND color */
    -webkit-box-shadow: 0 8px 6px -6px #777;
    -moz-box-shadow: 0 8px 6px -6px #777;
    box-shadow: 0 8px 6px -6px #777;
}

    .fc-event,
    .fc-event:hover {
        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,
.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: .30;
}

.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;
}

tr:first-child > td > .fc-day-grid-event {
    margin-top: 2px;
    /* a little bit more space before the first event */
}

.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;
}

.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;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/*
TODO: more distinction between this file and common.css
*/
/* 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,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
    border-color: #ddd;
}

.fc-unthemed .fc-popover {
    background-color: #fff;
}

    .fc-unthemed .fc-divider,
    .fc-unthemed .fc-popover .fc-header,
    .fc-unthemed .fc-list-heading td {
        background: #eee;
    }

        .fc-unthemed .fc-popover .fc-header .fc-close {
            color: #666;
        }

.fc-unthemed td.fc-today {
    background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
    background: #d7d7d7;
    opacity: .3;
}

/* 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;
    -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;
    }

.fc-icon-left-single-arrow:after {
    content: "\2039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-right-single-arrow:after {
    content: "\203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-left-double-arrow:after {
    content: "\AB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-right-double-arrow:after {
    content: "\BB";
    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: "\D7";
    font-size: 200%;
    top: 6%;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

    .fc-unthemed .fc-popover .fc-header .fc-close {
        font-size: .9em;
        margin-top: 2px;
    }

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
    background-color: #f5f5f5;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
    background-image: none;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
    border-top: 0;
    /* where they meet, let the header have the border */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
    /* overpower jqui's styles on <a> tags. TODO: more DRY */
    color: #fff;
    /* default TEXT color */
    text-decoration: none;
    /* if <a> has an href */
    /* undo ui-widget-header bold */
    font-weight: normal;
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
    font-weight: normal;
    /* overcome bold */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
    background: none;
    /* see through to fc-bg */
}

.fc.fc-bootstrap3 a {
    text-decoration: none;
}

    .fc.fc-bootstrap3 a[data-goto]:hover {
        text-decoration: underline;
    }

.fc-bootstrap3 hr.fc-divider {
    border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
    border-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
    padding: 0;
    /* undo built-in padding */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
    /* some themes have background color. see through to slats */
    background: none;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
    text-align: center;
}

    .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1em;
    }

    .fc-toolbar.fc-footer-toolbar {
        margin-top: 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 {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.fc-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 {
    /* there may be week numbers in these views, so no padding-top */
    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-day-top.fc-other-month {
    opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
    padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
    padding: 0 2px;
    /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
    float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
    float: left;
    border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
    float: right;
    border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
    min-width: 1.5em;
    text-align: center;
    background-color: #f2f2f2;
    color: #808080;
}

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
    text-align: center;
}

    .fc-basic-view td.fc-week-number > * {
        /* work around the way we do column resizing and ensure a minimum width */
        display: inline-block;
        min-width: 1.25em;
    }

/* 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-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;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.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;
    }

    /* 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: "\A0-\A0";
            /* 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;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
    direction: rtl;
    /* unlike core views, leverage browser RTL */
}

.fc-list-view {
    border-width: 1px;
    border-style: solid;
}

/* table resets */
.fc .fc-list-table {
    table-layout: auto;
    /* for shrinkwrapping cell content */
}

.fc-list-table td {
    border-width: 1px 0 0;
    padding: 8px 14px;
}

.fc-list-table tr:first-child td {
    border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
    border-bottom-width: 1px;
}

    .fc-list-heading td {
        font-weight: bold;
    }

.fc-ltr .fc-list-heading-main {
    float: left;
}

.fc-ltr .fc-list-heading-alt {
    float: right;
}

.fc-rtl .fc-list-heading-main {
    float: right;
}

.fc-rtl .fc-list-heading-alt {
    float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
    cursor: pointer;
    /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
    white-space: nowrap;
    width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
    padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
    padding-left: 0;
}

.fc-list-item-title a {
    /* every event title cell has an <a> tag */
    text-decoration: none;
    color: inherit;
}

    .fc-list-item-title a[href]:hover {
        /* hover effect only on titles with hrefs */
        text-decoration: underline;
    }

/* message when no events */
.fc-list-empty-wrap2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc-list-empty-wrap1 {
    width: 100%;
    height: 100%;
    display: table;
}

.fc-list-empty {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.fc-unthemed .fc-list-empty {
    /* theme will provide own background */
    background-color: #eee;
}

/*!
 * bootswatch v3.3.7
 * Homepage: http://bootswatch.com
 * Copyright 2012-2017 Thomas Park
 * Licensed under MIT
 * Based on Bootstrap
*/
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e011";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Segoe UI", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #2780e3;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #165ba8;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 0;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 21px;
  margin-bottom: 21px;
  border: 0;
  border-top: 1px solid #e6e6e6;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Segoe UI", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 21px;
  margin-bottom: 10.5px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 39px;
}
h2,
.h2 {
  font-size: 32px;
}
h3,
.h3 {
  font-size: 26px;
}
h4,
.h4 {
  font-size: 19px;
}
h5,
.h5 {
  font-size: 15px;
}
h6,
.h6 {
  font-size: 13px;
}
p {
  margin: 0 0 10.5px;
}
.lead {
  margin-bottom: 21px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 22.5px;
  }
}
small,
.small {
  font-size: 86%;
}
mark,
.mark {
  background-color: #ff7518;
  padding: .2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #999999;
}
.text-primary {
  color: #2780e3;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1967be;
}
.text-success {
  color: #ffffff;
}
a.text-success:hover,
a.text-success:focus {
  color: #e6e6e6;
}
.text-info {
  color: #ffffff;
}
a.text-info:hover,
a.text-info:focus {
  color: #e6e6e6;
}
.text-warning {
  color: #ffffff;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e6e6e6;
}
.text-danger {
  color: #ffffff;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #e6e6e6;
}
.bg-primary {
  color: #fff;
  background-color: #2780e3;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #1967be;
}
.bg-success {
  background-color: #3fb618;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #2f8912;
}
.bg-info {
  background-color: #9954bb;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #7e3f9d;
}
.bg-warning {
  background-color: #ff7518;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #e45c00;
}
.bg-danger {
  background-color: #ff0039;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #cc002e;
}
.page-header {
  padding-bottom: 9.5px;
  margin: 42px 0 21px;
  border-bottom: 1px solid #e6e6e6;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10.5px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 21px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10.5px 21px;
  margin: 0 0 21px;
  font-size: 18.75px;
  border-left: 5px solid #e6e6e6;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #999999;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #e6e6e6;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 21px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 0;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 10px;
  margin: 0 0 10.5px;
  font-size: 14px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 0;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #999999;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 21px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #3fb618;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #379f15;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #9954bb;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #8d46b0;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #ff7518;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #fe6600;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #ff0039;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #e60033;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15.75px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 21px;
  font-size: 22.5px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 11px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #333333;
}
.form-control {
  display: block;
  width: 100%;
  height: 43px;
  padding: 10px 18px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #e6e6e6;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 43px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 31px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 64px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 21px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
  min-height: 36px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0;
}
select.input-sm {
  height: 31px;
  line-height: 31px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0;
}
.form-group-sm select.form-control {
  height: 31px;
  line-height: 31px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 31px;
  min-height: 34px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.5;
}
.input-lg {
  height: 64px;
  padding: 18px 30px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 0;
}
select.input-lg {
  height: 64px;
  line-height: 64px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 64px;
  padding: 18px 30px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 0;
}
.form-group-lg select.form-control {
  height: 64px;
  line-height: 64px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 64px;
  min-height: 40px;
  padding: 19px 30px;
  font-size: 19px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 53.75px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 64px;
  height: 64px;
  line-height: 64px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 31px;
  height: 31px;
  line-height: 31px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #ffffff;
}
.has-success .form-control {
  border-color: #ffffff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
}
.has-success .input-group-addon {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #3fb618;
}
.has-success .form-control-feedback {
  color: #ffffff;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #ffffff;
}
.has-warning .form-control {
  border-color: #ffffff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
}
.has-warning .input-group-addon {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #ff7518;
}
.has-warning .form-control-feedback {
  color: #ffffff;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #ffffff;
}
.has-error .form-control {
  border-color: #ffffff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
}
.has-error .input-group-addon {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #ff0039;
}
.has-error .form-control-feedback {
  color: #ffffff;
}
.has-feedback label ~ .form-control-feedback {
  top: 26px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 32px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 11px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 19px;
    font-size: 19px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 13px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 15px;
  line-height: 1.42857143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #ffffff;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-default:focus,
.btn-default.focus {
  color: #ffffff;
  background-color: #090909;
  border-color: #000000;
}
.btn-default:hover {
  color: #ffffff;
  background-color: #090909;
  border-color: #040404;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #ffffff;
  background-color: #090909;
  border-color: #040404;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #222222;
  border-color: #222222;
}
.btn-default .badge {
  color: #222222;
  background-color: #ffffff;
}
.btn-primary {
  color: #ffffff;
  background-color: #2780e3;
  border-color: #2780e3;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #1967be;
  border-color: #10427b;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #1967be;
  border-color: #1862b5;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #1967be;
  border-color: #1862b5;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #15569f;
  border-color: #10427b;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #2780e3;
  border-color: #2780e3;
}
.btn-primary .badge {
  color: #2780e3;
  background-color: #ffffff;
}
.btn-outline-secondary {
    color: #373a3c;
    border-color: #dbdbdb;
}
    .btn-outline-secondary:hover {
        color: #2780e3;
        background-color: #fff;
        border-color: #dbdbdb;
    }
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    color: #000;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(55, 58, 60, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(55, 58, 60, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #373a3c;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #000;
    background-color: #fff;
    border-color: #dbdbdb;
}

    .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-secondary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(55, 58, 60, 0.5);
        box-shadow: 0 0 0 0.2rem rgba(55, 58, 60, 0.5);
    }
.btn-success {
  color: #ffffff;
  background-color: #3fb618;
  border-color: #3fb618;
}
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #2f8912;
  border-color: #184509;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #2f8912;
  border-color: #2c8011;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #2f8912;
  border-color: #2c8011;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #24690e;
  border-color: #184509;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #3fb618;
  border-color: #3fb618;
}
.btn-success .badge {
  color: #3fb618;
  background-color: #ffffff;
}
.btn-info {
  color: #ffffff;
  background-color: #9954bb;
  border-color: #9954bb;
}
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #7e3f9d;
  border-color: #522967;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #7e3f9d;
  border-color: #783c96;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #7e3f9d;
  border-color: #783c96;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #6a3484;
  border-color: #522967;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #9954bb;
  border-color: #9954bb;
}
.btn-info .badge {
  color: #9954bb;
  background-color: #ffffff;
}
.btn-warning {
  color: #ffffff;
  background-color: #ff7518;
  border-color: #ff7518;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #e45c00;
  border-color: #983d00;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #e45c00;
  border-color: #da5800;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #e45c00;
  border-color: #da5800;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #c04d00;
  border-color: #983d00;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #ff7518;
  border-color: #ff7518;
}
.btn-warning .badge {
  color: #ff7518;
  background-color: #ffffff;
}
.btn-danger {
  color: #ffffff;
  background-color: #ff0039;
  border-color: #ff0039;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #cc002e;
  border-color: #80001c;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #cc002e;
  border-color: #c2002b;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #cc002e;
  border-color: #c2002b;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #a80026;
  border-color: #80001c;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #ff0039;
  border-color: #ff0039;
}
.btn-danger .badge {
  color: #ff0039;
  background-color: #ffffff;
}
.btn-link {
  color: #2780e3;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #165ba8;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 18px 30px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 0;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
     transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
     transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
     transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 15px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #2780e3;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #2780e3;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #999999;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 64px;
  padding: 18px 30px;
  font-size: 19px;
  line-height: 1.3333333;
  border-radius: 0;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 64px;
  line-height: 64px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 31px;
  line-height: 31px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  color: #333333;
  text-align: center;
  background-color: #e6e6e6;
  border: 1px solid #cccccc;
  border-radius: 0;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 0;
}
.input-group-addon.input-lg {
  padding: 18px 30px;
  font-size: 19px;
  border-radius: 0;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #e6e6e6;
}
.nav > li.disabled > a {
  color: #999999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #e6e6e6;
  border-color: #2780e3;
}
.nav .nav-divider {
  height: 1px;
  margin: 9.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 0 0 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #e6e6e6 #e6e6e6 #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 0 0 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 0;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #2780e3;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 0 0 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 21px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 14.5px 15px;
  font-size: 13px;
  line-height: 16px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.25px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 21px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 14.5px;
    padding-bottom: 14.5px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}
.navbar-btn.btn-sm {
  margin-top: 9.5px;
  margin-bottom: 9.5px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 14.5px;
  margin-bottom: 14.5px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #222222;
  border-color: #121212;
}
.navbar-default .navbar-brand {
  color: #ffffff;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #ffffff;
  background-color: none;
}
.navbar-default .navbar-text {
  color: #ffffff;
}
.navbar-default .navbar-nav > li > a {
  color: #ffffff;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: #090909;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #090909;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: transparent;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #090909;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #121212;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #ffffff;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #ffffff;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: #090909;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #090909;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #ffffff;
}
.navbar-default .navbar-link:hover {
  color: #ffffff;
}
.navbar-default .btn-link {
  color: #ffffff;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #ffffff;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}
.navbar-inverse {
  background-color: #2780e3;
  border-color: #1967be;
}
.navbar-inverse .navbar-brand {
  color: #ffffff;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: none;
}
.navbar-inverse .navbar-text {
  color: #ffffff;
}
.navbar-inverse .navbar-nav > li > a {
  color: #ffffff;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: #1967be;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #1967be;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: transparent;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #1967be;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #1a6ecc;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #1967be;
  color: #ffffff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #1967be;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #1967be;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #ffffff;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: #1967be;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #1967be;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #ffffff;
}
.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.navbar-inverse .btn-link {
  color: #ffffff;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 21px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 0;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #cccccc;
}
.breadcrumb > .active {
  color: #999999;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 21px 0;
  border-radius: 0;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 18px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #2780e3;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #165ba8;
  background-color: #e6e6e6;
  border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #999999;
  background-color: #f5f5f5;
  border-color: #dddddd;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 18px 30px;
  font-size: 19px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pager {
  padding-left: 0;
  margin: 21px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #e6e6e6;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  background-color: #ffffff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #222222;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #090909;
}
.label-primary {
  background-color: #2780e3;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #1967be;
}
.label-success {
  background-color: #3fb618;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #2f8912;
}
.label-info {
  background-color: #9954bb;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #7e3f9d;
}
.label-warning {
  background-color: #ff7518;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #e45c00;
}
.label-danger {
  background-color: #ff0039;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #cc002e;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #2780e3;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #2780e3;
  background-color: #ffffff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
    position: relative;
    width: calc(100% + 30px);
    display: block;
    overflow: hidden;
    margin-top: -7px;
    margin-left: -15px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 10px;
    background-image: url(/img/szkola-kursanta.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: 0 4px 5px -2px gray;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 8px;
  font-size: 23px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #cccccc;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 0;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 20px;
    padding-right: 20px;
  }
.jumbotron2 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron2,
  .container-fluid .jumbotron2 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron2 h1,
  .jumbotron2 .h1 {
    font-size: 68px;
  }
}
.jumbotron-Sub {
    position: relative;
    width: calc(100% + 30px);
    display: block;
    overflow: hidden;
    margin-top: 0;
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 50px;
    margin-bottom: 2px;
    background: #ff512f;
    background: -moz-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: -webkit-gradient(left top,right top,color-stop(0,#ff512f),color-stop(100%,#dd2476));
    background: -webkit-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: -o-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: -ms-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: linear-gradient(to right, #ff512f 0, #dd2476 100%);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2);
}
.container .jumbotron-Sub,
.container-fluid .jumbotron-Sub {
    border-radius: 0;
}

.jumbotron-Sub .container {
    max-width: 100%;
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 21px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #2780e3;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 21px;
  border: 1px solid transparent;
  border-radius: 0;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #3fb618;
  border-color: #4e9f15;
  color: #ffffff;
}
.alert-success hr {
  border-top-color: #438912;
}
.alert-success .alert-link {
  color: #e6e6e6;
}
.alert-info {
  background-color: #9954bb;
  border-color: #7643a8;
  color: #ffffff;
}
.alert-info hr {
  border-top-color: #693c96;
}
.alert-info .alert-link {
  color: #e6e6e6;
}
.alert-warning {
  background-color: #ff7518;
  border-color: #ff4309;
  color: #ffffff;
}
.alert-warning hr {
  border-top-color: #ee3800;
}
.alert-warning .alert-link {
  color: #e6e6e6;
}
.alert-danger {
  background-color: #ff0039;
  border-color: #f0005e;
  color: #ffffff;
}
.alert-danger hr {
  border-top-color: #d60054;
}
.alert-danger .alert-link {
  color: #e6e6e6;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 21px;
  margin-bottom: 21px;
  background-color: #cccccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 13px;
  line-height: 21px;
  color: #ffffff;
  text-align: center;
  background-color: #2780e3;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #3fb618;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #9954bb;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #ff7518;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #ff0039;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
  padding-top: 3%;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
    transform: scale(1); /* Standard Property */
    transform-origin: 0 0; /* Standard Property */
    overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
a.list-group-item,
button.list-group-item {
  color: #555555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #e6e6e6;
  color: #999999;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #999999;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #2780e3;
  border-color: #dddddd;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #dceafa;
}
.list-group-item-success {
  color: #ffffff;
  background-color: #3fb618;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #ffffff;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #ffffff;
  background-color: #379f15;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}
.list-group-item-info {
  color: #ffffff;
  background-color: #9954bb;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #ffffff;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #ffffff;
  background-color: #8d46b0;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}
.list-group-item-warning {
  color: #ffffff;
  background-color: #ff7518;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #ffffff;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #ffffff;
  background-color: #fe6600;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}
.list-group-item-danger {
  color: #ffffff;
  background-color: #ff0039;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #ffffff;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #ffffff;
  background-color: #e60033;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #ffffff;
  border-color: #ffffff;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 21px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: -1;
  border-bottom-right-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 21px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.panel-default {
  border-color: #dddddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd;
}
.panel-primary {
  border-color: #2780e3;
}
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #2780e3;
  border-color: #2780e3;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #2780e3;
}
.panel-primary > .panel-heading .badge {
  color: #2780e3;
  background-color: #ffffff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #2780e3;
}
.panel-success {
  border-color: #4e9f15;
}
.panel-success > .panel-heading {
  color: #ffffff;
  background-color: #3fb618;
  border-color: #4e9f15;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #4e9f15;
}
.panel-success > .panel-heading .badge {
  color: #3fb618;
  background-color: #ffffff;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #4e9f15;
}
.panel-info {
  border-color: #7643a8;
}
.panel-info > .panel-heading {
  color: #ffffff;
  background-color: #9954bb;
  border-color: #7643a8;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #7643a8;
}
.panel-info > .panel-heading .badge {
  color: #9954bb;
  background-color: #ffffff;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #7643a8;
}
.panel-warning {
  border-color: #ff4309;
}
.panel-warning > .panel-heading {
  color: #ffffff;
  background-color: #ff7518;
  border-color: #ff4309;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ff4309;
}
.panel-warning > .panel-heading .badge {
  color: #ff7518;
  background-color: #ffffff;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ff4309;
}
.panel-danger {
  border-color: #f0005e;
}
.panel-danger > .panel-heading {
  color: #ffffff;
  background-color: #ff0039;
  border-color: #f0005e;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #f0005e;
}
.panel-danger > .panel-heading .badge {
  color: #ff0039;
  background-color: #ffffff;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #f0005e;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 0;
}
.well-sm {
  padding: 9px;
  border-radius: 0;
}
.close {
  float: right;
  font-size: 22.5px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 20px;
  overflow:visible;
  height:100%;
  background-color:#fff;
}
.modal-footer {
  padding: 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Segoe UI", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 0;
}
.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: #000000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Segoe UI", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 15px;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 15px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: -1 -1 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.navbar-inverse .badge {
  background-color: #fff;
  color: #2780e3;
}
body {
  -webkit-font-smoothing: antialiased;
}
.text-primary,
.text-primary:hover {
  color: #2780e3;
}
.text-success,
.text-success:hover {
  color: #3fb618;
}
.text-danger,
.text-danger:hover {
    color: #ff0039;
}
.text-warning,
.text-warning:hover {
  color: #ff7518;
}
.text-info,
.text-info:hover {
  color: #9954bb;
}
table a:not(.btn),
.table a:not(.btn) {
  text-decoration: underline;
}
table .dropdown-menu a,
.table .dropdown-menu a {
  text-decoration: none;
}
table .success,
.table .success,
table .warning,
.table .warning,
table .danger,
.table .danger,
table .info,
.table .info {
  color: #fff;
}
table .success a,
.table .success a,
table .warning a,
.table .warning a,
table .danger a,
.table .danger a,
table .info a,
.table .info a {
  color: #fff;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label,
.has-warning .form-control-feedback {
  color: #ff7518;
}
.has-warning .form-control,
.has-warning .form-control:focus,
.has-warning .input-group-addon {
  border: 1px solid #ff7518;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label,
.has-error .form-control-feedback {
  color: #ff0039;
}
.has-error .form-control,
.has-error .form-control:focus,
.has-error .input-group-addon {
  border: 1px solid #ff0039;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label,
.has-success .form-control-feedback {
  color: #3fb618;
}
.has-success .form-control,
.has-success .form-control:focus,
.has-success .input-group-addon {
  border: 1px solid #3fb618;
}
.nav-pills > li > a {
  border-radius: 0;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-image: none;
}
.close {
  text-decoration: none;
  text-shadow: none;
  opacity: 0.4;
}
.close:hover,
.close:focus {
  opacity: 1;
}
.alert {
  border: none;
}
.alert .alert-link {
  text-decoration: underline;
  color: #fff;
}
.label {
  border-radius: 0;
}
.progress {
  height: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.progress .progress-bar {
  font-size: 8px;
  line-height: 8px;
}
.panel-heading,
.panel-footer {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-default .close {
  color: #333333;
}
a.list-group-item-success.active {
  background-color: #3fb618;
}
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  background-color: #379f15;
}
a.list-group-item-warning.active {
  background-color: #ff7518;
}
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  background-color: #fe6600;
}
a.list-group-item-danger.active {
  background-color: #ff0039;
}
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  background-color: #e60033;
}
.modal .close {
  color: #333333;
}
.popover {
  color: #333333;
}
/* Custom Classes*/
 .userlist {
      background-color: #f2f2f2;
      border: 1px solid #ffc218;
 }
 .mt-10 {
  margin-top: 10px !important;
}
  .mt-10-per {
  margin-top: 10% !important;
}
 .date-style {
     background-color:white;
     font-weight:bold;
     border:none;
 }
 .login input {
     max-width: 287px;
 }
.full-width-message {
    min-height:50rem;
 }
.pqa-red {
    color: red;
}
.pqa-grey {
    color: dimgrey;
    font-size: 12px;
}
.col-container {
    display: table;
    width: 100%;
}
.col {
    display: table-cell;
    padding: 16px;
}

/*!
 * FullCalendar Scheduler v1.9.4
 * Docs & License: https://fullcalendar.io/scheduler/
 * (c) 2018 Adam Shaw
 */
/* TODO: break this file up */
/* Scroller
--------------------------------------------------------------------------------------------------*/
.fc-scroller-clip {
  overflow: hidden;
  /* for clipping scrollbars */
  position: relative;
  /* so things like scrollfollowers can attach to this */ }

/* supresses rendering of native scrollbars */
/* on .fc-scroller */
.fc-no-scrollbars {
  background: rgba(255, 255, 255, 0);
  /* hack for dynamic DOM nodes (in Chrome OSX at least) */ }

.fc-no-scrollbars::-webkit-scrollbar {
  width: 0;
  height: 0; }

.fc-scroller-canvas {
  position: relative;
  /* origin for bg */
  box-sizing: border-box;
  /* so that padding (for gutter) will be part of height */
  min-height: 100%; }

.fc-scroller-canvas > .fc-bg {
  z-index: 1;
  /* make default? */ }

.fc-scroller-canvas > .fc-content {
  z-index: 2;
  /* make default? */
  position: relative;
  /* origin for inner content */
  border-style: solid;
  border-width: 0; }

/* for themed, hard to get the border-color, so just forget it (REVISIT) */
.ui-widget .fc-scroller-canvas > .fc-content {
  border-color: transparent; }

.fc-scroller-canvas.fc-gutter-left > .fc-content {
  border-left-width: 1px;
  margin-left: -1px; }

.fc-scroller-canvas.fc-gutter-right > .fc-content {
  border-right-width: 1px;
  margin-right: -1px; }

.fc-scroller-canvas.fc-gutter-top > .fc-content {
  border-top-width: 1px;
  margin-top: -1px; }

/* content is responsible for bottom border */
/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-rtl .fc-timeline {
  direction: rtl; }

.fc-timeline .fc-divider {
  width: 3px;
  border-style: double;
  /* overcome neighboring borders */ }

.fc-timeline .fc-head > tr > .fc-divider {
  border-bottom: 0; }

.fc-timeline .fc-body > tr > .fc-divider {
  border-top: 0; }

.fc-timeline .fc-body .fc-divider.ui-widget-header {
  background-image: none; }

.fc-scrolled .fc-head .fc-scroller {
  z-index: 2;
  /* so drop shadow will go above body panes */ }

.fc-timeline.fc-scrolled .fc-head .fc-scroller {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.075); }

.fc-timeline .fc-body .fc-scroller {
  z-index: 1; }

/*
on most tables that expand to the edges, kill the outer border,
because the container elements take care of it.
example tables:
.fc-scroller-canvas .fc-content table
.fc-scroller-canvas .fc-bg .fc-slats table
*/
.fc-timeline .fc-scroller-canvas > div > table,
.fc-timeline .fc-scroller-canvas > div > div > table {
  border-style: hidden; }

/*
for resource rows (in both the spreadsheet and timeline areas),
undo previous rule in order to always show last border.
*/
.fc-timeline .fc-scroller-canvas > .fc-content > .fc-rows > table {
  border-bottom-style: none; }

/* Table Cell Common
--------------------------------------------------------------------------------------------------*/
.fc-timeline th,
.fc-timeline td {
  white-space: nowrap; }

.fc-timeline .fc-cell-content {
  overflow: hidden; }

.fc-timeline .fc-cell-text {
  padding-left: 4px;
  padding-right: 4px; }

.fc-timeline .fc-col-resizer {
  cursor: col-resize; }

/*
Cells at the start of a week
TODO: figure out better styling

.fc-ltr .fc-timeline .fc-em-cell div {
	border-left: 3px solid #eee;
	height: 100%;
}
.fc-rtl .fc-timeline .fc-em-cell {
	border-right-width: 3px;
}
*/
/* head */
.fc-timeline th {
  vertical-align: middle; }

.fc-timeline .fc-head .fc-cell-content {
  padding-top: 3px;
  padding-bottom: 3px; }

/* body */
.fc-timeline .fc-body .ui-widget-content {
  background-image: none; }

/* Resource Area
--------------------------------------------------------------------------------------------------*/
.fc-resource-area {
  width: 30%; }

.fc-resource-area col {
  width: 40%;
  min-width: 70px;
  /* will be read by JS */ }

.fc-resource-area col.fc-main-col {
  width: 60%;
  /* make the first column in a nested setup bigger */ }

.fc-flat .fc-expander-space {
  /* fc-flat is opposite of fc-nested */
  display: none; }

.fc-ltr .fc-resource-area tr > * {
  text-align: left; }

.fc-rtl .fc-resource-area tr > * {
  text-align: right; }

.fc-resource-area .fc-cell-content {
  padding-left: 4px;
  padding-right: 4px; }

/* head */
.fc-resource-area .fc-super th {
  text-align: center; }

.fc-resource-area th > div {
  position: relative; }

.fc-resource-area th .fc-cell-content {
  position: relative;
  z-index: 1; }

.fc-resource-area th .fc-col-resizer {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 5px; }

.fc-ltr .fc-resource-area th .fc-col-resizer {
  right: -3px; }

.fc-rtl .fc-resource-area th .fc-col-resizer {
  left: -3px; }

/* body */
tr.fc-collapsed > td,
tr.fc-transitioning > td {
  /* during the transition */
  overflow: hidden;
  /* prevents absolutely-positioned events from bleeding out */ }

tr.fc-transitioning > td > div {
  transition: margin-top 0.2s; }

tr.fc-collapsed > td > div {
  margin-top: -10px; }

.fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  position: relative;
  /* optimization for ScrollFollower */
  padding-top: 8px;
  padding-bottom: 8px; }

.fc-no-overlap .fc-body .fc-resource-area .fc-cell-content {
  /* might BE the cell */
  padding-top: 5px;
  padding-bottom: 5px; }

.fc-resource-area .fc-icon {
  /* the expander and spacers before the expander */
  width: 1em;
  /* ensure constant width, esp for empty icons */
  font-size: .9em;
  vertical-align: middle;
  margin-top: -1%; }

.fc-resource-area .fc-expander {
  cursor: pointer;
  color: #666;
  /* for the icon within */ }

/* Time Area
--------------------------------------------------------------------------------------------------*/
.fc-time-area col {
  min-width: 2.2em;
  /* detected by JS */ }

/* head */
.fc-ltr .fc-time-area .fc-chrono th {
  text-align: left; }

.fc-rtl .fc-time-area .fc-chrono th {
  text-align: right; }

/* body slats (vertical lines) */
.fc-time-area .fc-slats {
  /* fc-bg is responsible for a lot of this now! */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.fc-time-area .fc-slats table {
  height: 100%; }

.fc-time-area .fc-slats .fc-minor {
  border-style: dotted; }

.fc-time-area .fc-slats td {
  border-width: 0 1px;
  /* need to do this. sometimes -1 margin wouldn't hide the dotted */ }

.fc-ltr .fc-time-area .fc-slats td {
  border-right-width: 0; }

.fc-rtl .fc-time-area .fc-slats td {
  border-left-width: 0; }

/* body content containers
   can be within rows or directly within the pane's content
*/
.fc-time-area .fc-bgevent-container,
.fc-time-area .fc-highlight-container {
  position: absolute;
  z-index: 2;
  /* only for directly within pane. not for row. overridden later */
  top: 0;
  bottom: 0;
  width: 0; }

.fc-ltr .fc-time-area .fc-helper-container,
.fc-ltr .fc-time-area .fc-bgevent-container,
.fc-ltr .fc-time-area .fc-highlight-container {
  left: 0; }

.fc-rtl .fc-time-area .fc-helper-container,
.fc-rtl .fc-time-area .fc-bgevent-container,
.fc-rtl .fc-time-area .fc-highlight-container {
  right: 0; }

.fc-time-area .fc-bgevent,
.fc-time-area .fc-highlight {
  position: absolute;
  top: 0;
  bottom: 0; }

/* body resource rows */
.fc-time-area .fc-rows {
  position: relative;
  z-index: 3; }

.fc-time-area .fc-rows .ui-widget-content {
  background: none; }

.fc-time-area .fc-rows td > div {
  position: relative; }

.fc-time-area .fc-rows .fc-bgevent-container,
.fc-time-area .fc-rows .fc-highlight-container {
  z-index: 1; }

.fc-time-area .fc-event-container {
  position: relative;
  z-index: 2;
  /* above bgevent and highlight */
  width: 0;
  /* for event positioning. will end up on correct side based on dir */ }

.fc-time-area .fc-helper-container {
  /* also an fc-event-container */
  position: absolute;
  z-index: 3;
  top: 0; }

.fc-time-area .fc-event-container {
  padding-bottom: 8px;
  top: -1px; }

.fc-time-area tr:first-child .fc-event-container {
  top: 0; }

.fc-no-overlap .fc-time-area .fc-event-container {
  padding-bottom: 0;
  top: 0; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-timeline .fc-now-indicator {
  /* both the arrow and the line */
  z-index: 3;
  /* one above scroller's fc-content */
  top: 0; }

.fc-time-area .fc-now-indicator-arrow {
  margin: 0 -6px;
  /* 5, then one more to counteract scroller's negative margins */
  /* triangle pointing down... */
  border-width: 6px 5px 0 5px;
  border-left-color: transparent;
  border-right-color: transparent; }

.fc-time-area .fc-now-indicator-line {
  margin: 0 -1px;
  /* counteract scroller's negative margins */
  bottom: 0;
  border-left-width: 1px; }

/* Time Grid Events
--------------------------------------------------------------------------------------------------*/
.fc-timeline-event {
  position: absolute;
  border-radius: 0;
  padding: 2px 0;
  margin-bottom: 1px; }

.fc-no-overlap .fc-timeline-event {
  padding: 5px 0;
  margin-bottom: 0; }

/* don't overlap grid lines at the event's end */
.fc-ltr .fc-timeline-event {
  margin-right: 1px; }

.fc-rtl .fc-timeline-event {
  margin-left: 1px; }

.fc-timeline-event .fc-content {
  padding: 0 1px;
  white-space: nowrap;
  overflow: hidden; }

.fc-timeline-event .fc-time {
  font-weight: bold;
  padding: 0 1px; }

.fc-rtl .fc-timeline-event .fc-time {
  display: inline-block;
  /* will force it on the other side */ }

.fc-timeline-event .fc-title {
  position: relative;
  /* optimization for ScrollFollower */
  padding: 0 1px; }

.fc-timeline-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */ }

/* follower logic */
.fc-ltr .fc-timeline-event .fc-title {
  padding-left: 10px;
  margin-left: -8px; }

.fc-rtl .fc-timeline-event .fc-title {
  padding-right: 10px;
  margin-right: -8px; }

.fc-ltr .fc-timeline-event.fc-not-start .fc-title {
  margin-left: -2px; }

.fc-rtl .fc-timeline-event.fc-not-start .fc-title {
  margin-right: -2px; }

.fc-timeline-event.fc-not-start .fc-title,
.fc-body .fc-time-area .fc-following {
  position: relative; }

.fc-timeline-event.fc-not-start .fc-title:before,
.fc-body .fc-time-area .fc-following:before {
  /* generic arrow */
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  border: 5px solid #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: .5; }

.fc-ltr .fc-timeline-event.fc-not-start .fc-title:before,
.fc-ltr .fc-body .fc-time-area .fc-following:before {
  /* LTR. left pointing arrow */
  border-left: 0;
  left: 2px; }

.fc-rtl .fc-timeline-event.fc-not-start .fc-title:before,
.fc-rtl .fc-body .fc-time-area .fc-following:before {
  /* RTL. right pointing arrow */
  border-right: 0;
  right: 2px; }

/* License Message
--------------------------------------------------------------------------------------------------*/
.fc-license-message {
  position: absolute;
  z-index: 99999;
  bottom: 1px;
  left: 1px;
  background: #eee;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px 1px 0 0;
  padding: 2px 4px;
  font-size: 12px;
  border-top-right-radius: 3px; }
body {
    padding-top: 0px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
#InstFull {
    display: none;
    visibility: hidden
}
#menu-toggle-2 .glyphicon {
    color: whitesmoke;
}
.fc-now-indicator {
    border: 0 solid transparent;
}
.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
    height: 5px;
    width: 5px;
    background-color: red;
    border: none;
}
.fixed-c-header {
    position: fixed;
    top: 55px; /*distance from top*/
    background-color: #fff;
    margin-right: 15px;
    z-index: 99;
}
.btn-success {
    border-radius: 20px
}
.btn-warning {
    border-radius: 20px
}
.btn-danger {
    border-radius: 20px
}
.btn-info {
    border-radius: 20px
}
.btn-default {
    border-radius: 20px
}
.btn-light {
    font-size: 12px;
    background-color: transparent;
}
.btn-light:hover {
    color: purple;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer
}
.simplo-alert {
    display: none;
    text-align: center;
    margin-top: 15px;
    width: 100%;
    max-width: 280px;
    position: fixed;
    top: 40px;
    right: 0px;
    z-index: 9999;
    height: 165px;
    background-color: #ff5252;
    color: white;
}
.simplo-alert row {
    padding: 10px;
}
ul .btn-default {
    border-radius: 0px
}
.modal .btn-default {
    border-radius: 20px
}
.btn-outline {
    border-radius: 20px
}
.btn-outline-secondary {
    border-radius: 20px
}
.modal .btn-outline-secondary {
    border-radius: 0px!important
}
.minh350 {
    min-height: 350px;
}

.modal-footer {
    border-top: none;
    padding-top: 1px;
}

.nav-imitacja {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 200px;
    top: 10px;
}
.error-desc {
    background-color: lightgrey;
    padding: 10px;
}
.Hhidden {
    display: none;
}
.modal-body {
    padding-top: 10px;
    padding-bottom: 10px;
}

.store {
    width: 100%;
}

    .store li {
        display: inline-block;
        width: 40%
    }

    .store img {
        display: inline-block;
        width: 100%;
    }

.pojazdZajetyEdit {
    display: block;
    font-size: 9px;
    background-color: #f7f7f7;
    color: red !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: red;
}
/*ZAJETY POAJZD*/
.pojazdZajety {
    display: inline-block;
    font-size: 10px;
    background-color: #f7f7f7;
    color: #ccc;
}
/*niepokazuj trujkata jak wolny*/
.pojazdWarning {
    visibility: hidden;
    display: none;
}
/* dodaj class Zajety i go pokaz z pojazdem*/
.pojazdZajety .pojazdWarning {
    width: 20px;
    padding-right: 8px;
    display: inline-block;
    font-size: 14px;
    color: red !important;
    visibility: visible;
}

/*ZAJETY POAJZD Full List*/
.pojazdZajetyFull {
    display: inline-block;
    font-size: 10px;
    background-color: #f7f7f7;
    color: #ccc;
}
/* dodaj class Zajety i go pokaz z pojazdem*/
.pojazdZajetyFull .pojazdWarning {
    width: 20px;
    padding-right: 8px;
    display: inline-block;
    font-size: 14px;
    color: red !important;
    visibility: visible;
}

/*Nowa lista Pojazdów*/
.superselect ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .superselect ul li {
        padding: 5px 10px;
        z-index: 2;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently */
    }

.superselect li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselect li:last-child {
    border-bottom: 1px solid #ccc
}


.superselect ul li:not(.init) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

    .superselect ul li:not(.init):hover, ul li.selected:not(.init) {
        background: #ddd;
        cursor: pointer
    }

.superselect li.init {
    cursor: pointer;
    list-style: none;
}

/*  pojazdy Za czyli dla kursanta */
.superselectZa ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .superselectZa ul li {
        padding: 5px 10px;
        z-index: 2;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently */
    }

.superselectZa li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectZa li:last-child {
    border-bottom: 1px solid #ccc
}


.superselectZa ul li:not(.initZa) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

    .superselectZa ul li:not(.initZa):hover, ul li.selected:not(.initZa) {
        background: #ddd;
        cursor: pointer
    }

.superselectZa li.initZa {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy R - czyli poza */
.superselectR ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.superselectR ul li {
    padding: 5px 10px;
    z-index: 2;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}
.superselectR li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}
.superselectR li:last-child {
    border-bottom: 1px solid #ccc
}
.superselectR ul li:not(.initR) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}
.superselectR ul li:not(.initR):hover, ul li.selected:not(.initR) {
    background: #ddd;
    cursor: pointer
}
.superselectR li.initR {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy Poza - czyli poza */
.superselectPoza ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.superselectPoza ul li {
    padding: 5px 10px;
    z-index: 2;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.superselectPoza li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectPoza li:last-child {
    border-bottom: 1px solid #ccc
}

.superselectPoza ul li:not(.initPoza) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

.superselectPoza ul li:not(.initPoza):hover, ul li.selected:not(.initPoza) {
    background: #ddd;
    cursor: pointer
}

.superselectPoza li.initPoza {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy Full - czyli Full */
.superselectFull ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.superselectFull ul li {
    padding: 5px 10px;
    z-index: 2;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.superselectFull li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectFull li:last-child {
    border-bottom: 1px solid #ccc
}

.superselectFull ul li:not(.initFull) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

.superselectFull ul li:not(.initFull):hover, ul li.selected:not(.initFull) {
    background: #ddd;
    cursor: pointer
}

.superselectFull li.initFull {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy Multi - czyli wiele */
.superselectMulti ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.superselectMulti ul li {
    padding: 5px 10px;
    z-index: 2;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.superselectMulti li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectMulti li:last-child {
    border-bottom: 1px solid #ccc
}

.superselectMulti ul li:not(.initMulti) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

.superselectMulti ul li:not(.initMulti):hover, ul li.selected:not(.initMulti) {
    background: #ddd;
    cursor: pointer
}

.superselectMulti li.initMulti {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy x2 - czyli 
    
    */
.superselectx2 ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
    .superselectx2 ul li {
        padding: 5px 10px;
        z-index: 2;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently */
    }

.superselectx2 li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectx2 li:last-child {
    border-bottom: 1px solid #ccc
}


.superselectx2 ul li:not(.initx2) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

    .superselectx2 ul li:not(.initx2):hover, ul li.selected:not(.initx2) {
        background: #ddd;
        cursor: pointer
    }

.superselectx2 li.initx2 {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy x2 - czyli podwojne Wolne */
.superselectx2W ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .superselectx2W ul li {
        padding: 5px 10px;
        z-index: 2;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently */
    }

.superselectx2W li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectx2W li:last-child {
    border-bottom: 1px solid #ccc
}


.superselectx2W ul li:not(.initx2W) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

    .superselectx2W ul li:not(.initx2W):hover, ul li.selected:not(.initx2W) {
        background: #ddd;
        cursor: pointer
    }

.superselectx2W li.initx2 {
    cursor: pointer;
    list-style: none;
}
/*  pojazdy EDIT czyli edytuj */
.superselectEDIT ul {
    height: 40px;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 43px;
    padding: 8px 0px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .superselectEDIT ul li {
        padding: 5px 10px;
        z-index: 2;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently */
    }

.superselectEDIT li:first-child {
    padding-left: 15px;
    border-left: 0;
    border-right: 0;
}

.superselectEDIT li:last-child {
    border-bottom: 1px solid #ccc
}


.superselectEDIT ul li:not(.initEDIT) {
    position: relative;
    width: 100%;
    display: none;
    background: #fff;
    list-style: none;
    z-index: 99;
}

.superselectEDIT ul li:not(.initEDIT):hover, ul li.selected:not(.initEDIT) {
    background: #ddd;
    cursor: pointer
}

.superselectEDIT li.initEDIT {
    cursor: pointer;
    list-style: none;
}
.instr-list li {
    min-height: 40px;
    float: left;
}
    .instr-list li:nth-child(4) {
        clear: left;
    }
/* ------------------------------------- vehicle icon select ------------------------------- */
.ikonki ul {
    list-style-type: none;
    padding: 0;
}

.ikonki li {
    display: inline-block;
}

.ikonki input[type="checkbox"] {
    display: none;
}

.ikonki label {
    max-width: 42px;
    max-height: 42px;
    border: 1px solid #fff;
    padding: 3px;
    display: block;
    position: relative;
    margin: 1px;
    cursor: pointer;
    background-color: #000;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ikonki label::before {
    max-width: 38px;
    max-height: 38px;
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.ikonki label img {
    height: 34px;
    width: 34px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}
.filter_ikon {
    max-width: 22px;
    max-height: 22px;
    border: 1px solid red;
    padding: 10px;
    display: block;
    position: relative;
    top: 5px;
    margin: 1px;
    cursor: pointer;
    background-color: #000;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter_ikon img {
    height: 16px;
    width: 16px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.filter_ikon .icon-car {
    height: 16px;
    width: 16px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.vfilter {
    margin: 5px;
    padding: 5px;
    width: 100%;
    background-color: whitesmoke
}
.vfilter label {
    font-weight: normal;
}
.vfilter ul:hover {
    background-color: white
}
:checked + label {
    border-color: red;
}

    :checked + label::before {
        content: "✓";
        background-color: red;
        transform: scale(1);
    }

    :checked + label img {
        transform: scale(0.9);
        box-shadow: 0 0 5px #333;
        z-index: -1;
    }
/*--vehicle icon select--*/
.vikonki svg {
    width: 30px;
    height: 30px;
    background-color: black;
    fill: #fff;
    padding: 7px;
}
/*--vehicle icon select--*/
.vikonkiimg img {
    width: 30px;
    height: 30px;
    background-color: black;
    fill: #fff;
    padding: 5px;
}
/*  FILTER DROPDOWN  */
#school_selector {
    position: relative;
    background-color: #deac02;
    color: white;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 10px;
    padding-bottom: 14px;
    width: 100%;
    border: none;
    font-size: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    outline: none;
    font-size: 12px;
    margin-bottom: 10.5px;
    z-index: 99;
}
.selectBox {
    position: relative;
}

    .selectBox select {
        width: 100%;
        background-color: #deac02;
        border: none;
    }

#mySelectLabel {
    color: #000;
    font-weight: 600;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.multiselect {
    width: 100%;
    min-width: 190px;
}

    .multiselect:hover {
        cursor: pointer;
    }

#mySelectOptions {
    position: absolute;
    left: 0;
    display: none;
    background-color: #deac02;
    overflow-y: visible;
    padding: 10px;
}

    #mySelectOptions label {
        display: block;
        font-weight: normal;
        display: block;
        white-space: nowrap;
        padding-bottom: 5px;
        font-weight: 600;
        /* padding: .375rem 2.25rem .375rem .75rem; */
    }

        #mySelectOptions label:hover {
            cursor: pointer;
            background-color: #aa8d00;
        }

.form-group {
    margin-bottom: 10px;
}
.form-control {
    height: 40px;
    font-size: 14px;
}
label {
    margin-bottom: 2px;
}
/*  FILTER DROPDOWN  */
.dropdown-instruktor-list {
    position: absolute;
    display: inline-block;
}

    .dropdown-instruktor-list .anchor {
        position: relative;
        cursor: pointer;
        display: inline-block;
        padding: 0px 60px 0px 12px;
    }

        .dropdown-instruktor-list .anchor:after {
            position: absolute;
            content: "";
            border-left: 2px solid black;
            border-top: 2px solid black;
            padding: 5px;
            right: 10px;
            top: 20%;
            -moz-transform: rotate(-135deg);
            -ms-transform: rotate(-135deg);
            -o-transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
        }

        .dropdown-instruktor-list .anchor:active:after {
            top: 21%;
        }

    .dropdown-instruktor-list ul.items {
        display: none;
        margin: 0;
        border-top: none;
    }

        .dropdown-instruktor-list ul.items li {
            list-style: none;
        }

    .dropdown-instruktor-list.visible .anchor {
        color: #00ffff;
    }

    .dropdown-instruktor-list.visible .items {
        position: absolute;
        display: block;
        width: 98%;
        background-color: #deac02;
        cursor: pointer;
        z-index: 99;
    }
/* ------------------------------------- Podwojne Lekcje x2 ------------------------------- */
zeroH {
    height: 0;
    overflow: hidden;
}

.turnoff {
    position: relative;
    width: 100%;
    margin-top: 26px;
    text-align: right
}

.podwojnex2 {
    width: 12px;
    height: 12px;
    padding: 1px 4px;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 600;
    color: #000;
    background-color: #81B8F3;
}

#dtp1MID222, #dtp2MID222, #dtp1MID222W, #dtp2MID222W {
    display: block
}

    #dtp1MID222 input, #dtp2MID222 input, #dtp1MID222W input, #dtp2MID222W input {
        font-size: 12px
    }

.theX2class {
    border-bottom: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    padding: 1px;
    background-color: #999;
}

.x2border_undefined {
    border-right: 3px solid #09f !important;
    border-left: 3px solid #09f !important;
}

.x2border_transparent {
    border-right: 3px solid #09f !important;
    border-left: 3px solid #09f !important;
}
/* All border Colours */
.x2border_red {
    border-right: 3px solid #FF0000 !important;
    border-left: 3px solid #FF0000 !important;
}

.x2border_blue {
    border-right: 3px solid #0000FF !important;
    border-left: 3px solid #0000FF !important;
}

.x2border_black {
    border-right: 3px solid black !important;
    border-left: 3px solid black !important;
}

.x2border_green {
    border-right: 3px solid green !important;
    border-left: 3px solid green !important;
}

.x2border_darkorange {
    border-right: 3px solid darkorange !important;
    border-left: 3px solid darkorange !important;
}

.x2border_hotpink {
    border-right: 3px solid hotpink !important;
    border-left: 3px solid hotpink !important;
}

.x2border_limegreen {
    border-right: 3px solid limegreen !important;
    border-left: 3px solid limegreen !important;
}

.x2border_slategrey {
    border-right: 3px solid slategrey !important;
    border-left: 3px solid slategrey !important;
}

.x2border_darkgoldenrod {
    border-right: 3px solid darkgoldenrod !important;
    border-left: 3px solid darkgoldenrod !important;
}

.x2border_darkcyan {
    border-right: 3px solid darkcyan !important;
    border-left: 3px solid darkcyan !important;
}

.x2border_darkblue {
    border-right: 3px solid darkblue !important;
    border-left: 3px solid darkblue !important;
}

.x2border_dodgerblue {
    border-right: 3px solid dodgerblue !important;
    border-left: 3px solid dodgerblue !important;
}

.x2border_darkmagenta {
    border-right: 3px solid darkmagenta !important;
    border-left: 3px solid darkmagenta !important;
}

.x2border_saddlebrown {
    border-right: 3px solid saddlebrown !important;
    border-left: 3px solid saddlebrown !important;
}

.x2border_darkolivegreen {
    border-right: 3px solid darkolivegreen !important;
    border-left: 3px solid darkolivegreen !important;
}

.x2border_mediumaquamarine {
    border-right: 3px solid mediumaquamarine !important;
    border-left: 3px solid mediumaquamarine !important;
}

.fc-title {
    text-decoration: none;
}

.fc-body a {
    text-decoration: none !important;
}

.btn-outline-success {
    border-color: #008aff;
    color: #008aff;
    background-color: white;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px
}


    .btn-outline-success:hover {
        background-color: #008aff;
        color: white;
    }

#dtp1MID, #dtp2MID {
    height: 0 !important;
    display: block;
    width: 100% !important;
}

.uczen-left .pickerlabel1 {
    width: 100%;
    text-align: center !important
}

.uczen-right .pickerlabel2 {
    width: 100%;
    text-align: center !important
}

.Endx2 label {
    width: 100%;
    border: 1px solid #0099ff;
    text-align: right;
    padding-right: 5px
}

.Startx2 label {
    width: 100%;
    border: 1px solid #0099ff;
    text-align: left;
    padding-left: 5px
}

.przerwa {
    background-color: #4b4bfc;
    font-weight: 600;
    padding: 3px;
    width: 40%;
    margin: 0 auto;
    color: #fff;
}

.intrologo {
    width: 60px;
    height: 60px;
}
.action-btns {
    display: block;
    min-width: 130px;
}
    .action-btns a {
        margin-left: 10px;
    }
.circle-btn-edit {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 1px 1px 0 2px;
    font-size: 12px;
    color: #333333;
    background: rgba(51, 170, 51, .4) /*  10% opaque green */
}
.circle-btn-details {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 1px 1px 0 1px;
    font-size: 12px;
    color: #333333;
    background: rgba(0, 77, 216, .3) /*  10% opaque blue */
}
.circle-btn-delate {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 1px 1px 0 0;
    font-size: 12px;
    color: #333333;
    background: rgb(234, 0, 0, .3)/*  10% opaque red */
}

/* x2 */
/* ------------------------------------- Highlight when Dragged ------------------------------- */
.fc-highlight {
    background: #999;
}
/* ------------------------------------- Intro JS ------------------------------- */
.intro_st1 {
    position: absolute;
    top: 116px;
    height: 90px;
    width: 98.5%;
}
.saveFormShowtxtX2 {
    display: block;
    visibility: visible;
}
.fc-title {
    text-decoration: none;
}

.fc-body a {
    text-decoration: none !important;
}
/* BTN wolna */
.btn-wolna {
    color: #ffffff;
    background-color: #76abc6;
    border-color: #76abc6;
    border-radius: 20px
}

    .btn-wolna:focus,
    .btn-wolna.focus {
        color: #ffffff;
        background-color: #0785a8;
        border-color: #1b404a;
    }

    .btn-wolna:hover {
        color: #ffffff;
        background-color: #0785a8;
        border-color: #1b404a;
    }

    .btn-wolna:active,
    .btn-wolna.active,
    .open > .dropdown-toggle.btn-wolna {
        color: #ffffff;
        background-color: #e45c00;
        border-color: #1b404a;
    }

        .btn-wolna:active:hover,
        .btn-wolna.active:hover,
        .open > .dropdown-toggle.btn-wolna:hover,
        .btn-wolna:active:focus,
        .btn-wolna.active:focus,
        .open > .dropdown-toggle.btn-warning:focus,
        .btn-wolna:active.focus,
        .btn-wolna.active.focus,
        .open > .dropdown-toggle.btn-wolna.focus {
            color: #ffffff;
            background-color: #1b404a;
            border-color: #1b404a;
        }

    .btn-wolna:active,
    .btn-wolna.active,
    .open > .dropdown-toggle.btn-wolna {
        background-image: none;
    }

    .btn-wolna.disabled:hover,
    .btn-wolna[disabled]:hover,
    fieldset[disabled] .btn-wolna:hover,
    .btn-wolna.disabled:focus,
    .btn-wolna[disabled]:focus,
    fieldset[disabled] .btn-wolna:focus,
    .btn-wolna.disabled.focus,
    .btn-wolna[disabled].focus,
    fieldset[disabled] .btn-wolna.focus {
        background-color: #76abc6;
        border-color: #1b404a;
    }

    .btn-wolna .badge {
        color: #76abc6;
        background-color: #ffffff;
    }
/* x2 */
#txtEndMH, #txtStartMH {
    display: inline-block;
    float: left;
}

.x2time {
    display: none;
    visibility: hidden
}
.x2Start {
    font-size: 9px;
    font-weight: 700;
}
.smnumber {
    font-size: 7px;
}
.timeclass {
    font-size: 10px;
}
.fc-time {
    min-height: 10px;
}

.kimentindicator {
    width: 12px;
    height: 12px;
    padding: 1px 4px;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 600;
    color: #000;
    background-color: orange;
}

.pojazdindicator {
    width: 12px;
    height: 12px;
    padding: 1px 2px;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 600;
    color: #000;
    background-color: #fff;
}


.miwo-viewport element.style {
    height: 35px;
    width: auto;
    display: block;
    min-width: 50px !important;
}

.dl-horizontal dt {
    white-space: normal;
}

.hideEvent {
    display: none !important;
    visibility: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.datareg {
    position: relative;
    top: -50px;
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 0px;
    border-radius: 5px;
}

    .datareg .card .donut-chart {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }

    .datareg .card {
        width: 17%;
        text-align: center;
    }

.datareg2 {
    position: relative;
    top: 10px;
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
}

.background-kk {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    min-height: 100%;
    background: #ff512f;
    background: -moz-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: -webkit-gradient(left top,right top,color-stop(0,#ff512f),color-stop(100%,#dd2476));
    background: -webkit-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: -o-linear-gradient(left,#ff512f 0,#dd2476 100%);
    background: linear-gradient(to right,#ff512f 0,#dd2476 100%);
    color: #fff;
}
.background-kk-grey {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    min-height: 100%;
    background: #d3d3d3;
    padding: 10px
}

.background-kk-detale {
    width: calc(100% + 30px) !important;
    display: block;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    min-height: 100%;
    background: #ebebeb;
    box-shadow: 0 4px 16px -2px gray;
}
.background-kk-actions {
    display: block;
    overflow: hidden;
    padding-top: 10px;
    margin-top: 0;
    width: 100%;
    min-height: 100%;
}
.background-kk-wrong {
    width: calc(100% + 30px) !important;
    display: block;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    min-height: 100%;
    background: #000;
    box-shadow: 0 4px 16px -2px gray;
}

.background-kk-img {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    background-image: url(../img/aplikacja-szkol-jazdy.png);
    background-size: cover;
}

.gettime {
    border-bottom: 2px solid #e53aff;
}

.card-font {
    font-size: 13px;
}

.normalf {
    font-weight: normal !important;
    border-bottom: 0px !important;
}

.col-h100 {
    display: block;
    min-height: 100%;
    height: 82vh;
}

.legenda {
    position: relative;
    display: block;
    left: 0;
}

a:active, a:focus {
    outline: 0;
    border: none;
}

.icon-car {
    margin-left: 9px;
    right: 0;
    width: 13px;
    height: 13px;
    fill: #fff;
}
.icon-car-list {
    margin-top: 2px;
    right: 0;
    width: 13px;
    height: 13px;
    fill: #333;
}
.icon-car-list:hover {
    fill: #FFF;
}
.icon-car-profil {
    right: 0;
    width: 13px;
    height: 13px;
    fill: #000;
}

.menu-icon span {
    color: #fff;
}

    .menu-icon span:hover {
        text-shadow: 0px 0px 10px red;
    }

    .menu-icon span:active {
        text-shadow: 0px 0px 10px red;
    }

.menu-icon, .menu-icon-red, .menu-icon-yellow {
    margin-left: 0 !important;
}

    .menu-icon-red span {
        color: red;
    }

    .menu-icon-yellow span {
        color: #ffa500;
    }

        .menu-icon-yellow span:hover {
            cursor: pointer;
        }
/* ------------------------------------- Hide TYLKO WOLNE IMPORTANT ------------------------------- */
.hide {
    display: none !important;
    visibility: hidden !important;
}
/* ------------------------------------- Reset MessagesG ------------------------------- */
.message-success {
    padding: 0 5px;
    font-size: 13px;
    line-height: 28px;
    background-color: whitesmoke;
    color: green;
    -moz-box-shadow: 3px 5px 13px #ccc;
    -webkit-box-shadow: 3px 13px 6px #ccc;
    box-shadow: 3px 5px 13px #ccc;
}

.message-error {
    padding: 0 5px;
    font-size: 13px;
    line-height: 28px;
    background-color: whitesmoke;
    color: red;
    -moz-box-shadow: 3px 5px 13px #ccc;
    -webkit-box-shadow: 3px 13px 6px #ccc;
    box-shadow: 3px 5px 13px #ccc;
}
.message-error-login {
    max-width: 60%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 28px;
    background-color: whitesmoke;
    color: red;
    -moz-box-shadow: 3px 5px 13px #ccc;
    -webkit-box-shadow: 3px 13px 6px #ccc;
    box-shadow: 3px 5px 13px #ccc;
}
/* ------------------------------------- FC Chat MSG ------------------------------- */
.simplo-chat-widget {
    padding-left: 79px;
    bottom: 5px;
    right: 5px
}

.simplo-chat-widget_rest {
    padding-left: 110px;
    bottom: 1px;
    right: 1px;
}

.simplo-chat-widget_rest_2 {
    padding-left: 150px;
    bottom: 1px;
    right: 1px;
}
/* ------------------------------------- Success MSG ------------------------------- */
.selectorR .input-group {
    display: block !important;
}

.limits {
    padding-left: 5px;
}

.superlimit {
    font-size: 9px;
    color: #999;
    font-weight: 400;
}

.lidetale li {
    line-height: 50px;
}

.help-center {
    position: relative;
    top: calc(50% - 10px); /* 50% - 3/4 of icon height */
    background-color: red;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.setting-icon-1 {
    padding-top: 10px;
    font-size: 40px;
    color: red;
}
/* Layout in 3 */
.col-container3 {
    display: block;
    width: 100%;
}

.col3a {
    display: inline-block;
    padding: 16px;
    width: 33%;
}

.col3b {
    display: inline-block;
    padding: 16px;
    width: 33%;
}

.col3c {
    display: inline-block;
    padding: 16px;
    width: 33%;
}

.profile-cardS {
    display: flex;
    flex-direction: row;
    background: #eceff1;
    border-radius: 16px;
    padding: 20px 20px;
}

.image-containerS {
    width: 60px;
    text-align: center;
}

    .image-containerS span {
        width: 60px;
        font-size: 26px;
        padding: 10px;
        color: #e22a6c;
    }

.text-containerS {
    width: 100%;
    margin-left: 20px;
}

    .text-containerS h1 {
        font-size: 17px;
        font-weight: bold;
        margin: 0;
        padding-top: 8px;
        padding-bottom: 8px;
        color: #263238;
    }

    .text-containerS h3 {
        margin: 0;
        font-size: 14px;
        color: #263238;
    }

.card-rep {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    overflow: hidden;
    border-radius: 16px;
}
/* Layout in 3 */
#c1 {
    float: left;
    width: 10%;
}

#c2 {
    float: left;
    width: 40%;
}

#c3 {
    float: left;
    width: 20%;
}

#c4 {
    width: auto;
}

.hyperlink-green {
    font-weight: 800;
    font-size: 14px;
    color: #1ab400;
}

    .hyperlink-green:hover {
        color: black;
        cursor: pointer;
    }
/* ------------------------------------- Logo ------------------------------- */
.left-half-szkola {
    display: block;
    float: left;
    width: 20%;
    min-width: 70px;
    max-width: 130px;
    max-height: 150px;
}

.right-half-szkola {
    display: block;
    float: left;
    width: 80%;
    max-height: 150px;
}

.ustlogo {
    width: 100%;
}

.sweet-warning {
    background-color: #ff5454;
}

    .sweet-warning:hover {
        background-color: #000 !important;
    }

.ustlogo img {
    display: block;
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin: 0 auto;
}

.osk-logo {
    width: 100%;
    padding: 8px;
}

    .osk-logo img {
        width: 100%;
        min-height: 65px;
        min-width: 65px;
        padding: 8px;
        border-radius: 13%;
        -moz-box-shadow: 3px 5px 13px #ccc;
        -webkit-box-shadow: 3px 13px 6px #ccc;
        box-shadow: 3px 5px 13px #ccc;
    }

.osk-logo-reg {
    padding: 8px;
}
.indexno {
    font-size: 10px
}
    .osk-logo-reg img {
        height: 85px;
        width: 85px;
        min-height: 30px;
        min-width: 30px;
        padding: 8px;
        border-radius: 13%;
        -moz-box-shadow: 3px 5px 13px #ccc;
        -webkit-box-shadow: 3px 13px 6px #ccc;
        box-shadow: 3px 5px 13px #ccc;
    }

.modikonka span {
    font-size: 35px;
}
/* Screen home page */
.left-half-hLL {
    float: left;
    width: 70%;
}

.right-half-hLL {
    display: block;
    min-height: 200px;
    float: left;
    width: 30%;
}

    .right-half-hLL ul {
        margin-top: 40px;
        text-align: right;
    }

/* ------------------------------------- Callendar CSS ------------------------------- */
.swap-list {
    width: 100px;
    height: 13px
}

    .swap-list:hover {
        color: black;
        cursor: pointer;
    }

.fc-resource-cell {
    font-size: 13px;
}

.fc-agendaWeek-view tr {
    height: 40px;
}

.fc-agendaDay-view tr {
    height: 40px;
}

.fc-dailytotal {
    width: 20px;
    margin: 0 auto;
    font-size: 9px;
    color: #0bbe00;
}

.fc-day-header span {
    width: 100%;
    font-size: 11px;
}

.event-count {
    position: absolute;
    top: 20px;
    left: 2px;
    padding: 4px;
    font-size: 8px;
    background-color: #0bbe00;
    width: 32px;
    height: 10px;
    margin: 0 auto;
}

.event-count-week {
    position: absolute;
    top: 30px;
    left: 4px;
    padding: 5px;
    font-size: 9px;
    background-color: #0bbe00;
    width: 28px;
    height: 12px;
    margin: 0 auto;
}

.event-count-per-week {
    position: absolute;
    top: 3px;
    left: 4px;
    padding: 3px;
    font-size: 9px;
    background-color: #0bbe00;
    width: 28px;
    height: 12px;
}

.fc-week-number {
    vertical-align: top !important;
    text-align: center !important;
}

    .fc-week-number span {
        font-size: 9px;
        height: 14px;
    }

.zfunkcja {
    text-align: right;
    padding-top: 4px;
    width: auto;
}

.funkcja {
    padding: 10px;
    width: auto;
}

    .funkcja b {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

    .funkcja span {
        font-weight: 600;
        font-size: 16px;
    }

#box-action {
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

    #box-action span {
        font-size: 14px;
    }
.pvw-title span {
    display: none;
}

.pvw-title:after {
    content: 'Rozwiń';
}
.event-count-all {
    position: absolute;
    top: -10px;
    right: 5px;
    padding: 5px;
    font-size: 10px;
    background-color: orange;
    border-radius: 50%;
}

.count-limit {
    padding: 10px;
    background: #1ab400;
    border: 0px solid #666;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.count-karner {
    padding: 10px;
    background: #FFA500;
    border: 0px solid #666;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.messdesc {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
/* ------------------------------------- Colours ------------------------------- */
.kk-green {
    color: #1ab400;
}

.kk-standard {
    color: #333333;
}

.kk-red {
    color: #ff0000;
}

.kk-redless {
    color: #f29e9e;
}

.kk-orange {
    color: #ef9a00 !important;
}

.kk-black {
    color: #000000 !important;
}

    .kk-black a {
        color: #333 !important;
    }

.kk-menu {
    color: #ff0000;
}

.kk-white {
    color: #fff;
}

.kk-purp {
    color: #e53aff;
}

.kk-yellow {
    color: #008aff;
}

.kk-yellow2 {
    color: #ffa500;
}

.kk-blue {
    color: #4b4bfc;
}

.kk-puste {
    color: #73a8c3;
}

.kk-grey {
    color: #dbdbdb;
}

.kk-grey2 {
    color: #9f9f9f;
}

.kk-n-green {
    color: green;
}
.kk-n-red {
    color: red;
}
.kk-n-blue {
    color: blue;
}
.kk-n-black {
    color: black;
}
.kk-n-darkorange {
    color: darkorange;
}
.kk-n-hotpink {
    color: hotpink;
}
.kk-n-limegreen {
    color: limegreen;
}
.kk-n-slategrey {
    color: slategray;
}
.kk-n-darkgoldenrod {
    color: darkgoldenrod;
}
.kk-n-darkcyan {
    color: darkcyan;
}
.kk-n-darkblue {
    color: darkblue;
}
.kk-n-dodgerblue {
    color: dodgerblue;
}
.kk-n-darkmagenta {
    color: darkmagenta;
}
.kk-n-saddlebrown {
    color: saddlebrown;
}
.kk-n-darkolivegreen {
    color: darkolivegreen;
}
.kk-n-mediumaquamarine {
    color: mediumaquamarine;
}
/* ------------------------------------- Register Grid ------------------------------- */
.Grid {
    width: 100%;
    border-collapse: collapse;
}

    .Grid th {
        background-color: #F7F7F7;
        font-weight: bold;
    }

    .Grid th, .Grid td {
        padding: 5px;
        width: auto;
    }

    .Grid td {
        border-bottom: 1px solid #dedede;
    }

    .Grid, .Grid table td {
        border: 1px solid #ccc;
    }

        .Grid th a, .Grid th a:visited {
            color: #333;
        }

        .Grid .label {
            color: #000;
        }

        .Grid input {
            color: #000;
            font-size: 13px;
            height: 30px;
            padding: 5px;
        }

        .Grid select {
            color: #000;
            font-size: 13px;
            height: 30px;
            padding: 5px;
        }

        .Grid .info {
            color: #161616;
        }

        .Grid .Edit {
            color: #000;
            text-decoration: none;
            background-color: #f5f5f5;
            padding: 5px;
            border: 1px solid #d1d1d1;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        }

        .Grid .Usun {
            color: #000;
            text-decoration: none;
            background-color: #f5f5f5;
            padding: 5px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
            margin-left: 10px;
            font-size: 11px;
            font-weight: 600;
        }

        .Grid .Update, .Cancel {
            color: #000;
            text-decoration: none;
            background-color: #f5f5f5;
            padding: 5px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
            margin-left: 10px;
            font-size: 11px;
            font-weight: 600;
        }

        .Grid .Cancel {
            color: #000;
            text-decoration: none;
            background-color: #f5f5f5;
            padding: 5px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 600;
            margin-left: 10px;
            font-size: 11px;
            font-weight: 600;
        }

.mobiletab a {
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 400;
}
/* Add INST */
.Grid th:nth-child(1) {
    display: none
}

.Grid td:nth-child(1) {
    display: none
}

.Grid td:nth-child(5) {
    display: none
}

.Grid th:nth-child(5) {
    display: none
}

.Grid th:nth-child(8) {
    display: none
}

.Grid td:nth-child(9) {
    background-color: #fbdbdb
}

.Grid th:nth-child(10) {
    display: none;
}

.Grid td:nth-child(10) {
    display: none
}

.Grid th:nth-child(12) {
    display: none;
}

.Grid td:nth-child(12) {
    display: none
}

.Grid th:nth-child(14) {
    display: none
}

.Grid td:nth-child(14) {
    display: none
}
.Grid th:nth-child(16) {
    display: none
}

.Grid td:nth-child(16) {
    display: none
}
.Grid th:nth-child(18) {
    display: none
}

.Grid td:nth-child(18) {
    display: none
}
/* ------------------------------------- Global Private Properties ------------------------------- */
/* Screen home page */
.left-half-profil {
    float: left;
    width: 49%;
    padding: 15px;
    min-height: 300px;
}

.center-profil {
    float: left;
    min-height: 300px;
    display: block;
    width: 2%;
    padding: 0 5px;
}

.right-half-profil {
    display: block;
    min-height: 300px;
    float: left;
    width: 49%;
    padding: 15px;
}
/* Screen home page PROFIL KURSANTA */
.left-half-profil-k {
    float: left;
    display: block;
    width: 44%;
    padding-right: 15px;
    min-height: 350px;
}

    .left-half-profil-k .back-szkola {
        padding: 15px;
        min-height: 350px;
    }

.center-profil-k {
    float: left;
    display: block;
    width: 12%;
    padding-right: 15px;
}

    .center-profil-k .back-szkola {
        padding: 15px;
        min-height: 350px;
        background-color: #ebebeb;
    }

.right-half-profil-k {
    display: block;
    min-height: 350px;
    float: left;
    width: 44%;
    padding: 15px;
}
.inst-list {
    background-color: red;
}
/* Screen home page */
.left-half-h {
    float: left;
    width: 40%;
}

.right-half-h {
    display: block;
    min-height: 200px;
    float: left;
    width: 60%;
}

    .right-half-h ul {
        margin-top: 40px;
        text-align: right;
    }


/* Screen Divide */
.left-half {
    float: left;
    width: 20%;
}

.right-half {
    float: left;
    width: 80%;
}
/* Screen Divide rejestracja */
.left-half-r {
    float: left;
    width: 40%;
}

.right-half-r {
    float: left;
    width: 60%;
}

.left-half-mes {
    float: left;
    width: 10%;
}

.right-half-mes {
    float: left;
    width: 90%;
}

.btns1, .btns2 {
    padding-top: 5px;
    width: 80%;
    display: inline-block
}

.btnsmain {
    text-align: right;
    padding-right: 10px;
}


/*  FILTER DROPDOWN Kursant */
#school_selectorCalK {
    background-color: #deac02;
    color: white;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 9px;
    padding-bottom: 10px;
    width: 100%;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    outline: none;
    font-size: 13px;
}
/*  Archiwum Styl */


.godziny {
    font-size: 14px;
    background-color: #cccccc;
    color: #717171;
    padding: 4px;
}

.godziny-puste {
    background-color: #75abc6;
    color: #fff;
    font-size: 16px;
    padding: 4px;
}

.godziny-wazne {
    background-color: #4ca64c;
    color: #fff;
    font-size: 22px;
    padding: 4px;
}

.godziny-czerwone {
    background-color: #ff4c4c;
    color: #fff;
    font-size: 22px;
    padding: 4px;
}

.godziny-niebieskie {
    background-color: #4c4cff;
    color: #fff;
    font-size: 22px;
    padding: 4px;
}

.godziny-czarne {
    background-color: #4c4c4c;
    color: #fff;
    font-size: 22px;
    padding: 4px;
}

.godziny-zbior {
    color: #000;
    font-size: 22px;
    padding: 4px;
    border: solid 1px #3038ca
}

/*  FILTER DROPDOWN Kursant */
.wlekcjeclass {
    text-align: right;
    padding-right: 5px;
}

.nodata {
    color: #999;
    font-size: 10px;
}

.normal {
    background-color: #fff;
}

#hidden_privacy {
    padding: 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    transition: height .8s ease
}

.progress2 {
    height: 8px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress2 {
    overflow: hidden;
    margin-bottom: 5px;
    background-color: #E9E9E9;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9E9E9;
}

.progress3 {
    width: 90%;
    height: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    margin-top: 5px;
    background-color: #E9E9E9;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar-simplo {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
    text-align: center;
    background-color: #686868;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.max300w {
    max-width: 600px !important;
}

.hideall {
    display: none;
    visibility: hidden !important;
}

.wyb-instr select {
    display: block;
    width: 100%;
    height: 43px;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
}

.no-edit {
    padding-top: 11px;
}

.detail-list {
    margin-top: 8px;
}

    .detail-list li {
        margin-top: 8px;
        justify-content: center;
    }

    .detail-list .lilicznik2 {
        margin-top: 14px;
    }
    .contact-list .lilicznik2 {
        margin-top: 14px;
    }

.liczba-lekcje-p {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.liczba-lekcje {
    font-size: 26px;
    color: #ff0000;
    font-weight: 700;
}

.liczba-lekcje-wyje {
    font-size: 26px;
    color: #e53aff;
    font-weight: 700;
}

.liczba-karnet {
    font-size: 26px;
    color: #FFA500;
    font-weight: 700;
}

.limit-lekcji {
    font-size: 26px;
    color: #1ab400;
    font-weight: 700;
}

.liczba-dni-MAIN {
    font-size: 26px;
    font-size: 3vh;
    font-weight: 600;
    color: #fff !important;
    text-shadow: 0 0 8px #FF0000;
}

.liczba-lekcje-wyj {
    font-size: 28px;
    color: #1ab400;
    font-weight: 700;
}

.hide-input {
    display: none !important;
    visibility: hidden !important;
}

.inst-pro-email {
    padding: 10px;
}
.mt-custom {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-140 {
    margin-top: 140px !important;
}

.mt-20 {
    margin-top: 20px !important;
}
.mt-14 {
    margin-top: 14px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mtv-2 {
    margin-top: 22px !important;
    margin-top: 2vh !important;
}

.mbv-2 {
    margin-bottom: 22px !important;
    margin-bottom: 2vh !important;
}

.pt-20 {
    padding-top: 20px;
}

.pt-70 {
    padding-top: 65px!important;
}

.pt-10 {
    padding-top: 10px;
}

.profile-center {
    position: relative;
    height: auto;
    width: 50%;
    margin: 0 auto;
}

.total-center {
    width: 50%;
    margin: 0 auto;
    word-wrap: break-word !important;
    text-align: center;
}
/* ------------------------------------- Profile Pages ------------------------------- */
/* Screen Divide login */
.newsearch {
    float:right;
}
.left-half-l {
    float: left;
    width: 40%;
    margin: 0 auto;
}

.right-half-l {
    float: left;
    width: 60%;
}

.login-all {
    position: relative;
    top: 45%;
    width: 100%;
    margin: 0 auto;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
.block_remember {
    position: relative;
    display: block;
}
.remember a {
    position: relative;
    display: block;
    font-size: 15px;
    color: white;
}

    .remember a:hover {
        font-size: 15px;
        color: lightgrey;
        text-decoration: none;
    }
    .remember a .glyphicon {
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s linear 300ms, opacity 300ms;
    }
    .remember a:hover .glyphicon {
        display: inline-block;
        visibility: visible;
        opacity: 1;
        transition: visibility 0s linear 0s, opacity 300ms;
    }


.login-info {
    position: relative;
    top: 45%;
    background-image: url(/img/aplikacja-szkol-jazdy.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}


.login-all .login {
    max-width: 100%
}

    .login-all .login input {
        max-width: 60%;
        margin: 0 auto;
    }

.text-login {
    position: relative;
    margin-top: 50px;
    font-size: 13px;
    line-height: 22px;
    width: 100%;
    padding: 0 10%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
}
/* Screen Divide Prifiles */
.service-list {
    margin-left: 0px;
    padding-left: 0px;
    display: inline-block;
}
    .service-list .image-container {
        float: left;
    }
    .service-list .image-container2 {
        float: left;
    }

    .service-list .image-container3 {
        float: left;
    }
    .service-list .image-container5 {
        float: left;
    }
    .service-list .image-container6 {
        float: left;
    }
    .service-list .image-container7 {
        float: left;
    }
    .service-list p, .tyt {
        margin: 0;
        text-align: right !important;
        display: inline-block;
        padding-left: 10px;
    }
    .timelist {
        list-style: none;
        padding: 0;
    }
        .timelist li {
            max-width: 320px;
            width: 100%;
            display: inline-block;
            margin-bottom: 30px;
        }
        .timelist .service-list {
            display: block;
            width: 100%;
        }


.left-half-p {
    position: relative;
    display: block;
    float: left;
    width: 40%;
    word-wrap: break-word;
}

.right-half-p {
    position: relative;
    display: block;
    float: left;
    width: 40%;
    word-wrap: break-word;
}
/* Screen Divide IN 3 */
.half-p-1 {
    height: 200px;
    float: left;
    width: 33%;
}

.half-p-2 {
    height: 200px;
    float: left;
    width: auto;
}

.half-p-3 {
    height: 200px;
    float: left;
    width: 33%;
}
/* Screen Divide Prifiles */
.profile-d-center {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

#d-center {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
    display: flex;
}

    .align-items-center li {
        padding-right: 7px;
    }

.pname {
    font-size: 19px;
    height: 50px;
    line-height: 50px;
    padding-bottom: 20px;
    font-weight: 800;
}

.psurname {
    font-size: 19px;
    height: 50px;
    padding-top: 5px;
}

/* ------------------------------------- Szkola style ------------------------------- */
.loadKursant {
    display: block;
    width: 100%;
    font-size: 11px;
    color: #8503c1;
    text-align: center;
}
/* ------------------------------------- Dostpnosc ------------------------------- */
.dostep {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.dostep a {
    font-weight: 700;
}
    .dostep a:hover {
        text-decoration: none
    }
    .dostep a:active {
        text-decoration: none
    }
    .dostep a:visited {
        text-decoration: none
    }
    .dostep a:focus {
        text-decoration: none
    }
.dostepLink {
    color: dodgerblue;
    font-weight: 600;
}
    .dostepLink:hover {
        text-decoration: none;
        cursor: pointer;
    }
.dostepBar {
    display: block;
    width: 100%;
    background-color: whitesmoke;
    border: 1px solid #ccc;
    padding-left: 17px;
    padding-right: 13px;
    min-height: 27px;
    line-height: 25px;
}
#myULDostep {
    padding: 5px 2px;
    margin-left: 1px;
    background-color: whitesmoke;
}
    #myULDostep .service-list {
        display: block;
        height: 16px;
    }
#myULDostep li {
    width: 48%;
    overflow: hidden;
    padding-bottom: 1px;
}
/* ------------------------------------- Dostpnosc ------------------------------- */
/* ------------------------------------- Dostpnoscx2 ------------------------------- */
.dostepLinkx2 {
    color: dodgerblue;
    font-weight: 600;
}

    .dostepLinkx2:hover {
        text-decoration: none;
        cursor: pointer;
    }

.dostepBarx2 {
    display: block;
    width: 100%;
    background-color: whitesmoke;
    border: 1px solid #ccc;
    padding-left: 17px;
    padding-right: 13px;
    min-height: 27px;
    line-height: 25px;
    cursor: pointer;
}

#myULDostepx2 {
    padding: 5px 2px;
    margin-left: 1px;
    background-color: whitesmoke;
}
#myULDostepx2 .service-list {
    display: block;
    height: 16px;
}

#myULDostepx2 li {
    width: 48%;
    overflow: hidden;
    padding-bottom: 1px;
}
/* ------------------------------------- Dostpnoscx2 END ------------------------------- */
/* ------------------------------------- Dostpnosc Full ------------------------------- */
.dostepLinkFull {
    color: dodgerblue;
    font-weight: 600;
}

    .dostepLinkFull:hover {
        text-decoration: none;
        cursor: pointer;
    }

.dostepBarFull {
    display: block;
    width: 100%;
    background-color: whitesmoke;
    border: 1px solid #ccc;
    padding-left: 17px;
    padding-right: 13px;
    min-height: 27px;
    line-height: 25px;
    cursor: pointer;
}

#myULDostepFull {
    padding: 5px 2px;
    margin-left: 1px;
    background-color: whitesmoke;
}

    #myULDostepFull .service-list {
        display: block;
        height: 16px;
    }

    #myULDostepFull li {
        width: 48%;
        overflow: hidden;
        padding-bottom: 1px;
    }
/* ------------------------------------- Dostpnosc Full END ------------------------------- */
.ile {
    position: absolute;
    left: 2px;
    text-indent: 4px;
    font-size: 12px;
    padding-left: 0px;
    padding-right: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 20%;
    background-color: red;
}
.ile-home {
    display: none;
    visibility: hidden;
}

.adduczen {
    z-index: 9;
}

.btnexpand {
    text-align: left;
}
.btnexpand2 {
    text-align: right;
}

#box {
    height: 525px;
    max-height: 50%;
    transition: max-height 0.88s ease-out;
    padding-left: 7px;
    overflow: hidden;
}
#box_szkola {
    height: auto;
    max-height: 50%;
    transition: max-height 0.88s ease-out;
    padding-left: 7px;
    overflow: hidden;
}
    #box.is-active {
        height: 100%;
        max-height: 100%;
    }

.superlist {
    position: absolute;
    right: -15px;
    padding-top: 5px;
    z-index: 99;
}

    .superlist li {
        padding-top: 5px;
    }

.std-red-super {
    position: absolute;
    color: #ffffff;
    font-size: 13px;
    background: #ff0000;
    padding: 10px 7px 10px 7px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px;
    border-radius: 50%;
}

    .std-red-super:visited {
        color: #ffffff;
        border: none;
    }

.cta {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid red;
    background-color: red;
    color: #fff;
    transition: width 0.7s;
}

    .cta:hover {
        width: 100px;
        transition: width 0.7s;
    }

    .cta .iconic {
        opacity: 1;
        top: -3px;
        left: -8px;
        font-size: 11px;
        transition: opacity 0.5s
    }

    .cta:hover .iconic {
        opacity: 0;
        transition: opacity 0.5s
    }

.iconic svg {
    position: relative;
    margin-left: -8px;
    width: 15px;
    height: 15px;
    fill: #fff;
}

.cta .iconic2 {
    opacity: 1;
    top: -3px;
    left: -5px;
    font-size: 12px;
    font-weight: 400;
    transition: opacity 0.5s
}

.cta:hover .iconic2 {
    opacity: 0;
    transition: opacity 0.5s
}

.cta .exp {
    opacity: 0;
    transition: opacity .5s;
    position: relative;
    width: 100%;
    left: 0;
    font-size: 12px;
}

.cta:hover .exp {
    opacity: 1;
    left: -8px;
    transition: opacity 0.5s;
}

.cta-s {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid red;
    background-color: red;
    color: #fff;
    transition: width 0.7s;
}

.cta-s .iconic2 {
    width: 40px;
    height: 40px;
    padding: 12px;
    opacity: 1;
    top: -9px;
    left: -19px;
    font-size: 12px;
    font-weight: 400;
    transition: opacity 0.5s;
}

.cta-s:hover .iconic2 {
    opacity: 1;
    transition: opacity 0.5s
}

.cta-s #txtsearch {
    width: 120px;
    padding-left: -8px;
    top: -10px;
    background: transparent;
    border: 0;
    color: #fff;
    opacity: 0;
    transition: opacity 1s;
    position: relative;
    left: -8px;
    font-size: 12px;
    outline: none;
}

.quicklink {
    display: none;
    visibility: hidden
}

.std-q-szkola {
    color: #ffffff;
    font-size: 13px;
    background: #ff0000;
    padding: 10px 10% 10px 10%;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
}

.user-box {
    min-height: 150px;
}

.user-box2 {
    min-height: 120px;
}

.user-box3 {
    height: 200px;
}

.image-container3 {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}
    .image-container3:hover {
        box-shadow: rgba(45, 165, 12, 0.74) 0px 4px 9px;
    }
    .image-container3 .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #0f9b0f;
        background: -moz-linear-gradient(left,#ADD100 0,#0f9b0f 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#ADD100),color-stop(100%,#0f9b0f));
        background: -webkit-linear-gradient(left,#ADD100 0,#0f9b0f 100%);
        background: -o-linear-gradient(left,#ADD100 0,#0f9b0f 100%);
        background: linear-gradient(to right,#ADD100 0,#0f9b0f 100%);
        color: #FFF;
        text-align: center;
    }

        .image-container3 .after .glyphicon-user {
            padding-top: 24%;
            font-size: 18px;
        }

.image-container2 {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}
.image-container2:hover {
    box-shadow: rgba(0, 0, 0, 0.74) 0px 4px 9px;
}
    .image-container2 .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #232526;
        background: -moz-linear-gradient(left,#232526 0,#414345 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#232526),color-stop(100%,#414345));
        background: -webkit-linear-gradient(left,#232526 0,#414345 100%);
        background: -o-linear-gradient(left,#232526 0,#414345 100%);
        background: linear-gradient(to right,#232526 0,#414345 100%);
        color: #FFF;
        text-align: center;
    }

        .image-container2 .after .glyphicon-education {
            padding-top: 26%;
            font-size: 18px;
        }

.image-container4 {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}
.image-container4:hover {
    box-shadow: rgba(216, 38, 74, 0.74) 0px 4px 9px;
}
    .image-container4 .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #232526;
        background: -moz-linear-gradient(left,#833ab4 0,#F9D423 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#833ab4),color-stop(100%,#fd1d1d));
        background: -webkit-linear-gradient(left,#833ab4 0,#fd1d1d 100%);
        background: -o-linear-gradient(left,#833ab4 0,#fd1d1d 100%);
        background: linear-gradient(to right,#833ab4 0,#fd1d1d 100%);
        color: #FFF;
        text-align: center;
    }
.image-container5 {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}

    .image-container5 .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #000046;
        background: -moz-linear-gradient(left,#000046 0,#1CB5E0 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#000046),color-stop(100%,#1CB5E0));
        background: -webkit-linear-gradient(left,#000046 0,#1CB5E0 100%);
        background: -o-linear-gradient(left,#000046 0,#1CB5E0 100%);
        background: linear-gradient(to right,#000046 0,#1CB5E0 100%);
        color: #FFF;
        text-align: center;
    }

        .image-container5 .after .glyphicon-time {
            padding-top: 25%;
            padding-left: 0px;
            font-size: 20px;
        }
.image-container6 {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}

    .image-container6 .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #fe8c00;
        background: -moz-linear-gradient(left,#fe8c00 0,#f83600 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#fe8c00),color-stop(100%,#f83600));
        background: -webkit-linear-gradient(left,#fe8c00 0,#f83600 100%);
        background: -o-linear-gradient(left,#fe8c00 0,#f83600 100%);
        background: linear-gradient(to right,#fe8c00 0,#f83600 100%);
        color: #FFF;
        text-align: center;
    }

        .image-container6 .after .glyphicon-tag {
            padding-top: 25%;
            padding-left: 2px;
            font-size: 18px;
        }
.image-container7 {
    position: relative;
    width: 45px;
    height: 45px;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}

    .image-container7 .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #DA22FF;
        background: -moz-linear-gradient(left,#DA22FF 0,#9733EE 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#DA22FF),color-stop(100%,#9733EE));
        background: -webkit-linear-gradient(left,#DA22FF 0,#9733EE 100%);
        background: -o-linear-gradient(left,#DA22FF 0,#9733EE 100%);
        background: linear-gradient(to right,#DA22FF 0,#9733EE 100%);
        color: #FFF;
        text-align: center;
    }

        .image-container7 .after .glyphicon-ok-circle {
            padding-top: 25%;
            padding-left: 0px;
            font-size: 20px;
        }
#call-this {
    font-size: 13px;
    font-weight: 600;
}

.image-container4 .after svg {
    padding-top: 26%;
    font-size: 22px;
    width: 35px;
    height: 35px;
    fill: #fff;
}

.image-container4 img {
    padding-top: 12px;
    width: auto;
    height: 33px;
}

.profile-padding {
    padding: 15px 0 0 0;
}

.stats {
    position: absolute;
    top: 48%;
    padding: 0;
    width: 100px;
    z-index: 9;
}

.stats {
    position: absolute;
    top: 48%;
    padding: 0;
    width: 100px;
    z-index: 9;
}

    .stats .list-inline {
        margin-bottom: 5px;
    }

        .stats .list-inline li span {
            font-weight: 400
        }

    .stats li {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .stats label {
        padding: 0;
        margin: 0;
    }

.stats2 {
    position: relative;
    padding: 0;
    width: 100px;
    z-index: 9;
}

    .stats2 .list-inline {
        margin-bottom: 5px;
    }

        .stats2 .list-inline li span {
            font-weight: 400
        }

    .stats2 li {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .stats2 label {
        padding: 0;
        margin: 0;
    }

.stats3 {
    position: absolute;
    top: 38px;
    right: 25px;
    padding: 0;
    z-index: 9;
}

    .stats3 .list-inline {
        margin-bottom: 5px;
    }

        .stats3 .list-inline li span {
            font-weight: 400
        }

    .stats3 li {
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .stats3 label {
        padding: 0;
        margin: 0;
    }

.mar-left-5 {
    margin-left: 5px;
}
.mar-left-10 {
    margin-left: 10px;
}
.block_remember .lilicznik2 .icona {
    padding-left: 3px;
    padding-top: 1px;
    font-size: 12px;
    line-height: 28px;
    width: 30px;
    height: 30px;
    border: 1px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.51), 0 2px 2px 0 rgba(0,0,0,0.18);
}
.lilicznik2 .icona {
    padding-left: 9px;
    padding-top: 2px;
    font-size: 12px;
    line-height: 28px;
    width: 30px;
    height: 30px;
    border: 1px;
    border-radius: 50%;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.51), 0 2px 2px 0 rgba(0,0,0,0.18);
}

.lilicznik {
    font-size: 13px;
    line-height: 28px;
    color: #ff0000;
    width: 30px;
    height: 30px;
    border: 1px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.51), 0 2px 2px 0 rgba(0,0,0,0.18);
}
.lilicznik_ktora {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex; /* or inline-flex */
    align-items: center;
    justify-content: center;
    font-weight:600;
    color: purple;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.51), 0 2px 2px 0 rgba(0,0,0,0.18);
}
.lilicznik_ktora:hover {
    cursor: pointer;
}
.lilicznik-p {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: 13px;
    font-weight: 600;
    padding: 13px 5px;
    border: 1px;
    border-radius: 50%;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.51), 0 2px 2px 0 rgba(0,0,0,0.18);
    text-align: center;
    background-color: #fff;
}

.lilicznik-kl {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: 13px;
    font-weight: 600;
    padding: 13px 10px;
    border: 1px;
    border-radius: 50%;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.51), 0 2px 2px 0 rgba(0,0,0,0.18);
    text-align: center;
    background-color: #fff;
}
.pagination-container {
    padding-left: 10px;
}
.pagination > li > a,
.pagination > li > span {
    padding: 6px 11px;
}
.padding-left-40 {
    padding-left: 40px;
}
.padding-left-10 {
    padding-left: 10px;
}
.padding-left-5 {
    padding-left: 5px;
}
.searchboxblock {
    height: auto;
    padding-left: 10px;
}
    .searchboxblock::placeholder {
        text-align: center;
    }
.searchboxblock li {
    display: inline-block;
    vertical-align: top;
}
    .searchboxblock .btn-success, .btn-outline {
        height: 41px;
        font-size: 12px;
        line-height: 15px;
        vertical-align: top;
    }
    .searchboxblock .searchbox {
        padding-left: 10px;
        height: 40px;
        vertical-align: bottom;
        font-size: 13px;
        border-radius: 20px;
        border: 1px solid #dbdbdb;
    }
.hide-pc {
    display: none;
    visibility: hidden;
}

.hide-pc2 {
    display: none;
    visibility: hidden;
}

.likarnet {
    font-size: 13px;
    color: #ffa500;
    font-weight: 600;
}

.lilimit {
    font-size: 13px;
    color: #0f9b0f;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.limitbox {
    margin: 0;
    font-weight: 400
}

.put-block-inline {
    display: inline-block;
    padding-left: 5px;
}

.mh-auto {
    min-height: 1px;
    width: 100%;
    position: relative;
    float: left;
}

.back-szkola {
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.51), 0 5px 15px 0 rgba(0,0,0,0.18);
}

.back-szkola2 {
    margin-left: -20px;
    background-color: #fff;
    box-shadow: 0 35px 30px 0 rgba(0,0,0,0.51), 0 5px 15px 0 rgba(0,0,0,0.18);
}

.img-cover {
    float: left;
    width: 100%;
    height: 16vh;
    object-fit: cover;
}

.padding-addtxt {
    margin-top: 0;
    margin-bottom: 5px;
}

.dodajucznia input[type="text"], textarea {
    background-color: #f5f5f5;
}

.dodajucznia .keepout input[type="text"], textarea {
    background-color: #ffffff;
}

.dodajucznia select {
    font-size: 13px !important;
}

.form-headtxt {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
}

.padding-1 {
    padding-bottom: 0.5vh;
}

.padding-r-1 {
    padding-right: 0.5vh;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.nopadding-r {
    padding-right: 0 !important;
}
.nopadding-l {
    padding-left: 0 !important;
}

.md-top {
    margin-top: 5%;
}

.md-top2 {
    margin-top: 2%;
}
.md-top-10 {
    margin-top: 10px;
}

.margin-left-login {
    margin-right: 5rem;
}

.margin-left-user {
    margin-right: 10rem;
}

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}

    #wrapper.toggled {
        padding-left: 250px;
        overflow: scroll;
    }

.posttitle {
    font-size: 1.8rem;
    line-height: 12px;
    font-weight: 600;
}

.posttitle2 {
    font-size: 2rem;
    line-height: 33px;
    font-weight: 400;
}

.reg-title {
    padding: 4% 0;
}

#message2, #message3, #messageSlabe {
    display: none;
}

#messagePass {
    font-size: 12px;
    font-weight: 600;
}

.messages-txt {
    padding-left: 5px;
    font-size: 13px;
    font-size: 1.2rem;
}

.undername {
    font-size: 13px;
}

.hrmenu {
    width: 93% !important;
    margin-top: 13px;
    margin-bottom: 13px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.logomain {
    margin-left: 2%;
    width: 120px;
    height: 120px;
}

.std-red {
    width: 100%;
    color: #ffffff;
    font-size: 13px;
    background: #ff0000;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 20px;
}

    .std-red:hover {
        background: #2e2e2e;
        text-decoration: none;
        color: #ff0000;
    }

.std-red-szkola {
    color: #ffffff;
    font-size: 13px;
    background: #ff0000;
    padding: 10px 5% 10px 5%;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 20px;
}

    .std-red-szkola:hover {
        background: #2e2e2e;
        text-decoration: none;
        color: #ff0000;
    }

.std-clear {
    position: relative;
    width: 100%;
    color: #fff;
    margin: 10px;
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #777;
    border-radius: 20px;
}

    .std-clear:hover {
        background: rgba(255,255,255,0.8);
        text-decoration: none;
        color: #000;
    }

.bolder {
    font-weight: 700;
}

#sidebar-wrapper { /* ------------------------------------- Menu Wrap ------------------------------- */
    z-index: 1000;
    position: fixed;
    top: 5.7rem;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    scrollbar-width: thin;
    background: #000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    position: absolute;
    width: 100%;
    overflow-x: hidden;
}

#wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0px;
}

.fixed-brand {
    width: auto;
}
/* ------------------------------------- Sidebar Styles ------------------------------- */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 2px;
}

    .sidebar-nav li {
        text-indent: 8px;
        line-height: 40px;
    }

        .sidebar-nav li p {
            color: #fff;
            width: 250px;
            display: inline-block;
            text-decoration: none;
        }


        .sidebar-nav li a {
            text-decoration: none;
            color: #999999;
            font-size: 1.6rem;
            line-height: 2rem;
            margin-left: 11px;
            margin-right: 2px;
            margin-top: 2px;
            margin-bottom: 2px;
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: #fff;
            }

        .sidebar-nav li p:hover {
            text-decoration: none;
            color: #fff;
            border-left: #FF0000 2px solid;
        }

        .sidebar-nav li a:active,
        .sidebar-nav li a:focus {
            text-decoration: none;
        }

    .sidebar-nav > .sidebar-brand {
        height: 65px;
        font-size: 18px;
        line-height: 60px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: #999999;
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: #fff;
                background: none;
            }

.no-margin {
    margin: 0;
}

.navbar-brand img {
    margin-right: 1rem;
    width: 3rem;
    height: auto;
}

.dp {
    border: 5px solid #999999;
    transition: all 0.2s ease-in-out;
}

    .dp:hover {
        border: 2px solid #999999;
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        /*-webkit-font-smoothing:antialiased;*/
    }
    .sidebar_footer {
        position: absolute;
        font-size: 10px;
        color: #999;
        bottom: 60px;
        left: 10px;
    }

/* ---------------------------------------------------- Messages ---------------------- */
.smaller {
    font-size: 12px;
}

.Supsmaller {
    font-size: 10px;
}

.extrasmall {
    font-size: 9px;
}

.smallszkola {
    font-size: 13px;
    color: #777;
    font-weight: 200;
}

.img-news {
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.51), 0 5px 15px 0 rgba(0,0,0,0.18);
}

.image-container {
    position: relative;
    width: 45px;
    height: 45px;
    background: url(/img/nauka-jazdy.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border: 1px;
    border-radius: 50%;
}

    .image-container .after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: #ED213A;
        background: -moz-linear-gradient(left,#ED213A 0,#93291E 100%);
        background: -webkit-gradient(left top,right top,color-stop(0,#ED213A),color-stop(100%,#93291E));
        background: -webkit-linear-gradient(left,#ED213A 0,#93291E 100%);
        background: -o-linear-gradient(left,#ED213A 0,#93291E 100%);
        background: linear-gradient(to right,#ED213A 0,#93291E 100%);
        color: #FFF;
        text-align: center;
    }

    .image-container .after .glyphicon-envelope {
        padding-top: 30%;
        font-size: 17px;
    }

.simplo-divider {
    height: 4px;
    width: 3em;
    margin-bottom: 4px;
    border-bottom: 2px solid #ff0000;
}

.chat {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .chat li {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

        .chat li.left .chat-body {
            margin-left: 6px;
        }

        .chat li.right .chat-body {
            margin-right: 6px;
        }


        .chat li .chat-body p {
            margin: 0;
            color: #000;
        }

.chatmes {
    list-style: none;
    margin: 0;
    padding-left: 3rem;
}

    .chatmes li {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

        .chatmes li.left .chat-body {
            margin-left: 6px;
        }

        .chatmes li.right .chat-body {
            margin-right: 6px;
        }


        .chatmes li .chat-body p {
            margin: 0;
            color: #000;
        }

    .panel .slidedown .glyphicon, .chatmes .glyphicon {
        margin-right: 5px;
    }
/* ---------------------------------------------------- Graf ---------------------- */

.card {
    float: left;
    background: #fff;
    padding: 2%;
    margin: 0 4% 0 4%;
}

.donut-chart {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

    .donut-chart .quad {
        position: absolute;
        top: 0;
        left: 0;
    }

    .donut-chart .chart-center {
        position: absolute;
        border-radius: 50%;
    }

        .donut-chart .chart-center span {
            display: block;
            text-align: center;
        }

@-webkit-keyframes chart2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(133.2deg);
    }
}

@-webkit-keyframes chartRotate2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
    }
}

@-webkit-keyframes chartRotate3 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
    }
}

@-webkit-keyframes chartRotate4 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
    }
}

@-webkit-keyframes chartCover {
    0%, 90% {
        opacity: 1;
    }

    91%, 100% {
        opacity: 0;
    }
}

.donut-chart.chart2 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chart2 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chart2 .quad.one {
            -webkit-transform: rotate(133.2deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chart2 1s linear;
            display: block;
        }

        .donut-chart.chart2 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chart2 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate3 1s linear;
        }

        .donut-chart.chart2 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chart2 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chart2 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chart2 .chart-center:after {
            display: inline-block;
            width: 100%;
            font-size: 18px;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 70px;
            content: "82";
        }
/* Chart LL 1 ---*/
.donut-chart.chartLL {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chartLL .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chartLL .quad.one {
            -webkit-transform: rotate(220.2deg);
            -webkit-transform-origin: bottom right;
            background: #59c62d;
            -webkit-animation: chartLL 1s linear;
            display: block;
        }

        .donut-chart.chartLL .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #59c62d;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chartLL .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #59c62d;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chartLL .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #59c62d;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chartLL .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chartLL .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chartLL .chart-center span {
            display: inline-block;
            width: 100%;
            font-size: 20px;
            font-size: 1.7vh;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 7.2vh;
        }
/* Chart LL 2 ---*/
.donut-chart.chartLL2 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chartLL2 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chartLL2 .quad.one {
            -webkit-transform: rotate(190.2deg);
            -webkit-transform-origin: bottom right;
            background: #fc4b4b;
            -webkit-animation: chartLL2 1s linear;
            display: block;
        }

        .donut-chart.chartLL2 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #fc4b4b;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chartLL2 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #fc4b4b;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chartLL2 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #fc4b4b;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chartLL2 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chartLL2 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chartLL2 .chart-center span {
            display: inline-block;
            width: 100%;
            font-size: 20px;
            font-size: 1.7vh;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 7.2vh;
        }
/* Chart LL 3 ---*/
.donut-chart.chartLL3 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chartLL3 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chartLL3 .quad.one {
            -webkit-transform: rotate(240.2deg);
            -webkit-transform-origin: bottom right;
            background: #4b4bfc;
            -webkit-animation: chartLL3 1s linear;
            display: block;
        }

        .donut-chart.chartLL3 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #4b4bfc;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chartLL3 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #4b4bfc;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chartLL3 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #4b4bfc;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chartLL3 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chartLL3 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chartLL3 .chart-center span {
            display: inline-block;
            width: 100%;
            font-size: 20px;
            font-size: 1.7vh;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 7.2vh;
        }
/* Chart LL 4 ---*/
.donut-chart.chartLL4 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chartLL4 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chartLL4 .quad.one {
            -webkit-transform: rotate(150.2deg);
            -webkit-transform-origin: bottom right;
            background: #4b4b4b;
            -webkit-animation: chartLL4 1s linear;
            display: block;
        }

        .donut-chart.chartLL4 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #4b4b4b;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chartLL4 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #4b4b4b;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chartLL4 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #4b4b4b;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chartLL4 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chartLL4 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chartLL4 .chart-center span {
            display: inline-block;
            width: 100%;
            font-size: 20px;
            font-size: 1.7vh;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 7.2vh;
        }
/* Chart LL 5 ---*/
.donut-chart.chartLL5 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chartLL5 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chartLL5 .quad.one {
            -webkit-transform: rotate(180.2deg);
            -webkit-transform-origin: bottom right;
            background: #73a8c3;
            -webkit-animation: chartLL5 1s linear;
            display: block;
        }

        .donut-chart.chartLL5 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #73a8c3;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chartLL5 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #73a8c3;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chartLL5 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #73a8c3;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chartLL5 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chartLL5 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chartLL5 .chart-center span {
            display: inline-block;
            width: 100%;
            font-size: 20px;
            font-size: 1.7vh;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 7.2vh;
        }
/* Chart LL 5 ---*/
.donut-chart.chartLL6 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chartLL6 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chartLL6 .quad.one {
            -webkit-transform: rotate(180.2deg);
            -webkit-transform-origin: bottom right;
            background: #cccccc;
            -webkit-animation: chartLL6 1s linear;
            display: block;
        }

        .donut-chart.chartLL6 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #cccccc;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chartLL6 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #cccccc;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chartLL6 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #cccccc;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chartLL6 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chartLL6 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chartLL6 .chart-center span {
            display: inline-block;
            width: 100%;
            font-size: 20px;
            font-size: 1.7vh;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 7.2vh;
        }

.charttext i {
    margin-top: 13px;
    font-size: 13px;
}

.charttextI i {
    width: 100%;
    display: block;
    margin-top: 13px;
    font-size: 13px;
}
/*Chart Numer 21*/
@-webkit-keyframes chartLL {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(220.2deg);
    }
}

@-webkit-keyframes chartLL2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(190.2deg);
    }
}

@-webkit-keyframes chartLL3 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(240.2deg);
    }
}

@-webkit-keyframes chartLL4 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(150.2deg);
    }
}

@-webkit-keyframes chartLL5 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180.2deg);
    }
}

@-webkit-keyframes chartLL6 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(210.2deg);
    }
}

@-webkit-keyframes chart21 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(241.2deg);
    }
}

@-webkit-keyframes chart28 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(181.2deg);
    }
}


@-webkit-keyframes chartRotate2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
    }
}

@-webkit-keyframes chartRotate3 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
    }
}

@-webkit-keyframes chartRotate4 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
    }
}

@-webkit-keyframes chartCover {
    0%, 90% {
        opacity: 1;
    }

    91%, 100% {
        opacity: 0;
    }
}
/*Chart Numer 28*/
.donut-chart.chart28 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chart28 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chart28 .quad.one {
            -webkit-transform: rotate(181.2deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chart28 1s linear;
            display: block;
        }

        .donut-chart.chart28 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chart28 .quad.three {
            -webkit-transform: rotate(120deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chart28 .quad.four {
            -webkit-transform: rotate(160deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chart28 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chart28 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chart28 .chart-center:after {
            display: inline-block;
            width: 100%;
            font-size: 18px;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 70px;
            content: "30,000";
        }

/*Chart Numer 21*/

.donut-chart.chart21 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chart21 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chart21 .quad.one {
            -webkit-transform: rotate(241.2deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chart21 1s linear;
            display: block;
        }

        .donut-chart.chart21 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate2 1s linear;
            display: block;
        }

        .donut-chart.chart21 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate3 1s linear;
            display: block;
        }

        .donut-chart.chart21 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate4 1s linear;
        }

        .donut-chart.chart21 .quad.top {
            display: block;
            background: #e1e1e1;
        }

    .donut-chart.chart21 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chart21 .chart-center:after {
            display: inline-block;
            width: 100%;
            font-size: 18px;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 70px;
            content: "328";
        }

/*Chart Numer 22*/

@-webkit-keyframes chart22 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(334.8deg);
    }
}

@-webkit-keyframes chartRotate2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
    }
}

@-webkit-keyframes chartRotate3 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
    }
}

@-webkit-keyframes chartRotate4 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
    }
}

@-webkit-keyframes chartCover {
    0%, 90% {
        opacity: 1;
    }

    91%, 100% {
        opacity: 0;
    }
}

.donut-chart.chart22 {
    width: 10vh;
    height: 10vh;
    background: #e1e1e1;
}

    .donut-chart.chart22 .quad {
        width: 50%;
        height: 50%;
        top: 0;
        left: 0;
        border-radius: 100% 0 0 0;
        display: none;
    }

        .donut-chart.chart22 .quad.one {
            -webkit-transform: rotate(334.8deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chart22 0.5s linear;
            display: block;
        }

        .donut-chart.chart22 .quad.two {
            -webkit-transform: rotate(90deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate2 0.5s linear;
            display: block;
        }

        .donut-chart.chart22 .quad.three {
            -webkit-transform: rotate(180deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate3 0.5s linear;
            display: block;
        }

        .donut-chart.chart22 .quad.four {
            -webkit-transform: rotate(270deg);
            -webkit-transform-origin: bottom right;
            background: #ff0000;
            -webkit-animation: chartRotate4 0.5s linear;
            display: block;
        }

        .donut-chart.chart22 .quad.top {
            display: block;
            background: #e1e1e1;
            opacity: 0;
            -webkit-animation: chartCover 0.01s linear 0.4166666667s both;
        }

    .donut-chart.chart22 .chart-center {
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: #fff;
    }

        .donut-chart.chart22 .chart-center:after {
            display: inline-block;
            width: 100%;
            font-size: 18px;
            font-weight: 800;
            color: #000;
            text-align: center;
            line-height: 70px;
            content: "3804";
        }

.charttext h6 {
    text-align: center;
    vertical-align: middle;
    font-size: 12px !important;
}

.charttext {
    text-align: center;
    vertical-align: middle;
}

    .charttext h5 {
        margin-top: 1px;
    }

    .charttext p {
        margin-top: -0.7vh;
        font-size: 10px;
    }

.sponsorname {
    position: absolute;
    width: 50%;
    left: 0;
    text-align: center;
    background: rgb(255, 0, 0); /* Fall-back for browsers that don't
                                    support rgba */
    background: rgba(255, 0, 0, .5);
}

    .sponsorname p {
        padding-top: 0.5vh;
        padding-left: 5px;
        padding-right: 5px;
        color: #ffffff;
        font-weight: 600;
        font-size: 12px;
    }

.chatting {
    background-color: #fff;
}

.users {
    background-color: #e8e8e8;
}

.tyt-g {
    margin-top: 1px;
    margin-left: 22px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
}

    .tyt-g h3 {
        color: red;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-shadow: 0 0 8px #FF0000;
    }


.szkola {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #656565;
    min-height: 25vh;
}
.szkola2 {
    position: relative;
    display: block;
    padding-bottom: 5px;
    background-color: #f8f8f8;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.10), 0 2px 2px 0 rgba(0,0,0,0.10);
}

.video-shade {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(0,0,0,.6) !important;
    opacity: 20;
}

.szkolatxt {
    width: 20%;
}

    .szkolatxt img {
        width: 100%;
    }

.szkolatyt {
    margin-top: 1px;
    font-size: 28px;
    font-weight: 600;
    color: #fff !important;
    text-shadow: 0 0 8px #FF0000;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.upszkola {
    font-size: 13px;
    color: #ff0000;
    font-weight: 600 !important;
    padding: 5px;
    width: auto;
}

.underszkola {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.button-kalend {
    margin-top: 40px;
}

.kursantHbox .form-control {
    box-shadow: none;
}
/* ---------------------------------------------------- Read Only Input Boxed ---------------------- */
.timecheck {
    /* Double-sized Checkboxes */
    -ms-transform: scale(1.5); /* IE */
    -moz-transform: scale(1.5); /* FF */
    -webkit-transform: scale(1.5); /* Safari and Chrome */
    -o-transform: scale(1.5); /* Opera */
    transform: scale(1.5);
    padding: 5px;
}

.multiHbox .form-control {
    box-shadow: none;
}

input[readonly].classname {
    background-color: transparent;
    border: 0;
    font-size: 12px;
}

input[readonly].datyclass {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.multiHbox {
    width: 32%;
    background-color: orange;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 8px;
}

    .multiHbox label {
        border: 0px;
    }

.fc-agenda-view tr {
    height: 40px;
}

.profil-back {
    margin-bottom: 15px;
}

.uczenlistpro {
    padding-left: 5px;
    font-size: 13px;
}

.instlistpro {
    padding-left: 5px;
    font-size: 14px;
    padding-top: 2px;
}
.inst-count {
    padding-left: 10px;
}
.inst-count li {
    padding: 0;
}
.uczenlistpro .text-muted {
    color: #999 !important;
}

.phone-me {
    font-family: 'Source Sans Pro', sans-serif;
    color: #9f9f9f;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-left: 7px;
}

.put-reg {
    color: #777;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.makeupper {
    text-transform: uppercase;
}

#myModalSaveR, #myModalSaveRez, #myModalSaveFull, #myModalSave, #myModalSavePoza, #myModalSaveZa, #myModalEDIT, #myModalx2, #myModalx2Wolna, #myModalM {
    overflow-y: auto;
}

.fc-time-grid .fc-slats td {
    height: 4.5em;
}

.fc-agenda-view .fc-content .fc-time {
    font-size: 11px;
    white-space: normal;
}

.fc-agenda-view .fc-content .fc-title {
    font-size: 11px;
    white-space: normal;
}

.instIcon {
    font-size: 8px;
    color: #343434;
}
.superbuttons {
    margin-top: 10px;
    margin-bottom: 10px;
}
.superbuttons li .btn {
    font-size: 14px;
    margin-bottom: 10px;
}

.superbuttons2 li .btn {
    font-size: 13px;
    margin-bottom: 10px;
}

.superbuttons3 li .btn {
    font-size: 13px;
    margin-bottom: 5px;
    padding: 10px;
}

.supersmall {
    font-size: 10px !important
}
/* ------------------------------------- Callendar Loader ------------------------------- */
.dialog-loading-wrapper {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 0 none;
    height: 100px;
    left: 53%;
    margin-left: -50px;
    margin-top: -50px;
    position: fixed;
    top: 50%;
    width: 100px;
    z-index: 0;
}

.loader {
    position: absolute;
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.loader-txt {
    position: relative;
    top: 55px;
    left: 6px;
    font-weight: 400;
    font-size: 12px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.show-loader {
    display: block;
}

.hide-loader {
    display: none;
    z-index: -1;
}
.show {
    display: block;
}

.hide {
    display: none;
    height: 0;
    z-index: -1;
}
/* ---------------------------------------------------- VIDEO PLAY ---------------------- */
.video-conteiner {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.video-play-button {
    position: relative;
    z-index: 10;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

    .video-play-button:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #ba1f24;
        border-radius: 50%;
        animation: pulse-border 1500ms ease-out infinite;
    }

    .video-play-button:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #fa183d;
        border-radius: 50%;
        transition: all 200ms;
    }

    .video-play-button:hover:after {
        background-color: #fa183d;
    }

    .video-play-button img {
        position: relative;
        z-index: 3;
        max-width: 100%;
        width: auto;
        height: auto;
    }

    .video-play-button span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 32px solid #fff;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
    }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.beat-warning {
    animation: 1.5s ease 0s infinite beat;
}

.pulse-warning {
    animation: 1.5s ease 0s infinite pulse;
}

@keyframes beat {
    0%, 50%, 100% {
        transform: scale(1.5, 1.5);
    }

    30%, 80% {
        transform: scale(0.92, 0.95);
    }
}

@keyframes pulse {
    0%, 50%, 100% {
        color: #999;
    }

    30%, 80% {
        text-decoration: underline;
    }
}

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
}

    .video-overlay.open {
        position: fixed;
        z-index: 1000;
        opacity: 1;
    }

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 55px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

    .video-overlay-close:hover {
        color: #fa183d;
    }

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
}
/* ---------------------------------------------------- Responsive Design ---------------------- */
@media screen and (max-width: 1420px) {
    .stats {
        width: 60px;
    }

    .stats2 {
        width: 60px;
    }

    .datareg .card .donut-chart {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .datareg .card {
        width: 17%;
        text-align: center;
    }

    .donut-chart.chart22 .chart-center:after {
        font-size: 14px;
        line-height: 50px;
    }

    .donut-chart.chart21 .chart-center:after {
        font-size: 14px;
        line-height: 50px;
    }

    .donut-chart.chart28 .chart-center:after {
        font-size: 14px;
        line-height: 50px;
    }

    .donut-chart.chart2 .chart-center:after {
        font-size: 14px;
        line-height: 50px;
    }

    .tyt-g {
        position: absolute;
        top: 50%;
        width: 68%;
        text-align: center
    }

        .tyt-g h3 {
            display: inline-block;
        }

        .tyt-g span {
            display: none;
            visibility: hidden;
        }
}

@media screen and (max-width: 1280px) {
    .fc-agendaDay-view .fc-content .fc-title {
        font-size: 13px;
    }

    .block {
        width: 100%;
        display: block;
    }

    .col3a {
        width: auto;
    }

    .col3b {
        width: auto;
    }

    .col3c {
        width: auto;
    }
    .left-half-profil {
        width: 100%;
    }

    .center-profil {
        display: none;
        visibility: hidden;
    }

    .right-half-profil {
        width: 100%;
    }

        .right-half-profil .col-md-2 {
            display: inline-block;
            width: 49%;
            margin-bottom: 10px;
        }

    .left-half-profil-k {
        width: 100%;
        padding-right: 0;
    }

    .center-profil-k {
        width: 100%;
        height: 220px;
        padding: 0;
    }

        .center-profil-k .back-szkola {
            min-height: 155px;
        }

    .right-half-profil-k {
        width: 100%;
    }

        .right-half-profil-k .col-md-2 {
            display: inline-block;
            width: 49%;
            margin-bottom: 10px;
        }

    .detail-list li {
        margin-right: 15px;
        display: inline-block !important;
    }

    .chat {
        width: 100%;
        margin: 0;
        padding: 0 10px;
    }

    .stats .list-inline {
        width: 100%;
        margin-left: 3px;
    }

    .stats2 .list-inline {
        width: 100%;
        margin-left: 3px;
    }

    .tyt-g {
        position: relative;
        width: 100%;
        text-align: left;
        padding-left: 20% !important;
    }

        .tyt-g h3 {
            margin-bottom: 0;
        }

    /*--- TABLET Responsive tables ---*/
    .table-collapse-phone {
        display: inline-block;
    }

        .table-collapse-phone caption,
        .table-collapse-phone tbody,
        .table-collapse-phone td {
            display: inline-block;
        }
        .table-collapse-phone td {
            width: auto;
            min-width: 50px;
        }
        .table-collapse-phone th {
            display: none;
            visibility: hidden;
        }
        .table-collapse-phone .action-btns {
            display: block;
            width: 100%;
            background-color: #ededed;
        }


    .table-collapse-phone tr {
        border-top: 1px solid #ff0000;
    }

            .table-collapse-phone tr:first-child {
                border: 0;
            }

        .table-collapse-phone > tbody > tr > th:first-child,
        .table-collapse-phone > tbody > tr > td:first-child {
            border: 0;
        }

        .table-collapse-phone .has-label[data-label] {
            position: relative;
            padding-left: 10% !important;
        }

            .table-collapse-phone .has-label[data-label]:before {
                position: absolute;
                top: 0;
                left: 0;
                padding: 8px;
                content: attr(data-label);
                font-weight: bold;
            }
}

@media screen and (max-width: 1025px) {
    .message-error-login {
        max-width: 70%;
    }
    .fc-agendaDay-view .fc-content .fc-title {
        font-size: 12px;
    }

    .fc-agenda-view .fc-content .fc-time {
        font-size: 10px;
        white-space: normal;
    }

    .fc-agenda-view .fc-content .fc-title {
        font-size: 10px;
    }

    .left-half-l, .right-half-l {
        position: relative;
        width: 100%;
        min-height: 680px;
    }

    .login-all .login input {
        max-width: 70%;
        margin: 0 auto;
    }
    .login-info {
        top: 30%;
        max-height: 500px;
        overflow: hidden;
    }

}

@media(min-width:768px) {
    .hideBig {
        display: none;
        visibility: hidden;
    }

    .swap-list:hover {
        color: black;
        cursor: pointer;
    }

    #wrapper {
        padding-left: 250px;
    }

    .fixed-brand {
        width: 250px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled-2 #sidebar-wrapper {
        width: 56px;
    }

    #page-content-wrapper {
        position: relative;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
        padding-left: 250px;
    }

    #wrapper.toggled-2 #page-content-wrapper {
        position: relative;
        margin-right: 0;
        margin-left: -200px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .godzina-li {
        display: inline-block;
        padding: 0;
    }
    .btnexpand {
        position: absolute;
        right: -15px;
        bottom: 2px;
    }
    #box-action {
        display: block;
        font-size: 19px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        padding: 5px 11px;
    }
    .pvw-title:after {
        content: '⯆';
    }

    .x2time {
        display: none;
    }
    .timeclass {
        display: none;
    }
    .action-btns a {
        margin-left: 5%;
    }
    .searchboxblock #SearchString {
        max-width: 120px;
        width: 100%;
    }
    .message-error-login {
        max-width: 100%;
    }
    .nav-imitacja {
        width: 30px;
        height: 30px;
        right: 10px;
        top: 10px;
    }

    .fc-agenda-view .fc-content .fc-time {
        font-size: 9px;
        white-space: normal;
        height: auto;
    }


    .fc-agendaDay-view .fc-content .fc-title {
        font-size: 10px !important;
    }

    .fc-day-grid-event .fc-time, .fc-title {
        font-size: 9px;
        white-space: normal;
        height: auto;
    }

    .fc-agenda-view .fc-content .fc-title {
        font-size: 9px;
    }

    .hide-pc2 {
        display: block;
        visibility: visible;
    }

    .setting-icon-1 {
        font-size: 25px;
    }
    .Grid td:nth-child(2) {
        text-align: center;
        background-color: #f5f5f5;
    }

    .table-responsive thead {
        display: none;
    }

    .table-responsive tr {
        border-bottom: 3px solid red;
    }

        .table-responsive tr .iconic {
            text-align: center;
        }

    .table-responsive td {
        display: block;
        width: 100%;
        position: relative;
        min-height: 25px;
    }

    .user-box3 {
        height: 100%;
    }

    .tyt-g {
        position: relative;
        width: 100%;
        text-align: left;
        padding-left: 3% !important;
    }

        .tyt-g h3 {
            margin-top: 12px;
            font-size: 15px;
            padding-left: 100px;
        }

    .datareg {
        width: 100%;
    }

    .hide768 {
        display: none;
        visibility: hidden;
    }
    .login-info {
        background-image: none;
        top: 30%;
        max-height: 400px;
        overflow: hidden;
    }

    .login-all .login input {
        max-width: 100%;
        margin: 0 auto;
    }

    .psurname {
        height: 0px;
        line-height: 0px;
    }

    .jumbotron-Sub {
        padding-bottom: 48px;
    }

    .profile-d-center {
        width: 80%;
        text-align: center;
        padding-left: 0px;
    }

    #d-center {
        width: 100%;
    }

    .profile-center {
        padding-top: 40px;
        width: 100%;
        padding-left: -50px;
    }

        .profile-center .total-center {
            display: block !important;
            text-align: center;
        }

            .profile-center .total-center .image-container2 {
                margin: 0 auto;
            }

            .profile-center .total-center .image-container3 {
                margin: 0 auto;
            }


    .half-p-1, .half-p-2, .half-p-3 {
        width: 100%;
        height: auto;
        text-align: left
    }

    .modikonka {
        display: none;
        visibility: hidden;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 100% !important;
    }

    .sidebar-nav {
        width: 100% !important;
    }

    .swap-list:hover {
        color: black;
        cursor: pointer;
    }

    .detailer {
        width: 100%;
    }

    .sponsorzy .col-xs-12 {
        width: 50%;
    }

    .padding-r-1 {
        padding-right: 0;
    }

    .inst-pro-name {
        margin-left: 17px;
    }
    /*--- Phone Responsive tables ---*/
    .table-collapse-phone {
        display: block;
    }
        .indexno {
            font-size: 17px;
            font-weight: 700;
            color: red;
        }
        .table-collapse-phone caption,
        .table-collapse-phone tbody,
        .table-collapse-phone tr,
        .table-collapse-phone td {
            display: block;
        }

        .table-collapse-phone th {
            display: none;
            visibility: hidden;
        }


    .hide-shadow480 {
        box-shadow:none;
    }
    .table-collapse-phone tr {
        border: none;
        margin-bottom: 18px;
        box-shadow: 0 10px 10px 0 rgba(0,0,0,0.20), 0 5px 5px 0 rgba(0,0,0,0.20);
    }
		

            .table-collapse-phone tr:first-child {
                border: 0;
            }

        .table-collapse-phone > tbody > tr > th:first-child,
        .table-collapse-phone > tbody > tr > td:first-child {
            border: 0;
        }

        .table-collapse-phone .has-label[data-label] {
            position: relative;
            padding-left: 50% !important;
        }

            .table-collapse-phone .has-label[data-label]:before {
                position: absolute;
                top: 0;
                left: 0;
                padding: 8px;
                content: attr(data-label);
                font-weight: bold;
            }

    .col {
        display: table;
        width: 100%;
    }

    .btn-konto {
        width: 50%;
        margin: 0;
        float: left;
        min-height: 50px;
        margin-top: 10px
    }

    .btn-zapytaj {
        width: 50%;
        margin: 0;
        float: right;
        min-height: 50px;
        margin-top: 10px
    }

    .mesimghome {
        display: none;
        visibility: hidden;
    }

    .chatmes {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .chat {
        width: 100%;
        margin: 0;
    }
}

@media(max-width:570px) {
    .tyt-g {
        width: 250px;
        margin-top: 38px;
        margin-bottom: 18px;
    }
}

@media(max-width:480px) {
    .newsearch {
        float: left;
    }
    .searchboxblock {
        padding-left: 0px;
    }
    .searchboxblock .btn {
        padding-left: 13px;
    }
    label {
        font-size: 12px;
    }
    .mt-custom {
        margin-top: 5px!important;
    }
  .godzina-li .charttext i {
      display: block;
      width: auto;
      text-align: right;
  }
    .searchboxblock .btn-success, .btn-outline {
        height: 39px;
        width: 39px
    }
    .searchboxblock span {
        padding: 0px!important;
    }
        .btn-success span {
            padding: 0px !important;
            margin:0;
        }
        .btn-outline span {
            padding: 0px !important;
        }
    .action-btns a {
        margin-left: 20%;
    }
    .superselect ul {
        font-size: 12px;
    }
    .superselectR ul {
        font-size: 12px;
    }
    .superselectFull ul {
        font-size: 12px;
    }
    #myModalSave .modal-footer {
        padding-bottom: 5px;
        padding-top: 1px;
        text-align: right;
    }
    .modal-dialog label {
        font-size: 12px;
    }
    .multiselect {
        max-width: 200px
    }
    .form-control {
        font-size: 12px;
    }
    .store {
        margin-top: 8px !important;
    }

    .btnsmain {
        padding-left: 20px;
    }

        .btnsmain ul li {
            padding: 1px;
        }

    .btns2 {
        padding-top: 1px;
    }

    .x2time {
        position: absolute;
        width: 80%;
        max-width: 70px;
        font-size: 12px;
        padding: 3px;
        right: 1px;
        border-radius: 3px;
    }
    .theX2class {
        border-right: 1px solid #09f !important;
        border-left: 1px solid #09f !important;
    }

    .x2border_undefined {
        border-right: 1px solid #09f !important;
        border-left: 1px solid #09f !important;
    }

    .x2border_transparent {
        border-right: 1px solid #09f !important;
        border-left: 1px solid #09f !important;
    }
    /* All border Colours */
    .x2border_red {
        border-right: 1px solid #FF0000 !important;
        border-left: 1px solid #FF0000 !important;
    }

    .x2border_blue {
        border-right: 1px solid #0000FF !important;
        border-left: 1px solid #0000FF !important;
    }

    .x2border_black {
        border-right: 1px solid black !important;
        border-left: 1px solid black !important;
    }

    .x2border_green {
        border-right: 1px solid green !important;
        border-left: 1px solid green !important;
    }

    .x2border_darkorange {
        border-right: 1px solid darkorange !important;
        border-left: 1px solid darkorange !important;
    }

    .x2border_hotpink {
        border-right: 1px solid hotpink !important;
        border-left: 1px solid hotpink !important;
    }

    .x2border_limegreen {
        border-right: 1px solid limegreen !important;
        border-left: 1px solid limegreen !important;
    }

    .x2border_slategrey {
        border-right: 1px solid slategrey !important;
        border-left: 1px solid slategrey !important;
    }

    .x2border_darkgoldenrod {
        border-right: 1px solid darkgoldenrod !important;
        border-left: 1px solid darkgoldenrod !important;
    }

    .x2border_darkcyan {
        border-right: 1px solid darkcyan !important;
        border-left: 1px solid darkcyan !important;
    }

    .x2border_darkblue {
        border-right: 1px solid darkblue !important;
        border-left: 1px solid darkblue !important;
    }

    .x2border_dodgerblue {
        border-right: 1px solid dodgerblue !important;
        border-left: 1px solid dodgerblue !important;
    }

    .x2border_darkmagenta {
        border-right: 1px solid darkmagenta !important;
        border-left: 1px solid darkmagenta !important;
    }

    .x2border_saddlebrown {
        border-right: 1px solid saddlebrown !important;
        border-left: 1px solid saddlebrown !important;
    }

    .x2border_darkolivegreen {
        border-right: 1px solid darkolivegreen !important;
        border-left: 1px solid darkolivegreen !important;
    }

    .x2border_mediumaquamarine {
        border-right: 1px solid mediumaquamarine !important;
        border-left: 1px solid mediumaquamarine !important;
    }


    .post-date {
        display: block;
        width: 100%;
        float: left !important;
    }

    #c3 {
        display: none;
        visibility: hidden;
    }

    .center-profil-k {
        height: auto;
    }

        .center-profil-k .back-szkola {
            min-height: 120px;
        }

    .putinline {
        display: inline-block;
    }

    .col3a {
        width: 100%;
    }

    .col3b {
        width: 100%;
    }

    .col3c {
        width: 100%;
    }

    .text-containerS h1 {
        font-size: 14px;
    }

    .osk-logo img {
        padding: 4px;
        border-radius: 12%;
    }

    .mt-140 {
        margin-top: 80px !important;
    }

    #box {
        padding-left: 1px;
    }

    .right-half-hLL {
        float: left;
        width: 100%;
    }

        .right-half-hLL ul {
            margin-top: 0;
            text-align: left;
        }

    .szkolatyt {
        padding-top: 10px;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .liczba-dni-MAIN {
        font-size: 20px;
    }

    .szkola {
        min-height: 180px;
    }

    .right-half-szkola {
        width: 70%;
        padding-left: 10px;
    }

    .szkola .list-inline .liczba-dni-MAIN {
        font-size: 14px;
    }
    /* Screen home page */
    .left-half-h {
        width: 25%;
    }

    .right-half-h {
        width: 75%;
    }

    .datareg .card .detailer {
        padding: 0 !important;
        margin: 0;
    }

    .powiadom-lista li {
        width: 100%;
    }

    .datareg .card .donut-chart {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .datareg .card {
        width: 17%;
        text-align: center;
    }

    .donut-chart.chart22 .chart-center:after {
        font-size: 10px;
        line-height: 30px;
    }

    .donut-chart.chart21 .chart-center:after {
        font-size: 10px;
        line-height: 30px;
    }

    .donut-chart.chart28 .chart-center:after {
        font-size: 10px;
        line-height: 30px;
    }

    .donut-chart.chart2 .chart-center:after {
        font-size: 10px;
        line-height: 30px;
    }

    .charttext h5 {
        font-size: 10px;
        text-align: center
    }

    .logomain {
        margin-left: 50%;
        margin-top: 78%;
        width: 40px;
        height: 40px;
    }

    .funkcja b {
        display: none;
        visibility: hidden;
    }

    .cta .iconic {
        top: 0px;
    }

    .cta .iconic2 {
        top: 0px;
    }

    .swap-list:hover {
        color: black;
        cursor: pointer;
    }
    /*Callendar Mobile Display*/
    .fc-toolbar .fc-left {
        width: 40%;
        margin-bottom: 10px;
    }

    .fc-toolbar .fc-right {
        width: 60%;
        margin-bottom: 10px;
    }

        .fc-toolbar .fc-right button {
            padding: 5px;
        }

    .fc button {
        font-size: 13px;
    }

        .fc button .fc-icon {
            font-size: 12px;
        }

    .fc .fc-toolbar > * > * {
        float: left;
        margin-left: .35em;
    }

    .fc-toolbar h2 {
        font-size: 18px !important;
    }

    .fc-right .fc-prev-button, .fc-right .fc-next-button {
        background-color: #b1d583;
        background-image: none;
    }

    #school_selector {
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 8px;
        padding-bottom: 12px;
        font-size: 12px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        outline: none;
        margin-bottom: 0px;
    }

    #school_selectorCalK {
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        outline: none;
        margin-bottom: 0px;
    }

    .btnsmain {
        text-align: left;
        width: 100%;
    }

    .btns1 {
        width: 100%;
        display: inline-block
    }

    .btns2 {
        width: 100%;
        display: inline-block;
        margin-bottom: 5px;
    }

    .nopadding-r {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .hide-pc {
        display: block;
        visibility: visible;
    }

    .hide-pc2 {
        display: block;
        visibility: visible;
    }

    .left-half-p {
        float: left;
        width: 100%;
    }

    .right-half-p {
        float: left;
        width: 100%;
    }

    .ile-home {
        display: block;
        visibility: visible;
        position: absolute;
        z-index: 10 !important;
        right: 2px;
        top: 10px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding-left: 3px;
        padding-right: 4px;
        padding-top: 2px;
        padding-bottom: 2px;
        border-radius: 20%;
        background-color: #000;
    }

    .quicklink {
        position: absolute;
        width: 100%;
        z-index: 9 !important;
        bottom: 0;
        display: block;
        visibility: visible;
        background-color: red;
        text-align: center;
        height: 45px;
    }

        .quicklink li {
            position: relative;
            height: 100%;
            padding-top: 10px;
            width: 20%;
        }

            .quicklink li a:visited {
                color: #fff;
            }

    .quicklink2 {
        width: 100%;
        z-index: 9 !important;
        position: absolute;
        bottom: 0;
        display: block;
        visibility: visible;
        background-color: red;
        text-align: center;
        height: 45px;
    }

        .quicklink2 li {
            position: relative;
            padding-top: 10px;
            width: 30%;
        }

            .quicklink2 li a {
                text-transform: lowercase;
                font-size: 12px;
                font-weight: 400;
            }

                .quicklink2 li a:hover {
                    text-decoration: none;
                    color: #fff;
                }

                .quicklink2 li a:visited {
                    color: #fff;
                }
    /* hidden on default */
    .fc-resource-cell {
        font-size: 10px;
    }

    div#WiadomoscModalInfo {
        display: block;
    }

    .superbuttons li {
        position: relative;
        left: 0px;
        float: left;
        margin-bottom: 15px;
    }

    .superbuttons2 li {
        position: relative;
        left: 0px;
        float: left;
        margin-bottom: 15px;
    }

    .superbuttons3 li {
        position: relative;
        font-size: 11px;
        float: left;
        margin-bottom: 10px;
    }
        .superbuttons3 li .btn {
            font-size: 11px;
            padding: 7px;
        }
        .btn {
            font-size: 12px;
        }

    #pDetails p {
        font-size: 13px;
    }
    #txtinstruktor {
        font-size: 13px;
    }
    

    .mobile-list li {
        width: 100%
    }

    .mobile-list {
        display: none;
        visibility: hidden
    }

    .scrollable-menu {
        height: auto;
        max-height: 90%;
        overflow-x: hidden;
    }

    .word-wrapper {
        position: absolute;
        width: 200px;
        line-height: 13px;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    #thisnazwaOSK {
        width: 200px;
        overflow: hidden;
        font-size: 13px;
        font-weight: bolder;
    }

    .profil-back {
        text-align: left;
        margin-bottom: 30px;
    }

    .inst-pro-name {
        margin-left: 15px;
    }

    .inst-pro-email {
        display: none;
        visibility: hidden;
    }

    .fc-agenda-view .fc-content .fc-title {
        font-size: 11px;
        white-space: normal;
        font-weight: 600;
        padding-top: 5px;
    }

    .fc-agenda-view .fc-content .fc-time {
        font-size: 9px;
        white-space: normal;
    }

    .fc-agendaDay-view .fc-content .fc-title {
        font-size: 12px;
    }

    .fc-agendaWeek-view .fc-content .fc-title {
        font-size: 10px;
        white-space: normal;
    }

    .fc-ltr .fc-time-grid .fc-event-container {
        margin: 0;
    }

    .fc-event-container .fc-event {
        margin-right: 1px !important;
    }

    .fc-month-view .fc-more-cell .fc-more {
        font-size: 10px;
        margin: 0;
    }

    .fc-agenda-view tr {
        height: 60px;
    }

    .fc-view-container {
        height: 100%;
    }

    .multiHbox .form-control {
        padding: 5px;
    }

    input[readonly].classname {
        font-size: 11px;
    }

    .underszkola {
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .chat .text-muted {
        margin-top: 15px;
        font-size: 10px;
    }

    .chat .messages-txt {
        padding-top: 28px;
        padding-left: 0;
        padding-right: 0;
    }

    .chatmes .text-muted {
        margin-top: 15px;
        font-size: 10px;
    }

    .chatmes .messages-txt {
        padding-top: 28px;
        padding-left: 0;
        padding-right: 0;
    }

    .szkola {
        padding-top: 15px;
    }

    .hide480 {
        display: none;
        visibility: hidden;
    }
}

@media(max-width:360px) {
    .szkola {
        min-height: 170px;
    }

    .right-half-szkola {
        width: 60%;
    }

    .szkolatyt {
        font-size: 15px;
    }

    .liczba-dni-MAIN {
        font-size: 13px;
    }

    .donut-chart.chart22 .chart-center:after {
        font-size: 9px;
        line-height: 33px;
    }

    .donut-chart.chart21 .chart-center:after {
        font-size: 9px;
        line-height: 33px;
    }

    .donut-chart.chart28 .chart-center:after {
        font-size: 9px;
        line-height: 32px;
    }

    .donut-chart.chart2 .chart-center:after {
        font-size: 9px;
        line-height: 33px;
    }

    .charttext h5 {
        font-size: 9px;
    }

    .right-half-h ul .std-red, .std-clear {
        font-size: 11px;
        padding: 9px;
    }

    .funkcja b {
        display: none;
        visibility: hidden;
    }
    /*Callendar Mobile Display*/

    .fc-toolbar .fc-left {
        width: 38%;
        margin-bottom: 10px;
    }

    .fc-toolbar .fc-right {
        width: 62%;
        margin-bottom: 10px;
    }

        .fc-toolbar .fc-right button {
            padding: 5px;
        }

    .fc button {
        font-size: 12px;
    }

        .fc button .fc-icon {
            font-size: 11px;
        }

    .fc .fc-toolbar > * > * {
        float: left;
        margin-left: .25em;
    }

    .fc-toolbar h2 {
        font-size: 18px !important;
    }

    .fc-right .fc-prev-button, .fc-right .fc-next-button {
        background-color: #b1d583;
        background-image: none;
    }

    #school_selector {
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 6px;
        padding-bottom: 9px;
        font-size: 11px;
        margin-bottom: 1px;
    }

    #school_selectorCalK {
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 11.5px;
        padding-bottom: 9px;
        font-size: 11px;
        margin-bottom: 1px;
    }

    .printBtn {
        padding: 6px;
    }

    #btnPhide {
        padding: 6px;
    }
    /* hidden on default */
    div#WiadomoscModalInfo {
        display: block;
    }

    .multiHbox .form-control {
        padding: 1px;
    }

    input[readonly].classname {
        font-size: 10px;
    }

    .std-red-szkola {
        font-size: 10px;
    }

    .btn-default {
        font-size: 12px;
    }

    a {
        font-size: 12px;
    }
}

@media(max-width:325px) {
    .fc button {
        font-size: 10px;
        padding: 4px;
    }

    .fc-agendaWeek-view .fc-content .fc-time {
        font-size: 8px;
    }
}

@media(max-width:320px) {

    .right-half-h ul .std-red, .std-clear {
        font-size: 10px;
        padding: 7px;
    }

    #school_selectorCalK {
        width: 120px;
        padding-left: 2px;
        padding-right: 0px;
        padding-top: 11.5px;
        padding-bottom: 9px;
        margin-bottom: 1px;
    }
}


/*--------------------------------------------------------------
	Side Menu
--------------------------------------------------------------*/
.btn-right-menu {
    text-align: right;
}

.modal.right.fade.in .modal-dialog {
    right: 0 !important;
}

.modal.right .modal-content {
    height: auto;
    overflow: hidden;
    border-radius: 0;
}

.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.right.fade.in .modal-dialog {
    transform: translateX(0%);
}

.modal.right.fade .modal-dialog {
    width: auto;
    min-width: 250px;
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right .modal-header {
    background-color: #fff;
    color: #fff
}

    .modal.right .modal-header .modal-title {
        width: 100px;
        text-align: left;
        color: #000
    }

    .modal.right .modal-header.title {
        color: #000;
        text-align: left;
    }

.modal.right .close {
    text-shadow: none;
    opacity: 1;
    color: #ff4d4d;
    font-size: 26px
}
/*--------------------------------------------------------------
	Responsive Styles - Media Queries -Landscape ONLY
--------------------------------------------------------------*/
@media (max-width: 480px) {
    .uczen-left {
        display: block;
        position: relative;
        width: 100%;
    }

    .uczen-right {
        display: block;
        position: relative;
        width: 100%;
    }

    .Endx2 label {
        position: relative;
        margin-top: 30px;
    }

    .turnoff {
        margin-top: 10px;
    }
}


@media (max-width: 991px) {
    .intro_st1 {
        position: absolute;
        top: 206px;
        height: 50px;
        width: 98.5%;
    }

    .max300w {
        max-width: 150px !important;
    }

    #dtp1MID222 input, #dtp2MID222 input, #dtp1MID222W input, #dtp2MID222W input {
        font-size: 13px;
    }

    #myModalx2 .col-md-6 {
        margin-bottom: 35px;
    }

    .uczen-left {
        display: inline-block;
    }

    .uczen-right {
        display: inline-block;
    }

    .przerwa {
        display: none;
        visibility: hidden
    }
}


@media only screen and (min-device-width : 769px) and (max-device-width : 990px) {

    .jumbotron-Sub {
        padding-bottom: 38px;
    }

    .profile-d-center {
        width: 80%;
        text-align: center;
        padding-left: 0px;
    }

    #d-center {
        width: 100%;
    }

    .profile-center {
        padding-top: 40px;
        width: 100%;
    }

    .setting-icon-1 {
        font-size: 25px;
    }
}

@media only screen and (min-device-width : 991px) and (max-device-width : 1400px) {
    .jumbotron-Sub {
        padding-bottom: 188px;
    }

    #d-center {
        width: 100%;
        text-align: center
    }
}


/*DRUKUJ*/
@media print {

    @page {
        margin: 0;
    }

    body * {
        visibility: hidden;
        margin: 0.1cm;
    }
    /*Menu Wraper hide*/
    #wrapper {
        padding-left: 0px !important; 
        margin: 0 !important;
    }
    .btn {
        display: none;
        visibility: hidden
    }
    /*Hide modal*/
    .optionsModal .modal-dialog {
        width: 0;
        height: 0;
        display: none;
        visibility: hidden;
    }

    #page-content-wrapper, #page-content-wrapper * {
        visibility: visible;
        top: 0 !important;
        margin: 0 !important;
    }

    #page-content-wrapper {
        position: absolute;
        left: 0;
        top: 0 !important;
    }

    #InstFull {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        visibility: visible;
        font-size: 12px;
        font-weight: 600
    }
    #school_selector {
       display: none;
       visibility: hidden
    }
    .instIcon {
        display: block !important;
        position: absolute !important;
        top: 0;
        right: 0;
        padding-right: 10px;
    }

    #page-content-wrapper #btnPhide {
        visibility: hidden;
    }

    .fc-event {
        background: #ffffff !important;
        color: #000000 !important;
    }
    .fc-toolbar .fc-center h2 {
        font-size: 16px
    }
    .fc-widget-content {
        border: 1px solid #000000;
    }

    .fc-event-bg {
        display: none !important;
    }

    .fc-event .ui-resizable-handle {
        display: none !important;
    }

    .fc-header {
        display: none;
        vertical-align: top;
    }

    .hideprint {
        display: none;
        visibility: hidden;
    }

    .pt-70 {
        padding-top: 0px;
    }

    footer {
        display: none;
    }
}

/*!
 * Bootstrap-select v1.10.0 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2016 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\9}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
