﻿/*!
 * FullCalendar v2.1.1 Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */
/***
News Page
***/
.news-page {
    padding-bottom: 20px;
}

.news-page h1 {
    margin-bottom: 20px;
}

.news-page h2 {
    font-size: 38.5px;
    margin-bottom: 20px;
}

.news-page .top-news {
    margin-top: 0;
}

/*News Feeds*/
.news-blocks {
    padding: 10px;
    margin-bottom: 10px;
    background: #faf6ea;
    border-top: solid 2px #faf6ea;
}

.news-blocks:hover {
    background: #fff;
    border-color: #78cff8;
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}

.news-blocks h3 {
    margin: 0 0 5px 0;
    font-size: 23px;
    line-height: 32px;
}

.news-blocks h3 a {
    color: #000;
}

.news-blocks h3 a:hover {
    color: #78cff8;
    text-decoration: none;
}

.news-blocks p {
    overflow: hidden;
}

.news-blocks a.news-block-btn {
    color: #000;
    display: block;
    font-size: 14px;
    background: none;
    padding: 5px 10px 0;
    text-align: right;
    text-decoration: none;
}

.news-blocks a.news-block-btn i {
    margin-left: 3px;
}

.news-blocks a.news-block-btn:hover {
    text-decoration: none;
}

.news-blocks img.news-block-img {
    width: 70px;
    height: 70px;
    margin: 5px 0px 0 10px;
}

.news-blocks .news-block-tags {
    margin-bottom: 8px;
}

.news-blocks .news-block-tags strong {
    margin-right: 10px;
    font-weight: 400;
}

.news-blocks .news-block-tags em {
    font-style: normal;
}

/*News Item Page*/
.news-item-page {
    padding: 10px 0;
}

.blog-tag-data ul {
    margin-bottom: 5px;
}

.blog-tag-data li {
    padding: 0;
}

.blog-tag-data li i {
    color: #78cff8;
}

.blog-tag-data li a {
    padding: 0;
    color: #555;
    margin-right: 8px;
}

.blog-tag-data {
    margin-bottom: 10px;
}

.blog-tag-data img {
    margin-bottom: 12px;
}

.blog-tag-data ul.blog-tags a {
    background: #eee;
    padding: 1px 4px;
    margin: 0 4px 4px 0;
    display: inline-block;
}

.blog-tag-data ul.blog-tags a:hover {
    background: #ddd;
    text-decoration: none;
}

.blog-tag-data .blog-tag-data-inner {
    text-align: right;
}

.fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc {
    /* extra precedence to overcome jqui */
    font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th, .fc-unthemed td, .fc-unthemed hr, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-row, .fc-unthemed .fc-popover {
    border-color: #ddd;
}

.fc-unthemed .fc-popover {
    background-color: #fff;
}

.fc-unthemed hr, .fc-unthemed .fc-popover .fc-header {
    background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
    color: #666;
}

.fc-unthemed .fc-today {
    background: #fcf8e3;
}

.fc-highlight {
    /* when user is selecting cells */
    background: #bce8f1;
    opacity: 0.3;
    filter: alpha(opacity=30);
    /* for IE */
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
    display: inline-block;
    font-size: 2em;
    line-height: 0.5em;
    height: 0.5em;
    /* will make the total height 1em */
    font-family: "Courier New", Courier, monospace;
}

.fc-icon-left-single-arrow:after {
    content: "\02039";
    font-weight: bold;
}

.fc-icon-right-single-arrow:after {
    content: "\0203A";
    font-weight: bold;
}

.fc-icon-left-double-arrow:after {
    content: "\000AB";
}

.fc-icon-right-double-arrow:after {
    content: "\000BB";
}

.fc-icon-x:after {
    content: "\000D7";
}

/* 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 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 0.1em;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    /* background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); */
    /* background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); */
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    /* background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); */
    /* background-repeat: repeat-x; */
    /* border-color: #e6e6e6 #e6e6e6 #bfbfbf; */
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); */
}

.fc-state-hover, .fc-state-down, .fc-state-active, .fc-state-disabled {
    color: #333333;
    background-color: #e6e6e6;
}

.fc-state-hover {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.fc-state-down, .fc-state-active {
    background-color: #cccccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
    display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
    /* extra precedence b/c buttons have margin set to zero */
    float: left;
    margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
    /* same */
    margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
    position: absolute;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header {
    padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
    margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
    cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title, .fc-rtl .fc-popover .fc-header .fc-close {
    float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title, .fc-ltr .fc-popover .fc-header .fc-close {
    float: right;
}

/* unthemed */
.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
    font-size: 25px;
    margin-top: 4px;
}

/* jqui themed */
.fc-popover > .ui-widget-header + .ui-widget-content {
    border-top: 0;
    /* where they meet, let the header have the border */
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc hr {
    height: 0;
    margin: 0;
    padding: 0 0 2px;
    /* height is unreliable across browsers, so use padding */
    border-style: solid;
    border-width: 1px 0;
}

.fc-clear {
    clear: both;
}

.fc-bg, .fc-highlight-skeleton, .fc-helper-skeleton {
    /* these element should always cling to top-left/right corners */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.fc-bg {
    bottom: 0;
    /* strech bg to bottom edge */
}

.fc-bg table {
    height: 100%;
    /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em;
    /* normalize cross-browser */
}

.fc th {
    text-align: center;
}

.fc th, .fc td {
    border-style: solid;
    border-width: 1px;
    padding: 0;
    vertical-align: top;
}

.fc td.fc-today {
    border-style: double;
    /* overcome neighboring borders */
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
    /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
    /* no visible border by default. but make available if need be (scrollbar width compensation) */
    border-style: solid;
    border-width: 0;
}

.fc-row table {
    /* don't put left/right border on anything within a fake row.
       the outer tbody will worry about this */
    border-left: 0 hidden transparent;
    border-right: 0 hidden transparent;
    /* no bottom borders on rows */
    border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
    border-top: 0 hidden transparent;
    /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
    position: relative;
}

.fc-row .fc-bg {
    z-index: 1;
}

/* highlighting cells */
.fc-row .fc-highlight-skeleton {
    z-index: 2;
    bottom: 0;
    /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton table {
    height: 100%;
    /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td {
    border-color: transparent;
}

/*
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: 3;
    padding-bottom: 2px;
    /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
    z-index: 4;
}

.fc-row .fc-content-skeleton td, .fc-row .fc-helper-skeleton td {
    /* see-through to the background below */
    background: none;
    /* in case <td>s are globally styled */
    border-color: transparent;
    /* don't put a border between events and/or the day number */
    border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
    /* don't put a border between event cells */
    border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
    /* this class goes on elements for guaranteed vertical scrollbars */
    overflow-y: scroll;
    overflow-x: hidden;
}

.fc-scroller > * {
    /* we expect an immediate inner element */
    position: relative;
    /* re-scope all positions */
    width: 100%;
    /* hack to force re-sizing this inner element when scrollbars appear/disappear */
    overflow: hidden;
    /* don't let negative margins or absolute positioning create further scroll */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
    position: relative;
    /* for resize handle and other inner positioning */
    display: block;
    /* make the <a> tag block */
    font-size: 0.85em;
    line-height: 1.3;
    border-radius: 3px;
    border: 1px solid #3a87ad;
    /* default BORDER color */
    background-color: #3a87ad;
    /* default BACKGROUND color */
    font-weight: normal;
    /* undo jqui's ui-widget-header bold */
}

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event, .fc-event:hover, .ui-widget .fc-event {
    color: #fff;
    /* default TEXT color */
    text-decoration: none;
    /* if <a> has an href */
}

.fc-event[href], .fc-event.fc-draggable {
    cursor: pointer;
    /* give events with links and draggable events a hand mouse pointer */
}

/* 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;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-day-grid-event.fc-not-start, .fc-rtl .fc-day-grid-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-day-grid-event.fc-not-end, .fc-rtl .fc-day-grid-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;
}

.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;
}

/* resize handle (outside of fc-content, so can go outside of bounds) */
.fc-day-grid-event .fc-resizer {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px;
}

.fc-ltr .fc-day-grid-event .fc-resizer {
    right: -3px;
    cursor: e-resize;
}

.fc-rtl .fc-day-grid-event .fc-resizer {
    left: -3px;
    cursor: w-resize;
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
    margin: 1px 3px;
    font-size: 0.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;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
    text-align: center;
    margin-bottom: 1em;
}

.fc-toolbar .fc-left {
    float: left;
}

.fc-toolbar .fc-right {
    float: right;
}

.fc-toolbar .fc-center {
    display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
    /* extra precedence to override button border margins */
    float: left;
    margin-left: 0.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, /* scope positioning and z-index's for everything within the view */
.fc-view>table {
    /* so dragged elements can be above the view's main element */
    position: relative;
    z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton, .fc-basicDay-view .fc-content-skeleton {
    /* we are sure there are no day numbers in these views, so... */
    padding-top: 1px;
    /* add a pixel to make sure there are 2px padding above events */
    padding-bottom: 1em;
    /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view tbody .fc-row {
    min-height: 4em;
    /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
    overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* week and day number styling */
.fc-basic-view .fc-week-number, .fc-basic-view .fc-day-number {
    padding: 0 2px;
}

.fc-basic-view td.fc-week-number span, .fc-basic-view td.fc-day-number {
    padding-top: 2px;
    padding-bottom: 2px;
}

.fc-basic-view .fc-week-number {
    text-align: center;
}

.fc-basic-view .fc-week-number span {
    /* work around the way we do column resizing and ensure a minimum width */
    display: inline-block;
    min-width: 1.25em;
}

.fc-ltr .fc-basic-view .fc-day-number {
    text-align: right;
}

.fc-rtl .fc-basic-view .fc-day-number {
    text-align: left;
}

.fc-day-number.fc-other-month {
    opacity: 0.3;
    filter: alpha(opacity=30);
    /* for IE */
    /* opacity with small font can sometimes look too faded
       might want to set the 'color' property instead
       making day-numbers bold also fixes the problem */
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
    position: relative;
    z-index: 2;
    /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
    min-height: 3em;
    /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
    padding-top: 1px;
    /* add a pixel to make sure there are 2px padding above events */
    padding-bottom: 1em;
    /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
    /* .fc to overcome default cell styles */
    vertical-align: middle;
    padding: 0 4px;
    white-space: nowrap;
}

.fc-ltr .fc-axis {
    text-align: right;
}

.fc-rtl .fc-axis {
    text-align: left;
}

.ui-widget td.fc-axis {
    font-weight: normal;
    /* overcome jqui theme making it bold */
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container, /* so scroll container's z-index is below all-day */
.fc-time-grid {
    /* so slats/bg/content/etc positions get scoped within here */
    position: relative;
    z-index: 1;
}

.fc-time-grid {
    min-height: 100%;
    /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table {
    /* don't put outer borders on slats/bg/content/etc */
    border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
    z-index: 1;
}

.fc-time-grid .fc-slats, .fc-time-grid > hr {
    /* the <hr> AgendaView injects when grid is shorter than scroller */
    position: relative;
    z-index: 2;
}

.fc-time-grid .fc-highlight-skeleton {
    z-index: 3;
}

.fc-time-grid .fc-content-skeleton {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
}

.fc-time-grid > .fc-helper-skeleton {
    z-index: 5;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-slats td {
    height: 1.5em;
    border-bottom: 0;
    /* each cell is responsible for its top border */
}

.fc-slats .fc-minor td {
    border-top-style: dotted;
}

.fc-slats .ui-widget-content {
    /* for jqui theme */
    background: none;
    /* see through to fc-bg */
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
    /* a div within a cell within the fc-highlight-skeleton */
    position: relative;
    /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
    position: absolute;
    left: 0;
    right: 0;
    /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-event-container {
    /* a div within a cell within the fc-content-skeleton */
    position: relative;
}

.fc-ltr .fc-time-grid .fc-event-container {
    /* space on the sides of events for LTR (default) */
    margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
    /* space on the sides of events for RTL */
    margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event {
    position: absolute;
    z-index: 1;
    /* scope inner z-index's */
}

/* 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.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-time-grid-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;
}

.fc-time-grid-event {
    overflow: hidden;
    /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event > .fc-content {
    /* contains the time and title, but no bg and resizer */
    position: relative;
    z-index: 2;
    /* above the bg */
}

.fc-time-grid-event .fc-time, .fc-time-grid-event .fc-title {
    padding: 0 1px;
}

.fc-time-grid-event .fc-time {
    font-size: 0.85em;
    white-space: nowrap;
}

.fc-time-grid-event .fc-bg {
    z-index: 1;
    background: #fff;
    opacity: 0.25;
    filter: alpha(opacity=25);
    /* for IE */
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
    /* don't wrap to second line (now that contents will be inline) */
    white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time, .fc-time-grid-event.fc-short .fc-title {
    /* put the time and title on the same line */
    display: inline-block;
    vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
    display: none;
    /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
    content: attr(data-start);
    /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
    content: "\000A0-\000A0";
    /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
    font-size: 0.85em;
    /* make the title text the same size as the time */
    padding: 0;
    /* undo padding from above */
}

/* resizer */
.fc-time-grid-event .fc-resizer {
    position: absolute;
    z-index: 3;
    /* above content */
    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-resizer:after {
    content: "=";
}

/*
    Text Suggets
    */
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #737373;
}

.suggets-show {
    position: absolute;
    top: 28px;
    left: 0px;
    z-index: 100;
    display: block;
}

.suggets-hide {
    position: absolute;
    top: 28px;
    left: 0px;
    z-index: 100;
    display: none;
}

.twitter-typeahead {
    width: 100%;
    display: table !important;
}

.twitter-typeahead .form-control {
    margin: 0 !important;
}

.tt-hint, .tt-input {
    color: #999;
    font-size: 14px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tt-hint[disabled] {
    background-color: #fff !important;
}

.tt-menu {
    min-width: 160px;
    margin-top: 2px;
    padding: 5px 0;
    background-color: #fff;
    border: 1px solid #ebebeb;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    width: 100%;
    overflow-y: auto;
    max-height: 250px;
}

.tt-menu h3 {
    margin: 5px 0;
    padding: 6px 12px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.modal-open .tt-menu {
    z-index: 10055 !important;
}

.tt-suggestion {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 16px;
}

.tt-suggestion:hover {
    cursor: pointer;
    background: #eee;
}

.tt-suggestion p {
    margin: 0;
}

/*
    Skip Step , .............. 1 -> 2 -> 3
    */
.bg-hover-white:hover, .bg-white {
    background: #fff !important;
}

.mt-element-step .row {
    margin: 0;
}

.mt-element-step .step-default .mt-step-col {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

.mt-element-step .step-default .mt-step-number {
    font-size: 26px;
    border-radius: 50% !important;
    display: inline-block;
    margin: auto auto 20px;
    padding: 3px 14px;
}

.mt-element-step .step-default .mt-step-title {
    font-size: 30px;
    font-weight: 100;
}

.mt-element-step .step-default .active {
    background-color: #32c5d2 !important;
}

.mt-element-step .step-default .active .mt-step-number {
    color: #32c5d2 !important;
}

.mt-element-step .step-default .active .mt-step-content, .mt-element-step .step-default .active .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-default .done {
    background-color: #26c281 !important;
}

.mt-element-step .step-default .done .mt-step-number {
    color: #26c281 !important;
}

.mt-element-step .step-default .done .mt-step-content, .mt-element-step .step-default .done .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-default .error {
    background-color: #e7505a !important;
}

.mt-element-step .step-default .error .mt-step-number {
    color: #e7505a !important;
}

.mt-element-step .step-default .error .mt-step-content, .mt-element-step .step-default .error .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-thin .mt-step-col {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mt-element-step .step-thin .mt-step-number {
    font-size: 26px;
    border-radius: 50% !important;
    float: left;
    margin: auto;
    padding: 3px 14px;
}

.mt-element-step .step-thin .mt-step-title {
    font-size: 24px;
    font-weight: 100;
    padding-left: 60px;
    margin-top: -4px;
}

.mt-element-step .step-thin .mt-step-content {
    padding-left: 60px;
    margin-top: -5px;
}

.mt-element-step .step-thin .active {
    background-color: #32c5d2 !important;
}

.mt-element-step .step-thin .active .mt-step-number {
    color: #32c5d2 !important;
}

.mt-element-step .step-thin .active .mt-step-content, .mt-element-step .step-thin .active .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-thin .done {
    background-color: #26c281 !important;
}

.mt-element-step .step-thin .done .mt-step-number {
    color: #26c281 !important;
}

.mt-element-step .step-thin .done .mt-step-content, .mt-element-step .step-thin .done .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-thin .error {
    background-color: #e7505a !important;
}

.mt-element-step .step-thin .error .mt-step-number {
    color: #e7505a !important;
}

.mt-element-step .step-thin .error .mt-step-content, .mt-element-step .step-thin .error .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-background .mt-step-col {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    height: 160px;
}

.mt-element-step .step-background .mt-step-number {
    font-size: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 0.79em;
    color: #dae1e4;
    z-index: 4;
}

.mt-element-step .step-background .mt-step-content, .mt-element-step .step-background .mt-step-title {
    text-align: right;
    z-index: 5;
    position: relative;
    padding-right: 25%;
}

.mt-element-step .step-background .mt-step-title {
    font-size: 30px;
    font-weight: 100;
}

.mt-element-step .step-background .active {
    background-color: #32c5d2 !important;
}

.mt-element-step .step-background .active .mt-step-number {
    color: #2ab4c0 !important;
}

.mt-element-step .step-background .active .mt-step-content, .mt-element-step .step-background .active .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-background .done {
    background-color: #26c281 !important;
}

.mt-element-step .step-background .done .mt-step-number {
    color: #22ad73 !important;
}

.mt-element-step .step-background .done .mt-step-content, .mt-element-step .step-background .done .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-background .error {
    background-color: #e7505a !important;
}

.mt-element-step .step-background .error .mt-step-number {
    color: #e43a45 !important;
}

.mt-element-step .step-background .error .mt-step-content, .mt-element-step .step-background .error .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-background-thin .mt-step-col {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.mt-element-step .step-background-thin .mt-step-number {
    font-size: 120px;
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 0.79em;
    color: #dae1e4;
    z-index: 4;
}

.mt-element-step .step-background-thin .mt-step-title {
    font-size: 30px;
    font-weight: 100;
    text-align: right;
    padding-right: 25%;
    z-index: 5;
    position: relative;
}

.mt-element-step .step-background-thin .mt-step-content {
    text-align: right;
    position: relative;
    padding-right: 25%;
    z-index: 5;
}

.mt-element-step .step-background-thin .active {
    background-color: #32c5d2 !important;
}

.mt-element-step .step-background-thin .active .mt-step-number {
    color: #2ab4c0 !important;
}

.mt-element-step .step-background-thin .active .mt-step-content, .mt-element-step .step-background-thin .active .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-background-thin .done {
    background-color: #26c281 !important;
}

.mt-element-step .step-background-thin .done .mt-step-number {
    color: #22ad73 !important;
}

.mt-element-step .step-background-thin .done .mt-step-content, .mt-element-step .step-background-thin .done .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-background-thin .error {
    background-color: #e7505a !important;
}

.mt-element-step .step-background-thin .error .mt-step-number {
    color: #e43a45 !important;
}

.mt-element-step .step-background-thin .error .mt-step-content, .mt-element-step .step-background-thin .error .mt-step-title {
    color: #fff !important;
}

.mt-element-step .step-no-background .mt-step-col {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

.mt-element-step .step-no-background .mt-step-number {
    font-size: 26px;
    border-radius: 50% !important;
    display: inline-block;
    margin: auto auto 20px;
    padding: 3px 14px;
    border: 1px solid #e5e5e5;
}

.mt-element-step .step-no-background .mt-step-title {
    font-size: 30px;
    font-weight: 100;
}

.mt-element-step .step-no-background .active .mt-step-number {
    color: #32c5d2 !important;
    border-color: #32c5d2 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background .active .mt-step-content, .mt-element-step .step-no-background .active .mt-step-title {
    color: #32c5d2 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background .done .mt-step-number {
    color: #26c281 !important;
    border-color: #26c281 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background .done .mt-step-content, .mt-element-step .step-no-background .done .mt-step-title {
    color: #26c281 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background .error .mt-step-number {
    color: #e7505a !important;
    border-color: #e7505a !important;
    font-weight: 700;
}

.mt-element-step .step-no-background .error .mt-step-content, .mt-element-step .step-no-background .error .mt-step-title {
    color: #e7505a !important;
    font-weight: 700;
}

.mt-element-step .step-no-background-thin .mt-step-col {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mt-element-step .step-no-background-thin .mt-step-number {
    font-size: 26px;
    border-radius: 50% !important;
    float: left;
    margin: auto;
    padding: 3px 14px;
    border: 1px solid #e5e5e5;
}

.mt-element-step .step-no-background-thin .mt-step-title {
    font-size: 24px;
    font-weight: 100;
    padding-left: 60px;
    margin-top: -4px;
}

.mt-element-step .step-no-background-thin .mt-step-content {
    padding-left: 60px;
    margin-top: -5px;
}

.mt-element-step .step-no-background-thin .active .mt-step-number {
    color: #32c5d2 !important;
    border-color: #32c5d2 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background-thin .active .mt-step-content, .mt-element-step .step-no-background-thin .active .mt-step-title {
    color: #32c5d2 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background-thin .done .mt-step-number {
    color: #26c281 !important;
    border-color: #26c281 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background-thin .done .mt-step-content, .mt-element-step .step-no-background-thin .done .mt-step-title {
    color: #26c281 !important;
    font-weight: 700;
}

.mt-element-step .step-no-background-thin .error .mt-step-number {
    color: #e7505a !important;
    border-color: #e7505a !important;
    font-weight: 700;
}

.mt-element-step .step-no-background-thin .error .mt-step-content, .mt-element-step .step-no-background-thin .error .mt-step-title {
    color: #e7505a !important;
    font-weight: 700;
}

.mt-element-step .step-line .mt-step-col {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

.mt-element-step .step-line .mt-step-number {
    font-size: 26px;
    border-radius: 50% !important;
    display: inline-block;
    margin: auto auto 5px;
    padding: 9px;
    border: 3px solid #e5e5e5;
    position: relative;
    z-index: 5;
    height: 60px;
    width: 60px;
    text-align: center;
}

.mt-element-step .step-line .mt-step-number > i {
    position: relative;
    top: 50%;
    transform: translateY(-120%);
}

.mt-element-step .step-line .mt-step-title:after, .mt-element-step .step-line .mt-step-title:before {
    content: "";
    height: 3px;
    width: 50%;
    position: absolute;
    background-color: #e5e5e5;
    top: 53px;
    z-index: 4;
}

.mt-element-step .step-line .mt-step-title {
    font-size: 20px;
    font-weight: 400;
}

.mt-element-step .step-line .mt-step-title:after {
    left: 50%;
}

.mt-element-step .step-line .mt-step-title:before {
    right: 50%;
}

.mt-element-step .step-line .first .mt-step-title:before, .mt-element-step .step-line .last .mt-step-title:after {
    content: none;
}

.mt-element-step .step-line .active .mt-step-number {
    color: #32c5d2 !important;
    border-color: #32c5d2 !important;
}

.mt-element-step .step-line .active .mt-step-content, .mt-element-step .step-line .active .mt-step-title {
    color: #32c5d2 !important;
}

.mt-element-step .step-line .active .mt-step-title:after, .mt-element-step .step-line .active .mt-step-title:before {
    background-color: #32c5d2;
}

.mt-element-step .step-line .done .mt-step-number {
    color: #26c281 !important;
    border-color: #26c281 !important;
}

.mt-element-step .step-line .done .mt-step-content, .mt-element-step .step-line .done .mt-step-title {
    color: #26c281 !important;
}

.mt-element-step .step-line .done .mt-step-title:after, .mt-element-step .step-line .done .mt-step-title:before {
    background-color: #26c281;
}

.mt-element-step .step-line .error .mt-step-number {
    color: #e7505a !important;
    border-color: #e7505a !important;
}

.mt-element-step .step-line .error .mt-step-content, .mt-element-step .step-line .error .mt-step-title {
    color: #e7505a !important;
}

.mt-element-step .step-line .error .mt-step-title:after, .mt-element-step .step-line .error .mt-step-title:before {
    background-color: #e7505a;
}

@media (max-width: 991px) {
    .mt-element-step .step-line .mt-step-title:after, .mt-element-step .step-line .mt-step-title:before {
        content: none;
    }
}

/* ============================================================
 * bootstrapSwitch v1.5 by Larentis Mattia @SpiritualGuru
 * http://www.larentis.eu/
 *
 * Enhanced for radiobuttons by Stein, Peter @BdMdesigN
 * http://www.bdmdesign.org/
 *
 * Restyled by KeenThemes for Metronic Theme
 * 
 * Project site:
 * http://www.larentis.eu/switch/
 * ============================================================
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * ============================================================ */
.has-switch {
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid;
    border-color: #e3e3e3;
    position: relative;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    min-width: 100px;
}

.has-switch.switch-mini {
    min-width: 72px;
}

.has-switch.switch-small {
    min-width: 80px;
}

.has-switch.switch-large {
    min-width: 120px;
}

.has-switch.deactivate {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default !important;
}

.has-switch.deactivate label, .has-switch.deactivate span {
    cursor: default !important;
}

.has-switch > div {
    display: inline-block;
    width: 150%;
    position: relative;
    top: 0;
}

.has-switch > div.switch-animate {
    -webkit-transition: left 0.5s;
    -moz-transition: left 0.5s;
    -o-transition: left 0.5s;
    transition: left 0.5s;
}

.has-switch > div.switch-off {
    left: -50%;
}

.has-switch > div.switch-on {
    left: 0%;
}

.has-switch input[type="radio"], .has-switch input[type="checkbox"] {
    display: none;
}

.has-switch span, .has-switch label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 100%;
    padding-bottom: 4px;
    padding-top: 4px;
    font-size: 14px;
    line-height: 20px;
}

.has-switch span.switch-mini, .has-switch label.switch-mini {
    padding-bottom: 4px;
    padding-top: 4px;
    font-size: 10px;
    line-height: 9px;
}

.has-switch span.switch-small, .has-switch label.switch-small {
    padding-bottom: 3px;
    padding-top: 3px;
    font-size: 12px;
    line-height: 18px;
}

.has-switch span.switch-large, .has-switch label.switch-large {
    padding-bottom: 9px;
    padding-top: 9px;
    font-size: 16px;
    line-height: normal;
}

.has-switch label {
    text-align: center;
    margin-top: -1px;
    margin-bottom: -1px;
    z-index: 100;
    width: 34%;
    color: #ffffff;
    background-color: #f3f3f3;
}

.has-switch label:hover, .has-switch label:focus, .has-switch label:active, .has-switch label.active, .has-switch label.disabled, .has-switch label[disabled] {
    color: #ffffff;
    background-color: #e6e6e6;
}

.has-switch label:active, .has-switch label.active {
    background-color: #cccccc;
}

.has-switch label i {
    color: #000;
    line-height: 18px;
    pointer-events: none;
}

.has-switch span {
    text-align: center;
    z-index: 1;
    width: 33%;
}

.has-switch span.switch-left {
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-left-radius: 4px;
}

.has-switch span.switch-right {
    color: #333333;
    background-color: #e0e0e0;
}

.has-switch span.switch-right:hover, .has-switch span.switch-right:focus, .has-switch span.switch-right:active, .has-switch span.switch-right.active, .has-switch span.switch-right.disabled, .has-switch span.switch-right[disabled] {
    color: #333333;
    background-color: #e9e9e9;
}

.has-switch span.switch-right:active, .has-switch span.switch-right.active {
    background-color: #e6e6e6 \9;
}

.has-switch span.switch-primary, .has-switch span.switch-left {
    color: #ffffff;
    background-color: #005fcc;
}

.has-switch span.switch-primary:hover, .has-switch span.switch-left:hover, .has-switch span.switch-primary:focus, .has-switch span.switch-left:focus, .has-switch span.switch-primary:active, .has-switch span.switch-left:active, .has-switch span.switch-primary.active, .has-switch span.switch-left.active, .has-switch span.switch-primary.disabled, .has-switch span.switch-left.disabled, .has-switch span.switch-primary[disabled], .has-switch span.switch-left[disabled] {
    color: #ffffff;
    background-color: #0088cc;
}

.has-switch span.switch-primary:active, .has-switch span.switch-left:active, .has-switch span.switch-primary.active, .has-switch span.switch-left.active {
    background-color: #006699 \9;
}

.has-switch span.switch-info {
    color: #ffffff;
    background-color: #41a7c5;
    border-color: #5bc0de;
}

.has-switch span.switch-info:hover, .has-switch span.switch-info:focus, .has-switch span.switch-info:active, .has-switch span.switch-info.active, .has-switch span.switch-info.disabled, .has-switch span.switch-info[disabled] {
    color: #ffffff;
    background-color: #5bc0de;
}

.has-switch span.switch-info:active, .has-switch span.switch-info.active {
    background-color: #31b0d5 \9;
}

.has-switch span.switch-success {
    color: #ffffff;
    background-color: #3cc051;
    border-color: #62c462;
}

.has-switch span.switch-success:hover, .has-switch span.switch-success:focus, .has-switch span.switch-success:active, .has-switch span.switch-success.active, .has-switch span.switch-success.disabled, .has-switch span.switch-success[disabled] {
    color: #ffffff;
    background-color: #62c462;
}

.has-switch span.switch-success:active, .has-switch span.switch-success.active {
    background-color: #42b142 \9;
}

.has-switch span.switch-warning {
    color: #ffffff;
    background-color: #fcb322;
    border-color: #fbb450;
}

.has-switch span.switch-warning:hover, .has-switch span.switch-warning:focus, .has-switch span.switch-warning:active, .has-switch span.switch-warning.active, .has-switch span.switch-warning.disabled, .has-switch span.switch-warning[disabled] {
    color: #ffffff;
    background-color: #fbb450;
}

.has-switch span.switch-warning:active, .has-switch span.switch-warning.active {
    background-color: #fa9f1e \9;
}

.has-switch span.switch-danger {
    color: #ffffff;
    background-color: #d14641;
    border-color: #ee5f5b;
}

.has-switch span.switch-danger:hover, .has-switch span.switch-danger:focus, .has-switch span.switch-danger:active, .has-switch span.switch-danger.active, .has-switch span.switch-danger.disabled, .has-switch span.switch-danger[disabled] {
    color: #ffffff;
    background-color: #ed4e2a;
}

.has-switch span.switch-danger:active, .has-switch span.switch-danger.active {
    background-color: #e9322d \9;
}

.has-switch span.switch-default {
    color: #333333;
    background-color: #e0e0e0;
    border-color: #d9d9d9;
}

.has-switch span.switch-default:hover, .has-switch span.switch-default:focus, .has-switch span.switch-default:active, .has-switch span.switch-default.active, .has-switch span.switch-default.disabled, .has-switch span.switch-default[disabled] {
    color: #333333;
    background-color: #ffffff;
}

.has-switch span.switch-default:active, .has-switch span.switch-default.active {
    background-color: #e3e3e3 \9;
}

/**
 * selectize.default.css (v0.8.5) - Default Theme
 * Copyright (c) 2013 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
/*
Version: 3.4.5 Timestamp: Mon Nov  4 08:22:42 PST 2013
*/
/*.form-horizontal {
   width:500px;
}*/
.datetime-picker-dropdown {
}

.datetime-picker-dropdown > li.date-picker-menu div > table .btn-default {
    border: 0;
}

.datetime-picker-dropdown > li.time-picker-menu div > table {
}

.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1; *display: inline;
    vertical-align: middle;
}

.select2-container, .select2-drop, .select2-search, .select2-search input {
    /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
    -webkit-box-sizing: border-box;
    /* webkit */
    -moz-box-sizing: border-box;
    /* firefox */
    box-sizing: border-box;
    /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;
    border-radius: 4px;
    background-clip: padding-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff) );
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;
    border-radius: 0 0 4px 4px;
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff) );
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(top, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;
    font-size: 1px;
    text-decoration: none;
    border: 0;
    background: url("select2.png") right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;
    background-clip: padding-box;
    background: #ccc;
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee) );
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url("select2.png") no-repeat 0 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;
    position: relative;
    z-index: 10000;
    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;
    outline: 0;
    font-family: sans-serif;
    font-size: 1em;
    border: 1px solid #aaa;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff url("select2.png") no-repeat 100% -22px;
    background: url("select2.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url("select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("select2.png") no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url("select2-spinner.gif") no-repeat 100%;
    background: url("select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url("select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("select2-spinner.gif") no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice, .select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #eee;
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee) );
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee) );
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label {
    padding-left: 20px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 40px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 60px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 80px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 100px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 110px;
}

.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
    padding-left: 120px;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;
    min-height: 1em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}

.select2-results .select2-disabled {
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url("select2-spinner.gif") no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}

/* multiselect */
.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;
    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;
    background-color: #fff;
    background-image: -webkit-gradient( linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff) );
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select2-locked {
    padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}

.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;
    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url("select2-spinner.gif") no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;
    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    background-clip: padding-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient( linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee) );
    background-image: -webkit-linear-gradient( top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100% );
    background-image: -moz-linear-gradient( top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100% );
    background-image: linear-gradient( top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100% );
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}

.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: -2px;
    font-size: 1px;
    outline: none;
    background: url("../img/select2.png") right top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
    background-position: right -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
    display: none;
    background: none;
}

/* end multiselect */
.select2-result-selectable .select2-match, .select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
    .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
        background-image: url("select2x2.png") !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
    background: #f2f2f2 !important;
    background: rgba(0, 0, 0, 0.06) !important;
    border: 0 none !important;
    visibility: visible !important;
    -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
    box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: "!";
    visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
    position: relative;
    padding: 5px 8px;
    background: #f8f8f8;
    border-bottom: 1px solid #d0d0d0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
    position: absolute;
    top: 50%;
    right: 8px;
    margin-top: -12px;
    font-size: 20px !important;
    line-height: 20px;
    color: #303030;
    opacity: 0.4;
}

.selectize-dropdown-header-close:hover {
    color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    float: left;
    border-top: 0 none;
    border-right: 1px solid #f2f2f2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
    position: relative;
    padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 17px;
    padding: 2px 0 0 0;
    font-size: 12px;
    font-weight: bold;
    color: inherit;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border-left: 1px solid #0073bb;
    -webkit-border-radius: 0 2px 2px 0;
    -moz-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
    background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
    border-left-color: #00578d;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
    background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
    border-left-color: #aaaaaa;
}

.selectize-control {
    position: relative;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
    font-family: inherit;
    font-size: 13px;
    -webkit-font-smoothing: inherit;
    line-height: 20px;
    color: #303030;
}

.selectize-input, .selectize-control.single .selectize-input.input-active {
    display: inline-block;
    cursor: text;
    background: #ffffff;
}

.selectize-input {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    padding: 4px 4px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selectize-control.multi .selectize-input.has-items {
    padding: 5px 8px 2px;
}

.selectize-input.full {
    background-color: #ffffff;
}

.selectize-input.disabled, .selectize-input.disabled * {
    cursor: default !important;
}

.selectize-input.focus {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.selectize-input > * {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: baseline;
    zoom: 1; }

.selectize-control.multi .selectize-input > div {
    padding: 2px 6px;
    margin: 0 3px 3px 0;
    color: #ffffff;
    cursor: pointer;
    background: #1da7ee;
    border: 1px solid #0073bb;
}

.selectize-control.multi .selectize-input > div.active {
    color: #ffffff;
    background: #92c836;
    border: 1px solid #00578d;
}

.selectize-control.multi .selectize-input.disabled > div, .selectize-control.multi .selectize-input.disabled > div.active {
    color: #ffffff;
    background: #d2d2d2;
    border: 1px solid #aaaaaa;
}

.selectize-input > input {
    max-width: 100% !important;
    max-height: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 1px !important;
    line-height: inherit !important;
    text-indent: 0 !important;
    background: none !important;
    border: 0 none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-user-select: auto !important;
}

.selectize-input > input:focus {
    outline: none !important;
}

.selectize-input::after {
    display: block;
    clear: left;
    content: " ";
}

.selectize-input.dropdown-active::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background: #f0f0f0;
    content: " ";
}

.selectize-dropdown {
    position: absolute;
    z-index: 15000;
    margin: -1px 0 0 0;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-top: 0 none;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selectize-dropdown [data-selectable] {
    overflow: hidden;
    cursor: pointer;
}

.selectize-dropdown [data-selectable] .highlight {
    background: rgba(125, 168, 208, 0.2);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.selectize-dropdown [data-selectable], .selectize-dropdown .optgroup-header {
    padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
    color: #303030;
    cursor: default;
    background: #ffffff;
}

.selectize-dropdown .active {
    color: #495c68;
    background-color: #f5fafd;
}

.selectize-dropdown .active.create {
    color: #495c68;
}

.selectize-dropdown .create {
    color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
    cursor: pointer;
}

.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active input {
    cursor: text;
}

.selectize-control.single .selectize-input:after {
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    width: 0;
    height: 0;
    margin-top: -3px;
    border-color: #808080 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    content: " ";
}

.selectize-control.single .selectize-input.dropdown-active:after {
    margin-top: -4px;
    border-color: transparent transparent #808080 transparent;
    border-width: 0 5px 5px 5px;
}

.selectize-control.rtl.single .selectize-input:after {
    right: auto;
    left: 15px;
}

.selectize-control.rtl .selectize-input > input {
    margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
    background-color: #fafafa;
    opacity: 0.5;
}

.selectize-control.multi .selectize-input.has-items {
    padding-right: 5px;
    padding-left: 5px;
}

.selectize-control.multi .selectize-input.disabled [data-value] {
    color: #999;
    text-shadow: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.selectize-control.multi .selectize-input.disabled [data-value], .selectize-control.multi .selectize-input.disabled [data-value] .remove {
    border-color: #e6e6e6;
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
    background: none;
}

.selectize-control.multi .selectize-input [data-value] {
    text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
    background-color: #1b9dec;
    background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
    background-image: -webkit-gradient( linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9) );
    background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
    background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
    background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
    background-repeat: repeat-x;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.selectize-control.multi .selectize-input [data-value].active {
    background-color: #0085d4;
    background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
    background-image: -webkit-gradient( linear, 0 0, 0 100%, from(#008fd8), to(#0075cf) );
    background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
    background-image: -o-linear-gradient(top, #008fd8, #0075cf);
    background-image: linear-gradient(to bottom, #008fd8, #0075cf);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
}

.selectize-control.single .selectize-input {
    background-color: #f9f9f9;
    background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -webkit-gradient( linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2) );
    background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.selectize-control.single .selectize-input, .selectize-dropdown.single {
    border-color: #b8b8b8;
}

.selectize-dropdown .optgroup-header {
    padding-top: 7px;
    font-size: 0.85em;
    font-weight: bold;
}

.selectize-dropdown .optgroup {
    border-top: 1px solid #f0f0f0;
}

.selectize-dropdown .optgroup:first-child {
    border-top: 0 none;
}

.table-sort-asc {
    background: url(../img/sort_asc.png) no-repeat right;
}

.table-sort-both {
    background: url(../img/sort_both.png) no-repeat right;
}

.table-sort-desc {
    background: url(../img/sort_desc.png) no-repeat right;
}

.text-bold {
    font-weight: 700 !important;
}

.form-control {
    color: #555 !important;
}

/* here you can put your own css to customize and override the theme */
.alerts {
    position: fixed;
    width: 300px;
    right: 47px;
    /* top: 90px !Important; */
    z-index: 100000;
    bottom: -18px !important;
}

.alerts > .alert-dismissable {
    position: relative;
    z-index: 11;
    min-width: 250px;
}

.alerts > .alert-dismissable > label {
    font-weight: bold !important;
}

.alert {
    border-radius: 3px;
    /*background: rgba(0,0,0,.85) !important;*/
    /*color: #fff !important;*/
    -webkit-transition: bottom 200ms ease, -webkit-transform 200ms ease !important;
    transition: bottom 200ms ease, transform 200ms ease !important;
}

.alert-info-default {
    /*background: rgba(0,0,0,.85) !important;*/
    background: #0461af !important;
    color: #fff !important;
    -webkit-transition: bottom 200ms ease, -webkit-transform 200ms ease !important;
    transition: bottom 200ms ease, transform 200ms ease !important;
}

.alert h4 {
    font-weight: 600;
}

.alert .icon {
    margin-right: 10px;
}

.alert .close {
    color: #000;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.alert .close:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.alert a {
    color: #fff;
    text-decoration: underline;
}

/*MATERIAL DESIGN BUTTON STYLE OVERIDE*/
.sub-menu > li > a {
    font-size: 13px !important;
}

/*.ngscroll-scrollbar-container {
  right : -15px !important;
}*/
/* PORTLET - TIENPX */
.portlet-title .fontchitiet {
    font-weight: bold;
}

.portlet .font2 {
    color: #000000;
    font-weight: bold;
}

.controlthongtin {
    margin-top: 20px;
}

.col-md-12 .mau {
    color: blue;
}

/*.modal .modal-header {
    background-color: #EFEFEF;
}*/
.border-radius {
    border-radius: 4px !important;
}

.btn-cell-delete {
    position: relative;
    right: -5px;
    top: -10px;
    float: right;
}

tr.selected {
    background-color: rgb(255, 255, 204) !important;
}

tr.selected a {
}

.quote-inline {
    background-color: yellow;
    color: #000;
}

.post-details table {
    border-bottom-width: 1px;
}

.post-details .html-content > table > tbody > tr > td {
    border: 1px solid #000000;
}

.post-details .html-content > table > thead > tr > th {
    border: 1px solid #000000 !important;
}

/* Custom */
.h450 {
    height: 450px !important;
}

.h440 {
    height: 440px !important;
}

/*POST CSS*/
.margin-none {
    margin: 0px !important;
}

.padding-none {
    padding: 0px !important;
}

.padding-left-none {
    padding-left: 0px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.padding-left-25 {
    padding-left: 25px !important;
}

.padding-left-30 {
    padding-left: 30px !important;
}

.padding-right-none {
    padding-right: 0px !important;
}

.padding-right-5 {
    padding-right: 5px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

.padding-right-15 {
    padding-right: 15px !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

.padding-right-25 {
    padding-right: 25px !important;
}

.padding-right-30 {
    padding-right: 30px !important;
}

.padding-top-none {
    padding-top: 0px !important;
}

.padding-top-5 {
    padding-top: 5px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-top-25 {
    padding-top: 25px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-bottom-none {
    padding-bottom: 0px !important;
}

.padding-bottom-5 {
    padding-bottom: 5px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-bottom-25 {
    padding-bottom: 25px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}

.padding-none {
    padding: 0px !important;
}

.padding-left-none {
    padding-left: 0px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.padding-left-25 {
    padding-left: 25px !important;
}

.padding-left-30 {
    padding-left: 30px !important;
}

.margin-right-none {
    margin-right: 0px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-right-25 {
    margin-right: 25px !important;
}

.margin-right-30 {
    margin-right: 30px !important;
}

.margin-left-none {
    margin-left: 0px !important;
}

.margin-left-5 {
    margin-left: 5px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-left-25 {
    margin-left: 25px !important;
}

.margin-left-30 {
    margin-left: 30px !important;
}

.margin-top-none {
    margin-top: 0px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-top-5percent {
    margin-top: 5% !important;
}

.margin-top-3percent {
    margin-top: 3% !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-bottom-none {
    margin-bottom: 0px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.font-italic {
    font-style: italic;
}

.font-9 {
    font-size: 9px !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-11 {
    font-size: 11px !important;
}

.font-11 i {
    font-size: 12px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-12 input, select, textArea {
    font-size: 12px !important;
}

.font-11 input, select, textArea {
    font-size: 11px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-13 input, select, textArea {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-17 {
    font-size: 17px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-25 {
    font-size: 25px !important;
}

.font-arial {
    font-family: Arial !important;
}

h5 > a {
    line-height: 20px !important;
}

/* MODAL */
.modal-800 .modal-lg {
    width: 800px;
}

.modal-870 .modal-lg {
    width: 870px;
}

.modal-1100 .modal-lg {
    width: 1100px;
}

.modal-1200 .modal-lg {
    width: 1200px;
}

.modal-1300 .modal-lg {
    width: 1300px;
}

.modal-full .modal-lg {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.round {
    border-radius: 50% !important;
}

.clickable {
    cursor: pointer;
}

.clickable:hover {
    color: #0081c2;
}

.text-grey {
    color: #9d9e9f !important;
}

.thumbnail {
    padding: 2px !important;
}

/*HOME CARDS*/
.dashboard-portlet:hover {
    /*box-shadow: 1px 7px 10px #f3f3f3;*/
}

/*Steps*/
.dashboard-portlet-title.title-grey {
    background: #e02222 no-repeat right bottom;
    color: #fff !important;
}

.dashboard-portlet-title {
    padding: 7px 10px 7px 10px;
}

.dashboard-portlet-title p {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
}

.dashboard-portlet-title h2 {
    color: #f0f0f0;
    font-size: 22px;
}

.dashboard-portlet-title.title-grey h2 {
    color: #fefefe !important;
}

.dashboard-portlet-title.title-grey {
    background: #e02222 no-repeat right bottom;
}

.dashboard-portlet-title.title-blue {
    background: #0081c2 no-repeat right bottom;
    color: #fff !important;
}

.dashboard-portlet-title.front-step-three {
    background: #68727c no-repeat right bottom;
}

.dashboard-portlet-title.title-grey, .dashboard-portlet-title.title-blue {
    position: relative;
}

.dashboard-portlet-title.title-grey a, .dashboard-portlet-title.title-blue a {
    color: #fff !important;
    font-weight: 600;
}

.dashboard-item {
}

.dashboard-item:hover {
    background-color: #f3f3f3;
}

.card-list {
    background-color: #e2e4e6;
    padding: 0px 10px;
    float: left;
}

.card-list > .card-item {
    background-color: #fff;
    border-radius: 5px !important;
    border-bottom: 1px solid #a9aaab;
    border-right: 1px solid #a9aaab;
    cursor: pointer;
    float: left;
    width: 100%;
    padding-left: 5px;
    margin-top: 5px;
}

.card-list > .card-item:hover {
    background-color: #eaedf3;
}

.card-list > .card-item h5 a {
    color: #000;
    text-decoration: none;
}

.card-list > .card-item h5 a:hover {
    color: #000;
}

.card-list .card-label {
    float: left;
    height: 8px;
    margin: 0 3px 3px 0;
    padding: 0;
    width: 30px;
    line-height: 100px;
}

.card-label {
    background-color: #b6bbbf;
    border-radius: 5px !important;
    color: #fff;
    display: block;
    font-weight: 700;
    margin-right: 3px;
    overflow: hidden;
    padding: 3px 6px;
    position: relative;
    text-overflow: ellipsis;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 2px #000;
    white-space: nowrap;
}

.card-list .card-label-yellow {
    background-color: #f2d600;
}

.card-list .card-label-red {
    background-color: #eb5a46;
}

.card-list .card-label-blue {
    background-color: #0461af;
}

.card-label-orange {
    background-color: #ff9f1a;
}

.card-label-grey {
    background-color: #e2e4e6;
}

/*POST DETAILS*/
.post-details {
    background-color: rgb(250, 250, 250);
    background-color: #fff;
    border: 0px solid #e2e2e2;
    padding: 10px;
}

.post-details h3 {
    margin-top: 0px;
}

.post-details p {
    font-size: 15px;
}

.post-details img {
    height: auto !important;
}

/* */
.file-process-thumb {
    width: 50px;
    background-color: #b2d1e5;
    display: block;
    height: 30px;
    padding-top: 5px;
    text-align: center;
    color: #fff;
}

/* app css stylesheet */
.tree-dropdown-menu {
    left: -135px;
}

.select-file-grid-item {
}

.select-file-grid-item:hover {
    text-decoration: underline;
    color: #0461af;
}

.tree-folder-selected {
    background-color: #eea236;
    color: #fff !important;
    /* padding-right : 10px; */
}

.tree-folder-selected:hover {
    background-color: #eea236 !important;
    color: #fff !important;
}

.tree-folder-selected > i {
    color: #fff !important;
}

/*.modal-header {
    padding: 5px 10px 5px 15px;
}*/
uib-accordion-group-group .panel-group .panel-heading {
    padding: 5px;
}

uib-accordion-group-group .panel-group .panel-heading .panel-title {
    font-size: 13px;
}

.upload-metadata {
}

.upload-metadata .form-condensed {
}

.form-condensed .form-group {
    margin-bottom: 5px;
}

.form-nopadding {
    padding: 0px;
}

/* Input validation */
input.ng-invalid {
    /*border: 1px solid #eea236;*/
}

input.ng-valid {
    /* border: 1px solid blue; */
}

/* Loading indicator */
.loading-indicator {
    position: absolute;
    z-index: 99;
    box-shadow: 1px 1px 7px #777;
    left: 42%;
    top: 0px;
    padding: 5px 10px 5px 10px;
    border-radius: 5px !important;
    font-weight: normal !important;
    background-color: #ffc;
    border: none;
    color: #000;
    text-align: center;
}

.my-loading-text {
    padding: 3px 5px 3px 5px;
    border-radius: 0px 0px 5px 5px !important;
    margin: 0px auto;
    z-index: 19999;
    background-color: #ffc;
    width: 240px;
    font-weight: bold;
    box-shadow: 1px 1px 7px #777;
    font-size: 14px;
}

.my-loading {
    z-index: 19998;
    top: 0px;
    text-align: center;
    position: fixed;
    width: 100%;
    width: 100vw;
}

/* Transcode form */
.transcode-form {
    min-height: 360px;
}

.transcode-form .option-line {
    padding: 0px 0px 0px 0px;
    height: 25px;
}

.tree-bordered {
    border: 1px Solid #e3e3e3;
    min-height: 400px;
}

.large-modal .modal-lg {
    width: 960px !important;
    padding-left: 20px;
    padding-right: 20px;
}

.large-modal .modal-lg .modal-content {
}

.menu {
    list-style: none;
    border-bottom: 0.1em solid black;
    margin-bottom: 2em;
    padding: 0 0 0.5em;
}

.menu:before {
    content: "[";
}

.menu:after {
    content: "]";
}

.menu > li {
    display: inline;
}

.menu > li:before {
    content: "|";
    padding-right: 0.3em;
}

.menu > li:nth-child(1):before {
    content: "";
    padding: 0;
}

[ng-cloak].splash {
    display: block !important;
}

[ng-cloak] {
    display: none;
}

/* some naive styles for a splash page */
.splash {
    background: blue;
    color: white;
}

.splash h2 {
    font-size: 2.1em;
    font-weight: 500;
}

.radio, .checkbox {
    padding-left: 20px;
}

table.elipsis {
    table-layout: fixed;
}

table.elipsis tbody tr {
    /*cursor: pointer;*/
}

table.elipsis td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/**
  Demo AngularJS SignalR
***********************************/
.colStyle {
    margin-right: 10px;
    width: 24%;
    padding-top: 10px;
    margin-top: 20px;
    border: 1px solid orange;
    min-height: 500px;
}

.busyIndicator .alert {
    left: 40%;
    top: 5%;
    position: fixed;
    z-index: 1050;
    width: 400px;
    height: 40px;
    padding-left: 10px;
    padding-top: 10px;
    background-color: lightgreen;
    color: black;
    border-color: transparent;
}

.busyIndicator .backgroundMask {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: black;
    z-index: 1049;
}

.over {
    background-color: #fff;
    border: 2px dashed red;
}

/***
Created by Keentheme for Metronic theme
***/
.tree {
    padding-left: 14px;
    overflow: auto;
    position: relative;
}

.tree-solid-line {
    padding-left: 12px;
}

.tree.tree-no-line {
    padding-left: 0;
}

.tree:before {
    width: 1px;
    z-index: 1;
    display: block;
    content: "";
    position: absolute;
    top: -21px;
    bottom: 16px;
    left: 0;
    border-left: 1px dotted #666;
}

.tree.tree-solid-line:before {
    border-left: 1px solid #999;
}

.tree.tree-no-line:before {
    display: none;
}

.tree .tree-folder {
    width: auto;
    min-height: 20px;
    cursor: pointer;
}

.tree .tree-folder .tree-folder-header {
    position: relative;
    min-height: 20px;
    line-height: 20px;
    min-width: 100px;
}

.tree .tree-folder .tree-folder-header:hover {
    background-color: #eee;
}

.tree .tree-folder .tree-folder-header .tree-folder-name, .tree .tree-item .tree-item-name {
    display: inline;
    z-index: 2;
}

.tree .tree-folder img {
    margin-left: 4px;
}

.tree .tree-folder .tree-folder-header .tree-folder-name {
    margin-left: 2px;
}

.tree .tree-folder .tree-folder-content {
    margin-left: 23px;
    position: relative;
}

.tree .tree-folder .tree-folder-content:before {
    display: inline-block;
    content: "";
    position: absolute;
    width: 1px;
    z-index: 1;
    top: -9px;
    bottom: 16px;
    left: -12px;
    border-left: 1px dotted #666;
}

.tree.tree-solid-line .tree-folder .tree-folder-content:before {
    border-left: 1px solid #999;
}

.tree.tree-no-line .tree-folder .tree-folder-content:before {
    display: none;
}

.tree .tree-item {
    position: relative;
    min-height: 20px;
    line-height: 20px;
    min-width: 100px;
    cursor: pointer;
}

.tree .tree-item:hover {
    background-color: #eee;
}

.tree .tree-item .tree-item-name {
    margin-left: 2px;
}

.tree .tree-folder, .tree .tree-item {
    position: relative;
}

.tree .tree-folder:before, .tree .tree-item:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 14px;
    left: -13px;
    width: 18px;
    height: 0;
    border-top: 1px dotted #666;
    z-index: 1;
}

.tree.tree-solid-line .tree-folder:before, .tree.tree-solid-line .tree-item:before {
    border-top: 1px solid #999;
}

.tree.tree-no-line .tree-folder:before, .tree.tree-no-line .tree-item:before {
    display: none;
}

.tree .tree-selected {
    background-color: #eee;
    color: #6398b0;
}

.tree .tree-selected:hover {
    background-color: #e1e1e1;
}

.tree .tree-item, .tree .tree-folder {
    border: 1px solid #fff;
}

.tree .tree-item, .tree .tree-folder .tree-folder-header {
    margin: 0;
    padding: 4px 5px 6px 5px;
    color: #333;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.tree .tree-item .tree-item-name > i, .tree .tree-folder .tree-folder-header > i, .tree .tree-folder .tree-folder-header .tree-folder-name > i.fa-custom {
    color: #0461af;
}

.tree .tree-item.tree-selected > i, .tree .tree-item .tree-item-name > i {
    margin-left: -2px;
    width: 14px;
    display: inline-block;
    text-align: center;
    margin-right: 1px;
    color: #666;
}

.tree.tree-plus-minus .tree-folder-header .fa-expand-open:before {
    height: 16px;
    width: 16px;
    line-height: 16px;
    vertical-align: middle;
    display: inline-block;
    background: url("../../../../assets/admin/layout4/img/tree-icons.png") no-repeat;
    background-position: 0 -21px;
    content: "";
}

.tree.tree-plus-minus .tree-folder-header .fa-expand:before {
    height: 16px;
    width: 16px;
    line-height: 16px;
    vertical-align: middle;
    display: inline-block;
    background: url("../../../../assets/admin/layout4/img/tree-icons.png") no-repeat;
    background-position: 0 2px;
    content: "";
}

.ie .tree.tree-plus-minus .tree-folder-header .fa-expand:before, .ie .tree.tree-plus-minus .tree-folder-header .fa-expand-open:before {
    margin-top: -5px;
}

.tree.tree-plus-minus .tree-folder-name {
    margin-left: 0px !important;
}

.tree .tree-actions {
    display: none;
    position: absolute;
    margin-top: 1px;
    right: 4px;
}

.tree .tree-item:hover .tree-actions, .tree .tree-folder-header:hover .tree-actions {
    display: inline-block;
}

.tree .tree-actions > i {
    font-weight: 300;
    border: 1px solid #999;
    padding: 1px 3px;
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-right: 6px;
    margin-top: 0px;
    display: inline-block;
}

.tree .tree-actions > i:hover {
    color: #666;
    border: 1px solid #666;
}

.icon-new {
    background: url("../../assets/metronic/img/new.gif") no-repeat top left;
    width: 24px;
    height: 12px;
    display: inline-block;
    margin: 0 0 0 5px;
}

.icon-user {
    background: url("../../assets/metronic/img/user-128.png") no-repeat top left;
    width: 100%;
    display: inline-block;
    margin: 0 0 0 1px;
}

/* editable-text* tienpx*/
.editable-wrap {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
}

.editable-wrap .editable-controls, .editable-wrap .editable-error {
    margin-bottom: 0;
}

.editable-wrap .editable-controls > input, .editable-wrap .editable-controls > select, .editable-wrap .editable-controls > textarea {
    margin-bottom: 0;
}

.editable-wrap .editable-input {
    display: inline-block;
}

.editable-buttons {
    display: inline-block;
    vertical-align: top;
}

.editable-buttons button {
    margin-left: 5px;
}

.editable-input.editable-has-buttons {
    width: auto;
}

.editable-controls .editable-buttons button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 10px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
    margin-left: 5px;
}

.editable-bstime .editable-input input[type="text"] {
    width: 46px;
}

.editable-bstime .well-small {
    margin-bottom: 0;
    padding: 10px;
}

.editable-range output {
    display: inline-block;
    min-width: 30px;
    vertical-align: top;
    text-align: center;
}

.editable-color input[type="color"] {
    width: 50px;
}

.editable-checkbox label span, .editable-checklist label span, .editable-radiolist label span {
    margin-left: 7px;
    margin-right: 10px;
}

.editable-hide {
    display: none !important;
}

.editable-click, a.editable-click {
    text-decoration: none;
    color: #428bca;
}

.editable-click:hover, a.editable-click:hover {
    text-decoration: none;
    color: #2a6496;
    border-bottom-color: #2a6496;
}

.editable-empty, .editable-empty:hover, .editable-empty:focus, a.editable-empty, a.editable-empty:hover, a.editable-empty:focus {
    font-style: italic;
    color: #d14;
    text-decoration: none;
}

/*GRID BUTTON*/
.btn-grid-circle-button {
    height: 27px !important;
    width: 27px !important;
    padding: 4px 6px 2px 6px !important;
    margin-bottom: 4px !important;
    margin-right: 4px !important;
}

/*ECM ELEMENTS*/
ecm-el {
    display: block;
    padding: 5px;
    background-color: yellow;
}

.ecm-video {
    display: inline-block;
    padding: 5px;
    background-color: yellow;
    border: 1px solid #f3f3f3;
    border-radius: 3px;
    box-shadow: 1px 2px 7px #000;
}

.page-header.navbar.navbar-fixed-top {
    z-index: 100;
}

/* STORYLINE LIST */
/* Dropdown box on grid */
.dropdown-menu-sm {
    font-family: "Roboto", Helvetica, sans-serif;
}

.dropdown-menu-sm li > a {
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #428bca;
}

.dropdown-menu-sm .divider {
    margin: 5px 0;
}

.dropdown-menu-right:before {
    right: 9px !important;
    left: auto !important;
}

.dropdown-menu-right:after {
    right: 10px !important;
    left: auto !important;
}

.portlet > .portlet-title > .actions {
    float: right !important;
    display: inline-block !important;
    padding: 4px 0 !important;
}

/*caohv
add more css*/
.padding-none {
    padding: 0 !important;
}

.width5 {
    width: 5% !important;
}

.width10 {
    width: 10% !important;
}

.width15 {
    width: 15% !important;
}

.width20 {
    width: 20% !important;
}

.width21 {
    width: 21% !important;
}

.width30 {
    width: 30% !important;
}

.width40 {
    width: 40% !important;
}

.width50 {
    width: 50% !important;
}

.width60 {
    width: 60% !important;
}

.width100 {
    width: 100% !important;
}

.margin-top-10px {
    margin-top: 10px;
}

.padding-all-10px {
    padding: 10px;
}

.padding-all-5px {
    padding: 5px;
}

.padding-top-12px {
    padding-top: 12px;
}

.padding-top-10px {
    padding-top: 10px;
}

.padding-bottom-10px {
    padding-bottom: 10px;
}

.padding-left-15px {
    padding-left: 15px;
}

.padding-top-6px {
    padding-top: 6px;
}

.padding-right-5percen {
    padding-right: 5%;
}

.padding-right-2percen {
    padding-right: 2%;
}

.padding-none {
    padding: 0 !important;
}

.padding-right-none {
    padding-right: 0 !important;
}

.padding-left-none {
    padding-left: 0 !important;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

.vertical-align-top {
    vertical-align: top !important;
}

.border-none {
    border: none !important;
}

fieldset {
    padding: 0.35em 0.625em 0.75em !important;
    margin-top: 1rem!important;
    border: 1px solid silver !important;
}

.custom-fieldset {
    margin-bottom: 15px;
}

legend {
    display: block;
    padding: 0;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: inherit;
    color: #0070c0;
    font-weight: bold;
    border-bottom: 0px;
    width: fit-content;
}

.margin-left-020 {
    margin-left: -20px !important;
}

/*start cusom css*/
.grid-table > thead > tr {
    background-color: #eeeeee;
}

.grid-table > thead > tr > th {
    background-color: #eeeeee;
    vertical-align: middle;
}

.grid-table .btn-icon-only {
    height: 25px;
    width: 25px;
    margin-bottom: 5px;
    text-align: center;
    padding: 0 0 0 0;
}

.grid-table .selected {
    background-color: rgb(255, 255, 204) !important;
}

.grid-table thead {
    background-color: rgba(229, 229, 229, 0.5) !important;
}

.data-modal {
    position: relative;
}

.onTop {
    display: none;
}

.onTop.show {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    background: white;
    padding: 20px;
    position: absolute;
    right: 0;
    margin-right: -52px;
    display: block;
    border-radius: 20px;
    z-index: 1111111;
}

.tools.fixed {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    position: fixed;
    right: 25px;
    z-index: 9999;
    background: white;
    padding: 15px !important;
    border-radius: 5px;
}

.data-modal .modal-header {
    background-color: #3598dc !important;
    color: white !important;
    position: relative;
}

.data-modal .modal-title {
    font-size: 15px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.data-modal .modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    padding: 15px;
    color: white;
}

.list-style-none {
    list-style: none;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.word-break-break-all {
    word-break: break-all;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.row-odd {
    background-color: #f9f9f9;
}

/*NgyenBv ag-grid*/
.ag-bootstrap .ag-header-cell-text {
    padding-left: 2px;
    font-weight: 600;
    color: #337ab7;
}

.ag-bootstrap {
    font-family: "Josefin Sans", sans-serif;
}

.ag-bootstrap-row {
    background-color: #eeeeee;
}

.ag-bootstrap .ag-group-cell {
    font-style: normal !important;
}

.ag-bootstrap .ag-cell {
    border-left: 1px solid #ddd !important;
}

.ag-bootstrap .ag-root {
    border: 1px solid #ddd !important;
}

.ag-bootstrap .ag-header-group-cell {
    border-left: 1px solid #ddd !important;
    background: #eeeeee;
}

.ag-bootstrap .ag-header-cell {
    border-left: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    background: #eeeeee;
}

.ag-bootstrap .ag-header-group-cell.ag-header-group-cell-with-group {
    border-left: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    background: #eeeeee;
}

.ag-bootstrap .ag-cell-focus {
    border: none !important;
}

.ag-bootstrap .ag-cell-focus:focus {
    outline: none;
}

.ag-bootstrap .ag-body {
    background-color: #ffffff;
    min-height: 50px;
}

.ui-select-bootstrap > .ui-select-choices, .ui-select-bootstrap > .ui-select-no-choice {
    min-width: 100%;
    width: auto !important;
}

.vertical-align-middle {
    vertical-align: middle;
}

.slick-prev, .slick-next {
    background: black !important;
    margin: 0px 25px 0px 25px;
    height: 35px;
    width: 35px;
}

.slick-slider .slider-content > img {
    text-align: center;
    margin: auto;
    padding: 2px;
}

.slick-slider .slider-content > img:hover {
    padding: 0;
    border: 2px solid black;
}

.slick-slider img:focus, div:focus {
    outline: none;
}

.slider-main, .slider-dock {
    height: 450px;
}

.slick-slider .main-title {
    font-weight: bold;
    text-align: center;
}

.slider-dock .slick-center img {
    padding: 0;
    border: 2px solid black;
}

.grid-table {
    width: 100%;
    border-radius: 4px !important;
    overflow: hidden;
    box-shadow: 0px 0px 0px 1px #ddd;
}

.width3percent {
    width: 3%;
}

.page-sidebar .page-sidebar-menu li > a > .badge, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu li > a > .badge {
    position: absolute;
    right: 10px;
}

.margin-top--4px {
    margin-top: -4px;
}

li.active > a {
    font-weight: 900;
}

.highlight-fts {
    color: red;
}

.auto-line-down {
    word-wrap: break-word;
    /* IE 5.5-7 */
    white-space: -moz-pre-wrap;
    /* Firefox 1.0-2.0 */
    white-space: pre-wrap;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #f5f5f5;
    position: absolute;
    border-radius: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 7px;
}

/*////////////*/
.es-hightlight {
    color: #ff0000;
    font-weight: bold;
    font-size: 15px;
    font-style: italic;
}

em {
    color: #ff0000;
    font-weight: bold;
    font-size: 15px;
    font-style: italic;
}

/* 
.table-loading table {
  position: relative;
  min-height: calc(100vh - 480px);
}

.table-loading table::after {
  content: " . ";
  position: fixed;
  bottom: 50vh;
  left: calc(50% - 50px);
  z-index: 99;
  border: 5px solid #fdfeff;
  border-top: 5px solid #36c6d3;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 0.5s linear infinite;
}

.table-loading table tbody::before {
  content: " . ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.61);
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
} */
.input-icon.right > i {
    top: -2px!important;
    right: 4px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.table-search {
    table-layout: fixed;
    width: 100%;
}

.table-search > tbody > tr > td {
    padding: 0px 5px !important;
}

.table-search .input-datepicker {
    margin-bottom: -5px !important;
    margin-top: 25px !important;
    padding-bottom: 0 !important;
}

.table-search .formly-field {
    padding-bottom: 5px;
}

.table-search .btn {
    margin-bottom: 5px;
}

.table-search .form-group {
    margin-bottom: 0 !important;
}

.form-control {
    background-color: rgba(255, 170, 0, 0.02);
}

.view-digital {
    width: 100%;
    color: black;
}

.view-digital .menu-column i {
    /* margin-right: 10px; */
    /* margin-left: 10px; */
    color: #2b3643;
    bottom: 4px;
    font-size: 18px;
}

.view-digital .menu-column .item.active {
    background-color: #36c6d3;
    border-radius: 4px;
}

.view-digital .menu-column .item.active:hover {
    font-weight: 600;
    background-color: #36c6d396;
}

.view-digital .menu-column .item:hover {
    font-weight: 600;
    background-color: #eee;
    border-radius: 4px;
}

.view-digital .item {
    border-top: 1px solid white;
    padding-top: 5px;
    max-height: 3.5em;
    overflow: hidden;
    padding-left: 8px;
}

.view-digital .menu-column .item a {
    color: #2b3643;
}

.view-digital .menu-column .loadmore {
    margin-left: 2em;
    text-align: center;
    height: unset;
}

.view-digital .menu-column .sub-item {
    margin-left: 2em;
    margin-bottom: 0 !important;
}

.view-digital .menu-column .no-parrent .sub-item {
    margin-left: 0em;
    margin-bottom: 0 !important;
}

.view-digital .menu-column .sub-item .title {
    margin-top: 4px;
    margin-bottom: 0 !important;
}

.view-digital .menu-column {
    width: 20%;
    padding-right: 1em;
}

.view-digital .menu-column .main {
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.view-digital .list-column {
    text-align: left;
}

.view-digital .list-column h4 {
    font-weight: 500;
    font-style: italic;
    overflow: hidden;
}

/* 
.view-digital .listAttactment {
    background-color: #f5f5f587;
    height: calc(100vh - 270px);
    overflow-y: scroll;
} */
.view-digital .att-item {
    width: 120px;
    float: left;
    margin: 10px;
    padding: 5px;
    background-color: #ddd;
    position: relative;
    border-radius: 4px;
}

.view-digital .att-item:hover {
    background-color: #ccc;
}

.view-digital .att-item.active {
    background-color: #36c6d3;
}

.view-digital .att-item .checker {
    position: absolute;
    top: 2px;
    left: 2px;
}

.view-digital .att-item .box {
    position: absolute;
    right: 2px;
    top: 2px;
}

.view-digital .att-item .classified {
    position: absolute;
    right: 2px;
    top: 2px;
}

.view-digital .att-item .inbox {
    position: absolute;
    right: 2px;
    top: 35px;
    background: #333;
    color: white;
    border: none;
    padding: 5px;
    width: 30px;
}

.view-digital .att-item .print {
    position: absolute;
    right: 2px;
    top: 1;
    background: #333;
    color: white;
    border: none;
    padding: 5px;
    width: 30px;
}

.view-digital .att-item .classified .btn {
    background: #333;
    border: none;
    padding: 5px;
    width: 30px;
}

.view-digital .att-item img {
    height: 100px;
    width: 110px;
}

.view-digital .att-item .title {
    height: 3em;
    word-break: break-all;
    font-size: 12px;
    margin-top: 0.5em;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*.view-file-modal*/
.view-file-modal {
    position: relative;
    width: calc(100% -120px);
    display: none;
}

.view-file-modal.make-modal {
    display: block !important;
    margin: auto;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    border-radius: 4px;
    overflow: hidden;
    bottom: 10px;
    z-index: 999999999999;
    background-color: white;
    padding: 0px;
    -moz-box-shadow: 10px 10px 300px 200px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0px 0px 300px 200px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 0px 300px 200px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 300px 200px rgba(0, 0, 0, 0.8);
}

.view-file-modal.make-modal .close-modal {
    position: fixed;
    color: black;
    font-size: 15px;
    padding: 5px 11px;
    right: 10px;
    top: 13px;
    cursor: pointer;
    font-weight: 900;
    /* border-radius: 200px 200px 200px 200px !important; */
    -moz-border-radius: 200px 200px 200px 200px;
    /* -webkit-border-radius: 200px 200px 200px 200px; */
}

.view-file-modal.make-modal .close-modal:hover {
    color: #ff0000;
}

.view-file-modal.make-modal #pdfjs-view, .make-modal #image-view {
    height: calc(100vh - 65px);
}

/**Title*/
.view-file-modal .main-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    bottom: 6px;
    width: 100%;
    background: white;
}

.view-file-modal .main-title .btn {
    background: #333 !important;
    border: none;
    padding: 5px;
    color: white;
}

/**arrow*/
.view-file-modal .arrow {
    position: absolute;
    top: 50%;
    background: #b4bcc8;
    color: white;
    z-index: 99;
    height: 45px;
}

.view-file-modal .arrow.arrow-next {
    right: 20px;
}

.view-file-modal .arrow.arrow-next:hover {
    background: #3d4957;
    color: #36c6d3;
}

.view-file-modal .arrow.arrow-prev {
    left: 20px;
}

.view-file-modal .arrow.arrow-prev:hover {
    background: #3d4957;
    color: #36c6d3;
}

/**imageview*/
.view-file-modal #image-view {
    height: calc(100vh - 60px);
    text-align: center;
    overflow: hidden;
    cursor: grab;
}

.view-file-modal .image-tools {
    text-align: center;
    background: #4a4a4a;
    color: white;
    height: 31px;
    z-index: 999999;
}

.view-file-modal #pdfjs-view {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #b1b1b1;
    cursor: grab;
}

.padding-7px {
    padding: 7px;
}

.color-fff {
    color: #fff;
}

.padding-left-none {
    padding-left: 0 !important;
}

.keyboardInputInitiator {
    position: absolute;
    top: 11px;
    right: 8em;
    z-index: 10;
}

.content-attribute p {
    display: inline;
}

.row-even-c {
    background-color: white !important;
}

.row-odd-c {
    background-color: #f9f9f9 !important;
}

.row-background-color-e2cbff {
    background-color: #e2cbff !important;
}

.button-glowing {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #b20000;
        -webkit-box-shadow: 0 0 3px #b20000;
    }

    50% {
        background-color: #ff0000;
        -webkit-box-shadow: 0 0 40px #ff0000;
    }

    100% {
        background-color: #b20000;
        -webkit-box-shadow: 0 0 3px #b20000;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #b20000;
        -moz-box-shadow: 0 0 3px #b20000;
    }

    50% {
        background-color: #ff0000;
        -moz-box-shadow: 0 0 40px #ff0000;
    }

    100% {
        background-color: #b20000;
        -moz-box-shadow: 0 0 3px #b20000;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #b20000;
        box-shadow: 0 0 3px #b20000;
    }

    50% {
        background-color: #ff0000;
        box-shadow: 0 0 40px #ff0000;
    }

    100% {
        background-color: #b20000;
        box-shadow: 0 0 3px #b20000;
    }
}

@keyframes glowing {
    0% {
        background-color: #b20000;
        box-shadow: 0 0 3px #b20000;
    }

    50% {
        background-color: #ff0000;
        box-shadow: 0 0 40px #ff0000;
    }

    100% {
        background-color: #b20000;
        box-shadow: 0 0 3px #b20000;
    }
}

.Display-hidden {
    display: none;
}

.ShowForPhone {
    display: none !important;
}

@media (max-width: 480px) {
    .dataTables_paginate > div {
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .dataTables_paginate > div:first-child {
        float: none !important;
    }

    .dataTables_paginate > div:last-child {
        float: left !important;
    }

    .dataTables_paginate > div > span {
        display: none;
    }

    .page-header.navbar .top-menu {
        position: absolute !important;
        right: 45px !important;
    }

    .portlet.light {
        padding: 6px 10px 5px 10px;
        background-color: #fff;
    }

    .hideForPhone {
        display: none !important;
    }

    .Display-hidden {
        display: block !important;
    }

    .ShowForPhone {
        display: block !important;
    }

    .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu {
        margin-right: 0 !important;
    }
}

.tiles {
    margin-right: -10px;
    padding: 5px;
    border: 1px solid #aaa;
}

.tiles:before, .tiles:after {
    display: table;
    content: " ";
}

.tiles:after {
    clear: both;
}

.tiles .tile {
    display: block;
    letter-spacing: 0.02em;
    float: left;
    height: 135px;
    width: 135px !important;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 20px;
    overflow: hidden;
    border: 4px solid transparent;
    margin: 0 10px 10px 0;
}

.tiles .tile:after, .tiles .tile:before {
    /* content: ""; */
    float: left;
}

.tiles .tile.double {
    width: 280px !important;
}

.tiles .tile.double-down {
    height: 280px !important;
}

.tiles .tile.double-down i {
    margin-top: 95px;
}

.tiles .tile:hover {
    border-color: #aaa !important;
}

.tiles .tile:active, .tiles .tile.selected {
    border-color: #ccc !important;
}

.tiles .tile.selected .corner:after {
    content: "";
    display: inline-block;
    border-left: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid #ccc;
    position: absolute;
    top: -3px;
    right: -3px;
}

.tiles .tile.selected .check:after {
    content: "";
    font-family: FontAwesome;
    font-size: 13px;
    content: "\f00c";
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 2px;
}

.tiles .tile.icon {
    padding: 0;
}

.tiles .tile.image .tile-body {
    padding: 0 !important;
}

.tiles .tile.image .tile-body > img {
    width: 100%;
    height: auto;
    min-height: 100%;
    max-width: 100%;
}

.tiles .tile.image .tile-body h3 {
    display: inline-block;
}

.tiles .tile .tile-body {
    height: 100%;
    vertical-align: top;
    padding: 10px 10px;
    overflow: hidden;
    position: relative;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    color: #000000;
    margin-bottom: 10px;
}

.tiles .tile .tile-body p {
    font-weight: 400;
    font-size: 13px;
    color: #000000;
    color: #ffffff;
    line-height: 20px;
    overflow: hidden;
}

.tiles .tile .tile-body p:hover {
    color: rgba(0, 0, 0, 0.8);
}

.tiles .tile .tile-body p:active {
    color: rgba(0, 0, 0, 0.4);
}

.tiles .tile .tile-body p:hover {
    color: #ffffff;
}

.tiles .tile .tile-body img {
    float: left;
    margin-right: 10px;
}

.tiles .tile .tile-body img.pull-right {
    float: right !important;
    margin-left: 10px;
    margin-right: 0px;
}

.tiles .tile .tile-body > .content {
    display: inline-block;
}

.tiles .tile .tile-body > i {
    margin-top: 17px;
    display: block;
    font-size: 56px;
    line-height: 56px;
    text-align: center;
}

.tiles .tile .tile-body h1, .tiles .tile .tile-body h2, .tiles .tile .tile-body h3, .tiles .tile .tile-body h4, .tiles .tile .tile-body h5, .tiles .tile .tile-body h6, .tiles .tile .tile-body p {
    padding: 0;
    margin: 0;
    line-height: 14px;
}

.tiles .tile .tile-body h1:hover, .tiles .tile .tile-body h2:hover, .tiles .tile .tile-body h3:hover, .tiles .tile .tile-body h4:hover, .tiles .tile .tile-body h5:hover, .tiles .tile .tile-body h6:hover, .tiles .tile .tile-body p:hover {
    color: #ffffff;
}

.tiles .tile .tile-body h3, .tiles .tile .tile-body h4 {
    margin-bottom: 5px;
}

.tiles .tile .tile-object {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 30px;
    background-color: transparent;
    *zoom: 1; }

.tiles .tile .tile-object:before, .tiles .tile .tile-object:after {
    display: table;
    content: "";
}

.tiles .tile .tile-object:after {
    clear: both;
}

.tiles .tile .tile-object > .name {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 15px;
    font-weight: 400;
    font-size: 13px;
    color: #ffffff;
}

.tiles .tile .tile-object > .name > i {
    vertical-align: middle;
    display: block;
    font-size: 24px;
    height: 18px;
    width: 24px;
}

.tiles .tile .tile-object > .number {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 14px;
    margin-bottom: 8px;
    margin-right: 10px;
}

.tiles .tile .tile-body-header {
    color: #646464;
    text-align: center;
    font-size: 8px;
}

.tiles .tile .tile-body-header h6 {
    font-size: 8px;
}

.page-container {
    overflow: auto;
    overflow-x: hidden;
    height: calc(100vh - 116px);
    width: 100vw;
    top: -10px;
}

.page-sidebar .page-sidebar-menu > li > a, .page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu > li > a {
    padding: 10px 7px 10px 10px;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover, .page-sidebar {
    height: max-content;
    margin-top: -9px;
}

.page-header.navbar {
    border-top-left-radius: 0px;
    border-top-right-radius: 0;
}

/**/
.info-block {
    width: 33%;
    float: left;
    margin-right: calc(1 / 3%);
}

.info-block span {
    font-size: 0.98em;
}

.table-checkbox {
    width: 50px;
}

.input-group input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group.input-icon input {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.input-group .input-group-btn .btn {
    border-radius: 4px;
    overflow: hidden;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

div#contentDiv {
    width: 100vw;
}

.session-timeout {
    bottom: 14px !important;
    right: 55px !important;
    position: fixed !important;
    z-index: 999 !important;
}

.status-group {
    float: right;
    position: relative;
}

.page-sidebar .page-sidebar-menu {
    /* min-height: calc(100vh - 126px); */
    /* height: calc(100vh - 115px); */
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
    height: 100%;
    min-height: unset;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
    position: absolute;
    border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 5px;
}

.page-sidebar-closed.page-sidebar-fixed .page-sidebar:hover .page-sidebar-menu::-webkit-scrollbar, .page-sidebar .page-sidebar-menu::-webkit-scrollbar {
    width: 1px;
    border-radius: 1px;
}

.fixed_headers_2 {
    table-layout: fixed;
    width: auto !important;
}

@media (max-width: 1024px) {
    body {
        font-size: 12px;
    }

    .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 4px;
    }

    .grid-table:not(.fixed_headers_2) tr th {
        width: auto !important;
    }

    .grid-table tr th {
        font-size: 12px !important;
    }

    .grid-table tr th.action {
        width: 70px !important;
    }

    .grid-table tr th.table-checkbox {
        width: 30px !important;
    }

    .grid-table tr th.table-index {
        width: 50px !important;
    }

    .grid-table tr td {
        width: auto !important;
        font-size: 12px !important;
    }

    .grid-table tr th * {
        font-size: 12px !important;
    }

    .grid-table tr td * {
        font-size: 12px !important;
    }

    .btn-grid-circle-button {
        height: 24px !important;
        width: 24px !important;
        padding: 2px 3px 2px 4px !important;
        margin-bottom: 2px !important;
        margin-right: 2px !important;
    }

    .table .btn {
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 2px;
        margin-bottom: 2px;
    }

    .keyboardInputInitiator {
        right: 10em;
    }
}

.grid-table th {
    color: #337ab7;
}

body {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

body.modal-open {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

.data-info {
    font-size: 0.9em;
}

.scroll-table-fixed {
    width: calc(100% - 132px) !important;
    border: 0;
    margin: 0 0px 10px 0!important;
}

.grid-table tr .action.action-fixed {
    position: absolute;
    right: 15px;
    width: 130px !important;
}

td.action.action-fixed {
    background: #eeeeee;
}

.modal-body {
    max-height: calc(100vh - 205px);
    overflow: auto;
}

.table-tool-menu {
    position: absolute;
    right: 0;
    top: -33px;
    right: 14px;
}

@media (max-width: 480px) {
    .scroll-table-fixed {
        width: calc(100% - 105px) !important;
    }

    .table-grid {
        overflow: auto;
    }

    .table-grid > .grid-table:not(.info-table) {
        width: 1366px;
        max-width: 1366px;
    }

    .grid-table tr .action.action-fixed {
        width: 100px !important;
        border-left: 1px solid #d3d3d3;
    }

    .table-tool-menu {
        top: -33px;
    }
}

th.action.action-fixed.action-fixed-first:before {
    content: " ";
    width: 100%;
    height: 1px;
    right: 0;
    top: -1px;
    position: absolute;
    background: #e5ecf1;
}

td.action.action-fixed.action-fixed-last:before {
    content: " ";
    width: 100%;
    right: 0;
    bottom: -7px;
    position: absolute;
    background: #e5ecf1;
    height: 7px;
}

.grid-table tr td.no-data {
    position: absolute;
    background: #ffffff;
    top: -1px;
    left: 0;
    height: 250px;
    right: 0;
    border: navajowhite;
    z-index: 10;
    text-align: center;
    padding-top: 210px;
    background-image: url(/assets/admin/no-data.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200px;
}

div#footerDiv {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    display: block;
    width: 100vw;
    position: fixed;
    bottom: 0;
}

.page-footer {
    height: fit-content;
}

.page-content {
    min-height: calc(100vh - 116px)!important;
    margin-top: 0!important;
    padding-top: 25px!important;
}

.page-header.navbar .page-logo {
    height: auto;
}

.page-content {
    border-left: 1px solid #d3d3d3;
}
 