﻿@charset "UTF-8";
/* --------------------------------------------------------
Style Sheet for TC-RMS

version: 1.0
last modified: 13.11.2008 by Tuan Pham
author: Tuan Pham
email: tuanpm212@gmail.com
website: http://domain.com
----------------------------------------------------------*/
/* -----------------------------------------------------------
CONTENTS:
=Resets & General
=Links
=Header
=Wrapper
=Main Content
=Lists
=Navigation
=Comments
=Aside
=Footer
------------------------------------------------------------*/
/* -----------------------------------------------------------
Guide:
= Structure
    example:
        @charset "UTF-8"

        @import "normalize.css"

        // Variables
        @import "media-queries.less"
        @import "colors.less"
        @import "other-variables-like-fonts.less"

        // Mixins
        @import "mixins.less"

        // Utils
        @import "utils.less"

        // Components
        @import "component-1.less"
        @import "component-2.less"
        @import "component-3.less"
        @import "component-4.less" // and so forth

= Syntax
    == Bad CSS
    .selector, .selector-secondary, .selector[type=text] {
      padding:15px;
      margin:0px 0px 15px;
      background-color:rgba(0, 0, 0, 0.5);
      box-shadow:0px 1px 2px #CCC,inset 0 1px 0 #FFFFFF
    }

    == Good CSS
    .selector,
    .selector-secondary,
    .selector[type="text"] {
      padding: 15px;
      margin-bottom: 15px;
      background-color: rgba(0,0,0,.5);
      box-shadow: 0 1px 2px #ccc, inset 0 1px 0 #fff;
    }
= Declaration order
    .declaration-order {
        == Positioning
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100;

        == Box-model
        display: block;
        float: right;
        width: 100px;
        height: 100px;

        == Typography
        font: normal 13px "Helvetica Neue", sans-serif;
        line-height: 1.5;
        color: #333;
        text-align: center;

        == Visual
        background-color: #f5f5f5;
        border: 1px solid #e5e5e5;
        border-radius: 3px;

        == Misc
        opacity: 1;
    }
= Media query placement
    .element { ... }
    .element-avatar { ... }
    .element-selected { ... }

    @media (min-width: 480px) {
        .element { ...}
        .element-avatar { ... }
        .element-selected { ... }
    }
= Prefixed properties
    == Prefixed properties
    .selector {
      -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
              box-shadow: 0 1px 2px rgba(0,0,0,.15);
    }
= Single declarations
    == Single declarations on one line
        .span1 { width: 60px; }
        .span2 { width: 140px; }
        .span3 { width: 220px; }

    == Multiple declarations, one per line
        .sprite {
          display: inline-block;
          width: 16px;
          height: 15px;
          background-image: url(../img/sprite.png);
        }
        .icon           { background-position: 0 0; }
        .icon-home      { background-position: 0 -20px; }
        .icon-account   { background-position: 0 -40px; }

= Shorthand notation
    == Bad example
        .element {
          margin: 0 0 10px;
          background: red;
          background: url("image.jpg");
          border-radius: 3px 3px 0 0;
        }

    == Good example
        .element {
          margin-bottom: 10px;
          background-color: red;
          background-image: url("image.jpg");
          border-top-left-radius: 3px;
          border-top-right-radius: 3px;
        }
= Nesting in Less and Sass
    == Without nesting
    .table > thead > tr > th { … }
    .table > thead > tr > td { … }

    == With nesting
    .table > thead > tr {
      > th { … }
      > td { … }
    }

= Operators in Less and Sass
    == Bad example
    .element {
      margin: 10px 0 @variable*2 10px;
    }

    == Good example
    .element {
      margin: 10px 0 (@variable * 2) 10px;
    }

= Comments
    == Bad example
        === Modal header
            .modal-header {
              ...
            }

    == Good example
        === Wrapping element for .modal-title and .modal-close
            .modal-header {
              ...
            }
= Class names
    == Bad example
        .t { ... }
        .red { ... }
        .header { ... }

    == Good example
        .tweet { ... }
        .important { ... }
        .tweet-header { ... }
= Selectors
    == Bad example
        span { ... }
        .page-container #stream .stream-item .tweet .tweet-header .username { ... }
        .avatar { ... }

    == Good example
        .avatar { ... }
        .tweet-header .username { ... }
        .tweet .avatar { ... }
= Organization
    //
    // Component section heading
    //

    .element { ... }

    //
    // Component section heading
    //
    // Sometimes you need to include optional context for the entire component. Do that up here if it's important enough.
    //

    .element { ... }

    // Contextual sub-component or modifer
    .element-heading { ... }
------------------------------------------------------------*/
/*#region Font*/
/*#endregion Font*/
/*#region Brand color*/
/*#endregion Brand color*/
/*#region Type*/
/*#endregion Type*/
/*#region z-Depth*/
/*#endregion z-Depth*/
/*#region Scaffolding*/
/*#endregion Scaffolding*/
/*#region Loadding*/
/*#endregion Loadding*/
/*#region Account*/
/*#endregion Account*/
/*#region Header layout*/
/*#endregion Header layout*/
/*#region Aside layout*/
/*#endregion Aside layout*/
/*#region Navigation*/
/*#endregion Navigation*/
/*#region Main layout*/
/*#endregion Main layout*/
/*#region Table*/
/*#endregion Table*/
/*#region font-face Lato*/
@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Hairline.eot');
    src: url('/Content/fonts/Lato-Hairline.eot?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Hairline.woff2') format('woff2'), url('/Content/fonts/Lato-Hairline.woff') format('woff'), url('/Content/fonts/Lato-Hairline.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-HairlineItalic.eot');
    src: url('/Content/fonts/Lato-HairlineItalic.eot?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-HairlineItalic.woff2') format('woff2'), url('/Content/fonts/Lato-HairlineItalic.woff') format('woff'), url('/Content/fonts/Lato-HairlineItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Thin.eot');
    src: url('/Content/fonts/Lato-Thin?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Thin.woff2') format('woff2'), url('/Content/fonts/Lato-Thin.woff') format('woff'), url('/Content/fonts/Lato-Thin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-ThinItalic.eot');
    src: url('/Content/fonts/Lato-ThinItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-ThinItalic.woff2') format('woff2'), url('/Content/fonts/Lato-ThinItalic.woff') format('woff'), url('/Content/fonts/Lato-ThinItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Light.eot');
    src: url('/Content/fonts/Lato-Light?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Light.woff2') format('woff2'), url('/Content/fonts/Lato-Light.woff') format('woff'), url('/Content/fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-LightItalic.eot');
    src: url('/Content/fonts/Lato-LightItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-LightItalic.woff2') format('woff2'), url('/Content/fonts/Lato-LightItalic.woff') format('woff'), url('/Content/fonts/Lato-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Regular.eot');
    src: url('/Content/fonts/Lato-Regular?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Regular.woff2') format('woff2'), url('/Content/fonts/Lato-Regular.woff') format('woff'), url('/Content/fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Italic.eot');
    src: url('/Content/fonts/Lato-Italic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Italic.woff2') format('woff2'), url('/Content/fonts/Lato-Italic.woff') format('woff'), url('/Content/fonts/Lato-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Medium.eot');
    src: url('/Content/fonts/Lato-Medium?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Medium.woff2') format('woff2'), url('/Content/fonts/Lato-Medium.woff') format('woff'), url('/Content/fonts/Lato-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-MediumItalic.eot');
    src: url('/Content/fonts/Lato-MediumItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-MediumItalic.woff2') format('woff2'), url('/Content/fonts/Lato-MediumItalic.woff') format('woff'), url('/Content/fonts/Lato-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Semibold.eot');
    src: url('/Content/fonts/Lato-Semibold?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Semibold.woff2') format('woff2'), url('/Content/fonts/Lato-Semibold.woff') format('woff'), url('/Content/fonts/Lato-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-SemiboldItalic.eot');
    src: url('/Content/fonts/Lato-SemiboldItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-SemiboldItalic.woff2') format('woff2'), url('/Content/fonts/Lato-SemiboldItalic.woff') format('woff'), url('/Content/fonts/Lato-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Bold.eot');
    src: url('/Content/fonts/Lato-Bold?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Bold.woff2') format('woff2'), url('/Content/fonts/Lato-Bold.woff') format('woff'), url('/Content/fonts/Lato-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-BoldItalic.eot');
    src: url('/Content/fonts/Lato-BoldItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-BoldItalic.woff2') format('woff2'), url('/Content/fonts/Lato-BoldItalic.woff') format('woff'), url('/Content/fonts/Lato-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Heavy.eot');
    src: url('/Content/fonts/Lato-Heavy?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Heavy.woff2') format('woff2'), url('/Content/fonts/Lato-Heavy.woff') format('woff'), url('/Content/fonts/Lato-Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-HeavyItalic.eot');
    src: url('/Content/fonts/Lato-HeavyItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-HeavyItalic.woff2') format('woff2'), url('/Content/fonts/Lato-HeavyItalic.woff') format('woff'), url('/Content/fonts/Lato-HeavyItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-Black.eot');
    src: url('/Content/fonts/Lato-Black?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-Black.woff2') format('woff2'), url('/Content/fonts/Lato-Black.woff') format('woff'), url('/Content/fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Lato';
    src: url('/Content/fonts/Lato-BlackItalic.eot');
    src: url('/Content/fonts/Lato-BlackItalic?#iefix') format('embedded-opentype'), url('/Content/fonts/Lato-BlackItalic.woff2') format('woff2'), url('/Content/fonts/Lato-BlackItalic.woff') format('woff'), url('/Content/fonts/Lato-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: 'Bodonitow';
    src: url('../fonts/Bodonitown.ttf');
}
/*#endregion font-face Lato*/
.badge.up {
    top: -10px;
}

.badge.badge-sm {
    font-size: 85%;
}

.badge.badge-danger {
    background-color: #d9534f;
}

.v-box {
    display: table;
    border-spacing: 0;
    position: relative;
    height: 100%;
    width: 100%;
}

    .v-box > section {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
    }

    .v-box > footer {
        position: absolute;
        top: auto;
        bottom: 0;
        width: 100%;
        z-index: 1000;
    }

.h-box {
    display: table;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

    .h-box > aside,
    .h-box > section {
        display: table-cell;
        vertical-align: top;
        height: 100%;
        padding: 0;
        float: none;
    }

@media (min-width: 768px) {
    .v-box-sm {
        display: table;
        border-spacing: 0;
        position: relative;
        height: 100%;
        width: 100%;
    }

        .v-box-sm > section {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100%;
        }

        .v-box-sm > footer {
            position: absolute;
            top: auto;
            bottom: 0;
            width: 100%;
            z-index: 1000;
        }

    .h-box-sm {
        display: table;
        border-spacing: 0;
        width: 100%;
        height: 100%;
        table-layout: fixed;
    }

        .h-box-sm > aside,
        .h-box-sm > section {
            display: table-cell;
            vertical-align: top;
            height: 100%;
            padding: 0;
            float: none;
        }
}

.mini-box {
    padding: 15px;
}

    .mini-box .box-icon {
        position: absolute;
        left: 25px;
        bottom: 50%;
        display: inline-block;
        vertical-align: middle;
        width: 65px;
        height: 65px;
        margin-bottom: -22px;
        border-radius: 50px;
        text-align: center;
        color: #fff;
    }

@media (min-width: 1366px) {
    .mini-box .box-icon {
        left: 40px;
    }
}

.mini-box .box-icon i {
    font-size: 36px;
    line-height: 65px;
}

.mini-box .box-info {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: right;
}

    .mini-box .box-info .size-h2 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 2px;
    }

    .mini-box .box-info .size-h4 {
        font-size: 14px;
    }

    .mini-box .box-info .text-muted {
        margin-bottom: 0;
    }

.padder {
    padding-left: 15px;
    padding-right: 15px;
}

.padder-v {
    padding-top: 15px;
    padding-bottom: 15px;
}

.no-padder {
    padding: 0 !important;
}

.pull-in {
    margin-left: -15px;
    margin-right: -15px;
}

.pull-out {
    margin: -10px -15px;
}

.b-a {
    border: 1px solid #cfcfcf;
}

.b-t {
    border-top: 1px solid #cfcfcf;
}

.b-r {
    border-right: 1px solid #cfcfcf;
}

.b-b {
    border-bottom: 1px solid #cfcfcf;
}

.b-l {
    border-left: 1px solid #cfcfcf;
}

.b-light {
    border-color: #e4e4e4;
}

.b-dark {
    border-color: #374b5e;
}

.b-primary {
    border-color: #77c587;
}

.b-success {
    border-color: #9bc877;
}

.b-info {
    border-color: #5fc7c8;
}

.b-warning {
    border-color: #ffcb4d;
}

.b-danger {
    border-color: #fc8174;
}

.b-black {
    border-color: #353535;
}

.b-white {
    border-color: #fff;
}

.b-2x {
    border-width: 2px;
}

.b-3x {
    border-width: 3px;
}

.r {
    border-radius: 2px 2px 2px 2px;
}

.r-l {
    border-radius: 2px 0 0 2px;
}

.r-r {
    border-radius: 0 2px 2px 0;
}

.r-t {
    border-radius: 2px 2px 0 0;
}

.r-b {
    border-radius: 0 0 2px 2px;
}

.m-xs {
    margin: 5px;
}

.m-sm {
    margin: 10px;
}

.m {
    margin: 15px;
}

.m-md {
    margin: 20px;
}

.m-lg {
    margin: 30px;
}

.m-n {
    margin: 0 !important;
}

.m-l-none {
    margin-left: 0;
}

.m-l-xs {
    margin-left: 5px;
}

.m-l-sm {
    margin-left: 10px;
}

.m-l {
    margin-left: 15px;
}

.m-l-md {
    margin-left: 20px;
}

.m-l-lg {
    margin-left: 30px;
}

.m-l-xl {
    margin-left: 40px;
}

.m-l-n-xxs {
    margin-left: -1px;
}

.m-l-n-xs {
    margin-left: -5px;
}

.m-l-n-sm {
    margin-left: -10px;
}

.m-l-n {
    margin-left: -15px;
}

.m-l-n-md {
    margin-left: -20px;
}

.m-l-n-lg {
    margin-left: -30px;
}

.m-l-n-xl {
    margin-left: -40px;
}

.m-t-none {
    margin-top: 0;
}

.m-t-xxs {
    margin-top: 1px;
}

.m-t-xs {
    margin-top: 5px;
}

.m-t-sm {
    margin-top: 10px;
}

.m-t {
    margin-top: 15px;
}

.m-t-md {
    margin-top: 20px;
}

.m-t-lg {
    margin-top: 30px;
}

.m-t-xl {
    margin-top: 40px;
}

.m-t-n-xxs {
    margin-top: -1px;
}

.m-t-n-xs {
    margin-top: -5px;
}

.m-t-n-sm {
    margin-top: -10px;
}

.m-t-n {
    margin-top: -15px;
}

.m-t-n-md {
    margin-top: -20px;
}

.m-t-n-lg {
    margin-top: -30px;
}

.m-t-n-xl {
    margin-top: -40px;
}

.m-r-none {
    margin-right: 0;
}

.m-r-xs {
    margin-right: 5px;
}

.m-r-sm {
    margin-right: 10px;
}

.m-r {
    margin-right: 15px;
}

.m-r-md {
    margin-right: 20px;
}

.m-r-lg {
    margin-right: 30px;
}

.m-r-xl {
    margin-right: 40px;
}

.m-r-n-xxs {
    margin-right: -1px;
}

.m-r-n-xs {
    margin-right: -5px;
}

.m-r-n-sm {
    margin-right: -10px;
}

.m-r-n {
    margin-right: -15px;
}

.m-r-n-md {
    margin-right: -20px;
}

.m-r-n-lg {
    margin-right: -30px;
}

.m-r-n-xl {
    margin-right: -40px;
}

.m-b-none {
    margin-bottom: 0;
}

.m-b-xs {
    margin-bottom: 5px;
}

.m-b-sm {
    margin-bottom: 10px;
}

.m-b {
    margin-bottom: 15px;
}

.m-b-md {
    margin-bottom: 20px;
}

.m-b-lg {
    margin-bottom: 30px;
}

.m-b-xl {
    margin-bottom: 40px;
}

.m-b-n-xxs {
    margin-bottom: -1px;
}

.m-b-n-xs {
    margin-bottom: -5px;
}

.m-b-n-sm {
    margin-bottom: -10px;
}

.m-b-n {
    margin-bottom: -15px;
}

.m-b-n-md {
    margin-bottom: -20px;
}

.m-b-n-lg {
    margin-bottom: -30px;
}

.m-b-n-xl {
    margin-bottom: -40px;
}

.bg-primary {
    background-color: #1C7EBB;
    color: #fff;
}

.bg-primary-light {
    background-color: #449DD5;
    color: #fff;
}

.bg-success {
    background-color: #23AE89;
    color: #fff;
}

.bg-info {
    background-color: #2EC1CC;
    color: #fff;
}

.bg-warning {
    background-color: #FFB61C;
    color: #fff;
}

.bg-danger {
    background-color: #E94B3B;
    color: #fff;
}

.bg-orange {
    background-color: #F98E33;
    color: #fff;
}

.bg-violet {
    background-color: #6A55C2;
    color: #fff;
}

.bg-dark {
    background-color: #222533;
    color: #fff;
}

.bg-bright {
    background-color: #fafafa;
    color: #767676;
}

.bg-reverse {
    background-color: #fff;
    color: #767676;
}

.bg-facebook {
    background-color: #335397;
    color: #fff;
}

.bg-twitter {
    background-color: #00c7f7;
    color: #fff;
}

.bg-google-plus {
    background-color: #df4a32;
    color: #fff;
}

.text-muted {
    color: #98A6AD;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1100;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-duration: 300ms;
    -o-animation-duration: 300ms;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

    .loading-overlay.fade-in {
        display: block;
    }

    .loading-overlay.fade-out {
        -moz-animation-name: fade-out;
        -o-animation-name: fade-out;
        -webkit-animation-name: fade-out;
    }

    .loading-overlay.bg-2 {
        background-color: #ffffff;
        z-index: 1100;
    }

    .loading-overlay .loading-icon,
    .loading-overlay .loading-icon:after {
        width: 32px;
        height: 32px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -16px;
        margin-left: -16px;
        border-radius: 50%;
    }

    .loading-overlay .loading-icon {
        background-color: transparent;
        border-top: 5px solid rgba(0, 0, 0, 0.2);
        border-right: 5px solid rgba(0, 0, 0, 0.2);
        border-bottom: 5px solid rgba(0, 0, 0, 0.2);
        border-left: 5px solid #eee;
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -moz-animation-timing-function: linear;
        -o-animation-timing-function: linear;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -moz-animation-duration: .8s;
        -o-animation-duration: .8s;
        -webkit-animation-duration: .8s;
        animation-duration: .8s;
        -moz-animation-name: animsition-loading;
        -o-animation-name: animsition-loading;
        -webkit-animation-name: animsition-loading;
        animation-name: animsition-loading;
    }

@-moz-keyframes animsition-loading {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animsition-loading {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animsition-loading {
    0% {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 15px;
}

.table-responsive .mCSB_outside + .mCSB_scrollTools {
    right: 0;
}

.cost-scrollbar .mCSB_scrollTools_vertical {
    visibility: visible !important;
}

#side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    #side-menu ul > li > a {
        display: block;
        position: relative;
        padding: 10px;
        color: #95a7ba;
        text-decoration: none;
        cursor: pointer;
    }

        #side-menu ul > li > a:hover {
            color: #ffffff;
        }

    #side-menu ul > li.active > a,
    #side-menu ul > li.open > a {
        color: #fff;
    }

    #side-menu ul > li.current > a {
        background-color: #0c1722;
    }

#side-menu .badge {
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -8px;
    font-size: 10px;
}

#side-menu .menu-level-1 > li > a > i {
    display: inline-block;
    width: 20px;
    line-height: 20px;
    font-size: 16px;
}

#side-menu .menu-level-2 > li.has-caret .caret {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -2px;
}

#side-menu .menu-level-2 > li > a {
    padding-left: 35px;
}

#side-menu .menu-level-3 > li > a {
    padding-left: 35px;
}

    #side-menu .menu-level-3 > li > a:before {
        position: absolute;
        top: 14px;
        left: 35px;
        content: "";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        margin-right: 5px;
    }

    #side-menu .menu-level-3 > li > a .menu-label {
        margin-left: 10px;
    }

.csstransforms #side-menu .menu-level-2 > li.has-caret .caret {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.csstransforms #side-menu .menu-level-2 > li.has-caret.active .caret {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.csstransitions #side-menu .menu-level-2 > li.has-caret .caret {
    -webkit-transition: transform 300ms ease-in-out;
    -moz-transition: transform 300ms ease-in-out;
    -ms-transition: transform 300ms ease-in-out;
    -o-transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
}

@media (min-width: 768px) {
    .toggle-shown-menu-xs {
        display: none;
    }

    .toggle-hidden-menu-xs {
        display: inline-block;
    }

    .menu-xs .hidden-menu-xs {
        display: none;
    }

    .menu-xs .toggle-shown-menu-xs {
        display: inline-block;
    }

    .menu-xs .toggle-hidden-menu-xs {
        display: none;
    }

    .menu-xs #user {
        padding: 10px 0;
    }

        .menu-xs #user .user-avatar {
            width: 30px;
            height: 30px;
            border-radius: 15px;
        }

            .menu-xs #user .user-avatar + div {
                position: absolute;
                top: 5px;
                left: 100%;
                width: 300px;
                padding: 15px;
                background-color: #ffffff;
                border: 1px solid rgba(0, 0, 0, 0.15);
                -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
                text-align: left;
            }

                .menu-xs #user .user-avatar + div:before,
                .menu-xs #user .user-avatar + div:after {
                    content: "";
                    display: inline-block;
                    position: absolute;
                    -webkit-transform: rotate(360deg);
                    border: 7px solid transparent;
                    border-left-width: 0;
                    top: 12px;
                    left: 9px;
                }

                .menu-xs #user .user-avatar + div:before {
                    left: -8px;
                    border-right-color: #9c9c9c;
                }

                .menu-xs #user .user-avatar + div:after {
                    left: -7px;
                    border-right-color: #ffffff;
                }

        .menu-xs #user .user-name {
            margin-top: 0;
            color: #333333;
        }

        .menu-xs #user .user-map-marker {
            color: #c8c8c8;
        }

        .menu-xs #user .nav {
            text-align: right;
        }

            .menu-xs #user .nav > li > a {
                padding: 0 10px;
                margin: 0 0 0 10px;
                background-color: #336294;
                border: 1px solid #193048;
                border-radius: 3px;
                color: #ffffff;
            }

                .menu-xs #user .nav > li > a:hover {
                    background-color: #26496e;
                    color: #ffffff;
                }

        .menu-xs #user:hover .user-avatar + div {
            display: block;
        }

    .menu-xs #side-menu {
        overflow: visible;
    }

        .menu-xs #side-menu ul {
            display: none;
            width: 100%;
        }

            .menu-xs #side-menu ul > li {
                position: relative;
            }

                .menu-xs #side-menu ul > li > a > .badge {
                    right: 10px;
                }

                .menu-xs #side-menu ul > li > ul {
                    width: 200px;
                    background-color: #203d5b;
                }

                .menu-xs #side-menu ul > li.hover > a {
                    background-color: #1f3750;
                    color: #ffffff;
                }

                .menu-xs #side-menu ul > li.hover > ul {
                    display: block;
                }

        .menu-xs #side-menu .menu-level-1 {
            display: block;
        }

            .menu-xs #side-menu .menu-level-1 > li > a {
                height: 40px;
                padding: 0;
                text-align: center;
                overflow: hidden;
            }

                .menu-xs #side-menu .menu-level-1 > li > a > .fa {
                    float: left;
                    width: 100%;
                    line-height: 40px;
                    -webkit-transition: margin-top 300ms ease-in-out;
                    -moz-transition: margin-top 300ms ease-in-out;
                    -ms-transition: margin-top 300ms ease-in-out;
                    -o-transition: margin-top 300ms ease-in-out;
                    transition: margin-top 300ms ease-in-out;
                }

                .menu-xs #side-menu .menu-level-1 > li > a > .menu-label {
                    display: table;
                    width: 100%;
                    height: 100%;
                    color: #ffffff;
                    text-align: center;
                }

                    .menu-xs #side-menu .menu-level-1 > li > a > .menu-label > span {
                        display: table-cell;
                        vertical-align: middle;
                    }

                .menu-xs #side-menu .menu-level-1 > li > a > .badge {
                    right: 5px;
                    margin-top: -18px;
                    opacity: 1;
                    -webkit-transition: opacity 300ms ease-in-out;
                    -moz-transition: opacity 300ms ease-in-out;
                    -ms-transition: opacity 300ms ease-in-out;
                    -o-transition: opacity 300ms ease-in-out;
                    transition: opacity 300ms ease-in-out;
                }

            .menu-xs #side-menu .menu-level-1 > li > ul {
                position: absolute;
                top: 0;
                left: 100%;
            }

            .menu-xs #side-menu .menu-level-1 > li.hover {
                background-color: #1f3750;
            }

                .menu-xs #side-menu .menu-level-1 > li.hover > a {
                    color: #ffffff;
                }

        .menu-xs #side-menu .menu-level-2 > li > a {
            padding-left: 10px;
        }

        .menu-xs #side-menu .menu-level-2 > li > ul {
            position: absolute;
            top: 0;
            left: 100%;
        }

        .menu-xs #side-menu .menu-level-2 > li .caret {
            display: none;
        }

        .menu-xs #side-menu .menu-level-3 > li > a {
            padding-left: 10px;
        }

            .menu-xs #side-menu .menu-level-3 > li > a:before {
                display: none;
            }

            .menu-xs #side-menu .menu-level-3 > li > a .menu-label {
                margin-left: 0;
            }

    .menu-xs #header-wrapper .navbar-header {
        width: 50px;
        height: 100%;
        overflow: hidden;
    }

    .menu-xs #header-wrapper .navbar-brand {
        display: block;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
}

.multiselect-theme {
    position: relative;
    height: 20px;
    padding: 0;
    background-color: transparent;
    border-width: 0 0 1px 0;
    border-color: #ccc;
    border-style: solid;
}

    .multiselect-theme > span {
        display: block;
        width: 100%;
        padding-right: 10px;
        text-align: left;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow-x: hidden;
    }

    .multiselect-theme > b {
        position: absolute;
        right: 0;
        top: 8px;
        border-top-color: #888;
    }

.multiselect-container > li > a {
    padding-left: 10px;
}

    .multiselect-container > li > a > label {
        font-weight: normal;
        margin-top: 0;
        margin-bottom: 0;
    }

        .multiselect-container > li > a > label input[type="radio"],
        .multiselect-container > li > a > label input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }

.btn-group.open .multiselect-theme {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.nav-tabs > li > a {
    background-color: #dbdbdb;
    padding: 5px 10px;
    border-radius: 0;
}

    .nav-tabs > li > a:hover {
        border-color: transparent;
    }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: #4cae4c;
    color: #fff;
    border: 1px solid #4cae4c;
}

.tab-content > .tab-pane {
    padding-top: 20px;
}

.panel.with-nav-tabs {
    border: 0;
}

    .panel.with-nav-tabs .panel-heading {
        padding: 5px 5px 0 0px;
        background-color: transparent;
        border: 0;
    }

    .panel.with-nav-tabs .panel-body {
        border: 1px solid #ddd;
    }

    .panel.with-nav-tabs .nav-tabs {
        border-bottom: none;
    }

    .panel.with-nav-tabs .nav-justified {
        margin-bottom: -1px;
    }

@media (max-width: 767px) {
    .dropdown.dropdown-xs .dropdown-menu {
        position: absolute;
        background-color: #fff;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid #ccc;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    }
}

.dropdown.dropdown-menu-right .bullet:before {
    left: auto;
    right: 14px;
}

.dropdown.dropdown-menu-right .bullet:after {
    left: auto;
    right: 15px;
}

@media (max-width: 767px) {
    .dropdown.dropdown-menu-right.dropdown-xs {
        left: auto;
        right: 0;
    }
}

.dropdown-menu.bullet {
    margin-top: 8px;
}

    .dropdown-menu.bullet:before {
        width: 0;
        height: 0;
        content: '';
        display: inline-block;
        position: absolute;
        border-color: transparent;
        border-style: solid;
        -webkit-transform: rotate(360deg);
        border-width: 0 7px 7px;
        border-bottom-color: #cccccc;
        border-bottom-color: rgba(0, 0, 0, 0.15);
        top: -7px;
        left: 9px;
    }

    .dropdown-menu.bullet:after {
        width: 0;
        height: 0;
        content: '';
        display: inline-block;
        position: absolute;
        border-color: transparent;
        border-style: solid;
        -webkit-transform: rotate(360deg);
        border-width: 0 6px 6px;
        border-bottom-color: #ffffff;
        top: -6px;
        left: 10px;
    }

    .dropdown-menu.bullet.dropup {
        margin-top: 0;
        margin-bottom: 8px;
    }

        .dropdown-menu.bullet.dropup:before {
            top: auto;
            bottom: -7px;
            border-bottom-width: 0;
            border-top-width: 7px;
            border-top-color: #cccccc;
            border-top-color: rgba(0, 0, 0, 0.15);
        }

        .dropdown-menu.bullet.dropup :after {
            top: auto;
            bottom: -6px;
            border-bottom: none;
            border-top-width: 6px;
            border-top-color: #ffffff;
        }

.dropdown-menu.no-min-w {
    min-width: inherit;
}

.dropdown-menu.multiselect-container {
    max-height: 250px;
    overflow: auto;
}

.dropdown-menu > li > a {
    color: #555;
}

.dropdown-menu > li p {
    margin-bottom: 0;
    padding: 3px 20px;
    color: #555;
}

.dropdown-notification {
    position: relative;
}

    .dropdown-notification > span {
        position: absolute;
        top: 0;
        right: -5px;
        min-width: 14px;
        height: 14px;
        padding: 0 4px;
        background-color: #E94B3B;
        border-radius: 8px;
        text-align: center;
        font-size: 10px;
        line-height: 14px;
        color: #fff;
    }

    .dropdown-notification .dropdown-menu {
        min-width: 400px;
        padding: 0;
        border-radius: 0;
    }

        .dropdown-notification .dropdown-menu .external {
            position: relative;
            background-color: #f1f1f1;
        }

            .dropdown-notification .dropdown-menu .external h3 {
                padding: 10px;
                margin: 0;
                font-size: 14px;
            }

                .dropdown-notification .dropdown-menu .external h3 > span {
                    font-weight: bold;
                }

            .dropdown-notification .dropdown-menu .external a {
                position: absolute;
                top: 7px;
                right: 10px;
                padding: 0;
                color: #337ab7;
            }

        .dropdown-notification .dropdown-menu .nav-tabs {
            margin-top: 5px;
            font-size: 0;
            white-space: nowrap;
        }

            .dropdown-notification .dropdown-menu .nav-tabs > li {
                float: none;
                display: inline-block;
                font-size: 14px;
            }

            .dropdown-notification .dropdown-menu .nav-tabs .badge {
                background-color: #E94B3B;
                margin-left: 5px;
            }

        .dropdown-notification .dropdown-menu .tab-pane {
            padding: 0;
        }

        .dropdown-notification .dropdown-menu .notification-details {
            height: 300px;
        }

            .dropdown-notification .dropdown-menu .notification-details ul {
                padding: 0;
            }

            .dropdown-notification .dropdown-menu .notification-details li {
                border-top: 1px solid #f0f0f0;
                list-style-type: none;
            }

                .dropdown-notification .dropdown-menu .notification-details li:first-child {
                    border-top: 0;
                }

                .dropdown-notification .dropdown-menu .notification-details li.is-new {
                    background-color: #F8FAFF;
                }

                .dropdown-notification .dropdown-menu .notification-details li .no-item {
                    display: block;
                    line-height: 60px;
                    text-align: center;
                }

                .dropdown-notification .dropdown-menu .notification-details li a {
                    display: block;
                    position: relative;
                    padding: 8px;
                }

                    .dropdown-notification .dropdown-menu .notification-details li a .details {
                        font-size: 13px;
                    }

                        .dropdown-notification .dropdown-menu .notification-details li a .details i.notification-icon {
                            width: 21px;
                            height: 21px;
                            margin-right: 5px;
                            text-align: center;
                            line-height: 21px;
                            font-size: 11px;
                        }

                        .dropdown-notification .dropdown-menu .notification-details li a .details .time {
                            position: absolute;
                            right: 10px;
                            padding: 3px 5px;
                            background-color: #f1f1f1;
                            font-size: 12px;
                            color: #444;
                        }

                        .dropdown-notification .dropdown-menu .notification-details li a .details > span {
                            padding-left: 30px;
                            font-size: 10px;
                            color: #888;
                        }

            .dropdown-notification .dropdown-menu .notification-details .mCSB_container {
                margin-right: 0px;
            }

            .dropdown-notification .dropdown-menu .notification-details .mCSB_scrollTools {
                width: 4px;
            }

.complete-menu {
    position: absolute;
    z-index: 1050;
    display: none;
    float: left;
    min-width: 300px;
    padding: 5px;
    margin: 2px 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    overflow-y: auto;
}

    .complete-menu.open {
        display: block;
    }

    .complete-menu table {
        width: 100%;
    }

        .complete-menu table thead tr th {
            padding: 0 5px;
        }

        .complete-menu table tbody tr {
            line-height: 30px;
            cursor: pointer;
        }

            .complete-menu table tbody tr:hover {
                font-weight: bold;
                background-color: #E1F0FF;
            }

            .complete-menu table tbody tr.active {
                font-weight: bold;
                background-color: #f1f1f1;
            }

            .complete-menu table tbody tr td {
                padding: 0 5px;
                white-space: nowrap;
            }

    .complete-menu .more-content {
        padding: 3px 5px;
    }

        .complete-menu .more-content a {
            font-weight: bold;
        }

.tl-container {
    position: relative;
    padding-left: 15px;
    z-index: 1;
}

    .tl-container:after {
        content: " ";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 15px;
        display: block;
        width: 0;
        height: 100%;
        border-left: 1px dotted #000;
        z-index: -1;
    }

    .tl-container .tl-item {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
    }

        .tl-container .tl-item .tl-icon {
            position: absolute;
            top: 0;
            left: 0;
            margin-left: -9px;
        }

            .tl-container .tl-item .tl-icon .icon {
                width: 20px;
                height: 20px;
                text-align: center;
                line-height: 20px;
                color: #c4c4c4;
            }

            .tl-container .tl-item .tl-icon .icon-dark {
                color: #333333;
            }

            .tl-container .tl-item .tl-icon .icon-bage {
                border-radius: 50%;
                font-size: 12px;
            }

            .tl-container .tl-item .tl-icon .icon-bg-primary {
                background-color: #337AB7;
                color: #fff;
            }

            .tl-container .tl-item .tl-icon .icon-bg-success {
                background-color: #5cb85c;
                color: #fff;
            }

            .tl-container .tl-item .tl-icon .icon-bg-info {
                background-color: #5bc0de;
                color: #fff;
            }

            .tl-container .tl-item .tl-icon .icon-bg-warning {
                background-color: #f0ad4e;
                color: #fff;
            }

            .tl-container .tl-item .tl-icon .icon-bg-danger {
                background-color: #d9534f;
                color: #fff;
            }

            .tl-container .tl-item .tl-icon .fa-circle {
                font-size: 8px;
                line-height: 20px;
                vertical-align: middle;
            }

        .tl-container .tl-item .tl-content .tl-highlight {
            font-size: 16px;
        }

        .tl-container .tl-item .tl-content .tl-message {
            margin-bottom: 0;
        }

        .tl-container .tl-item .tl-content .tl-message-inline {
            display: inline-block;
        }

        .tl-container .tl-item .tl-content .tl-small {
            display: block;
            font-size: 12px;
            font-style: italic;
            color: #797979;
        }

.panel {
    border-radius: 0;
    border-width: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
}

    .panel.panel-default > .panel-heading {
        border-bottom: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .panel.panel-report {
        border-width: 1px;
        border-color: #f1f1f1;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

        .panel.panel-report > .panel-heading {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            background-color: #f1f1f1;
            font-size: 16px;
        }

.img-report-template {
    max-width: 100%;
}
/*Report Note style*/
.report-note-title {
    text-decoration: underline;
    font-weight: bold;
}

.report-note-detail {
    font-size: 90%;
}

    .report-note-detail li {
        padding: 3px 0px;
    }

.report-cols > th {
    padding: 3px !important;
    font-size: 80%;
    font-style: italic;
}

.dropdown-tree-toggle {
    position: relative;
    padding-right: 15px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    cursor: pointer;
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer */
    -khtml-user-select: none;
    /* KHTML browsers (e.g. Konqueror) */
    -webkit-user-select: none;
    /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none;
    /* Disable Android and iOS callouts*/
}

    .dropdown-tree-toggle .dropdown-tree-render {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .dropdown-tree-toggle .dropdown-tree-arrow {
        position: absolute;
        top: 1px;
        right: 1px;
        width: 15px;
        height: 20px;
    }

        .dropdown-tree-toggle .dropdown-tree-arrow i {
            position: absolute;
            top: 50%;
            right: 0;
            width: 0;
            height: 0;
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            margin-left: -4px;
            margin-top: -2px;
        }

    .dropdown-tree-toggle.open .dropdown-tree-arrow i {
        border-color: transparent transparent #888 transparent;
        border-width: 0 4px 5px 4px;
    }

.dropdown-tree-content {
    position: fixed;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin: 5px 0;
    visibility: hidden;
    z-index: 1050;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

    .dropdown-tree-content.open {
        visibility: visible;
    }

    .dropdown-tree-content .dropdown-tree-search {
        position: relative;
        width: 100%;
        padding: 4px;
    }

        .dropdown-tree-content .dropdown-tree-search:after {
            content: "\f002";
            position: absolute;
            top: 11px;
            right: 11px;
            color: #CACACA;
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .dropdown-tree-content .dropdown-tree-search > input {
            width: 100%;
            padding: 4px 25px 4px 4px;
            border: 1px solid #ccc;
        }

    .dropdown-tree-content .jstree > ul {
        position: relative;
        max-height: 256px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .dropdown-tree-content .jstree-dropdown .jstree-node {
        line-height: 32px;
    }

        .dropdown-tree-content .jstree-dropdown .jstree-node .jstree-icon {
            position: relative;
            width: 20px;
            height: 20px;
            margin-top: 6px;
        }

            .dropdown-tree-content .jstree-dropdown .jstree-node .jstree-icon:before {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 16px;
                height: 16px;
                margin-top: -8px;
                margin-left: -8px;
                font: normal normal normal 14px/1 FontAwesome;
            }

        .dropdown-tree-content .jstree-dropdown .jstree-node .jstree-children {
            padding-left: 15px;
        }

        .dropdown-tree-content .jstree-dropdown .jstree-node .jstree-anchor.jstree-hovered {
            color: #fff;
        }

        .dropdown-tree-content .jstree-dropdown .jstree-node .jstree-anchor.jstree-clicked {
            color: #555555;
        }

        .dropdown-tree-content .jstree-dropdown .jstree-node.jstree-closed > .jstree-icon:before {
            content: "\f105";
        }

        .dropdown-tree-content .jstree-dropdown .jstree-node.jstree-open > .jstree-icon:before {
            content: "\f107";
        }

    .dropdown-tree-content .jstree-dropdown .jstree-wholerow-ul .jstree-wholerow-hovered {
        background-color: #337AB7;
    }

    .dropdown-tree-content .jstree-dropdown .jstree-wholerow-ul .jstree-wholerow-clicked {
        background-color: #DCDCDC;
    }

.has-error .dropdown-tree-toggle {
    border-bottom-color: #a94442;
}

.grid-photo .item,
.photo .item {
    width: 100%;
    padding: 0 5px;
    float: left;
    margin-bottom: 15px;
    position: relative;
}
.grid-photo .item,
.photo .item.icon {
    width: 100px;
}
    .grid-photo .item .overlay,
    .photo .item .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCM0ZGN0M3OUI2QjExMUU1OTVBRkI3NjZDMzgzQUY5MyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCM0ZGN0M3QUI2QjExMUU1OTVBRkI3NjZDMzgzQUY5MyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkIzRkY3Qzc3QjZCMTExRTU5NUFGQjc2NkMzODNBRjkzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkIzRkY3Qzc4QjZCMTExRTU5NUFGQjc2NkMzODNBRjkzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1+wJeQAAAA9JREFUeNpiYGBgSAMIMAAAawBnDb5zPgAAAABJRU5ErkJggg==");
        background-repeat: repeat;
        visibility: hidden;
    }

    .grid-photo .item.active:before,
    .photo .item.active:before {
        position: absolute;
        top: -8px;
        right: -2px;
        z-index: 1000;
        display: block;
        content: "";
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f00c";
        background-color: green;
        height: 20px;
        width: 20px;
        text-align: center;
        line-height: 20px;
        color: white;
        border-radius: 50%;
    }

    .grid-photo .item:hover .overlay,
    .photo .item:hover .overlay {
        visibility: visible;
    }

        .grid-photo .item:hover .overlay .overlay-control,
        .photo .item:hover .overlay .overlay-control {
            position: absolute;
            bottom: 0;
            width: 100%;
        }

            .grid-photo .item:hover .overlay .overlay-control > a,
            .photo .item:hover .overlay .overlay-control > a {
                float: left;
                width: 50%;
                text-align: center;
                color: #000;
                line-height: 30px;
                background-color: #fff;
                border: 1px solid #000;
                cursor: pointer;
            }

            .grid-photo .item:hover .overlay .overlay-control.single-btn > a,
            .photo .item:hover .overlay .overlay-control.single-btn > a {
                width: 100%;
            }

    .grid-photo .item span,
    .photo .item span {
        display: block;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.grid-photo .square-outside,
.photo .square-outside {
    padding-bottom: 100%;
    position: relative;
}

.grid-photo .square-inside,
.photo .square-inside {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px solid #c5c5c5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

    .grid-photo .square-inside .add,
    .photo .square-inside .add {
        height: 100%;
        width: 100%;
        display: block;
        text-align: center;
        position: relative;
        cursor: pointer;
        z-index: 1;
    }

        .grid-photo .square-inside .add i,
        .photo .square-inside .add i {
            display: block;
            margin: 0 auto;
        }

        .grid-photo .square-inside .add span,
        .photo .square-inside .add span {
            position: absolute;
            top: 50%;
            width: 100%;
            left: 0;
            margin-top: -31px;
        }

.cssscrollbar *::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
}

.cssscrollbar *::-webkit-scrollbar-thumb {
    background-color: rgba(146, 146, 146, 0.3);
    
}

    .cssscrollbar *::-webkit-scrollbar-thumb:hover {
        background-color: rgba(146, 146, 146, 0.5);
    }

.cssscrollbar *::-webkit-scrollbar-track {
    background-color: rgba(50, 50, 50, 0.1);
}

    .cssscrollbar *::-webkit-scrollbar-track:hover {
        background-color: rgba(50, 50, 50, 0.1);
    }

::-moz-selection {
    color: #FFF;
    background: #3383D2;
}

::selection {
    color: #FFF;
    background: #3383D2;
}

* {
    outline: 0;
}

    *:hover,
    *:focus {
        outline: 0;
    }

html {
    /*width: 100%;
    height: 100%;
    overflow: hidden;*/
    background-color: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: #555;
    /*width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;*/
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
}

@media print {
    body {
        height: auto;
        overflow: auto;
    }
}

@media (max-width: 767px) {
    html,
    html body {
        height: 100%;
    }
}

@media (min-width: 768px) {
    html,
    html body {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

h1 {
    font-size: 24px;
}

a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
}

.btn:focus,
.btn.active:focus,
.btn.focus,
.btn.active.focus {
    outline: 0;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

#wrapper {
    position: relative;
}

    #wrapper > header {
        height: 50px;
    }

    #wrapper > section {
        top: 50px;
    }

.scrollable {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 767px) {
    .scrollable-xs {
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media (min-width: 768px) {
    .scrollable-sm {
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

#header-wrapper {
    border-bottom: 0;
    background-color: #e3eaf3;
}

    #header-wrapper .navbar-nav > li {
        float: left;
    }

        #header-wrapper .navbar-nav > li > a {
            background-color: transparent;
            padding: 14px 8px;
            border: none;
            font-size: 18px;
            color: #587792;
        }

            #header-wrapper .navbar-nav > li > a:hover {
                background-color: transparent;
            }

    #header-wrapper .navbar-nav {
        float: left;
    }

        #header-wrapper .navbar-nav.navbar-right {
            float: right;
        }

        #header-wrapper .navbar-nav:first-child > li:first-child a {
            padding-left: 15px;
        }

        #header-wrapper .navbar-nav:last-child > li:last-child a {
            padding-right: 15px;
        }

    #header-wrapper .navbar-header {
        display: inline-block;
    }

@media (min-width: 768px) {
    #header-wrapper .navbar-header {
        width: 250px;
        height: 50px;
        background-color: #193048;
    }
}

#header-wrapper .navbar-brand {
    padding: 0 15px;
    line-height: 50px;
    font-size: 20px;
    color: #587792;
}

    #header-wrapper .navbar-brand > img {
        display: inline-block;
        height: 32px;
    }

@media (min-width: 768px) {
    #header-wrapper .navbar-brand {
        float: none;
        color: #ffffff;
    }
}

#header-wrapper .navbar-text {
    padding: 0 15px;
    margin: 0;
    line-height: 50px;
    color: #587792;
    font-size: 18px;
}

#header-wrapper .badge {
    font-size: 10px;
}

#header-wrapper .user-profiles > a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

#header-wrapper .user-profiles .img-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#header-wrapper .user-profiles .img-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#header-wrapper .user-profiles .user-profile-wrap {
    min-width: 300px;
    padding: 0;
    margin-right: 8px;
    border-radius: 0;
    border-color: #9c9c9c;
}

    #header-wrapper .user-profiles .user-profile-wrap:before {
        border-bottom-color: #9c9c9c;
    }

#header-wrapper .user-profiles .user-profile-content {
    padding: 15px;
}

#header-wrapper .user-profiles .user-profile-footer {
    background-color: #e9e9e9;
    padding: 10px 15px;
    border-top: 1px solid #9c9c9c;
}

#header-wrapper .user-profiles .info-group {
    margin-left: 115px;
}

#header-wrapper .user-profiles .user-name {
    font-weight: bold;
}

#header-wrapper .user-profiles .user-email {
    color: #c8c8c8;
    font-size: 12px;
}

#header-wrapper .user-profiles .user-pass {
    margin-top: 5px;
}

    #header-wrapper .user-profiles .user-pass > a {
        cursor: pointer;
    }

#header-wrapper .user-profiles .user-profile {
    display: inline-block;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #52c7fd;
    color: #fff;
    cursor: pointer;
}

#header-wrapper .user-profiles .sign-out {
    display: inline-block;
    padding: 5px 10px;
    background-color: #c6c6c6;
    border: 1px solid #b5b5b5;
    color: #3c3c3c;
    cursor: pointer;
}

@media (max-width: 767px) {
    .flexbox #header-wrapper {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

        .flexbox #header-wrapper > * {
            float: none;
        }

        .flexbox #header-wrapper .navbar-text {
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
}

@media (min-width: 768px) {
    .csstransitions #header-wrapper .navbar-header {
        -webkit-transition: width 300ms ease-in-out;
        -moz-transition: width 300ms ease-in-out;
        -ms-transition: width 300ms ease-in-out;
        -o-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out;
    }
}

#sidebar {
    position: relative;
    width: 250px;
    background-color: #193048;
    z-index: 3;
}

@media (max-width: 767px) {
    #wrapper {
        height: 100%;
    }

    #sidebar {
        position: absolute;
        top: 50px;
        bottom: 0;
        left: -250px;
    }

        #sidebar .v-box-sm {
            position: relative;
            height: 100%;
        }

        #sidebar .sidebar-content {
            height: 100%;
        }

    .sidebar-open,
    .sidebar-open body {
        overflow: hidden;
        position: relative;
        height: 100%;
    }

        .sidebar-open #sidebar {
            left: 0;
        }

    .boxshadow.sidebar-open #sidebar {
        -webkit-box-shadow: 15px 0px 26px 10px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 15px 0px 26px 10px rgba(0, 0, 0, 0.25);
        box-shadow: 15px 0px 26px 10px rgba(0, 0, 0, 0.25);
    }

    .csstransitions #sidebar {
        -webkit-transition: left 0.3s ease-out;
        -moz-transition: left 0.3s ease-out;
        -ms-transition: left 0.3s ease-out;
        -o-transition: left 0.3s ease-out;
        transition: left 0.3s ease-out;
    }
}

@media (min-width: 768px) {
    #sidebar .v-box > section {
        bottom: 50px;
    }

    #sidebar .sidebar-content {
        bottom: 50px;
    }

    #sidebar .sidebar-footer {
        height: 50px;
        padding: 0 15px;
    }

        #sidebar .sidebar-footer > .btn {
            background-color: #0c1722;
            border-color: #050a0f;
            margin-top: 10px;
            color: #fff;
        }

    .flexbox #sidebar .sidebar-content {
        display: flex;
        flex-direction: column;
    }

    .csstransitions #sidebar {
        -webkit-transition: width 300ms ease-in-out;
        -moz-transition: width 300ms ease-in-out;
        -ms-transition: width 300ms ease-in-out;
        -o-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out;
    }

    .menu-xs #sidebar {
        width: 50px;
    }
}

#user {
    padding: 15px 25px;
    background-color: #1d3853;
    text-align: center;
}

    #user .user-avatar {
        display: block;
        width: 60px;
        height: 60px;
        margin: 0 auto;
        border: 3px solid #193048;
        border-radius: 30px;
    }

    #user .user-name {
        color: white;
    }

    #user .user-map-marker {
        display: block;
        color: white;
    }

    #user .nav > li {
        display: inline-block;
    }

        #user .nav > li > a {
            padding: 0;
            margin: 0 10px;
            color: #336294;
        }

            #user .nav > li > a:hover {
                background-color: transparent;
                color: #8aafd6;
            }

#content-wrapper {
    position: relative;
}

    #content-wrapper .animsition {
        padding: 15px;
    }

        #content-wrapper .animsition > .row {
            margin-top: 15px;
        }

            #content-wrapper .animsition > .row:first-child {
                margin-top: 0;
            }

.panel-account {
    display: table-cell;
    background: url("../images/bg-login-page.jpg") #4e7230 no-repeat center center;
    background-size: cover;
    vertical-align: middle;
}

.form-account {
    width: 90%;
    margin: 0 auto;
    max-width: 446px;
    padding: 30px;
    background-color: #FFF;
    border-radius: 6px;
}

    .form-account .btn {
        border-radius: 0;
        font-size: 16px;
    }

    .form-account .form-group {
        margin-bottom: 15px;
    }

    .form-account .form-horizontal .form-group {
        margin-bottom: 15px;
    }

        .form-account .form-horizontal .form-group label {
            margin-top: 7px;
        }

    .form-account .form-control {
        height: 34px;
        border-width: 0;
        border-bottom-width: 1px;
        border-radius: 0;
        font-size: 14px;
    }

    .form-account .form-group-lg .form-control {
        height: 46px;
    }

    .form-account .form-group-lg.has-icon .form-icon {
        height: 46px;
        line-height: 46px;
        z-index: 2;
    }
    .form-account .form-group-lg.has-icon .form-icon-right {
        height: 46px;
        line-height: 46px;
    }

    .form-account .form-account-logo {
        display: block;
        margin: 0 auto 16px;
    }

    .form-account .form-account-heading {
        font-size: 28px;
        color: #5f5f5f;
        margin-bottom: 20px;
    }

    .form-account .form-account-break-line {
        margin: 10px 0;
    }

    .form-account .form-account-link {
        color: #666;
    }

    .form-account .has-icon {
        position: relative;
    }

        .form-account .has-icon .form-control {
            padding-left: 40px;
        }

        .form-account .has-icon .form-icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            line-height: 34px;
            text-align: center;
        }
        .form-account .has-icon .form-icon-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            line-height: 34px;
            text-align: center;
        }

.panel-setup-site {
    display: table-cell;
    vertical-align: middle;
}

.panel-setup-content {
    margin: 0 auto;
    width: 1200px;
    height: 700px;
    background-color: #fff;
}

.setup-home {
    padding: 25px 35px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-image: url("../images/setup-site.jpg");
}

    .setup-home .address {
        font-size: 16px;
    }

        .setup-home .address address {
            margin-top: 15px;
        }

    .setup-home .jumbotron {
        background: none;
        text-align: center;
    }

        .setup-home .jumbotron h1 {
            font-weight: 300;
        }

        .setup-home .jumbotron .lead {
            font-weight: 500;
            margin-top: 60px;
        }

        .setup-home .jumbotron .btn-start {
            border-radius: 0;
            background-color: #0aa724;
            padding: 22px 42px;
            margin-top: 50px;
        }

.panel-setup-content .setup-step-header {
    background-color: #ededed;
    padding: 10px 0;
}

    .panel-setup-content .setup-step-header .setup-step-right .fa {
        font-size: 22px;
    }

    .panel-setup-content .setup-step-header .setup-step-right span {
        font-size: 22px;
        line-height: 37px;
    }

    .panel-setup-content .setup-step-header .setup-step-left img {
        height: 20px;
    }

.panel-setup-content .setup-step-content {
    top: 60px;
    bottom: 49px;
    padding: 15px;
}

.panel-setup-content .setup-step-footer {
    padding-bottom: 15px;
}

    .panel-setup-content .setup-step-footer .btn {
        border-radius: 0;
    }

.aside-bar {
    background-color: #193048;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .aside-bar header {
        height: 50px;
    }

        .aside-bar header img {
            vertical-align: middle;
            width: 34px;
            height: 34px;
        }

    .aside-bar .main-menu {
        top: 50px;
        bottom: 50px;
    }

    .aside-bar footer {
        height: 50px;
        background-color: #193048;
    }

        .aside-bar footer .btn-aside-footer {
            border-color: #050a0f;
            background-color: #0c1722;
            margin: 8px 0;
            color: #FFF;
        }

            .aside-bar footer .btn-aside-footer:before {
                display: inline-block;
                font: normal normal normal 14px/1 FontAwesome;
                font-size: inherit;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            .aside-bar footer .btn-aside-footer:hover,
            .aside-bar footer .btn-aside-footer:focus {
                -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
                box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
                -webkit-transition: all 0.3s ease-out;
                -o-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

    .aside-bar.aside-bar-lg {
        width: 200px;
    }

        .aside-bar.aside-bar-lg header a {
            display: inline-block;
            margin: 8px 10px;
        }

        .aside-bar.aside-bar-lg header h1 {
            display: inline-block;
            vertical-align: middle;
            margin: 0;
            font-size: 24px;
            color: #FFF;
        }

        .aside-bar.aside-bar-lg footer {
            text-align: right;
        }

            .aside-bar.aside-bar-lg footer .btn-aside-footer {
                margin-right: 15px;
            }

                .aside-bar.aside-bar-lg footer .btn-aside-footer:before {
                    content: "\f104";
                }

    .aside-bar.aside-bar-xs {
        width: 50px;
    }

        .aside-bar.aside-bar-xs header a {
            margin: 8px auto;
            display: block;
            text-align: center;
        }

        .aside-bar.aside-bar-xs header h1 {
            display: none;
        }

        .aside-bar.aside-bar-xs footer {
            text-align: center;
        }

            .aside-bar.aside-bar-xs footer .btn-aside-footer:before {
                content: "\f105";
            }

.content > header {
    background-color: #E3EAF3;
    padding: 0 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .content > header h2 {
        margin: 0;
        line-height: 50px;
        font-size: 20px;
        color: #587792;
        cursor: default;
    }

.content > section {
    top: 50px;
    overflow-x: hidden;
    overflow-y: auto;
}

    .content > section > section {
        position: relative;
        padding: 0 15px;
        float: left;
        width: 100%;
        min-height: 100%;
    }

    .content > section .animsition > .row {
        margin-top: 15px;
    }

.aside-bar .main-menu {
    z-index: 1010;
}

    .aside-bar .main-menu ul {
        list-style-type: none;
        padding-left: 0;
    }

        .aside-bar .main-menu ul li {
            position: relative;
            margin: 0px;
            cursor: pointer;
        }

            .aside-bar .main-menu ul li > a {
                display: block;
                position: relative;
                color: #95A7BA;
                -webkit-transition: all 0.3s ease-out;
                -o-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
            }

                .aside-bar .main-menu ul li > a:hover {
                    color: #FFF;
                }

                .aside-bar .main-menu ul li > a > i {
                    display: inline-block;
                    vertical-align: middle;
                    width: 20px;
                    font-size: 16px;
                    line-height: 20px;
                    margin-right: 5px;
                }

                .aside-bar .main-menu ul li > a > .menu-label {
                    vertical-align: middle;
                    font-size: 14px;
                }

                .aside-bar .main-menu ul li > a > .badge {
                    min-width: 14px;
                    height: 14px;
                    padding: 0 4px;
                    border-radius: 8px;
                    background-color: #E94B3B;
                    text-align: center;
                    font-size: 10px;
                    font-weight: normal;
                    line-height: 14px;
                    color: #ffffff;
                }

            .aside-bar .main-menu ul li > ul {
                display: none;
            }

            .aside-bar .main-menu ul li.open > ul {
                display: block;
            }

            .aside-bar .main-menu ul li.active > a {
                color: #FFF;
            }

    .aside-bar .main-menu .menu-level-1 > li > a {
        font-size: 0;
        padding: 10px;
    }

    .aside-bar .main-menu .menu-level-2 > li > a {
        position: relative;
    }

    .aside-bar .main-menu .menu-level-3 > li > a {
        padding: 10px 10px 10px 45px;
    }

        .aside-bar .main-menu .menu-level-3 > li > a span {
            margin-left: 10px;
        }

        .aside-bar .main-menu .menu-level-3 > li > a:before {
            position: absolute;
            top: 14px;
            left: 35px;
            content: "\f0da";
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            margin-right: 5px;
        }

    .aside-bar .main-menu .mCSB_container {
        margin-right: 0 !important;
    }

.aside-bar.aside-bar-lg .main-menu ul li a > .menu-label {
    display: inline-block;
}

.aside-bar.aside-bar-lg .main-menu ul li a > .badge {
    display: inline-block;
    margin-left: 5px;
}

.aside-bar.aside-bar-lg .main-menu ul li.current > a {
    background-color: #0c1722;
    color: #FFF;
}

.aside-bar.aside-bar-lg .main-menu .menu-level-2 > li a {
    padding: 10px 10px 10px 35px;
}

    .aside-bar.aside-bar-lg .main-menu .menu-level-2 > li a .caret {
        position: absolute;
        right: 25px;
        top: 10px;
        vertical-align: inherit;
        border: 0;
    }

        .aside-bar.aside-bar-lg .main-menu .menu-level-2 > li a .caret:before {
            content: "\f105";
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            margin-right: 5px;
        }

.aside-bar.aside-bar-lg .main-menu .menu-level-2 > li.open > a .caret:before,
.aside-bar.aside-bar-lg .main-menu .menu-level-2 > li.select > a .caret:before {
    content: "\f107";
}

.aside-bar.aside-bar-lg .main-menu .menu-level-2 > li.has-caret > a {
    padding-right: 30px;
}

.aside-bar.aside-bar-xs .main-menu ul li a {
    padding: 10px;
}

.aside-bar.aside-bar-xs .main-menu ul li ul {
    display: none !important;
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    background-color: #203d5b;
    z-index: 1;
}

.aside-bar.aside-bar-xs .main-menu ul li:hover {
    background-color: #1F3750;
}

    .aside-bar.aside-bar-xs .main-menu ul li:hover > a > i {
        color: #fff;
    }

    .aside-bar.aside-bar-xs .main-menu ul li:hover > ul {
        display: block !important;
    }

.aside-bar.aside-bar-xs .main-menu .menu-level-1 > li > a {
    text-align: center;
}

    .aside-bar.aside-bar-xs .main-menu .menu-level-1 > li > a > i {
        margin-right: 0;
        text-align: center;
    }

    .aside-bar.aside-bar-xs .main-menu .menu-level-1 > li > a > .menu-label {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        width: 200px;
        padding: 10px;
        background-color: #122335;
        text-align: left;
        z-index: 1;
    }

    .aside-bar.aside-bar-xs .main-menu .menu-level-1 > li > a > .badge {
        position: absolute;
        top: 3px;
        right: 3px;
    }

.aside-bar.aside-bar-xs .main-menu .menu-level-1 > li:hover > a > .menu-label {
    display: block;
}

.aside-bar.aside-bar-xs .main-menu .menu-level-1 > li > ul {
    top: 100%;
}

.aside-bar.aside-bar-xs .main-menu .menu-level-2 li > a .caret {
    display: none;
}

.aside-bar.aside-bar-xs .main-menu .menu-level-3 > li > a:before {
    display: none;
}

.nav.nav-wizard li {
    width: 25%;
    text-align: center;
}

.header-control {
    margin-bottom: 0px;
    margin-right: -5px;
    padding: 10px 0;
}

    .header-control > li {
        height: 30px;
        padding: 0;
        margin-left: 15px;
        vertical-align: middle;
    }

        .header-control > li.user-config {
            font-size: 23px;
        }

            .header-control > li.user-config .dropdown-menu {
                border-radius: 0;
                margin-top: 20px;
            }

                .header-control > li.user-config .dropdown-menu.bullet.dropdown-menu-right:before {
                    right: 4px;
                }

                .header-control > li.user-config .dropdown-menu.bullet.dropdown-menu-right:after {
                    right: 5px;
                }

                .header-control > li.user-config .dropdown-menu > li > a {
                    padding: 5px 10px;
                }

                    .header-control > li.user-config .dropdown-menu > li > a i {
                        font-size: 150%;
                    }

        .header-control > li.full-screen {
            font-size: 23px;
        }

        .header-control > li.header-notification {
            position: relative;
        }

            .header-control > li.header-notification > a > i {
                font-size: 23px;
            }

            .header-control > li.header-notification > span {
                position: absolute;
                top: 0;
                right: -5px;
                min-width: 14px;
                height: 14px;
                padding: 0 4px;
                background-color: #E94B3B;
                border-radius: 8px;
                text-align: center;
                font-size: 10px;
                line-height: 14px;
                color: #fff;
            }

            .header-control > li.header-notification .dropdown-menu {
                min-width: 300px;
                padding: 0;
                border-radius: 0;
            }

                .header-control > li.header-notification .dropdown-menu .external {
                    position: relative;
                    background-color: #f1f1f1;
                }

                    .header-control > li.header-notification .dropdown-menu .external h3 {
                        padding: 10px;
                        margin: 0;
                        font-size: 14px;
                    }

                        .header-control > li.header-notification .dropdown-menu .external h3 > span {
                            font-weight: bold;
                        }

                    .header-control > li.header-notification .dropdown-menu .external a {
                        position: absolute;
                        top: 7px;
                        right: 10px;
                        padding: 0;
                        color: #337ab7;
                    }

                .header-control > li.header-notification .dropdown-menu .nav-tabs {
                    margin-top: 5px;
                    font-size: 0;
                    white-space: nowrap;
                }

                    .header-control > li.header-notification .dropdown-menu .nav-tabs > li {
                        float: none;
                        display: inline-block;
                        font-size: 14px;
                    }

                    .header-control > li.header-notification .dropdown-menu .nav-tabs .badge {
                        background-color: #E94B3B;
                        margin-left: 5px;
                    }

                .header-control > li.header-notification .dropdown-menu .tab-pane {
                    padding: 0;
                }

                .header-control > li.header-notification .dropdown-menu .notification-details {
                    height: 220px;
                }

                    .header-control > li.header-notification .dropdown-menu .notification-details ul {
                        padding: 0;
                    }

                    .header-control > li.header-notification .dropdown-menu .notification-details li {
                        border-top: 1px solid #f0f0f0;
                        list-style-type: none;
                    }

                        .header-control > li.header-notification .dropdown-menu .notification-details li:first-child {
                            border-top: 0;
                        }

                        .header-control > li.header-notification .dropdown-menu .notification-details li.is-new {
                            background-color: #F8FAFF;
                        }

                        .header-control > li.header-notification .dropdown-menu .notification-details li a {
                            display: block;
                            position: relative;
                            padding: 10px;
                        }

                            .header-control > li.header-notification .dropdown-menu .notification-details li a .time {
                                position: absolute;
                                bottom: 11px;
                                right: 10px;
                                padding: 3px 5px;
                                background-color: #f1f1f1;
                                font-size: 12px;
                            }

                            .header-control > li.header-notification .dropdown-menu .notification-details li a .details i {
                                width: 24px;
                                height: 24px;
                                margin-right: 5px;
                                text-align: center;
                                line-height: 24px;
                            }

                    .header-control > li.header-notification .dropdown-menu .notification-details .mCSB_container {
                        margin-right: 0px;
                    }

                    .header-control > li.header-notification .dropdown-menu .notification-details .mCSB_scrollTools {
                        width: 4px;
                    }

        .header-control > li > a {
            display: inline-block;
            color: #587792;
            line-height: 30px;
            vertical-align: super;
            cursor: pointer;
        }

            .header-control > li > a > .fa {
                vertical-align: middle;
            }

.animated {
    -webkit-animation: ring 2s ease infinite;
    animation: ring 2s ease infinite;
    -ms-transform-origin-x: 50%;
    -webkit-transform-origin-x: 50%;
    transform-origin-x: 50%;
    -ms-transform-origin-y: 0;
    -webkit-transform-origin-y: 0;
    transform-origin-y: 0;
    -ms-transform-origin-z: initial;
    -webkit-transform-origin-z: initial;
    transform-origin-z: initial;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    2% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    4% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    6% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    8% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }

    10% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg);
    }

    12% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    14% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    16% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }

    18% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg);
    }

    100%, 20% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg);
    }

    12% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    14% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg);
    }

    100%, 20% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg);
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg);
    }

    12% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg);
    }

    14% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg);
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg);
    }

    100%, 20% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.location {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    padding-right: 15px;
    position: relative;
}

    .location:before {
        content: "";
        display: block;
        height: 20px;
        width: 1px;
        background-color: #999;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -10px;
    }

    .location i {
        color: #999;
        font-size: 24px;
        margin-right: 5px;
        vertical-align: middle;
    }
    @media screen and (max-width: 1300px)
    {
        .location {
            display: none;
        }
    }
[draggable] {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}

.dnd-table {
    display: table;
    width: 100%;
    min-height: 400px;
    border: 1px solid #e6e6e6;
}

    .dnd-table .dnd-table-list {
        display: table-cell;
        width: 150px;
        background-color: #E3E4E6;
        vertical-align: top;
    }

    .dnd-table .dnd-table-area {
        display: table-cell;
        background-image: url("../images/grid-bg.png");
    }

.dnd-table-list {
    border-right: 1px solid #e6e6e6;
}

    .dnd-table-list div {
        display: block;
    }

    .dnd-table-list .dnd-table-list-header {
        padding: 6px;
        color: #494A4C;
    }

    .dnd-table-list .dnd-table-list-item {
        background-color: #ffffff;
        padding: 6px;
        border-radius: 3px;
        margin: 3px;
        color: #727272;
        cursor: move;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

.dnd-table-area {
    position: relative;
    overflow: hidden;
}

    .dnd-table-area .dnd-table-area-wrap {
        padding-bottom: 50%;
    }

    .dnd-table-area .dnd-table-area-backdrop {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.75);
        border: 1px dashed transparent;
        display: none;
    }

    .dnd-table-area.drag-enter .dnd-table-area-backdrop {
        border: 3px dashed rgba(91, 192, 222, 0.75);
        display: block;
    }

    .dnd-table-area .dnd-table-area-item {
        cursor: move;
        overflow: hidden;
    }

        .dnd-table-area .dnd-table-area-item.on-move {
            z-index: 2;
        }

        .dnd-table-area .dnd-table-area-item .dnd-table-area-item-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 24px;
            margin-top: -12px;
            line-height: initial;
            color: #ffffff;
            opacity: 0;
            filter: "alpha(opacity=0)";
            -webkit-transform: translateY(100px);
            -ms-transform: translateY(100px);
            -o-transform: translateY(100px);
            transform: translateY(100px);
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }

            .dnd-table-area .dnd-table-area-item .dnd-table-area-item-controls > span {
                display: inline-block;
                width: 24px;
                height: 24px;
                background-color: rgba(0, 0, 0, 0.5);
                margin: 0 3px;
                border-radius: 3px;
                text-align: center;
                cursor: pointer;
            }

                .dnd-table-area .dnd-table-area-item .dnd-table-area-item-controls > span > .fa {
                    vertical-align: middle;
                }

                    .dnd-table-area .dnd-table-area-item .dnd-table-area-item-controls > span > .fa:before {
                        line-height: 24px;
                    }

        .dnd-table-area .dnd-table-area-item:hover .dnd-table-area-item-controls {
            opacity: 1;
            filter: "alpha(opacity=100)";
            -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
            -o-transform: translateY(0px);
            transform: translateY(0px);
        }

.total-rows {
    margin: 10px 0;
    line-height: 34px;
}

.pagination-container {
    height: 54px;
}

    .pagination-container label {
        vertical-align: top;
        margin: 10px 0;
        line-height: 34px;
    }

    .pagination-container .select2-container {
        vertical-align: top;
        margin: 17px 0;
    }

    .pagination-container .pagination {
        padding-left: 15px;
    }

.pagination {
    margin: 10px 0;
}

.table {
    margin-bottom: 0;
}

    .table .checkbox-md {
        width: 28px;
        min-width: 28px;
        text-align: center;
    }

    .table .action {
        width: 56px;
        min-width: 56px;
        text-align: center;
    }

    .table .action-xs {
        width: 34px;
        min-width: 34px;
        text-align: center;
    }

    .table .order-number {
        width: 38px;
        min-width: 38px;
        text-align: center;
    }

    .table .code-xs {
        width: 80px;
        min-width: 80px;
        text-align: left;
    }

    .table .code-sm {
        width: 100px;
        min-width: 100px;
        text-align: left;
    }

    .table .code-md {
        width: 120px;
        min-width: 120px;
        text-align: left;
    }

    .table .code-lg {
        width: 145px;
        min-width: 145px;
        text-align: left;
    }

    .table .code-xl {
        width: 165px;
        min-width: 165px;
        text-align: left;
    }

    .table .status {
        width: 47px;
        min-width: 47px;
        text-align: center;
    }

    .table .status-lg {
        width: 67px;
        min-width: 67px;
        text-align: center;
    }

    .table .date {
        width: 89px;
        min-width: 89px;
        text-align: center;
    }

    .table .date-time {
        width: 130px;
        min-width: 130px;
        text-align: center;
    }

    .table .tax {
        width: 100px;
        min-width: 100px;
        text-align: right;
    }

    .table .phone {
        width: 120px;
        min-width: 120px;
        text-align: right;
    }

    .table .number-xs {
        width: 80px;
        min-width: 80px;
        text-align: right;
    }

    .table .number-sm {
        width: 100px;
        min-width: 100px;
        text-align: right;
    }

    .table .number-md {
        width: 120px;
        min-width: 120px;
        text-align: right;
    }

    .table .number-lg {
        width: 140px;
        min-width: 140px;
        text-align: right;
    }

    .table .number-xl {
        width: 160px;
        min-width: 160px;
        text-align: right;
    }

    .table .quantity-xs {
        width: 60px;
        min-width: 60px;
        text-align: right;
    }

    .table .quantity-sm {
        width: 80px;
        min-width: 80px;
        text-align: right;
    }

    .table .quantity-md {
        width: 100px;
        min-width: 100px;
        text-align: right;
    }

    .table .quantity-lg {
        width: 120px;
        min-width: 120px;
        text-align: right;
    }

    .table .quantity-xl {
        width: 140px;
        min-width: 140px;
        text-align: right;
    }

    .table .text-xs {
        width: 100px;
        min-width: 100px;
        text-align: left;
    }

    .table .text-xm {
        width: 150px;
        min-width: 150px;
        text-align: left;
    }

    .table .text-sm {
        width: 200px;
        min-width: 200px;
        text-align: left;
    }

    .table .text-md {
        width: 300px;
        min-width: 300px;
        text-align: left;
    }

    .table .text-lg {
        width: 400px;
        min-width: 400px;
        text-align: left;
    }

    .table .text-min-xs {
        min-width: 100px;
        max-width: 200px;
        white-space: normal !important;
        text-align: left;
    }

    .table .text-min-xm {
        min-width: 150px;
        max-width: 250px;
        white-space: normal !important;
        text-align: left;
    }

    .table .text-min-sm {
        min-width: 200px;
        max-width: 300px;
        white-space: normal !important;
        text-align: left;
    }

    .table .text-min-md {
        min-width: 300px;
        max-width: 400px;
        white-space: normal !important;
        text-align: left;
    }

    .table .text-min-lg {
        min-width: 400px;
        max-width: 500px;
        white-space: normal !important;
        text-align: left;
    }

    .table > thead > tr > th,
    .table > thead > tr > td {
        padding: 8px 3px;
        vertical-align: middle;
        white-space: nowrap;
    }

@media screen {
    .table > thead > tr > th,
    .table > thead > tr > td {
        text-align: center !important;
    }
}

.table > tbody > tr > td,
.table tfoot > tr > td {
    padding: 4px 5px;
    vertical-align: middle;
    white-space: nowrap;
}

    .table > tbody > tr > td input[type="date"],
    .table tfoot > tr > td input[type="date"],
    .table > tbody > tr > td input[type="datetime"],
    .table tfoot > tr > td input[type="datetime"],
    .table > tbody > tr > td input[type="datetime-local"],
    .table tfoot > tr > td input[type="datetime-local"],
    .table > tbody > tr > td input[type="email"],
    .table tfoot > tr > td input[type="email"],
    .table > tbody > tr > td input[type="month"],
    .table tfoot > tr > td input[type="month"],
    .table > tbody > tr > td input[type="number"],
    .table tfoot > tr > td input[type="number"],
    .table > tbody > tr > td input[type="search"],
    .table tfoot > tr > td input[type="search"],
    .table > tbody > tr > td input[type="tel"],
    .table tfoot > tr > td input[type="tel"],
    .table > tbody > tr > td input[type="text"],
    .table tfoot > tr > td input[type="text"],
    .table > tbody > tr > td input[type="time"],
    .table tfoot > tr > td input[type="time"],
    .table > tbody > tr > td input[type="url"],
    .table tfoot > tr > td input[type="url"],
    .table > tbody > tr > td input[type="week"],
    .table tfoot > tr > td input[type="week"] {
        width: 100%;
        height: 22px;
        padding: 2px 5px;
    }

    .table > tbody > tr > td select,
    .table tfoot > tr > td select {
        width: 100%;
        height: 22px;
        padding: 0 3px;
        border-radius: 0 !important;
    }

.table > tbody > tr.row-empty > td,
.table tfoot > tr.row-empty > td {
    padding: 5px 0 5px 12px;
    font-style: italic;
}

.table > tbody > tr.row-control > td,
.table tfoot > tr.row-control > td {
    padding: 5px 12px;
    font-weight: bold;
}

    .table > tbody > tr.row-control > td a,
    .table tfoot > tr.row-control > td a {
        font-weight: bold;
        cursor: pointer;
    }

.table > tbody > tr.hightlight,
.table tfoot > tr.hightlight {
    background-color: #CDEFCE;
}

.table > tbody > tr.RowRed
{
    color: red;
}

.table > tbody > tr.RowGreen
{
    color: #61C490;
}

.table > tbody > tr.RowGreenDark
{
    color: #378e42;
}

.table > tbody > tr.RowPurple {

    color: #db00d4;
}

.table > tbody > tr.RowPurpleDark {
    color: rebeccapurple;
}

.table > tbody > tr.RowBlue
{
    color: blue;
}

.table > tbody > tr.RowBlueGraden {
    color: #08a7a7;
}

.table > tbody > tr.RowBrow
{
    color: #E2D4B7;
}

.table > tbody > tr.RowBrowDark {
    color: #a77100;
}

.ColorByStatus ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-block-start: 0;
    margin-inline-start: 0;
    padding-inline-start: 0;
    margin-block-end: 0;
    margin-inline-end: 0;
}

    .ColorByStatus ul li{
        list-style: none;
        padding-left: 15px
    }

    .ColorByStatus ul li:before {
        content: "•";
        font-size: 20px;
        vertical-align: middle;
        padding-right: 7px;
    }
.ColorByStatus ul li span::after {
    color: #000;
    font-size: 13px;
    content: attr(data-text)
}
.DotRowRed {
    color: red;
}

.DotRowGreen {
    color: #61C490;
}

.DotRowGreenDark {
    color: #378e42;
}

.DotRowPurple {
    color: #db00d4;
}

.DotRowPurpleDark {
    color: rebeccapurple;
}

.DotRowBlue {
    color: blue;
}


.DotRowBlueGraden {
    color: #08a7a7;
}

.DotRowBrown {
    color: #E2D4B7;
}

.DotRowBrownDark {
    color: #a77100;
}



.table > tbody > tr.error,
.table tfoot > tr.error {
    background-color: #fce2fd;
}

.table > tbody > tr.master,
.table tfoot > tr.master {
    background-color: #c6ffe1 !important;
    font-weight: bold;
}

.table thead > tr > th.weekend {
    background-color: #e3eaf3;
    color: red;
}

.table > tbody > tr > td.weekend {
    background-color: #e3eaf3;
}

.table > tbody > tr.active > td,
.table tfoot > tr.active > td {
    background-color: #fff385;
}

.table > tbody > tr .btn,
.table tfoot > tr .btn {
    padding: 0px 3px;
}

.table-bordered {
    border-color: #e3e3e3;
}

    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border-color: #e3e3e3;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 1px;
    }

.table-hover > tbody > tr:hover {
    background-color: #efefef;
}

.table-fix {
    table-layout: fixed;
}

    .table-fix > thead > tr > th,
    .table-fix > thead > tr > td {
        white-space: normal;
    }

    .table-fix > thead > tr > th,
    .table-fix > tbody > tr > th,
    .table-fix > tfoot > tr > th,
    .table-fix > thead > tr > td,
    .table-fix > tbody > tr > td,
    .table-fix > tfoot > tr > td {
        overflow: hidden;
    }

.table-tree > thead > tr > th.date:first-child,
.table-tree > thead > tr > td.date:first-child {
    width: 109px;
    min-width: 109px;
    text-align: center;
}

.table-tree .row-level-1 {
    color: #444;
    cursor: pointer;
}

    .table-tree .row-level-1.even {
        background-color: #f0f0f0;
    }

    .table-tree .row-level-1 td {
        border-width: 1px 0;
    }

        .table-tree .row-level-1 td a {
            color: #444;
        }

    .table-tree .row-level-1 .row-level-1-icon {
        margin-right: 5px;
    }

.table-tree .row-level-2 {
    font-size: 13px;
}

    .table-tree .row-level-2.even {
        background-color: #f9f9f9;
    }

    .table-tree .row-level-2 td.cell-level-2-padding {
        padding-left: 30px;
    }

    .table-tree .row-level-2 td.cell-level-2-padding-2 {
        padding-left: 60px;
    }

.table-fixer .checkbox-md {
    width: 28px;
    min-width: 28px;
    text-align: center;
}

.table-fixer .action {
    width: 56px;
    min-width: 56px;
    text-align: center;
}

.table-fixer .action-xs {
    width: 34px;
    min-width: 34px;
    text-align: center;
}

.table-fixer .order-number {
    width: 38px;
    min-width: 38px;
    text-align: center;
}

.table-fixer .code-xs {
    width: 80px;
    min-width: 80px;
    text-align: left;
}

.table-fixer .code-sm {
    width: 100px;
    min-width: 100px;
    text-align: left;
}

.table-fixer .code-md {
    width: 120px;
    min-width: 120px;
    text-align: left;
}

.table-fixer .code-lg {
    width: 145px;
    min-width: 145px;
    text-align: left;
}

.table-fixer .code-xl {
    width: 165px;
    min-width: 165px;
    text-align: left;
}

.table-fixer .status {
    width: 47px;
    min-width: 47px;
    text-align: center;
}

.table-fixer .status-lg {
    width: 67px;
    min-width: 67px;
    text-align: center;
}

.table-fixer .date {
    width: 89px;
    min-width: 89px;
    text-align: center;
}

.table-fixer .date-time {
    width: 130px;
    min-width: 130px;
    text-align: center;
}

.table-fixer .tax {
    width: 100px;
    min-width: 100px;
    text-align: right;
}

.table-fixer .phone {
    width: 120px;
    min-width: 120px;
    text-align: right;
}

.table-fixer .number-xs {
    width: 80px;
    min-width: 80px;
    text-align: right;
}

.table-fixer .number-sm {
    width: 100px;
    min-width: 100px;
    text-align: right;
}

.table-fixer .number-md {
    width: 120px;
    min-width: 120px;
    text-align: right;
}

.table-fixer .number-lg {
    width: 140px;
    min-width: 140px;
    text-align: right;
}

.table-fixer .number-xl {
    width: 160px;
    min-width: 160px;
    text-align: right;
}

.table-fixer .quantity-xs {
    width: 60px;
    min-width: 60px;
    text-align: right;
}

.table-fixer .quantity-sm {
    width: 80px;
    min-width: 80px;
    text-align: right;
}

.table-fixer .quantity-md {
    width: 100px;
    min-width: 100px;
    text-align: right;
}

.table-fixer .quantity-lg {
    width: 120px;
    min-width: 120px;
    text-align: right;
}

.table-fixer .quantity-xl {
    width: 140px;
    min-width: 140px;
    text-align: right;
}

.table-fixer .text-xs {
    width: 100px;
    min-width: 100px;
    text-align: left;
}

.table-fixer .text-xm {
    width: 150px;
    min-width: 150px;
    text-align: left;
}

.table-fixer .text-sm {
    width: 200px;
    min-width: 200px;
    text-align: left;
}

.table-fixer .text-md {
    width: 300px;
    min-width: 300px;
    text-align: left;
}

.table-fixer .text-lg {
    width: 400px;
    min-width: 400px;
    text-align: left;
}

.table-fixer .text-min-xs {
    min-width: 100px;
    max-width: 200px;
    white-space: normal !important;
    text-align: left;
}

.table-fixer .text-min-xm {
    min-width: 150px;
    max-width: 250px;
    white-space: normal !important;
    text-align: left;
}

.table-fixer .text-min-sm {
    min-width: 200px;
    max-width: 300px;
    white-space: normal !important;
    text-align: left;
}

.table-fixer .text-min-md {
    min-width: 300px;
    max-width: 400px;
    white-space: normal !important;
    text-align: left;
}

.table-fixer .text-min-lg {
    min-width: 400px;
    max-width: 500px;
    white-space: normal !important;
    text-align: left;
}

.table-grid .ui-grid-top-panel {
    background: none;
}

.table-grid .ui-grid-invisible {
    display: none;
}

.table-grid .ui-grid-row:nth-child(odd) .ui-grid-cell {
    background-color: #f5f5f5;
}

.table-grid .ui-grid-row:nth-child(even) .ui-grid-cell {
    background-color: #ffffff;
}

.table-grid .ui-grid-row .ui-grid-cell {
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
}

    .table-grid .ui-grid-row .ui-grid-cell input[type="checkbox"] {
        margin: 0;
        vertical-align: middle;
    }

    .table-grid .ui-grid-row .ui-grid-cell.hover {
        background-color: #efefef;
    }

.table-grid .ui-grid-header-cell .ui-grid-cell-contents {
    text-align: center;
}

.tree-grid i.indented {
    border: 1px solid #337ab7;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 10px;
}

.fht-table,
.fht-table thead,
.fht-table tfoot,
.fht-table tbody,
.fht-table tr,
.fht-table th,
.fht-table td {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.fht-table {
    border-collapse: collapse;
    border-spacing: 0;
}

.fht-table-wrapper,
.fht-table-wrapper .fht-thead,
.fht-table-wrapper .fht-tfoot,
.fht-table-wrapper .fht-fixed-column .fht-tbody,
.fht-table-wrapper .fht-fixed-body .fht-tbody,
.fht-table-wrapper .fht-tbody {
    overflow: hidden;
    position: relative;
}

    .fht-table-wrapper .fht-fixed-body {
        position: absolute;
        left: 0;
        top: 0;
    }

        .fht-table-wrapper .fht-fixed-body .fht-tbody {
            overflow: auto;
        }

    .fht-table-wrapper .fht-tbody {
        overflow: auto;
    }

    .fht-table-wrapper .fht-table .fht-cell {
        height: 1px;
        overflow: hidden;
    }

    .fht-table-wrapper .fht-fixed-column {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

        .fht-table-wrapper .fht-fixed-column .fht-thead {
            z-index: 1;
        }

.fht-default th,
.fht-default td {
    border: 1px solid #e3e3e3;
    padding: 5px 3px;
    white-space: nowrap;
}

.fht-default thead tr th {
    background-color: #ffffff;
    padding: 5px 3px;
    text-align: center !important;
}

.fht-default tbody tr td {
    border-color: #e3e3e3;
    padding: 5px 3px;
}

.fht-default tbody tr:nth-of-type(odd) > td {
    background-color: #f9f9f9;
}

.fht-default tbody tr:nth-of-type(even) > td {
    background-color: #fff;
}

.fht-default tfoot tr td {
    background-color: #ffffff;
}

.fht-default .fht-fixed-body .fht-thead {
    border-right: 1px solid #e3e3e3;
}

.tfh-wrap {
    position: relative;
    overflow: hidden;
}

    .tfh-wrap .tfh-content .tfh-thead {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
    }

    .tfh-wrap .tfh-content .tfh-tbody {
        overflow: auto;
    }

    .tfh-wrap .tfh-content .tfh-tfoot {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #fff;
    }

.table-container-fixcol {
    overflow: auto;
}

    .table-container-fixcol > table {
        table-layout: fixed;
        border-collapse: separate;
        border-width: 0px;
    }

        .table-container-fixcol > table > thead:first-child > tr:first-child > th {
            border-top: 1px solid #e3e3e3;
        }

        .table-container-fixcol > table > thead > tr > th {
            border-top-width: 1px;
            border-right-width: 0px;
            background-color: #ffffff;
        }

            .table-container-fixcol > table > thead > tr > th.pinned {
                position: relative;
                /**** <===  added this ****/
                z-index: 20;
                /**** <===  added this ****/
            }

            .table-container-fixcol > table > thead > tr > th:last-child {
                border-right-width: 1px;
            }

        .table-container-fixcol > table > tbody > tr > td {
            border-top-width: 0px;
            border-right-width: 0px;
            background-color: #ffffff;
        }

            .table-container-fixcol > table > tbody > tr > td:last-child {
                border-right-width: 1px;
            }

    .table-container-fixcol .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: #f9f9f9;
    }

        .table-container-fixcol .table-striped > tbody > tr:nth-of-type(odd) > td {
            background-color: #f9f9f9;
        }

.modal {
    text-align: center;
    padding: 0 !important;
    background-color: rgba(0, 0, 0, 0.5);
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

    .modal.in {
        overflow-y: auto;
    }

    .modal .row + .row {
        margin-top: 15px;
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

    .modal-dialog.modal-fluid {
        width: 100%;
        height: 100%;
        padding: 15px;
        margin: 0;
    }

        .modal-dialog.modal-fluid .modal-content {
            height: 100%;
        }

        .modal-dialog.modal-fluid .modal-body {
            top: 46px;
            bottom: 55px;
            overflow-x: auto;
            padding: 10px 15px 0px 15px;
        }

        .modal-dialog.modal-fluid .modal-header {
            padding: 10px 15px;
        }

        .modal-dialog.modal-fluid .modal-footer {
            padding: 10px 15px;
        }

.modal-alert-app {
    width: auto !important;
    min-width: 300px;
    z-index: 1060;
}

.modal-xl {
    width: 100% !important;
    max-width: 1200px;
}

.modal-backdrop {
    background-color: transparent;
}

legend {
    margin-bottom: 15px;
    font-size: 18px;
}

.control-label-require {
    position: absolute;
    bottom: 0;
    right: 5px;
    color: #a94442;
}

    .control-label-require:after {
        content: "*";
        display: inline-block;
    }

.form-control {
    height: 20px;
    border-radius: 0;
    border-width: 0 0 1px 0;
    padding: 2px 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .form-control:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .form-control.no-style {
        border-width: 1px;
        padding: 3px 5px;
    }

textarea {
    resize: vertical;
}

    textarea[disabled] {
        resize: none !important;
    }

.form-control[disabled],
fieldset[disabled] {
    color: #9C9A9A;
    background-color: transparent;
    border-bottom-color: #F1F1F1;
}

.form-horizontal .form-group {
    margin-bottom: 5px;
}

    .form-horizontal .form-group label {
        padding-top: 0;
    }

    .form-horizontal .form-group.mb-sm {
        margin-bottom: 15px;
    }

    .form-horizontal .form-group.mb-md {
        margin-bottom: 20px;
    }

    .form-horizontal .form-group .select2-container {
        width: 100% !important;
    }

.form-horizontal .radio,
.form-horizontal .checkbox {
    padding-top: 0;
    min-height: inherit;
}

.form-horizontal .control-label.control-label-left {
    text-align: left;
}

    .form-horizontal .control-label.control-label-left .control-label-require {
        position: inherit;
        right: auto;
        bottom: auto;
        margin-left: 5px;
    }

.form-inline .form-group {
    margin-left: 10px;
}

    .form-inline .form-group label {
        margin-right: 5px;
    }

    .form-inline .form-group .input-date {
        max-width: 100px;
    }

    .form-inline .form-group .input-long {
        width: 220px;
    }

    .form-inline .form-group .input-short {
        width: 50px;
    }

    .form-inline .form-group .dropdown-menu {
        padding: 0;
    }

    .form-inline .form-group .dropdown-tree-toggle {
        display: inline-block;
        vertical-align: inherit;
    }

.form-inline .btn-group .dropdown-menu {
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border-radius: 0;
    padding: 5px 0;
}

.form-filter .form-control {
    height: 34px;
    padding: 6px 12px;
    border-width: 1px;
    border-radius: 4px;
    /*.box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075));*/
}

.form-filter .form-group-btn {
    margin-top: 25px;
    margin-bottom: 0;
    text-align: right;
}

.form-filter .select2-container {
    width: 100% !important;
}

    .form-filter .select2-container .select2-selection--single {
        height: 34px;
    }

        .form-filter .select2-container .select2-selection--single .select2-selection__rendered {
            height: 34px;
            padding: 6px 16px 6px 12px;
            border-radius: 4px;
            border-width: 1px;
            border-style: solid;
            border-color: #ccc;
        }

        .form-filter .select2-container .select2-selection--single .select2-selection__arrow {
            width: 16px;
            height: 32px;
        }

            .form-filter .select2-container .select2-selection--single .select2-selection__arrow b {
                right: 50%;
                margin-right: -4px;
            }

    .form-filter .select2-container.select2-container--open .select2-selection__rendered {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

.form-filter .dropdown-tree-toggle {
    height: 34px;
    padding: 6px 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 4px;
}

    .form-filter .dropdown-tree-toggle .dropdown-tree-arrow {
        top: 0;
        right: 0;
        width: 16px;
        height: 32px;
    }

        .form-filter .dropdown-tree-toggle .dropdown-tree-arrow i {
            right: 50%;
            margin-right: -4px;
        }

.form-filter .multiselect-theme {
    height: 34px;
    padding: 6px 16px 6px 12px;
    border-width: 1px;
    border-radius: 4px;
}

    .form-filter .multiselect-theme > b {
        top: 14px;
        right: 3px;
    }

.form-filter .btn {
    margin-bottom: 10px;
}

.control-setting {
    padding: 0;
    /*
    .dropdown-menu {
        left: auto;
        right: 0;
        padding: 0 15px;
        min-width: 200px;

        > ul {
            padding-top: 10px;
        }

        .control-label {
            padding-top: 0;
        }

        .form-control {
            margin-top: 0px;
        }
    }*/
}

    .control-setting > div {
        width: 150px;
        display: inline-block;
    }

        .control-setting > div .form-group {
            margin-bottom: 0 !important;
        }

.select2-container .select2-selection--single {
    height: 20px;
    border-width: 0 0 1px 0;
    border-color: #ccc;
    border-radius: 0;
}

    .select2-container .select2-selection--single .select2-selection__rendered {
        height: 20px;
        padding: 2px 15px 2px 5px;
        line-height: 20px;
        border-bottom: 1px solid #ccc;
    }

    .select2-container .select2-selection--single .select2-selection__arrow {
        height: 20px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 15px;
    }

        .select2-container .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            right: 0;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container .select2-results > .select2-results__options {
    max-height: 192px;
    overflow: auto;
}

    .select2-container .select2-results > .select2-results__options li {
        padding-right: 11px;
    }

.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container.select2-container--open .select2-dropdown {
    border-radius: 0;
}

    .select2-container.select2-container--open .select2-dropdown .select2-search--dropdown {
        position: relative;
    }

        .select2-container.select2-container--open .select2-dropdown .select2-search--dropdown .select2-search__field {
            border: 1px solid #ccc;
        }

        .select2-container.select2-container--open .select2-dropdown .select2-search--dropdown:before {
            content: "\f002";
            position: absolute;
            top: 11px;
            right: 11px;
            color: #CACACA;
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

    .select2-container.select2-container--open .select2-dropdown .mCSB_scrollTools {
        width: 5px;
    }

    .select2-container.select2-container--open .select2-dropdown .mCSB_container {
        margin-right: 0;
    }

.select2-container.select2-container--open .select2-dropdown--below {
    border-top: 1px solid;
}

.select2-container.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid;
}

.select2-container.select2-container--open .select2-results__options .select2-results__option--highlighted {
    background-color: #337AB7;
    color: #fff;
}

.select2-container.select2-container--open .select2-results__options .select2-results__option.loading-results {
    display: none;
}

.select2-container.select2-container--open .select2-results__options .select2-results__option[aria-selected="true"] {
    background-color: #DCDCDC;
    color: #555555;
}

.select2-container.select2-container--right {
    text-align: right;
}

    .select2-container.select2-container--right .select2-selection--single .select2-selection__rendered {
        border-bottom: none;
    }

    .select2-container.select2-container--right.select2-container--open .select2-results__option {
        padding-right: 15px;
    }

.select2-container.select2-container--focus .select2-selection .select2-selection__rendered {
    border-color: #66afe9;
}

.select2-container.select2-container--disabled .select2-selection--single {
    background-color: transparent;
    border-color: #F1F1F1;
    cursor: not-allowed;
}

    .select2-container.select2-container--disabled .select2-selection--single .select2-selection__rendered {
        color: #9C9A9A;
        border-color: #F1F1F1;
    }

.group-amount .select2-container--default .select2-selection--single {
    height: 24px;
}

.input-file-app {
    position: relative;
    overflow: hidden;
}

    .input-file-app .btn-wrapper {
        float: left;
    }

        .input-file-app .btn-wrapper input[type="file"] {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            opacity: 0;
            filter: alpha(opacity=0);
            font-size: 100px;
            cursor: pointer;
        }

    .input-file-app .file-path-wrapper {
        overflow: hidden;
    }

        .input-file-app .file-path-wrapper input {
            height: 30px;
            margin-left: 10px;
        }

            .input-file-app .file-path-wrapper input[readonly] {
                background-color: transparent;
            }

.file-list {
    margin-top: 10px;
}

    .file-list .remove {
        margin-left: 10px;
    }

.modal .form-horizontal .form-group {
    margin-bottom: 10px;
}

.modal .form-horizontal .input-group .btn {
    padding: 4px 6px;
    line-height: 10px;
    margin-left: 10px;
    border-radius: 4px;
}
/*
* form-control-feedback
*/
.form-control-feedback {
    height: 20px;
    line-height: 20px;
    text-align: right;
}
/*
* has-error
*/
.has-error .form-control,
.has-error .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-error .select2-container {
    text-align: left;
}

    .has-error .select2-container .select2-selection--single {
        height: 20px;
        border-bottom: 1px solid #a94442;
    }
/*
* has-feedback
*/
.has-feedback .form-control {
    padding-right: 15px;
}
/*
* Check box style slide
* How to use:
* <label for="id" class="checkbox-slide checkbox-slide-flat">
* <input id="id" type="checkbox" />
* <span>checkbox</span>
* </label> 
*/
.checkbox-slide label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-slide input[type="checkbox"] {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 0%;
    margin: 0 0 0 -20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox-slide-flat {
    position: relative;
    display: inline-block;
    min-height: 20px;
}

    .checkbox-slide-flat input + span {
        padding-left: 45px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .checkbox-slide-flat input + span:before {
            content: "";
            position: absolute;
            left: 0px;
            display: inline-block;
            height: 20px;
            width: 40px;
            background: rgba(100, 100, 100, 0.2);
            transition: background 0.2s ease-out;
            border-radius: 20px;
        }

        .checkbox-slide-flat input + span:after {
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0px;
            top: 0;
            display: block;
            background: #ffffff;
            transition: margin-left 0.1s ease-in-out;
            text-align: center;
            font-weight: bold;
            content: "";
            -webkit-animation: popOut ease-in 0.3s normal;
            animation: popOut ease-in 0.3s normal;
            border: solid transparent 2px;
            background-clip: padding-box;
            border-radius: 20px;
        }

    .checkbox-slide-flat input:checked + span:before {
        background: #5cb85c;
    }

    .checkbox-slide-flat input:checked + span:after {
        margin-left: 20px;
        -webkit-animation: popIn ease-in 0.3s normal;
        animation: popIn ease-in 0.3s normal;
    }

.clearable {
    background: #fff url(data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=) no-repeat right -10px center;
    transition: background 0.4s;
}

    .clearable.x {
        background-position: right 5px center;
        padding-right: 17px;
    }

    .clearable.onX {
        cursor: pointer;
    }

    .clearable::-ms-clear {
        display: none;
        width: 0;
        height: 0;
    }

ngjs-color-picker li.selectedColor {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

    ngjs-color-picker li.selectedColor:before {
        display: inline-block;
        content: "\f00c";
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -7px;
        margin-left: -7px;
        color: #fff;
    }

.uib-datepicker-popup {
    z-index: 1060;
}

    .uib-datepicker-popup .btn {
        border: 0;
        border-radius: 0;
        outline: 0;
    }

        .uib-datepicker-popup .btn:focus {
            outline: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .uib-datepicker-popup .btn.active {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

.ng-isolate-scope > table:focus {
    outline: 0;
}

.group-amount dl {
    margin-bottom: 0;
    border-top: 1px solid #ccc;
}

    .group-amount dl dt {
        float: left;
    }

    .group-amount dl.no-border {
        border-top: 0;
    }

    .group-amount dl.total-amount {
        padding-top: 5px;
        font-size: 18px;
    }

        .group-amount dl.total-amount dd {
            font-size: 18px;
            font-weight: bold;
        }

.group-amount .form-control {
    text-align: right;
    height: 24px;
}

.group-amount .form-horizontal + dl {
    border: none;
}

.group-amount .total-amount {
    font-size: 20px;
}

    .group-amount .total-amount .form-control {
        font-size: 20px;
    }

.dashboard-link {
    display: block;
    padding: 20px 0;
    text-align: center;
}

    .dashboard-link .dashboard-link-icon {
        color: #727272;
        font-size: 60px;
    }

    .dashboard-link .dashboard-link-label {
        color: #727272;
    }

.dashboard-alert {
    position: relative;
    padding: 10px 0;
}

    .dashboard-alert:after {
        content: " ";
        position: absolute;
        top: 15%;
        right: 0;
        display: block;
        height: 70%;
        width: 1px;
        background-color: #ddd;
    }

    .dashboard-alert:last-child:after {
        display: none;
    }

    .dashboard-alert .dashboard-alert-label {
        font-size: 20px;
        text-align: center;
    }

        .dashboard-alert .dashboard-alert-label p {
            margin-bottom: 0;
        }

        .dashboard-alert .dashboard-alert-label span {
            font-size: 30px;
            margin-right: 5px;
        }

    .dashboard-alert .dashboard-alert-more {
        color: #2B9B19;
    }

.dashboard-bar-chart .bar-chart > svg {
    width: 100%;
}

.dashboard-pie-chart .dashboard-pie-chart-lable {
    font-size: 24px;
    font-weight: bold;
}

    .dashboard-pie-chart .dashboard-pie-chart-lable small {
        font-size: 70%;
    }

.dashboard-menu-circle .panel-body {
    padding: 50px 0;
}

.dashboard-menu-circle .content {
    position: relative;
    margin: 0 auto;
    width: 520px;
    height: 520px;
}

.dashboard-menu-circle .center {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-color: green;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
    text-align: center;
    color: #ffffff;
}

    .dashboard-menu-circle .center h3 {
        font-size: 50px;
        line-height: 200px;
        margin: 0;
    }

.dashboard-menu-circle .items .item:nth-child(1) {
    transform: rotate(90deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(1) .circle {
        transform: rotate(-90deg);
    }

.dashboard-menu-circle .items .item:nth-child(2) {
    transform: rotate(130deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(2) .circle {
        transform: rotate(-130deg);
    }

.dashboard-menu-circle .items .item:nth-child(3) {
    transform: rotate(170deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(3) .circle {
        transform: rotate(-170deg);
    }

.dashboard-menu-circle .items .item:nth-child(4) {
    transform: rotate(210deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(4) .circle {
        transform: rotate(-210deg);
    }

.dashboard-menu-circle .items .item:nth-child(5) {
    transform: rotate(250deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(5) .circle {
        transform: rotate(-250deg);
    }

.dashboard-menu-circle .items .item:nth-child(6) {
    transform: rotate(290deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(6) .circle {
        transform: rotate(-290deg);
    }

.dashboard-menu-circle .items .item:nth-child(7) {
    transform: rotate(330deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(7) .circle {
        transform: rotate(-330deg);
    }

.dashboard-menu-circle .items .item:nth-child(8) {
    transform: rotate(370deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(8) .circle {
        transform: rotate(-370deg);
    }

.dashboard-menu-circle .items .item:nth-child(9) {
    transform: rotate(410deg) translate(-200px);
}

    .dashboard-menu-circle .items .item:nth-child(9) .circle {
        transform: rotate(-410deg);
    }

.dashboard-menu-circle .item {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    width: 120px;
}

    .dashboard-menu-circle .item hr {
        position: absolute;
        top: 50%;
        left: 130px;
        width: 20px;
        margin: 0;
        border-color: #e1e1e1;
    }

    .dashboard-menu-circle .item .circle {
        position: relative;
        float: left;
        background-color: #aaaaaa;
        width: 120px;
        height: 120px;
        padding: 0;
        margin: 0;
        border-radius: 60px;
        text-align: center;
        color: #ffffff;
    }

        .dashboard-menu-circle .item .circle.disabled {
            background-color: #c4c4c4 !important;
        }

        .dashboard-menu-circle .item .circle i {
            display: block;
            margin: 20px auto 0;
            font-size: 40px;
        }

        .dashboard-menu-circle .item .circle span {
            display: block;
            width: 100px;
            margin: 15px auto 0;
        }

    .dashboard-menu-circle .item.color1 .circle {
        background-color: #2A8F32;
    }

    .dashboard-menu-circle .item.color2 .circle {
        background-color: #433374;
    }

    .dashboard-menu-circle .item.color3 .circle {
        background-color: #7F1E1C;
    }

    .dashboard-menu-circle .item.color4 .circle {
        background-color: #7D8307;
    }

    .dashboard-menu-circle .item.color5 .circle {
        background-color: #157C70;
    }

    .dashboard-menu-circle .item.color6 .circle {
        background-color: #67135B;
    }

    .dashboard-menu-circle .item.color7 .circle {
        background-color: #23A66A;
    }

    .dashboard-menu-circle .item.color8 .circle {
        background-color: #455974;
    }

    .dashboard-menu-circle .item.color9 .circle {
        background-color: #3C9887;
    }

@page {
    size: A4;
    /*margin: 5mm 20mm 0mm 3mm;*/
    margin: 0;
}

@media screen {
    .print-style {
        display: none;
    }

    .print-menu {
        display: none;
    }

    .printBarcode-style {
        display: none;
    }

    .printBarcode-page-break {
        display: none;
    }
}

@media print {
    html,
    body {
        overflow: visible;
        width: 210mm !important;
        height: 297mm !important;
    }

        body > * {
            display: none !important;
        }

        body > .print-style {
            margin: 0;
            display: block !important;
        }

        body > .print-menu {
            display: block !important;
        }

        body > .printBarcode-style {
            display: block !important;
        }

    .printBarcode-page-break {
        display: block;
        page-break-before: always;
    }

    .printBarcode-style {
        margin: 0;
        border: initial;
        border-radius: initial;
        width: initial;
        min-height: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
    }

    table {
        page-break-inside: auto;
    }

    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }

    thead {
        display: table-header-group;
    }

    tfoot {
        display: table-footer-group;
    }
}




.printBarcode-page-break {
    padding: 2mm 0mm 10mm 10mm;
}


.printBarcode-style {
    width: 100% !important;
    padding: 11mm 0mm 10mm 10mm;
    min-height: 297mm;
}

    .printBarcode-style .barcode65 {
        width: 190mm;
        min-height: 273mm;
    }

        .printBarcode-style .barcode65 .item {
            height: 21mm;
            width: 38mm;
            float: left;
        }

            .printBarcode-style .barcode65 .item .companyTitle {
                text-align: center;
                font-size: 8pt;
                font-weight: bold;
            }

            .printBarcode-style .barcode65 .item .productTitle {
                text-align: center;
                font-size: 5.5pt;
                font-weight: bold;
                /*line-height: 0px;
        word-wrap: break-word;*/
                padding-top: 6px 4px 0px 4px;
            }

            .printBarcode-style .barcode65 .item .productPrice {
                text-align: right;
                font-size: 8px;
                padding: 0px 5px 0px 0px;
            }

    .printBarcode-style .barcode40Double {
        width: 110mm;
        min-height: 21mm;
    }

        .printBarcode-style .barcode40Double .item {
            height: 21mm;
            width: 40mm;
            float: left;
        }

            .printBarcode-style .barcode40Double .item .productTitle {
                text-align: center;
                font-size: 5.5pt;
                font-weight: bold;
                padding-top: 6px 4px 0px 4px;
            }

            .printBarcode-style .barcode40Double .item .productPrice {
                text-align: center;
                font-size: 8px;
                padding: 0px 5px 0px 0px;
            }

    .printBarcode-style .barcode75 {
        width: 80mm;
        min-height: 40mm;
    }

        .printBarcode-style .barcode75 .item {
            height: 40mm;
            width: 75mm;
            float: left;
        }

            .printBarcode-style .barcode75 .item .productTitle {
                text-align: center;
                font-size: 5.5pt;
                font-weight: bold;
                padding-top: 6px 4px 0px 4px;
            }

            .printBarcode-style .barcode75 .item .productPrice {
                text-align: center;
                font-size: 8px;
                padding: 0px 5px 0px 0px;
            }

.print-style {
    width: 100% !important;
    font-size: 12px;
    padding: 5mm 15mm 0mm 13mm;
}

    .print-style .logo {
        height: 60px;
        text-align: center;
        vertical-align: central;
        float: left;
        padding-right: 15px;
    }

    .print-style .CompanyQRCode {
        width: 80px;
        margin-top: 2px;
    }

    .print-style h1 {
        font-size: 26px;
        margin: 15px 0;
        color: #3c3c3c;
    }

    .print-style .headerSession ul li {
        font-size: 22px;
        margin: 0px 0;
        padding: 0px 0px 0px 0px;
        color: #3c3c3c;
    }

    .print-style .headerSession .headerTitle {
        padding-left: 200px;
    }

    .print-style .qrCode {
        margin-top: -50px;
        text-align: right;
    }

    .print-style hr {
        border-color: #000;
        border-width: 1px 0 0 0;
        margin: 0;
    }

    .print-style .m-none {
        margin: 0;
    }

    .print-style .table thead > tr > th,
    .print-style .table tbody > tr > th,
    .print-style .table thead > tr td,
    .print-style .table tbody > tr td {
        padding: 4px;
        background-color: transparent !important;
        -webkit-print-color-adjust: exact;
    }

    .print-style .table tfoot > tr td {
        text-align: right;
        border: 0px;
    }

    .print-style .table thead > tr {
        color: #3c3c3c !important;
        -webkit-print-color-adjust: exact;
        border-top: solid 1px #3c3c3c;
    }

        .print-style .table thead > tr > th {
            white-space: pre-wrap;
            border: 1px solid #3c3c3c;
        }

    .print-style .table tbody > tr {
        color: #3c3c3c !important;
        -webkit-print-color-adjust: exact;
    }

        .print-style .table tbody > tr > td {
            white-space: pre-wrap;
            border: 1px solid #3c3c3c;
        }

    .print-style .table.table-head-border thead > tr > th,
    .print-style .table.table-head-border tbody > tr > th,
    .print-style .table.table-head-border tfoot > tr > th,
    .print-style .table.table-head-border thead > tr td,
    .print-style .table.table-head-border tbody > tr td {
        border: 1px solid #3c3c3c;
    }

    .print-style .table-amount thead > tr > th,
    .print-style .table-amount tbody > tr > th,
    .print-style .table-amount tfoot > tr > th,
    .print-style .table-amount thead > tr > td,
    .print-style .table-amount tbody > tr > td,
    .print-style .table-amount tfoot > tr > td {
        padding: 5px 5px 0px 15px;
        color: #3c3c3c;
    }

    .print-style .table-amount tfoot tr {
        border-top: 1px solid #000;
        font-weight: bold;
        font-size: 16px;
    }

        .print-style .table-amount tfoot tr.no-border {
            border-top: 0px;
        }

    .print-style .signature {
        display: table;
        width: 100%;
        padding: 0;
        color: #3c3c3c;
        text-align: center;
        overflow: hidden;
    }
        .print-style .signature tr#footerPrint {
            width: 100%;
            display: flex;
            justify-content: space-around;
            margin-top: 20px
        }
        .print-style .signature tr#footerPrint td {
            display: flex;
            flex-direction: column;
            height: 80px;
            justify-content: space-between;
            align-items: center;
        }

            .print-style .signature tr#footerPrint td:last-child {
                position: relative
            }

                .print-style .signature tr#footerPrint td:last-child .datePrint {
                    position: absolute;
                    content: '';
                    top: -15px;
                    text-align: center;
                    width: 200%;
                    font-weight: 500;
                }

        .print-style .signature p {
            font-weight: bold;
            margin-bottom: 0;
        }

        .print-style .signature span {
            font-style: italic;
            font-weight: 400
        }

    .print-style #watermark {
        color: white !important;
        font-size: 100pt;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        position: absolute;
        margin: -50% 0 0 -200px;
        z-index: -1;
        left: 50%;
        top: 50%;
        -webkit-print-color-adjust: exact;
    }

        .print-style #watermark p {
            color: #f1f1f1 !important;
            -webkit-print-color-adjust: exact;
        }

.print-menu .header-img > img {
    max-width: 100%;
}

.print-menu h1 {
    font-size: 44px;
}

.print-menu h3 {
    font-size: 26px;
}

.print-menu h4 {
    font-size: 24px;
    padding: 6px 0;
    border-bottom: 3px solid #000000;
}

.print-menu .menu-item {
    display: table;
    font-size: 20px;
}

    .print-menu .menu-item .price {
        display: table-cell;
        white-space: nowrap;
        text-align: right;
    }

    .print-menu .menu-item .name {
        display: table-cell;
        position: relative;
        padding-left: 20px;
    }

        .print-menu .menu-item .name:before {
            content: "✶";
            position: absolute;
            top: 0;
            left: 0;
        }

.morris-hover {
    z-index: 0;
}

#plot-pie-chart .legend > div {
    background-color: transparent !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.grid-photoThumnail .item,
.photoThumnail .item {
    width: 100px;
    padding: 0 5px;
    float: left;
    margin-bottom: 15px;
    position: relative;
}

    .grid-photoThumnail .item .overlay,
    .photoThumnail .item .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCM0ZGN0M3OUI2QjExMUU1OTVBRkI3NjZDMzgzQUY5MyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCM0ZGN0M3QUI2QjExMUU1OTVBRkI3NjZDMzgzQUY5MyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkIzRkY3Qzc3QjZCMTExRTU5NUFGQjc2NkMzODNBRjkzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkIzRkY3Qzc4QjZCMTExRTU5NUFGQjc2NkMzODNBRjkzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1+wJeQAAAA9JREFUeNpiYGBgSAMIMAAAawBnDb5zPgAAAABJRU5ErkJggg==");
        background-repeat: repeat;
        visibility: hidden;
    }

    .grid-photoThumnail .item.active:before,
    .photoThumnail .item.active:before {
        position: absolute;
        top: -8px;
        right: -2px;
        z-index: 1000;
        display: block;
        content: "";
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f00c";
        background-color: green;
        height: 20px;
        width: 20px;
        text-align: center;
        line-height: 20px;
        color: white;
        border-radius: 50%;
    }

    .grid-photoThumnail .item:hover .overlay,
    .photoThumnail .item:hover .overlay {
        visibility: visible;
    }

        .grid-photoThumnail .item:hover .overlay .overlay-control,
        .photoThumnail .item:hover .overlay .overlay-control {
            position: absolute;
            bottom: 0;
            width: 100%;
        }

            .grid-photoThumnail .item:hover .overlay .overlay-control > a,
            .photoThumnail .item:hover .overlay .overlay-control > a {
                float: left;
                width: 50%;
                text-align: center;
                color: #000;
                line-height: 30px;
                background-color: #fff;
                border: 1px solid #000;
                cursor: pointer;
            }

            .grid-photoThumnail .item:hover .overlay .overlay-control.single-btn > a,
            .photoThumnail .item:hover .overlay .overlay-control.single-btn > a {
                width: 100%;
            }

    .grid-photoThumnail .item span,
    .photoThumnail .item span {
        display: block;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.grid-photoThumnail .square-outside,
.photoThumnail .square-outside {
    padding-bottom: 100%;
    position: relative;
}

.grid-photoThumnail .square-inside,
.photoThumnail .square-inside {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px solid #c5c5c5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

    .grid-photoThumnail .square-inside .add,
    .photoThumnail .square-inside .add {
        height: 100%;
        width: 100%;
        display: block;
        text-align: center;
        position: relative;
        cursor: pointer;
        z-index: 1;
    }

        .grid-photoThumnail .square-inside .add i,
        .photoThumnail .square-inside .add i {
            display: block;
            margin: 0 auto;
        }

        .grid-photoThumnail .square-inside .add span,
        .photoThumnail .square-inside .add span {
            position: absolute;
            top: 50%;
            width: 100%;
            left: 0;
            margin-top: -31px;
        }


.input-fake {
    display: block;
    position: relative;
    background-color: #fff;
    width: 100%;
    padding: 7px 6px 0;
    /* font-size: 0.75rem; */
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 1px 1px 0 rgba(218, 218, 218, 0.5);
    box-shadow: 0 1px 1px 0 rgba(218, 218, 218, 0.5);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

    .input-fake span.tag {
        position: relative;
        display: inline-block;
        background-color: #4a6b87;
        margin-right: 7px;
        margin-bottom: 7px;
        padding: 3px 10px;
        color: #fff;
        font-weight: bold;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }

        .input-fake span.tag .func-del {
            display: block;
            position: absolute;
            top: -7px;
            right: -4px;
            background-color: rgba(0, 0, 0, 0.35);
            width: 16px;
            height: 16px;
            border-radius: 100%;
            -moz-border-radius: 100%;
            -webkit-border-radius: 100%;
            line-height: 16px;
            text-align: center;
            color: #fff;
            font-size: 0.688rem;
            font-weight: bold;
            font-family: Arial;
        }

    .input-fake input {
        width: 210px;
        margin-bottom: 6px;
        padding: 3px 0;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.buttonAttribute {
    margin-right: 5px;
}

.lazadaCategory {
    border: 1px solid #dcdee3;
    margin: 10px;
}

    .lazadaCategory .category {
        border: 1px solid #dcdee3;
        border-left: none;
    }

        .lazadaCategory .category ul {
            list-style: none;
            padding: 0px;
        }




.cate-selector {
    top: 100%;
    right: 2px;
    z-index: 99;
    background-color: #f2f6fa;
    -webkit-box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.2);
    border: solid 1px rgba(0, 0, 0, 0.1);
}

    .cate-selector .cate {
        overflow-y: scroll;
        height: 398px;
        border-right: 1px solid #ccc;
        padding: 0px;
    }

        .cate-selector .cate ul {
            padding: 0px;
            padding-right: 5px;
            width: 100%;
        }

            .cate-selector .cate ul li {
                list-style: none;
                padding-top: 5px;
                padding-bottom: 5px;
            }

                .cate-selector .cate ul li.active {
                    background-color: #3d9bca !important;
                }

                .cate-selector .cate ul li a {
                    padding: 10px;
                    color: black;
                }

.orgChart {
}

    .orgChart table {
        border-collapse: unset
    }

        .orgChart table .caption {
            font-weight: bold;
            font-size: 16px
        }
.datepicker table > tbody > tr > td,
.datepicker table tfoot > tr > td {
    white-space: normal;
}
.table-scroll-area {
    overflow-x: auto;
}

.DivOverflow {
/*    flex-grow: 1;*/
    overflow: scroll;
    /*height: 100%;*/
}

.DivOverflow-dialog {
    flex-grow: 1;
    overflow: scroll;
}



    .DivOverflow table thead tr th,
    .DivOverflow-dialog table thead tr th {
        position: sticky;
        top: 0;
        background-color: #E3EAF3;
        box-shadow: 0 -1px 0 #e3e3e3;
        z-index: 1;
    }

    .DivOverflow table .fixColumn,
    .DivOverflow-dialog table .fixColumn {
        position: sticky;
        z-index: 1;
        background-color: #E3EAF3;
        box-shadow: inset 1px 0px 0 #ddd, inset 0px 0px 0 #ddd;
    }

    .DivOverflow table tr .fixColumnRight,
    .DivOverflow-dialog table tr .fixColumnRight {
        position: sticky;
        background-color: #E3EAF3;
    }

.ContainerFixTable {
    position: relative;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
}
    .ContainerFixTable.ContainerFixTableDialog {
        height: unset;
    }


    .ContainerFixTable .FixHiddenOverflow {
        flex-grow: 1;
        overflow: hidden;
    }

    .ContainerFixTable .FixHiddenOverflow-Dialog, .ContainerFixTableSearch .FixHiddenOverflow-Dialog {
        flex-grow: 1;
        overflow: hidden;
        height: calc(50vh - 50px);
    }

    .ContainerFixTable .FixHiddenOverflow .fixColumnDirection {
        position: relative;
        max-height: 100%;
        display: flex;
        flex-direction: column
    }
    .ContainerFixTable .FixHiddenOverflow .FixColumnDirection {
        position: relative;
        max-height: 95%;
        display: flex;
        flex-direction: column
    }




.DivOverflow .table tbody > tr.row-control > td {
    background-color: #fff;
}

/*style for cell focus table*/
input[type=text]:focus, input[type=checkbox]:focus, button:focus, a:focus, select:focus {
    outline: none;
    border: #337ab7 1px dashed;
    border-radius: 2px;
    box-sizing: border-box;
    box-shadow: -2px -2px 2px rgba(255, 255, 255, 0.3), 2px 2px 2px rgba(0, 0, 0, 0.3), inset -2px -2px 2px rgba(255, 255, 255, 0.3), inset 2px 2px 2px rgba(0, 0, 0, 0.3);
}
/*a:focus{
    padding:2px;
}*/
button:focus {
    box-shadow: -1px -1px 1px #337ab7, 1px 1px 1px #337ab7, inset -1px -1px 1px #337ab7, inset 1px 1px 1px #337ab7;
}
/*******************************************/
table tbody tr td{
    display: table-cell;
    position: relative;
    overflow: visible;
}
.group-employee{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.item-group {
    width: auto !important;
}
.item-group label {
    position: relative;
    padding-right: 20px;
}
.item-group a{
    position: absolute;
    content: '';
    top: -6px;
    right: 7px;
}
#printShipping {
    display: none !important;
}
/*================ PrintTemplate */

.print-style-shipping {
    padding: 15mm 5mm 0mm 8mm;
    width: 29cm;
    height: auto !important;
}
    .print-style-shipping .table#printTemplate tbody > tr > td {
        white-space: nowrap;
        border: 2px solid #3c3c3c;
        height: auto;
    }



#printTemplate {
    border-spacing: 0;
    width: 100%;
}
.boxData {
    display: flex;
    height: 60mm;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding:3px 3px 3px 3px;
    margin: 0;
    list-style: none;
}

    .boxData li {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        white-space: pre-wrap;
    }
        .boxData li b {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .boxData li#CheckTemp {
            justify-content: flex-start;
        }
            .boxData li#CheckTemp span {
                padding-right: 5%;
            }

            .boxData .done {
                width: 100%;
                display: flex;
                justify-content: flex-end;
                align-items: flex-start;
            }

        .boxData .done a {
            display: flex;
            width: auto;
            flex-direction: column;
            align-items: center;
        }
            .boxData .done a span {
                white-space: nowrap;
                width: auto;
            }
.ContainerFixTableSearch {
    position: relative;
    height: calc(100vh - 400px);
    display: flex;
    flex-direction: column;
}
/*================ END PrintTemplate */

.lalamove-container{
    list-style: none;
}
    .lalamove-container li div{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 10px;
    }
        .lalamove-container li div input[type=checkbox], .lalamove-container li div input[type=radio] {
            margin: 0 5px 0 0;
        }
    .lalamove-container li div label{
        margin: 0;
        font-size: 16px;
        font-weight: 500;
    }
.component__payment-request__item {
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #eee
}

    .component__payment-request__item > div, .component__payment-request__item > div > div {
        display: flex
    }

        .component__payment-request__item > div > div {
            flex: 1;
            align-items: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 0;
            text-align: left
        }

            .component__payment-request__item > div > div:first-child {
                max-width: 32px;
                margin-right: 12px;
                justify-content: center
            }

            .component__payment-request__item > div > div:last-child {
                max-width: 20px
            }

    .component__payment-request__item.selected {
        border-color: rgb(241, 102, 34);
        background-color: rgb(254, 240, 233);
    }

        .component__payment-request__item.selected > div > div {
            color: rgb(241, 102, 34);
        }

.component__cs-radio {
    position: relative;
    display: inline-block
}

    .component__cs-radio > * {
        display: inline-block
    }

    .component__cs-radio .component__cs-radio--border {
        width: 18px;
        height: 18px;
        border: 2px solid #a9a9a9;
        border-radius: 50vh;
        position: absolute;
        display: inline-block
    }

        .component__cs-radio .component__cs-radio--border.is-checked {
            border-color: rgb(241, 102, 34);
            width: 22px;
            height: 22px;
        }

            .component__cs-radio .component__cs-radio--border.is-checked > span {
                content: " ";
                width: 14px;
                height: 14px;
                border-radius: 50vh;
                position: absolute;
                margin: 2px;
                background-color: rgb(241, 102, 34)
            }

        .component__cs-radio .component__cs-radio--border .component__cs-radio-content {
            background-color: #f7941e;
            width: 10px;
            height: 10px;
            border-radius: 50vh;
            margin: 2px
        }

        .component__cs-radio .component__cs-radio--border:focus {
            -webkit-box-shadow: 0 0 5px #f7941e;
            box-shadow: 0 0 5px #f7941e
        }

#specialRequest {
    display: none;
}

.reasonText {
    display: flex;
    justify-content: flex-start;
    color: #e21;
    font-style: italic;
    font-weight: 700
}
.reasonText label, .reasonText strong{
    margin-right: 5px
}

.tooltip {
    position: fixed;
    display: none; /* Sẽ hiển thị khi được kích hoạt */
    background-color: #333;
    color: #fff;
    padding: 5px;
    opacity: 1;
    max-width: 250px
}
.info {
    cursor: pointer;
    color: #b1b1b1;
}