@charset"UTF-8";

/*------------------------------------------------------------------
[Content]

@license Copyright 2012-15 (c) RISE Ges.m.b.H.
 ____   ___  ____   _____
|  _ \  | | / ___| | ____|
| |_) | | | \___ \ |  _|
|  _ <  | |  ___) || |___
|_| \_\ |_| |____/ |_____|

RSL VNr.:       0.5.2.

Primary use:    Style for the content/main section.
                (Everything under the main navigation
                and above the footer)

Note:           FOR UPDATE AND FUTURE COMPATIBILITY:
				DO NOT EXCESSIVELY EDIT THIS FILE IN PROJECTS.
				FOR BRANDING AND LAYOUT CHANGES THERE EXIST SEPARATE
				FILES: "branding.css" and "customlayout.css"
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1.      Basic elements
1.1     Animations
1.1.1   360 Degree Spin
1.1.2   moveBackgroundHorizontally
2.      Content structuring elements
2.1     Column layout
2.1.1.  Two column layout / .columns-2
2.1.2.  Three column layout / .columns-3
2.1.3.  Four column layout / .columns-4
2.2.    Fieldset & Whiteboard / fieldset .whiteboard
2.3.    Portlet / .portlet
2.3.1.  Portlet Form / .portlet-body.form
2.3.2.  Portlet Command Box / .portlet .command-box
2.3.3.  Portlet Narrow / .portlet-body.narrow
3.      Messages
3.1.    Global Messages / .global-messages
3.2.    Inline Messages
3.3.    Badges & Labels
3.4.    Callout / .callout
4.      Fieldset / fieldset
4.1.    Fieldset Narrow / fieldset.narrow
5.      Button / button
6.      Filter / .filter
7.      Command box / .command-box
8.      Datatable / .dataTables_wrapper
8.1.    Data-table fixed layout
8.2.    Data-tables scroll
8.3.    Data-tables filter
9.      Pricing-table / .pricing-table
10.     Datepicker / .ui-datepicker-div
10.1.   Timepicker / .ui-timepicker-div
11.     Dialog / .ui-dialog
11.1.   Dialog Field / .ui-dialog-content fieldset
12.     Tabs / .ui-tabs
13.     Combobox / .ui-autocomplete
14.     Menu / .ui-menu
15.     Progressbar / .ui-progressbar
16.     Accordion / .ui-accordion
17.     Wizard / .wizard
17.1    Overflow Wizard/ .overflow-wizard
18.     Spinner / .spinner-wrapper
18.1.   Modal spinner / .modal-spinner
19.     Charts
20.     Modal List / .modal-list
21.     Box-Table / .btable
21.1.   Sticky Table Header / .sticky-table
21.2.   Filter Elements / .filter-*
21.3.   Loading State / .btable-loading
21.4.   Pagination / .btable-paginate
-------------------------------------------------------------------*/


/* [1. Basic elements ]
-------------------------------------------------------------------*/
#content {
}

#content-inner {
    position: relative;
}

h1 {
    margin: 5px 0 10px;
}

h1 small {
    opacity: 0.5;
}

h2 {
    margin: 5px 0 10px;
}

h3,
fieldset legend {
    margin: 0px;
}

a,
a:visited,
a:active {
    text-decoration: none;
}

a:hover {
    color: rgb(34,34,34); /* = Note: dark font color*/
    border-bottom: 1px solid rgb(80,80,80);
}

p {
    line-height: 18px;
    margin: 16px 0;
}

.x-small-input {
    width: 45px;
}

.small-input {
    width: 90px;
}

.medium-imput {
    width: 145px;
}

.large-input {
    width: 239px;
}

.x-large-input {
    width: 350px;
}

.xx-large-input {
    width: 550px;
}

.full-width {
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.no-border {
    border: none !important;
}

.right {
    float: right;
}

.left {
    float: left;
}

.center,
.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

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

select {
    padding: 1px 0 1px 0;
}

.spacer {
    width: 18px;
    height: 20px;
}

.light {
    opacity: 0.4;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

ol {
    margin: 0;
    padding-left: 30px;
}

ol li {
    margin: 5px 0;
}

ul.list-bullet {
    padding-left: 18px;
}

ul.list-bullet li{
    margin: 5px 0;
    padding-left: 12px;
    position: relative;
}

ul.list-bullet li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 4px;
    border: 4px solid transparent;
    border-left-color: rgb(34,34,34);
}

ul.list-unstyled li {
    margin: 5px 0;
    padding-left: 18px;
}

pre {
    margin: 0 0 14px;
    padding: 18px 30px;
    background: rgba(0,0,0,0.02);
    box-shadow: 0 0 5px rgba(0,0,0,0.2) inset;
    border: 1px solid rgba(0,0,0,0.2);
    font-size: 13px;
}

.code,
code {
    font-family: monospace;
    background: rgba(0,0,0,0.03);
}

.mark-code {
    background: #FFF202;
    font-family: monospace;
}

/* [1.1 Animations ]
-------------------------------------------------------------------*/
/* [1.1.1 360 Degree Spin ]
-------------------------------------------------------------------*/
@-moz-keyframes spin360 {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}
@-webkit-keyframes spin360 {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}
@-o-keyframes spin360 {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}
@-ms-keyframes spin360 {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(359deg);
    }
}
@keyframes spin360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

/* [1.1.2 moveBackgroundHorizontally ]
-------------------------------------------------------------------*/
@-moz-keyframes moveBackgroundHorizontally {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes moveBackgroundHorizontally {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@-o-keyframes moveBackgroundHorizontally {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@-ms-keyframes moveBackgroundHorizontally {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes moveBackgroundHorizontally {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* [2. Content structuring elements ]
-------------------------------------------------------------------*/
/* [2.1 Column layout ]
-------------------------------------------------------------------*/
/* [2.1.1. Two column layout / .columns-2]
-------------------------------------------------------------------*/
.columns-2:after {
    content: "";
    clear: both;
    display: table;
}

.columns-2 > .column {
    float: left;
    width: 49%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
}

.columns-2 > [class*="column"]:nth-child(even) {
    margin-right: 0%;
}

/* [2.1.2. Three column layout / .columns-3]
-------------------------------------------------------------------*/
.columns-3:after {
    content: "";
    clear: both;
    display: table;
}

.columns-3 > .column,
.columns-3 > .columns-2 {
    float: left;
    width: 32%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
}

.columns-3 > .columns-2 {
    width: 66%;
}

.columns-3 > .columns-2:after {
    display: none;
}

.columns-3 > .columns-2 + .column,
.columns-3 > .column + .columns-2 {
    margin-right: 0%;
}

/* =Note: For multiple rows remove the margin from every third item */
.columns-3 > [class*="column"]:nth-child(3n+0) {
    margin-right: 0%;
}


/* [2.1.3. Four column layout / .columns-4]
-------------------------------------------------------------------*/
.columns-4:after {
    content: "";
    clear: both;
    display: table;
}

.columns-4 > .column,
.columns-4 > .columns-2,
.columns-4 > .columns-3 {
    float: left;
    width: 23.5%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
}

.columns-4 > .columns-2 {
    width: 49%;
}

.columns-4 > .columns-3 {
    width: 74.5%;
}

.columns-3 > .columns-2:after,
.columns-3 > .columns-3:after{
    display: none;
}

.columns-4 > .columns-2 + .column + .column,
.columns-4 > .column + .columns-2 + .column,
.columns-4 > .column + .column + .columns-2,
.columns-4 > .columns-3 + .column,
.columns-4 > .column + .columns-3 {
    margin-right: 0%;
}

.columns-4 > [class*="column"]:nth-child(4n+0) {
    margin-right: 0%;
}

/* [2.2. Fieldset & Whiteboard / fieldset .whiteboard ]
-------------------------------------------------------------------*/
.whiteboard,
fieldset > ul.fieldset-content {
    padding: 10px 10px 15px 190px;
    margin: 0px 0px 14px 0;
}

.whiteboard {
    padding-left: 20px;
    padding-right: 20px;
}

.whiteboard.no-padding{
    padding: 0px !important;
}

/* =Note: Fieldset in whiteboard */
.whiteboard fieldset ul.fieldset-content {
    padding: 10px 20px 10px 170px;
    margin: 0;
    background: transparent;
    border: none;
}

/* =Note: Same style as in portlets */
.whiteboard fieldset legend + .fieldset-content {
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* =Note: Same style as in portlets */
.whiteboard fieldset li.fieldset-item > label:first-child {
    padding-left: 0px;
    width: 150px;
    margin-left: -170px;
}

/* [2.3. Portlet / .portlet ]
-------------------------------------------------------------------*/
.portlet {
    margin-bottom: 14px;
}

.portlet .portlet-header {
    padding: 5px 20px;
}

.portlet .portlet-header:after {
    content: "";
    clear: both;
    display: table;
}

.portlet-header .caption {
    font-size: 14px;
    float: left;
    line-height: 22px;
}

.portlet-header .actions {
    float: right;
}

.portlet-header .actions a {
    border-bottom: none;
    color: inherit;
    line-height: 22px;
    padding: 0 2px;
    opacity: 0.5;
    -webkit-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
    -ms-transition: color 200ms ease-in-out;
    -o-transition: color 200ms ease-in-out;
    transition: color 200ms ease-in-out;
}

.portlet-header .actions a:hover {
    opacity: 1;
}

.portlet .portlet-body {
    padding: 10px 15px 15px 15px;
    margin: 5px 5px;
    overflow: hidden;
    overflow-y: auto;
    line-height: 18px;
}

.portlet.small .portlet-body {
    height: 120px;
}

.portlet.medium .portlet-body {
    height: 200px;
}

.portlet.large .portlet-body {
    height: 300px;
}

/* [2.3.1. Portlet Form / .portlet-body.form ]
-------------------------------------------------------------------*/
.portlet-body.no-padding,
.portlet-body.form{
    padding: 0px;
    margin: 0px;
}

.portlet fieldset {
    margin: 5px 20px;
}

.portlet fieldset .fieldset-content {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 10px;
    padding-right: 0px;
}

.portlet fieldset legend {
    padding-top: 10px;
}

.portlet fieldset legend + .fieldset-content {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.portlet fieldset li.fieldset-item > label:first-child {
    padding-left: 0px;
    width: 170px;
}

/* [2.3.2. Portlet Command Box / .portlet .command-box ]
-------------------------------------------------------------------*/
.portlet .command-box {
    padding: 10px 10px 10px 200px;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.01);
}

.portlet .command-box a {
    margin: 0 10px;
}

/* [2.3.3. Portlet Narrow / .portlet-body.narrow ]
-------------------------------------------------------------------*/
.portlet-body.narrow .fieldset-content {
    padding: 3px 0px;
}

.portlet-body.narrow .fieldset-item > label {
    margin-left: 0px;
    display: block;
    padding: 0 0 3px 0;
}

.portlet-body.narrow .command-box {
    padding-left: 10px;
}

/* [3. Messages ]
-------------------------------------------------------------------*/
/* [3.1. Global Messages / .global-messages]
-------------------------------------------------------------------*/
.global-messages,
.global-messages .col {
    display: block;
    position: fixed;
    top: 60px;
    right: 9px;
    z-index: 99999;
}

.messages-item {
    display: block;
    padding: 0;
    clear: both;
    margin: 0 5px 10px;
    position: relative;
    border-radius: 6px;
    vertical-align: top;
    width: 380px;
    color: rgb(0,0,0);
    font-weight: bold;
}

.global-messages .messages-item {
    -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15), 1px 0 5px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15), 1px 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15), 1px 0 5px 0 rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.messages-item.success {
    background-color: rgb(221,242,217);
    border: 1px solid rgb(123,186,110);
    color: #29681c;
}

.messages-item.info {
    background-color: rgb(217,230,242);
    border: 1px solid rgb(110,147,186);
    color: #1c4169;
}

.messages-item.warn {
    background-color: #F2E9DA;
    border: 1px solid #BA9D6E;
    color: #733e21;
}

.messages-item.error {
    background-color: #f9c9c9;
    border: 1px solid #e68088;
    color: #701d1d;
}

.messages-item .msg-icon {
    position: absolute;
    top: 4px;
    left: 10px;
    z-index: 2;
}

.messages-item.error .msg-icon, .msg-icon,
.messages-item.warn .msg-icon, .msg-icon,
.messages-item.success .msg-icon, .msg-icon,
.messages-item.info .msg-icon, .msg-icon,
.messages-item .msg-hide {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 28px;
}

.messages-item.error .msg-icon:before {
    content: "\f057";
    color: #e32131;
}

.messages-item.warn .msg-icon:before {
    content: "\f071";
    color: #ee9d14;
}

.messages-item.success .msg-icon:before {
    content: "\f058";
    color: #43b62c;
}

.messages-item.info .msg-icon:before {
    content: "\f05a";
    color: #276eba;
}

.messages-item .msg-body {
    display: block;
    text-align: left;
    margin: 2px;
    min-width: 60px;
    min-height: 33px;
    vertical-align: top;
    max-width: 600px;
    z-index: 1;
}

.messages-item .msg-text {
    display: none;
    vertical-align: middle;
    padding: 9px 15px 8px 45px;
}

.messages-item .msg-text ul, .messages-item .msg-text ol {
    margin: 10px 0 0 0;
    padding-left: 15px;
}

.messages-item .msg-text li {
    padding: 0;
}

.messages-item .msg-text p {
    margin: 5px 0;
}

.messages-item.expanded .msg-text,
.messages-item.collapsed .msg-text {
    display: inline-block;
}

.messages-item *::-moz-selection,
.messages-item *::selection {
    background: transparent;
}

.messages-item .msg-hide {
    position: absolute;
    top: 5px;
    right: 2px;
    width: 20px;
    height: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    opacity: 0.3;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.messages-item .msg-hide:hover {
    opacity: 0.6;
}

.messages-item .msg-hide:before {
    content: "\f057";
}

/* [3.2. Inline Messages]
-------------------------------------------------------------------*/
label.error {
    padding: 6px 0 2px;
    display: block;
    max-width: 450px;
    color: rgb(213,31,31);
    font-weight: bold;
    font-size: 11px;
}

/* =Note: Backup-Style only! Use branding.css to style your errors */
textarea.error,
input.error {
    background-color: rgba(213,31,31,0.05);
    border: 1px solid rgba(213,31,31,0.5);
    box-shadow: inset 0px 2px 4px 0px rgba(213,31,31,0.2);
}

input.error:focus {
    box-shadow: 0px 0px 2px 1px rgba(238,222,0,0.75), inset 0px 2px 4px 0px rgba(213,31,31,0.2);
}

input.error::-webkit-input-placeholder {
    color: rgba(213,31,31,0.8);
}

input.error:-moz-placeholder {
    color: rgba(213,31,31,0.8);
}

input.error::-moz-placeholder {
    color: rgba(213,31,31,0.8);
}

fieldset li.fieldset-item label.error {
    color: rgb(213,31,31);
    padding: 6px 0 2px;
}

/* =Note: hide example value in dialogs (less available width)*/
.ui-dialog-content fieldset li.fieldset-item.error .example-value {
    display: none;
}

/* =Note: show error label next to input to prevent jumping content when error is visible */
.ui-dialog-content fieldset li.fieldset-item label.error {
    display: inline-block;
    padding: 5px 0 2px;
    margin-left: 2px;
}

#messageSummary {
    display: inline;
}

/* [3.3. Badges & Labels]
-------------------------------------------------------------------*/
.badge,
.label {
    display: inline-block;
    padding: 2px 4px 2px;
    vertical-align: baseline;
    white-space: nowrap;
    line-height: 14px;
    text-align: center;
    font-size: 11px;
    color: rgb(255,255,255);
    text-shadow: none;
}

.badge {
    border-radius: 15px;
    padding: 2px 6px;
    font-size: 11px;
}

.label {
    margin: 0px 3px;
}

.badge-info,
.label-info {
    background: #57B5E3;
}

.badge-success,
.label-success {
    background: #3CC051;
}

.badge-warn,
.label-warn {
    background: #FCB322;
}

.badge-important,
.label-important {
    background: #ED4E2A;
}

.badge-inverse,
.label-inverse {
    background: #000000;
}

.drop-down-pointer .badge {
    position: absolute;
    left: 27px;
    top: 7px;
}

/* [3.4. Callout / .callout]
-------------------------------------------------------------------*/
.callout {
    border-left: 3px solid;
    padding: 10px 10px 10px 16px;
    font-size: 13px;
    margin: 17px 0;
}

.callout.info {
    border-left-color: #276eba;
    background-color: #ebf4fc;
}

.callout.info h2 {
    color: #276eba;
}

.callout.warn {
    border-left-color: #ee9d14;
    background-color: #fcf6eb;
}

.callout.warn h2 {
    color: #ee9d14;
}

.callout.error {
    border-left-color: #e32131;
    background-color: #fcf2f2;
}

.callout.error h2 {
    color: #e32131;
}

.callout.success {
    border-left-color: #43b62c;
    background-color: #eefceb;
}

.callout.success h2 {
    color: #43b62c;
}

/* [4. Fieldset /fieldset]
-------------------------------------------------------------------*/
fieldset li {
    list-style: none;
    margin: 9px 0;
}

fieldset li ul {
    display: inline-block;
}

fieldset li.fieldset-item.big {
    font-size: 15px;
    letter-spacing: -0.1px;
    margin: 8px 0;
}

fieldset li.fieldset-item label {
    padding: 0 10px 0 10px;
    letter-spacing: 0.2px;
    position: relative;
    cursor: default;
    letter-spacing: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

fieldset li.fieldset-item label::-moz-selection {
    background: transparent;
}

fieldset li.fieldset-item label::selection {
    background: transparent;
}

fieldset li.fieldset-item.big label {
    font-size: 12px;
}

fieldset .fa,
fieldset .fu {
    opacity: 0.7;
    margin-right: 5px;
    font-size: 14px;
    text-align: center;
    width: 14px;
}

.required:after {
    content: '*';
    font-size: 13px;
    padding-left: 2px;
    color: rgb(213,31,31);
}

span.required:after {
    display: none;
}

span.required:before {
    font-size: 10px;
    content: '*';
    font-size: 13px;
    padding-left: 2px;
    vertical-align: super;
    font-weight: bold;
    color: rgb(213,31,31);
}

.note:after {
    content: '+';
    font-size: 13px;
    padding-left: 2px;
    vertical-align: super;
    line-height: 0px;
    font-weight: bold;
    color: rgb(213,31,31);
}

span.note:after {
    display: none;
}

span.note:before {
    font-size: 10px;
    content: '+';
    font-size: 13px;
    padding-left: 2px;
    vertical-align: super;
    font-weight: bold;
    color: rgb(213,31,31);
}

span.example-value {
    padding-left: 10px;
}

fieldset li.fieldset-item > label:first-child {
    margin-left: -190px;
    padding-left: 20px;
    width: 150px;
    padding-right: 20px;
    display: inline-block;
    vertical-align: top;
}

textarea {
    height: auto !important;
}

.blockCaption {
    display: inline-block;
}

/* =Note: textareas/and inputs ignore the max-width in % when placed inside a fieldset */
/* =Note: can cause problems in narrow containers e.g. a column. Fix by setting width in % and max in px */
fieldset .medium-input {
    width: calc(70% - 15px);
    max-width: 145px;
}

fieldset .large-input {
    width: calc(80% - 15px);
    max-width: 239px;
}

fieldset .x-large-input,
fieldset .xx-large-input {
    width: calc(100% - 15px);
    max-width: 550px;
}

/* [4.1. Fieldset Narrow / fieldset.narrow ]
-------------------------------------------------------------------*/
fieldset.narrow ul.fieldset-content {
    padding-left: 20px;
}

.whiteboard fieldset.narrow ul.fieldset-content {
    padding-left: 0px;
}

fieldset.narrow ul.fieldset-content .fieldset-item > label {
    margin-left: 0px;
    display: block;
    padding: 0 0 3px 0;
}

.command-box.narrow {
    padding-left: 10px;
}

/* [5. Button /.button]
-------------------------------------------------------------------*/
.button,
button,
.dataTables_wrapper th  {
    outline: none !important;
    display: inline-block;
    margin-left: 10px;
    text-decoration: none;
    cursor: pointer;
}

.button.right,
button.right {
    margin-left: 0px;
    margin-right: 10px;
}

.button.image-only {
    padding: 0 12px;
}

.button:hover {
    text-decoration: none;
}

.fieldset-item .button {
    margin-left: 0px !important;
    margin-right: 10px;
}

.button img {
    margin: 0 6px 2px 0px;
}

.button .fa,
.button .fu,
button .fa,
button .fu {
    margin-right: 6px;
    font-size: 16px;
    vertical-align: text-top;
}

.button.image-only img{
    margin-right: 0px;
}

.whiteboard .button{
    margin-left: 0px;
    margin-right: 10px;
}

/* [6. Filter / .filter]
-------------------------------------------------------------------*/
.filter {
    display: inline-block;
    vertical-align: middle;
    min-height: 20px;
    position: relative;
}

.filter:after {
    content: "";
    display: table;
    clear: both;
}

.filter a {
    float: left;
    line-height: 20px;
    height: 21px;
    width: 18px;
    margin-left: -23px;
    outline: none;
    cursor: default;
    border: none !important;
    visibility: hidden;
}

.filter a {
    cursor: pointer;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.filter a:after {
    content: "\f002";
    font-size: 12px;
    line-height: 0px;
    color: #C8C8C8;
    font-family: FontAwesome;
    position: absolute;
    right: 3px;
    top: 10px;
}

.filter input[type=text],
.dataTables_filter input {
    float: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-right: 23px;
    padding-left: 7px;
    min-width: 200px;
}

.dataTables_filter input {
    float: none;
}

/* [7. Command box /.command-box]
-------------------------------------------------------------------*/
.command-box.top {
    height: 0px;
    overflow: visible;
    position: relative;
    top: -40px;
}

.command-box ul {
    text-align: right;
    padding-bottom: 14px;
    margin: 0px;
}

.command-box li{
    display: inline-block;
}

.command-box .button {
    margin-left: 7px;
}

/* [8. Datatable / .dataTables_wrapper]
-------------------------------------------------------------------*/
.dataTables_wrapper {
    overflow-x: auto;
    position: relative;
    padding: 2px 0px 2px;
}


.dataTables_wrapper:after {
    content: "";
    clear: both;
    display: table;
}

.dataTables_info {
    float: left;
    margin-top: 3px;
    padding-bottom: 12px;
}

.dataTables_paginate {
    float: right;
    margin-top: 3px;
    padding-bottom: 12px;
}

.dataTables_paginate .paginate_button {
    cursor: pointer;
    display: inline-block;
    margin: 0px 5px;
}

.dataTables_paginate a {
    border-bottom: none;
}

.dataTables_paginate .paginate_active {
    margin: 0px 5px;
    border-bottom: 1px solid rgb(102,102,102);
}

.dataTables_paginate .paginate_button.first,
.dataTables_paginate .paginate_button.previous,
.dataTables_paginate .paginate_button.next,
.dataTables_paginate .paginate_button.last  {
    text-indent: -99999px;
    outline: none;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin: 0px 2px 0px 0px;
}

.dataTables_paginate .paginate_button.first {
    background: url(../images/icons-fugue/control-stop-180.png) no-repeat;
}

.dataTables_paginate .paginate_button.previous {
    background: url(../images/icons-fugue/control-180.png) no-repeat;
}

.dataTables_paginate .paginate_button.next {
    background: url(../images/icons-fugue/control.png) no-repeat;
}

.dataTables_paginate .paginate_button.last {
    background: url(../images/icons-fugue/control-stop.png) no-repeat;
}

.dataTables_paginate .paginate_button_disabled {
    opacity: 0.5;
    cursor: default;
}

.dataTables_filter {
    padding: 5px 0px 3px 0px;
}

.dataTables_filter ul {
    display: inline;
}

.dataTables_filter ul li{
    display: inline-block;
    padding: 4px 0px 0px 15px;
}

.dataTables_length {
    float: right;
    margin-bottom: 9px;
}

.dataTables_wrapper .display {
    margin: 7px 0;
}

.dataTable th,
.dataTable thead td {
    cursor: default;
    padding: 0px 10px !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    margin: 0px;
    line-height: 14px;
    font-weight: normal;
    display: table-cell;
    text-align: left;
    /* =Note: Prevent table headers from breaking lines or overflowing */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dataTables_wrapper th.sorting,
.dataTables_wrapper th.sorting_desc,
.dataTables_wrapper th.sorting_asc {
    cursor: pointer;
}

.dataTables_wrapper th.sorting_asc:after {
    content: "";
    width: 0px;
    height: 0px;
    border: 5px solid transparent;
    float: right;
    margin-top: 11px;
}

.dataTables_wrapper th.sorting_desc:after {
    content: "";
    width: 0px;
    height: 0px;
    border: 5px solid transparent;
    float: right;
    margin-top: 5px;
}

.dataTable td {
    padding: 3px 10px;
}

.dataTables_wrapper tr.hover {
    cursor: pointer;
}

.dataTables_wrapper tr td a {
    display: inline-block;
}

.highlight-cell-expired {
    color: #FF4500;
}

.dataTables_wrapper tbody .img{
    padding-right: 5px;
}

/* [8.1. Data-table fixed layout / .fixed-table .fixed-row-height ]
-------------------------------------------------------------------*/
table.fixed-table,
.fixed-table table {
    table-layout: fixed;
    width: 1px; /* =Note: dummy value because of Webkit Bug  */
}

.fixed-table td,
.fixed-table th {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-row-height td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* [8.2. Data-tables scroll ]
-------------------------------------------------------------------*/
.dataTables_scroll {
    padding: 10px 0;
}

.dataTables_scrollHead {
    white-space: nowrap;
}

.dataTables_scrollBody {
    white-space: nowrap;
}

.dataTables_scrollBody thead {
    display: none;
}

.dataTables_scrollBody tfoot {
    display: none;
}

/* [8.3. Data-tables filter ]
-------------------------------------------------------------------*/
.dataTables_scrollFootInner input,
.dataTables_scrollFootInner select {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* [9. Pricing-table / .pricing-table ]
-------------------------------------------------------------------*/
.pricing-table {
    padding: 35px 0;
 }

.pricing-items {
    display: table;
    width: 100%;
}

.pricing-item {
    display: table-cell;
}

.pricing-item.featured {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    box-shadow: 0px 1px 8px rgba(0,0,0,0.2);
}

.pricing-item .header {
    background-color: rgb(200, 200, 200);
    color: #ffffff;
    text-align: center;
    text-shadow: 0px 0px 4px rgba(0,0,0,0.3);
    border: 1px solid rgb(160,160,160);
    border-bottom-color: rgb(180,180,180);
}

.pricing-item:not(:last-child):not(.featured) .header {
    border-right: none;
}

.pricing-item .header .type {
    background: rgba(0,0,0,0.05);
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    box-shadow: 0px 1px 0px rgba(0,0,0,0.1);
}

.no-price .pricing-item .header .type {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    background: none;
}

.pricing-item .header .price-wrapper {
    display: inline-block;
    padding: 20px 0;
}

.pricing-item .header .price-wrapper .currency {
    vertical-align: top;
    font-size: 22px;
    font-weight: 300;
}

.pricing-item .header .price-wrapper .price {
    font-size: 70px;
    line-height: 58px;
    letter-spacing: -4px;
    font-weight: 300;
}

.pricing-item .header .price-wrapper .frequency {
    font-size: 12px;
    margin-left: -3px;
}

.pricing-item .body {
    border: 1px solid rgb(200, 200, 200);
    border-top: none;
    border-bottom-color: rgb(225,225,225);
    background: #ffffff;
}

.pricing-item:not(:last-child):not(.featured) .body {
    border-right: none;
}

.pricing-item .body li {
    padding: 12px 8%;
}

.pricing-item .body i.fa {
    font-size: 18px;
    margin-right: 10px;
    color: rgba(0,0,0,0.2);
}

.pricing-item.featured ~ .pricing-item .body li {
    padding-left: 11%;
}

.pricing-item .body li:nth-child(even){
    background: rgba(0,0,0,0.02);
}

.pricing-item .footer {
    border: 1px solid rgb(200, 200, 200);
    border-top: none;
    background: rgb(247,247,247);
    padding: 10px 0;
    text-align: center;
}

.pricing-item:not(:last-child):not(.featured) .footer {
    border-right: none;
}

.pricing-item .footer .button {
    font-size: 13px;
    padding: 3px 10%;
    margin: 0px;
}

/* [10. Datepicker / .ui-datepicker-div]
-------------------------------------------------------------------*/
input.datetimepicker {
    width: 120px;
}

input.datepicker {
    width: 77px;
}

.ui-datepicker-trigger {
    margin-left: -21px;
    margin-bottom: 3px;
    margin-right: 5px;
    cursor: pointer;
    border: none !important;
    background: none;
    padding: 0px;
    margin: 0px;
    margin-left: -23px;
    box-shadow: none;
    width: 20px;
    height: 24px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 13px;
}

.ui-datepicker-trigger:hover,
.ui-datepicker-trigger:active {
    border: none !important;
    background: none;
    box-shadow: none;
}

.hasDatepicker[type="text"] {
    padding-right: 26px;
}

#ui-datepicker-div {
    display: none;
    border-radius: 6px;
    z-index: 11 !important;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
    background: rgb(251,251,251);
    background: rgba(255,255,255,0.9);
}

.ui-datepicker-header {
    position: relative;
    margin: 6px 6px 0;
    min-height: 20px;
    border-color: rgb(250,250,250);
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.13);
    -webkit-box-shadow: 0 1px rgba(255, 255, 255, 0.2) inset;
    -moz-box-shadow: 0 1px rgba(255, 255, 255, 0.2) inset;
    box-shadow: 0px 1px rgba(255, 255, 255, 0.2) inset;
    color: rgb(255,255,255);
    text-shadow: 0px -1px 0 rgba(0,0,0,0.4);
    font-weight: bold;
    background: rgb(102,102,102);
    background: -moz-linear-gradient(top, rgba(102,102,102,1) 0%, rgba(119,119,119,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(102,102,102,1)), color-stop(100%,rgba(119,119,119,1)));
    background: -webkit-linear-gradient(top, rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%);
    background: -o-linear-gradient(top, rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%);
    background: -ms-linear-gradient(top, rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%);
    background: linear-gradient(top, rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%);
}

.ui-datepicker-header .ui-datepicker-title {
    line-height: 19px;
    padding: 1px 0;
    text-align: center;
}

.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-next {
    position: absolute;
    cursor: pointer;
    height: 3px;
    width: 3px;
    top: 30%;
}

.ui-datepicker-header .ui-datepicker-prev {
    left: 5px;
    border-bottom: none;
}

.ui-datepicker-header .ui-datepicker-next {
    right: 5px;
    border-bottom: none;
}

.ui-datepicker-header .ui-icon-circle-triangle-e,
.ui-datepicker-header .ui-icon-circle-triangle-w {
    width: 0;
    height: 0;
    text-indent: -9999px;
    outline: none;
    display: block;
}

.ui-datepicker-header .ui-icon-circle-triangle-w {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid rgb(255,255,255);
}

.ui-datepicker-header .ui-icon-circle-triangle-e {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid rgb(255,255,255);
}

table.ui-datepicker-calendar {
    margin: 0px 6px 6px;
    color: rgb(102,102,102);
    border-left: 1px solid rgba(150,150,150,0.5);
}

.ui-datepicker-calendar tr{
    background: rgb(244,244,244);
}

.ui-datepicker-calendar th{
    font-size: 10px;
    text-transform: uppercase;
    font-weight: normal;
    padding: 5px 0 2px;
    background: rgb(244,244,244);
    text-shadow: 0px 1px 0px rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(128,128,128,0.2);
}

.ui-datepicker-calendar td{
    padding: 0px;
}

.ui-datepicker-calendar tr td a{
    line-height: 21px;
    width: 19px;
    height: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
    background: rgb(237,237,237);
    background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(248,248,248,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,237,237,1)), color-stop(100%,rgba(248,248,248,1)));
    background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    background: -o-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    background: linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    border-left: 1px solid rgb(255, 255, 255);
    border-right: 1px solid rgba(150,150,150,0.5);
    border-top: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgba(128,128,128,0.46);
    color: rgb(102,102,102);
    text-shadow: 0px 1px 0px rgb(255,255,255);
}

.ui-datepicker-calendar tr td a.ui-state-hover {
    color: rgb(90,90,90);
    background: rgb(250,250,250);
    background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(253,253,253,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,245,245,1)), color-stop(100%,rgba(253,253,253,1)));
    background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(253,253,253,1) 100%);
    background: -o-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(253,253,253,1) 100%);
    background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(253,253,253,1) 100%);
    background: linear-gradient(top, rgba(245,245,245,1) 0%,rgba(253,253,253,1) 100%);
}

.ui-datepicker-calendar tr td a.ui-state-active {
    color: rgb(50,50,50);
    border-color: rgba(70,70,70,0.45);
    border-top-color: rgba(36,36,36,0.45);
    border-bottom-color: rgba(115,115,115,0.45);
    background: rgb(210,210,210);
    background: -moz-linear-gradient(top, rgba(228,228,228,1) 0%, rgba(238,238,238,1) 50%, rgba(230,230,230,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(228,228,228,1)), color-stop(50%,rgba(238,238,238,1)), color-stop(100%,rgba(230,230,230,1)));
    background: -webkit-linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    background: -o-linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    background: -ms-linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    background: linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    -webkit-box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 1px 0px rgba(255, 255, 255, 0.6), inset 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
}

.ui-datepicker-calendar a {
    text-decoration: none;
    font-size: 10px;
    color: rgb(102,102,102);
    text-shadow: 0px 1px 0px rgba(255,255,255,0.5);
    font-weight: bold;
}

.ui-datepicker-calendar tr td.ui-state-disabled span{
    line-height: 22px;
    width: 19px;
    height: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: rgb(121,121,121);
    font-size: 10px;
}

/* [10.1 Timepicker / .ui-timepicker-div]
-------------------------------------------------------------------*/
input.timepicker {
    width: 46px;
}

.ui-timepicker-div {
    min-width: 145px;
    padding: 0 6px 5px;
    border-top: 1px solid rgb(255,255,255);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: -moz-linear-gradient(top, rgba(252,252,252,0.93) 0%, rgba(252,252,252,0.93) 1%, rgba(243,243,243,0.93) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,0.93)), color-stop(1%,rgba(252,252,252,0.93)), color-stop(100%,rgba(243,243,243,0.93)));
    background: -webkit-linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
    background: -o-linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
    background: -ms-linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
    background: linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);

}

.ui-timepicker-div .ui-datepicker-title {
    padding: 5px 0px 0px;
    font-weight: bold;
}

.ui-slider {
    margin: 5px 6px 0 0;
    position: relative;
    height: 6px;
    border-radius: 5px;
    border-color: rgba(70,70,70,0.45);
    border-top-color: rgba(36,36,36,0.45);
    border-bottom-color: rgba(115,115,115,0.45);
    background: rgb(228,228,228);
    background: -moz-linear-gradient(top, rgba(228,228,228,1) 0%, rgba(238,238,238,1) 50%, rgba(230,230,230,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(228,228,228,1)), color-stop(50%,rgba(238,238,238,1)), color-stop(100%,rgba(230,230,230,1)));
    background: -webkit-linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    background: -o-linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    background: -ms-linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    background: linear-gradient(top, rgba(228,228,228,1) 0%,rgba(238,238,238,1) 50%,rgba(230,230,230,1) 100%);
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 1), inset 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 1), inset 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 1), inset 0px 1px 4px 0px rgba(0, 0, 0, 0.24);
}

.ui-slider-handle {
    padding: 0px;
    height: 12px;
    width: 12px;
    border-radius: 10px;
    position: absolute;
    margin: -5px 0 0 -7px;
    display: block;
    cursor: pointer;
    outline: none !important;
    background: rgb(237,237,237);
    background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(248,248,248,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,237,237,1)), color-stop(100%,rgba(248,248,248,1)));
    background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    background: -o-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    background: linear-gradient(top, rgba(237,237,237,1) 0%,rgba(248,248,248,1) 100%);
    border: 1px solid rgba(150,150,150,0.6) !important;
    border-top-color: rgba(171,171,171,0.6) !important;
    border-bottom-color: rgba(128,128,128,0.5) !important;
    -webkit-box-shadow: 0px 2px 2px -1px rgba(0, 0, 0, 0.15), inset 0px 0px 0px 1px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 2px 2px -1px rgba(0, 0, 0, 0.15), inset 0px 0px 0px 1px rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 2px -1px rgba(0, 0, 0, 0.15), inset 0px 0px 0px 1px rgba(255, 255, 255, 1);
}

.ui-datepicker-buttonpane {
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
    text-align: left;
    padding: 10px 8px;
    border: 1px solid rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(252,252,252,0.93) 0%, rgba(252,252,252,0.93) 1%, rgba(243,243,243,0.93) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,0.93)), color-stop(1%,rgba(252,252,252,0.93)), color-stop(100%,rgba(243,243,243,0.93)));
    background: -webkit-linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
    background: -o-linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
    background: -ms-linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
    background: linear-gradient(top, rgba(252,252,252,0.93) 0%,rgba(252,252,252,0.93) 1%,rgba(243,243,243,0.93) 100%);
}

.ui-datepicker-buttonpane button{
    margin-left: 9px;
    padding: 0px 10px;
}

.ui-datepicker-buttonpane button:first-child{
    margin-left: 0px !important;
}

.ui-timepicker-div dt {
    height: 20px;
    margin-bottom: -20px;
}

.ui-timepicker-div dd {
    margin-left: 57px;
    margin-bottom: 10px;
}

.ui-timepicker-div .ui_tpicker_time {
    margin-left: 50px;
}

/* [11. Dialog / .ui-dialog]
-------------------------------------------------------------------*/
.ui-widget-overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.ui-dialog {
    position: absolute;
    display: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 10;
    outline: none;
}

.ui-dialog .ui-dialog-titlebar-close {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 6px;
    right: 8px;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0px;
}

.ui-dialog .ui-dialog-titlebar-close:after {
    content: "\f057";
    font-family: FontAwesome;
    font-size: 20px;
    text-shadow: 0px 1px 1px rgba(255,255,255,0.4);
    line-height: 0px;
    color: rgb(80,80,80);
}

.ui-dialog .ui-dialog-titlebar-close:hover:after {
    color: rgb(70,70,70);
}

.ui-dialog-titlebar {
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
    padding: 5px 8px;
    height: 20px;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
}

.ui-dialog-titlebar .ui-button-text {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-indent: 100%;
    white-space: nowrap;
    width: 1px;
}

.ui-dialog-content {
    position: relative;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
    padding: 8px 15px 55px 15px;
}

.ui-dialog-content h1 {
    margin: 8px 0px 15px;
    color: rgba(0,0,0,0.7);
}

.ui-dialog-content h2 {
    font-weight: bold;
    color: rgba(0,0,0,0.7);
}

.buttonpane {
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px   5px;
    padding: 10px 0px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
}

/* [11.1. Dialog Field / .ui-dialog-content fieldset]
-------------------------------------------------------------------*/
.ui-dialog-content fieldset legend {
    color: rgba(0,0,0,0.7);
    font-weight: bold;
}

.ui-dialog-content fieldset ul {
    padding-top: 0px;
}

.ui-dialog-content fieldset ul,
.ui-dialog-content .whiteboard {
    padding-left: 10px;
}

.ui-dialog-content fieldset.unstyled ul,
.ui-dialog-content .whiteboard.unstyled {
    background: none;
    padding-left: 0px;
    border: none;
    box-shadow: none;
    margin-bottom: 0px;
}

.ui-dialog-content  fieldset li.fieldset-item > label:first-child {
    margin-left: 0px;
    display: block;
    width: auto;
    text-align: left;
    padding: 0px;
    line-height: 22px;
}

/* [12. Tabs / .ui-tabs]
-------------------------------------------------------------------*/
.ui-tabs {
    margin-bottom: 15px;
    width: 100%;
}

.ui-tabs .ui-tabs-hide {
    display: none !important;
}

.ui-tabs .ui-tabs-nav {
    margin: 0px;
}

.ui-tabs .ui-tabs-nav:after {
    clear: both;
    content: "";
    display: block;
}

.ui-tabs .ui-tabs-nav li:first-child {
    border-left-width: 1px !important;
}

.ui-tabs .ui-tabs-nav li {
    float: left;
    margin-bottom: -1px;
    border-left-width: 0px !important;
}

.ui-tabs .ui-tabs-nav li.ui-state-active {
    position: relative;
    z-index: 1;
}

.ui-tabs .ui-tabs-nav li a {
    padding: 7px 13px;
    display: inline-block;
    -webkit-transition: color 50ms ease-in;
    -moz-transition: color 50ms ease-in;
    -ms-transition: color 50ms ease-in;
    -o-transition: color 50ms ease-in;
    transition: color 50ms ease-in;
    outline: none;
}

.ui-tabs .ui-tabs-nav li img {
    margin-right: 5px;
    margin-top: -3px;
    opacity: 0.7;
    -webkit-transition: opacity 50ms ease-in;
    -moz-transition: opacity 50ms ease-in;
    -ms-transition: opacity 50ms ease-in;
    -o-transition: opacity 50ms ease-in;
    transition: opacity 50ms ease-in;
}

.ui-tabs .ui-tabs-nav li.ui-state-active img,
.ui-tabs .ui-tabs-nav li.ui-state-hover img {
    opacity: 1;
}

.ui-tabs .ui-tabs-panel {
    position: relative;
    padding-top: 15px;
}

.ui-tabs.contained .ui-tabs-panel {
    padding: 15px 20px;
}

.ui-tabs.contained .ui-tabs-panel .whiteboard {
    padding-left: 0px;
    padding-right: 0px;
}

.ui-tabs.contained .ui-tabs-panel fieldset li.fieldset-item > label:first-child{
    width: 170px;
    padding-left: 0px;
}

/* [13. Combobox / .ui-autocomplete]
-------------------------------------------------------------------*/
.ui-button-icon-primary.ui-icon.ui-icon-triangle-1-s{
    content: "";
    position: absolute;
    display: block;
    top: 9px;
    right: 6px;
    width: 0px;
    height: 0px;
    border-width: 4px;
    border-style: solid;
    border-color: rgb(160,160,160) transparent transparent transparent;
}

.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
}

/* [14. Menu / .ui-menu]
-------------------------------------------------------------------*/
.ui-menu {
    border-top: none;
    list-style:none;
    display:block;
    float: left;
    border: 1px solid #AAA;
    background: rgb(255,255,255);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.15);
}

.ui-menu .ui-menu-item {
    margin:0;
    padding: 0;
    zoom: 1;
    float: left;
    clear: left;
    width: 100%;
}

.ui-menu .ui-menu-item a {
    text-decoration:none;
    display:block;
    padding: 2px 10px;
    line-height: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.ui-menu a:not(.ui-state-focus) {
    color: rgb(102,102,102);
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
    font-weight: normal;
}

/* =Note: Needed by jquery ui for combobox */
.ui-helper-hidden-accessible {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* [15. Progressbar / .ui-progressbar]
-------------------------------------------------------------------*/
.ui-progressbar {
    height: 4px;
    overflow: hidden;
    text-align: left;
    margin: 10px 0 15px;
    background: rgba(0,0,0,0.05);
}

.ui-progressbar.inverse {
    background: rgba(0,0,0,0.15);
}

.ui-progressbar .ui-progressbar-value {
    height: 100%;
    background: #89b2ef;
}

.ui-progressbar.inverse .ui-progressbar-value {
    height: 100%;
    background: #ffffff;
}

.ui-progressbar.yellow .ui-progressbar-value {
    background: #fde524;
}

.ui-progressbar.grey .ui-progressbar-value {
    background: #cbcbcb;
}

.ui-progressbar-indeterminate {
    background-color: rgba(0,0,0,0) !important;
}

.ui-progressbar.ui-progressbar-indeterminate .ui-progressbar-value {
    background: url("../images/stripe.png");
    background-color: rgba(0,0,0,0.05) !important;
    -webkit-animation: moveBackgroundHorizontally 120s infinite linear;
    -moz-animation: moveBackgroundHorizontally 120s infinite linear;
    -o-animation: moveBackgroundHorizontally 120s infinite linear;
    animation: moveBackgroundHorizontally 120s infinite linear;
}

/* [16. Accordion / .ui-accordion]
-------------------------------------------------------------------*/
.ui-accordion-header {
    outline: none;
    cursor: default;
    margin-top: 5px;
}

.ui-accordion-content {
    padding: 10px 15px;
    overflow: auto;
}

.ui-accordion-content p {
   margin-top: 0px;
}

/* [17. Wizard / .wizard]
-------------------------------------------------------------------*/
.wizard {
    position: relative;
    margin-bottom: 14px;
    overflow: hidden;
}

.wizard:after {
    content: "";
    display: table;
    clear: both;
}

.wizard .step {
    float: left;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    padding: 10px 10px 10px 43px;
    position: relative;
    border-bottom: none;
    cursor: default;
}

.wizard .step:first-child {
    padding-left: 21px
}

/*=Note: Triange on the right side*/
.wizard .step:after {
    content: "";
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    position: absolute;
    height: 37px;
    right: -18px;
    top: 7px;
    width: 37px;
    z-index: 1;
    border-radius: 2px;
}

/* =Note: hide arrow for last step */
.wizard .step:last-child:after {
    display: none;
}

.wizard .step:last-child {
    padding-right: 21px !important;
}

.wizard .step .step-descr {
    z-index: 2;
    position: relative;
}

.wizard .step.past a {
    cursor: pointer;
}

.wizard .step a {
    border-bottom: none;
}

.wizard .actions {
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
}

.wizard .actions .button {
    top: 10px;
    margin-top: 11px;
}

.wizard .actions .button:last-child {
    margin-right: 10px;
}

/* [17.1 Overflow Wizard / .overflow-wizard ]
-------------------------------------------------------------------*/
.overflow-wizard .actions {
    z-index: 2;
    -webkit-box-shadow: 2px 0 15px 0 rgba(0,0,0,0.3);
    box-shadow: 2px 0 15px 0 rgba(0,0,0,0.3);
}

.overflow-wizard .steps {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    padding-right: 193px;
}

.overflow-wizard .step a,
.overflow-wizard .step a  > span {
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: top;
}

.overflow-wizard .step {
    display: inline-block;
    /* =Note: do not stretch or shrink steps */
    flex: 0 0 auto;
}

/* [18. Spinner / .spinner-wrapper ]
-------------------------------------------------------------------*/
/* =Note: Allows to rotate various page elements e.g. images or icons. See 1.1 Animations for animation-declaration*/
.animate-spin {
    -moz-animation: 2s linear 0s normal none infinite spin360;
    -webkit-animation: 2s linear 0s normal none infinite spin360;
    -o-animation: 2s linear 0s normal none infinite spin360;
    animation: 2s linear 0s normal none infinite spin360;
}

.animate-spin.paused {
    -webkit-animation-play-state:paused;
    animation-play-state:paused;
}

.animate-spin.playing {
    -webkit-animation-play-state:running;
    animation-play-state:running;
}

.spinner-text {
    margin: 15px 0;
}

/* =Note: overwrite width for spin animation*/
fieldset .spinner-wrapper .fa {
    width: auto;
}

fieldset .spinner-wrapper {
    display: inline-block;
}

fieldset .spinner-wrapper > .spinner-text {
    text-align: center;
}

/* [18.1. Modal spinner / .modal-spinner]
-------------------------------------------------------------------*/
.modal-spinner.ui-widget-overlay {
    background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(251,251,251,1) 16%, rgba(229,229,229,0.42) 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(16%,rgba(251,251,251,1)), color-stop(100%,rgba(229,229,229,0.42))); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(251,251,251,1) 16%,rgba(229,229,229,0.42) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(251,251,251,1) 16%,rgba(229,229,229,0.42) 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(251,251,251,1) 16%,rgba(229,229,229,0.42) 100%); /* IE10+ */
    background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(251,251,251,1) 16%,rgba(229,229,229,0.42) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#6be5e5e5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.modal-spinner .spinner-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -62px;
    text-align: center;
    width: 300px;
}

.modal-spinner .fa {
    margin: 0px;
}

.modal-spinner .fa.fa-spinner {
    font-size: 64px;
    line-height: 64px;
    color: rgba(0,0,0,0.2);
    width: 64px;
    height: 64px;
}

.modal-spinner .fa:not(.fa-spinner) {
    position: absolute;
    left: 50%;
    top: 47px;
    line-height: 0px;
    font-size: 20px;
    color: rgba(0,0,0,0.85);
    margin: -15px 0 0 -6px;
}

.modal-spinner .spinner-text {
    margin-top: 15px;
}

.modal-spinner .spinner-text b {
    color: rgba(0,0,0,0.9);
}

img.animate-spin {
    -webkit-animation: 3s linear 0s normal none infinite spin360;
    animation: 3s linear 0s normal none infinite spin360;
}

/* [19. Charts]
-------------------------------------------------------------------*/
#ab-chart {
    height: 200px;
}

#flowing-chart {
    height: 200px;
}

#server-chart {
    height: 150px;
    overflow: hidden;
}

.wb-padding-left {
    padding: 10px 0 0 20px;
}

/* [20. Modal-List / .modal-list ]
-------------------------------------------------------------------*/
.modal-list {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 15px;
    height: calc(100% - 100px);
}

.modal-list-wrapper {
    left: 50%;
    position: fixed;
    top: 27%;
    margin-left: -175px;
    width: 350px;
    height: 66%;
}

.modal-list-wrapper .spinner-wrapper {
    top: 20% !important;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    margin: 0;
    width: 100%;
}

.modal-list-item {
    position: relative;
    margin: 9px 0 30px;
    min-height: 44px;
}

.modal-list-header {
    padding: 0 0 30px 0;
    width: 100%;
    position: relative;
}

.modal-list-header:after {
    content:"";
    display: block;
    width: 100%;
    height: 1px;
    bottom: 15px;
    left: 0;
    background: -moz-linear-gradient(left,  rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.2) 10%, rgba(0,0,0,0.1) 90%, rgba(0,0,0,0.06) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0.06)), color-stop(10%,rgba(0,0,0,0.2)), color-stop(90%,rgba(0,0,0,0.1)), color-stop(100%,rgba(0,0,0,0.06)));
    background: -webkit-linear-gradient(left,  rgba(0,0,0,0.06) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.1) 90%,rgba(0,0,0,0.06) 100%);
    background: -o-linear-gradient(left,  rgba(0,0,0,0.06) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.1) 90%,rgba(0,0,0,0.06) 100%);
    background: -ms-linear-gradient(left,  rgba(0,0,0,0.06) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.1) 90%,rgba(0,0,0,0.06) 100%);
    background: linear-gradient(to right,  rgba(0,0,0,0.06) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.1) 90%,rgba(0,0,0,0.06) 100%);
    position: absolute;
}

.modal-list-header a {
    opacity: 0.6;
}

.modal-list-header a .fa {
    font-size: 14px !important;
    margin-left: 0 !important;
    position: static !important;
}

.item-status {
    display: inline-block;
    width: 40px;
    bottom: 0;

    vertical-align: text-top;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-weight: bold;
    padding-top: 19px;
}

.modal-list .fa {
    position: static !important;
    margin: 15px 0 0 -5px !important;
}

.error .item-status .fa,
.error-text {
    color: rgb(235,0,0);
}

.item-status .fa {
    margin: 0px 0 0 -5px !important;
    top: 0 !important;
    left: 0px !important;
}

.item-status .fa-spinner {
    font-size: 20px !important;
    height: auto !important;
    line-height: 0 !important;
    width: auto !important;
    color: inherit !important;
}

.item-text,
.error-text {
    display: inline-block;
    padding: 0 10px 0 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 0 30px 0 40px;
    width: 100%;
}

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

.error-text {
    display: block;
}

.error .item-status {
    padding-top: 12px;
}

.item-action {
    display: inline-block;
    opacity: 0.6;
    position: absolute;
    right: 0;
    top: 19px;
    border: none !important;
}

.item-action .fa{
    margin: 0px !important;
    font-size: 14px !important;
    text-indent: 0 !important;
}

.modal-list-header a:hover,
.item-action:hover {
    opacity: 1;
}

.modal-list .ui-progressbar.ui-progressbar-indeterminate .ui-progressbar-value {
    -webkit-animation: moveBackgroundHorizontally 40s infinite linear;
    -moz-animation: moveBackgroundHorizontally 40s infinite linear;
    -o-animation: moveBackgroundHorizontally 40s infinite linear;
    animation: moveBackgroundHorizontally 40s infinite linear;
}

/* [21. Box-Table / .btable ]
-------------------------------------------------------------------*/
.btable-wrapper {
    position: relative;
}

.btable {
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    overflow: visible;
}

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

.btable-header {
    display: table-header-group;
    font-weight: bold;
}

.btable-content {
    display: table-row-group;
}

.btable-row {
    display: table-row;
}

.btable-cell {
    display: table-cell;
    position: static;
    white-space: nowrap;             
    overflow: hidden;        
    text-overflow: ellipsis;
    padding: 3px 10px;
}

.empty-content {
    padding: 15px;
    font-size: 20px;
    display: none;
    font-weight: 300;
}

.empty-table .empty-content {
    display: block;
}

/* =Note: only visible on small screens */
.btable-label {
    display: none;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;             
    overflow: hidden;        
    text-overflow: ellipsis;
}

.btable-tools {
    padding: 0 0 10px 0;
}

.btable-tools li {
    display: inline-block;
    vertical-align: top;
}

.btable-tools > .right > button,
.btable-tools > .right > .button {
    margin-right: 0;
    margin-left: 10px;
}

.btable-filter .btable-cell {
    padding: 0px 10px;
}

.btable-wrapper.min-height {
    min-height: 300px;
}

.btable .btable-cell:first-child {
    border-left: none !important;
}

.btable .btable-cell:last-child {
    border-right: none !important;
}

/* [21.1. Sticky Table Header / .is-sticky ]
-------------------------------------------------------------------*/
.is-sticky .btable-cell {
    -webkit-box-shadow: 0 1px 0 0 rgba(194,194,194,1) !important;
    box-shadow: 0 1px 0 0 rgba(194,194,194,1) !important;

    position: relative;
    overflow-y: visible;
    overflow-x: visible;
}

.is-sticky .btable-cell:first-child:before,
.is-sticky .btable-cell:after {
    content:"";
    display: block;
    width: 1px;
    background: rgb(194,194,194);
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .is-sticky .btable-cell:first-child:before {
        right: auto;
        left: -1px;
    }

    /* =Note: required to cover loading animation with sticky header. 
    Stacking context! */
    .is-sticky {
        position: relative;
    }
}

/* [21.2. Filter Elements / .filter-* ]
-------------------------------------------------------------------*/
.filter-item.multi-line,
.multi-line-filter .btable-header .btable-cell:after {
    content:"";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.filter-item {
    display: inline-block;
    padding: 5px 0;
}

.multi-line-item {
    display: block;
    text-align: right;
}

/* [21.3. Loading State / .btable-loading ]
-------------------------------------------------------------------*/
.btable-loading {
    top: 30%;
    height: 90%;
    width: 100%;
    display: none;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: none !important;
    border-top: none !important;
    text-align: center;
    white-space: nowrap;
    display: none;
}

.loading-table .btable-loading {
    display: block;
}

.btable-loading-indicator {
    display: inline-block;
    vertical-align: middle;
    margin-right: -0.25em;
}

.btable-wrapper.loading-table .btable-loading {
    display: block;
}

.btable-wrapper.min-height {
    min-height: 300px;
}

.btable .btable-cell:first-child {
    border-left: none !important;
}

.btable .btable-cell:last-child {
    border-right: none !important;
}

/* [21.4. Pagination / .btable-paginate ]
-------------------------------------------------------------------*/
.paginate-item {
    display: inline-block;
    margin: 20px 7px;
    position: relative;
}

.paginate-item.previous-item,
.paginate-item.next-item {
    border-bottom-color: transparent;   
}

.paginate-item.previous-item,
.paginate-item.next-item,
.paginate-item.first-item,
.paginate-item.last-item {
    margin-left: 0;
    margin-right: 0;
}

.paginate-item.last-item  a,
.paginate-item.first-item a {
    margin-left: 8px;
    margin-right: 8px;
}

.paginate-item.previous-item a,
.paginate-item.next-item a {
    padding: 0 8px;
    font-size: 9px;
}

.paginate-item.first-item a {}    
.paginate-item.previous-item a {
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    -o-transform: scale(-1,1);
    transform: scale(-1,1);
}

.paginate-item .button,
.paginate-item .button .fa {
    margin-right: 0;
    font-size: inherit;
    vertical-align: middle;
}

.paginate-item a:not(.button) {
    opacity: 0.6;
}

.paginate-item a:not(.button):hover {
    opacity: 1;
}