/*
 *  Document   : main.css
 *  Author     : pixelcave
 *  Description: The main stylesheet of the template
 *
 *  Structure (with shortcodes):
 *      (#m01mls) MAIN LAYOUT
 *      (#m02hds) HEADER
 *      (#m03sns) SIDEBAR/NAVIGATION
 *      (#m04mcs) MAIN CONTENT
 *      (#m05pgs) PAGES
 *      (#m06bos) BOOTSTRAP OVERWRITE/EXTEND STYLES
 *      (#m07hes) HELPERS
 *      (#m08ths) THEMES
 *      (#m09res) RESPONSIVE
 *      (#m10rts) RETINA
 *      (#m11prs) PRINT
 */

/*
=================================================================
(#m01mls) MAIN LAYOUT
=================================================================
*/

/* Include Open Sans font from Google Web Fonts 
@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,600,600italic,700,700italic');
    */
/* Preloader */
#page-wrapper.page-loading {
    overflow: hidden;
}

    #page-wrapper.page-loading .preloader {
        display: block;
    }

    #page-wrapper.page-loading #page-container {
        opacity: 0;
    }

.preloader {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    z-index: 99999;
}

    .preloader .inner {
        position: fixed;
        top: 20%;
        left: 50%;
        margin: 0 0 0 -50px;
        width: 100px;
        height: 100px;
        text-align: center;
    }

.preloader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid transparent;
    border-left-color: #ffffff;
    border-right-color: #ffffff;
    border-top-color: #ffffff;
    border-radius: 50%;
    -webkit-animation: nprogress-spinner .4s linear infinite;
    -moz-animation: nprogress-spinner .4s linear infinite;
    -ms-animation: nprogress-spinner .4s linear infinite;
    -o-animation: nprogress-spinner .4s linear infinite;
    animation: nprogress-spinner .4s linear infinite;
}

.preloader-spinner {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-width: 3px;
}

.loader-wrapper {
    /* position: fixed;
    width: 100%;
    height: 100%;*/
    text-align: center;
    z-index: 1;
    top: 50%;
    left: 50%;
    position: absolute;
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loadercr {
    position: relative;
    top: 5px;
    left: auto;
    /*  width: 80px;*/
    font-size: 15px;
    text-align: center;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    vertical-align: text-center;
}

    .loadercr::after {
        content: '';
        position: absolute;
        left: 0;
        top: -10px;
        width: 100%;
        height: 100%;
        border: 0.25em solid #039be5;
        border-right-color: transparent;
        border-radius: 50%;
        -webkit-animation: spinner-border .75s linear infinite;
        animation: spinner-border .75s linear infinite;
    }
/* Main Structure */
body {
    font-family: "roboto, Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #394263;
    font-size: 13px;
    background-color: #222222;
    scrollbar-width: thin;
    /*  font-weight: bold;*/
}

.scrollbar {
    scrollbar-width: thin;
}

#page-container,
#main-container,
#page-content + footer {
    min-width: 320px;
}

#page-container {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    overflow-x: hidden;
    -webkit-transition: background-color 0.2s ease-out, opacity 0.3s ease-out;
    transition: background-color 0.2s ease-out, opacity 0.3s ease-out;
}

#page-container,
#sidebar,
#sidebar-alt {
    background-color: #19212b;
}

#sidebar,
#sidebar-alt {
    width: 0;
    position: absolute;
    overflow: hidden;
}

#sidebar-alt {
    right: 0;
}

#sidebar,
#sidebar-alt,
#main-container,
.header-fixed-top header,
.header-fixed-bottom header,
.footer-fixed #page-content + footer {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#page-content {
    padding: 10px 5px 1px;
    background-color: #eaedf1;
}

    #page-content + footer {
        padding: 9px 10px;
        font-size: 11px;
        background-color: #ffffff;
        border-top: 1px solid #dbe1e8;
    }

/* Fixed Header */
#page-container.header-fixed-top {
    padding: 50px 0 0;
}

#page-container.header-fixed-bottom {
    padding: 0 0 50px;
}

/* Sidebar + Static Header */
.sidebar-visible-xs #sidebar {
    width: 200px;
}

.sidebar-visible-xs #main-container {
    margin-left: 200px;
    margin-right: -200px;
}

/* Sidebar + Fixed Header */
.header-fixed-top #sidebar,
.header-fixed-bottom #sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
}

.header-fixed-top .sidebar-content,
.header-fixed-bottom .sidebar-content {
    padding-bottom: 50px;
}

.sidebar-visible-xs.header-fixed-top header.navbar-fixed-top,
.sidebar-visible-xs.header-fixed-bottom header.navbar-fixed-bottom {
    left: 200px;
    right: -200px;
}

/* Alternative Sidebar + Static Header */
.sidebar-alt-visible-xs #sidebar-alt {
    width: 200px;
}

.sidebar-alt-visible-xs #main-container {
    margin-right: 200px;
    margin-left: -200px;
}

/* Alternative Sidebar + Fixed Header */
.header-fixed-top #sidebar-alt,
.header-fixed-bottom #sidebar-alt {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
}

.sidebar-alt-visible-xs.header-fixed-top header.navbar-fixed-top,
.sidebar-alt-visible-xs.header-fixed-bottom header.navbar-fixed-bottom {
    right: 200px;
    left: -200px;
}

/* Fixed Footer */
.footer-fixed #page-content + footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.footer-fixed #page-content {
    padding-bottom: 41px;
}

.footer-fixed.sidebar-visible-xs #page-content + footer {
    right: -200px;
    left: 200px;
}

.footer-fixed.sidebar-alt-visible-xs #page-content + footer {
    right: 200px;
    left: -200px;
}

.footer-fixed.header-fixed-bottom #page-content + footer {
    bottom: 50px;
}

/*
=================================================================
(#m02hds) HEADER
=================================================================
*/

header.navbar-default,
header.navbar-inverse {
    padding: 0;
    margin: 0;
    min-width: 320px;
    border: none;
}

    header.navbar-default.navbar-fixed-top {
        border-bottom: 1px solid #eaedf1;
    }

    header.navbar-default.navbar-fixed-bottom {
        border-top: 1px solid #eaedf1;
    }

    header.navbar-inverse.navbar-fixed-top {
        border-bottom: 1px solid #394263;
    }

    header.navbar-inverse.navbar-fixed-bottom {
        border-top: 1px solid #394263;
    }

/* Header Nav */
.navbar-default .navbar-nav > li > a {
    color: #394263;
}

.navbar-inverse .navbar-nav > li > a {
    color: #ffffff;
}

    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus,
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus,
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-inverse .navbar-nav > li > a:hover,
    .navbar-inverse .navbar-nav > li > a:focus,
    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus,
    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus {
        color: #ffffff;
        background-color: #1bbae1;
    }

.navbar-inverse .collapse.in .navbar-nav .open .dropdown-menu > li > a {
    color: #dddddd;
}

.nav.navbar-nav-custom {
    float: left;
    margin: 0;
}

    .nav.navbar-nav-custom > li {
        min-height: 50px;
        float: left;
    }

        .nav.navbar-nav-custom > li > a {
            min-width: 50px;
            padding: 5px 7px;
            line-height: 30px;
            text-align: center;
            /* color: #394263; */
            margin-top: 10px;
            color: #fff;
            position: relative;
        }

            .nav.navbar-nav-custom > li > a .gi,
            .nav.navbar-nav-custom > li > a .hi,
            .nav.navbar-nav-custom > li > a .si,
            .nav.navbar-nav-custom > li > a .fi {
                margin-top: -3px;
            }

            .nav.navbar-nav-custom > li > a .label-indicator {
                position: absolute;
                top: 0;
                right: 0;
                border-radius: 0;
                font-weight: 600;
            }

.navbar-fixed-bottom .nav.navbar-nav-custom > li > a .label-indicator {
    top: auto;
    bottom: 0;
}

.navbar-inverse .nav.navbar-nav-custom > li > a {
    color: #ffffff;
}

.nav.navbar-nav-custom > li.open > a,
.nav.navbar-nav-custom > li > a:hover,
.nav.navbar-nav-custom > li > a:focus {
    background-color: #1bbae1;
    color: #ffffff;
}

.nav.navbar-nav-custom > li > a > img {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    vertical-align: top;
}

/* Header Search */
.navbar-form {
    margin: 7px 0;
}

.collapsing .navbar-form,
.collapse.in .navbar-form {
    margin-left: -15px;
    margin-right: -15px;
}

    .collapsing .navbar-form .form-group,
    .collapse.in .navbar-form .form-group {
        margin-bottom: 0;
    }

.navbar-form-custom {
    padding: 0;
    width: 100px;
    float: left;
    height: 50px;
}

    .navbar-form-custom .form-control {
        padding: 10px;
        margin: 0;
        height: 50px;
        font-size: 15px;
        background: transparent;
        border: none;
        z-index: 2000;
    }

        .navbar-form-custom .form-control:hover,
        .navbar-form-custom .form-control:focus {
            background-color: #ffffff;
        }

        .navbar-form-custom .form-control:focus {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            font-size: 18px;
            padding: 10px 20px;
        }

.navbar-inverse .navbar-form-custom .form-control {
    color: #ffffff;
}

    .navbar-inverse .navbar-form-custom .form-control:hover,
    .navbar-inverse .navbar-form-custom .form-control:focus {
        background: #000000;
        color: #ffffff;
    }

/*
=================================================================
(#m03sns) SIDEBAR/NAVIGATION
=================================================================
*/

/* Sidebar Content */
.sidebar-content {
    width: 200px;
    color: #ffffff;
}

.sidebar-section {
    padding: 10px;
}

/* Sidebar Brand + Title */
.sidebar-brand,
.sidebar-title {
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    display: block;
    color: #ffffff;
    background: url('../img/template/ie8_opacity_dark_15.png') repeat;
    background: rgba(0, 0, 0, 0.15);
}

a.sidebar-brand:hover,
a.sidebar-brand:focus,
a.sidebar-title:hover,
a.sidebar-title:focus {
    background-color: #1bbae1;
    color: #ffffff;
    text-decoration: none;
}

.sidebar-brand i,
.sidebar-title i {
    font-size: 14px;
    display: inline-block;
    width: 18px;
    text-align: center;
    margin-right: 10px;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

    .sidebar-title i.pull-left {
        margin: 20px 10px 0 0;
    }

    .sidebar-title i.pull-right {
        margin: 20px 0 0 10px;
    }

/* Sidebar User */
.sidebar-user {
    padding-left: 88px;
    background: url('../img/template/ie8_opacity_light_10.png') repeat;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-user-avatar {
    width: 68px;
    height: 68px;
    float: left;
    padding: 2px;
    margin-left: -78px;
    border-radius: 34px;
    background: url('../img/template/ie8_opacity_light_75.png') repeat;
    background: rgb(21, 182, 255);
}

    .sidebar-user-avatar img {
        width: 64px;
        height: 64px;
        border-radius: 32px;
    }

.sidebar-user-name {
    font-size: 14px;
    font-weight: 300;
    margin-top: 10px;
    line-height: 26px;
}

.sidebar-user-links a {
    color: #ffffff;
    opacity: 0.3;
    filter: alpha(opacity=30);
    margin-right: 5px;
}

    .sidebar-user-links a:hover,
    .sidebar-user-links a:focus {
        color: #ffffff;
        text-decoration: none;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .sidebar-user-links a > i {
        font-size: 14px;
    }

/* Sidebar Color Themes */
.sidebar-themes {
    list-style: none;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 6px;
    background: url('../img/template/ie8_opacity_dark_15.png') repeat;
    background: rgba(0, 0, 0, 0.15);
    opacity: .5;
    filter: alpha(opacity=50);
    -webkit-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
}

    .sidebar-themes:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .sidebar-themes li {
        float: left;
        margin: 0 5px 6px 0;
    }

        .sidebar-themes li a {
            display: block;
            width: 20px;
            height: 20px;
            border-radius: 10px;
            border-width: 2px;
            border-style: solid;
        }

            .sidebar-themes li a:hover,
            .sidebar-themes li a:focus {
                border-color: #ffffff !important;
            }

        .sidebar-themes li.active a {
            border-color: #ffffff !important;
        }

/* Sidebar Chat */
.chat-users {
    list-style: none;
    margin: 0;
    padding: 10px;
}

    .chat-users li {
        float: left;
        margin: 0;
        padding: 3px;
    }

    .chat-users a {
        position: relative;
        display: inline-block;
        padding: 2px;
        width: 52px;
        height: 52px;
        border-radius: 25px;
        background: url('../img/template/ie8_opacity_light_10.png') repeat;
        background: rgba(255, 255, 255, 0.10);
    }

        .chat-users a span {
            position: absolute;
            top: 0;
            right: 0;
            width: 6px;
            height: 6px;
            border-radius: 3px;
            background-color: #cccccc;
        }

        .chat-users a img {
            width: 48px;
            height: 48px;
            opacity: 0.5;
            filter: alpha(opacity=50);
        }

        .chat-users a.chat-user-online,
        .chat-users a.chat-user-away,
        .chat-users a.chat-user-busy {
            background: url('../img/template/ie8_opacity_light_75.png') repeat;
            background: rgba(255, 255, 255, 0.75);
        }

            .chat-users a.chat-user-online span {
                background-color: #2ecc71;
            }

            .chat-users a.chat-user-away span {
                background-color: #f39c12;
            }

            .chat-users a.chat-user-busy span {
                background-color: #e74c3c;
            }

        .chat-users a:hover {
            background-color: #ffffff;
            -webkit-box-shadow: 0 0 4px 2px #999999;
            box-shadow: 0 0 4px 2px #999999;
        }

            .chat-users a:hover img,
            .chat-users a.chat-user-online img,
            .chat-users a.chat-user-away img,
            .chat-users a.chat-user-busy img {
                opacity: 1;
                filter: alpha(opacity=100);
            }

.chat-talk-info {
    line-height: 22px;
    font-size: 13px;
}

    .chat-talk-info img {
        width: 22px;
        height: 22px;
        float: left;
        margin-right: 10px;
    }

.chat-talk-messages {
    list-style: none;
    margin: 0;
    padding: 5px 0;
    background: url('../img/template/ie8_opacity_dark_20.png') repeat;
    background: rgba(0, 0, 0, 0.20);
}

    .chat-talk-messages li {
        padding: 7px 10px;
        margin-bottom: 7px;
    }

    .chat-talk-messages .chat-talk-msg {
        width: 180px;
        margin-right: 20px;
        border-right: 3px solid #fff;
        background: url('../img/template/ie8_opacity_dark_40.png') repeat;
        background: rgba(0, 0, 0, 0.40);
    }

        .chat-talk-messages .chat-talk-msg.chat-talk-msg-highlight {
            margin-right: 0;
            margin-left: 20px;
            border-right: none;
            border-left-width: 3px;
            border-left-style: solid;
        }

.chat-form {
    margin: 0;
    padding: 5px 10px;
    background: url('../img/template/ie8_opacity_dark_40.png') repeat;
    background: rgba(0, 0, 0, 0.40);
}

    .chat-form .form-control {
        background: transparent;
        color: #eeeeee;
    }

/* Sidebar Navigation */
.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
}

    .sidebar-nav .sidebar-header:first-child {
        margin-top: 0;
    }

    .sidebar-nav a {
        display: block;
        color: #cacbcc;
        padding: 0 10px;
        min-height: 35px;
        line-height: 35px;
        border-bottom: solid 1px #1f2c3d;
    }

        .sidebar-nav a:hover,
        .sidebar-nav a:focus,
        .sidebar-nav a.open,
        .sidebar-nav li.active > a {
            /*  color: #039be5;*/
            color: #fbe230;
            text-decoration: none;
            background: url('../img/template/ie8_opacity_dark_15.png') repeat;
            background: rgba(0, 0, 0, 0.15);
        }

        .sidebar-nav a.active {
            padding-left: 5px;
            border-left: 5px solid #1bbae1;
            background: url('../img/template/ie8_opacity_dark_30.png') repeat;
            background: rgba(0, 0, 0, 0.3);
        }

        .sidebar-nav a > .sidebar-nav-icon {
            margin-right: 10px;
        }

        .sidebar-nav a > .sidebar-nav-indicator {
            float: right;
            line-height: inherit;
            margin-left: 4px;
            -webkit-transition: all 0.15s ease-out;
            transition: all 0.15s ease-out;
        }

        .sidebar-nav a > .sidebar-nav-icon,
        .sidebar-nav a > .sidebar-nav-indicator {
            display: inline-block;
            opacity: 0.5;
            filter: alpha(opacity=50);
            width: 18px;
            font-size: 14px;
            text-align: center;
        }

        .sidebar-nav a:hover,
        .sidebar-nav a:hover > .sidebar-nav-icon,
        .sidebar-nav a:hover > .sidebar-nav-indicator,
        .sidebar-nav a.active,
        .sidebar-nav a.active > .sidebar-nav-icon,
        .sidebar-nav a.active > .sidebar-nav-indicator,
        .sidebar-nav a.open,
        .sidebar-nav a.open > .sidebar-nav-icon,
        .sidebar-nav a.open > .sidebar-nav-indicator,
        .sidebar-nav li.active > a,
        .sidebar-nav li.active > a > .sidebar-nav-icon,
        .sidebar-nav li.active > a > .sidebar-nav-indicator {
            opacity: 1;
            filter: alpha(opacity=100);
        }

            .sidebar-nav a.active > .sidebar-nav-indicator,
            .sidebar-nav a.open > .sidebar-nav-indicator,
            .sidebar-nav li.active > a > .sidebar-nav-indicator {
                -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
            }

    .sidebar-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none;
        background: url('../img/template/ie8_opacity_dark_30.png') repeat;
        background: rgba(0, 0, 0, 0.3);
        margin-left: 14px;
        padding-left: 0px;
        border-left: solid 1px #039be5;
    }

    .sidebar-nav li.active > ul {
        display: block;
    }

    .sidebar-nav ul a {
        margin: 0;
        font-size: 12px;
        /*  padding-left: 15px;*/
        padding-left: 0px;
        min-height: 25px;
        line-height: 25px;
        font-weight: normal;
    }

        .sidebar-nav ul a::before {
            content: "\2192";
            margin-right: 3px;
        }

        .sidebar-nav ul a.active,
        .sidebar-nav ul a.active:hover {
            border-left: 5px solid #1bbae1;
            padding-left: 10px;
        }

    .sidebar-nav ul ul {
        background: url('../img/template/ie8_opacity_dark_40.png') repeat;
        background: rgba(0, 0, 0, 0.4);
    }

        .sidebar-nav ul ul a {
            /* padding-left: 25px;*/
        }

            .sidebar-nav ul ul a.active,
            .sidebar-nav ul ul a.active:hover {
                padding-left: 20px;
            }

/* Sidebar Header */
.sidebar-header {
    margin: 10px 0 0;
    padding: 10px;
    line-height: 12px;
}

    .sidebar-header + .sidebar-section {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .sidebar-header .sidebar-header-title {
        color: #ffffff;
        font-size: 11px;
        text-transform: uppercase;
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

.sidebar-header-options {
    float: right;
    display: inline-block;
}

    .sidebar-header-options > a,
    .sidebar-nav .sidebar-header-options a {
        float: right;
        margin: 0;
        padding: 0;
        min-height: 0;
        line-height: inherit;
        display: block;
        min-width: 18px;
        text-align: center;
        color: #ffffff;
        opacity: 0.3;
        filter: alpha(opacity=30);
    }

        .sidebar-header-options a.active,
        .sidebar-header-options a:hover,
        .sidebar-header-options a:focus,
        .sidebar-nav .sidebar-header-options a.active,
        .sidebar-nav .sidebar-header-options a:hover,
        .sidebar-nav .sidebar-header-options a:focus {
            background: none;
            color: #ffffff;
            opacity: 1;
            filter: alpha(opacity=100);
        }

    .sidebar-header-options a > i {
        font-size: 14px;
    }

/*
=================================================================
(#m04mcs) MAIN CONTENT
=================================================================
*/

/* Content Header */
.content-header {
    background-color: #ffffff;
    /*border-top: 1px solid #eaedf1;
    border-bottom: 1px solid #dbe1e8;*/
}

    .content-header h1,
    .content-header h2 {
        margin: 0;
        font-size: 26px;
        line-height: 32px;
    }

    .content-header small .content-header small {
        font-size: 17px;
    }

.header-section h1 i {
    font-size: 56px;
    float: right;
    margin: 2px 0 0 10px;
    color: #eaedf1;
    margin: 0 0 0 10px;
    line-height: 64px;
}

.header-section {
    padding: 4px;
    padding-bottom: 0px; /* added on 7th march 19 */
    background: #039be5;
    border: none 2px #00bcd4;
    border-left: none;
    border-right: none;
    border-top: none;
    overflow: hidden;
    position: relative;
    /* z-index: 0; */
    width: 100%;
}

.content-header,
.content-top {
    margin: -10px -5px 10px;
}

.content-top {
    background-color: #ffffff;
    border-bottom: 1px solid #dbe1e8;
}

.content-header-media {
    position: relative;
    height: 125px;
    overflow: hidden;
    border-top-color: #222222;
}

    .content-header-media .header-section {
        z-index: 200;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        color: #ffffff;
        background: url('../img/template/ie8_opacity_dark_60.png') repeat;
        background: rgba(0, 0, 0, 0.8);
    }

    .content-header-media small,
    .content-header-media i {
        color: #dddddd;
    }

    .content-header-media > img {
        position: absolute;
        top: 0;
        left: 50%;
        width: 2560px;
        height: 248px;
        margin-left: -1280px;
    }

    .content-header-media > .content-header-media-map {
        height: 270px;
    }

/* Blocks */
.block {
    margin: 0 0 10px;
    padding: 20px 15px 1px;
    background-color: #ffffff;
    border: 1px solid #dbe1e8;
}

    .block.full {
        padding: 20px 15px;
    }

    .block .block-content-full {
        margin: -20px -15px -1px;
    }

    .block .block-content-mini-padding {
        padding: 8px;
    }

    .block.full .block-content-full {
        margin: -20px -15px;
    }

    .block .tab-content .block-content-full,
    .block.full .tab-content .block-content-full {
        margin-top: -19px !important;
    }

.block-title {
    margin: -20px -15px 20px;
    background-color: #f9fafc;
    border-bottom: 1px solid #eaedf1;
}

    .block-title h1,
    .block-title h2,
    .block-title h3,
    .block-title h4,
    .block-title h5,
    .block-title h6 {
        display: inline-block;
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
        padding: 10px 16px 7px;
        font-weight: normal;
    }

        .block-title h1 small,
        .block-title h2 small,
        .block-title h3 small,
        .block-title h4 small,
        .block-title h5 small,
        .block-title h6 small {
            font-size: 13px;
            color: #777777;
            font-weight: normal;
        }

    .block-title h1,
    .block-title h2,
    .block-title h3 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .block-title .nav-tabs,
    .block-options {
        min-height: 40px;
        line-height: 38px;
    }

    .block-title .nav-tabs {
        padding: 3px 1px 0;
        border-bottom: none;
    }

        .block-title .nav-tabs > li > a {
            border-bottom: none;
        }

    .block-title .nav-tabs {
        margin-bottom: -2px;
    }

        .block-title .nav-tabs > li > a {
            margin-bottom: 0;
        }

            .block-title .nav-tabs > li > a:hover {
                background: none;
            }

        .block-title .nav-tabs > li.active > a,
        .block-title .nav-tabs > li.active > a:hover,
        .block-title .nav-tabs > li.active > a:focus {
            border: 1px solid #eaedf1;
            border-bottom-color: #ffffff;
            background-color: #ffffff;
        }

    .block-title code {
        padding: 2px 3px;
    }

.block-options {
    margin: 0 6px;
    line-height: 37px;
}

    .block-options .label {
        display: inline-block;
        padding: 6px;
        vertical-align: middle;
        font-size: 13px;
    }

.block-top {
    margin: -20px -15px 20px;
    border-bottom: 1px dotted #dbe1e8;
}

.block-section {
    margin-bottom: 20px;
}

.block.block-fullscreen {
    position: fixed;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: 1031;
    margin-bottom: 0;
    overflow-y: auto;
}

/* Widgets */
.widget {
    background-color: #ffffff;
    /*  margin-bottom: 10px;*/
}

    .widget .widget-extra-full,
    .widget .widget-extra {
        position: relative;
        padding: 15px;
    }

    .widget .widget-extra {
        padding-top: 1px;
        padding-bottom: 1px;
    }

    .widget .widget-content-light {
        color: #ffffff;
    }

        .widget .widget-content-light small {
            color: #eeeeee;
        }

    .widget .widget-image,
    .widget .widget-icon {
        width: 64px;
        height: 64px;
    }

    .widget .widget-icon {
        display: inline-block;
        line-height: 64px;
        text-align: center;
        font-size: 28px;
        color: #ffffff;
        border-radius: 32px;
    }

        .widget .widget-icon .gi,
        .widget .widget-icon .si,
        .widget .widget-icon .hi,
        .widget .widget-icon .fi {
            margin-top: -3px;
        }

    .widget .widget-options,
    .widget .widget-options-left {
        position: absolute;
        top: 5px;
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

    .widget .widget-options {
        right: 5px;
    }

    .widget .widget-options-left {
        left: 5px;
    }

        .widget .widget-options:hover,
        .widget .widget-options-left:hover {
            opacity: 1;
            filter: alpha(opacity=100);
        }

.widget-simple {
    /*padding: 15px;*/
    padding: 5px;
    padding-top: 5px;
    padding-bottom: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 0px;
}

    .widget-simple:before,
    .widget-simple:after {
        content: " ";
        display: table;
    }

    .widget-simple:after {
        clear: both;
    }

    .widget-simple .widget-image,
    .widget-simple .widget-icon {
        margin: 0 15px;
    }

        .widget-simple .widget-image.pull-left,
        .widget-simple .widget-icon.pull-left {
            margin-left: 0;
        }

        .widget-simple .widget-image.pull-right,
        .widget-simple .widget-icon.pull-right {
            margin-right: 0;
        }

    .widget-simple .widget-content {
        font-size: 18px;
        margin: 12px 0;
    }

        .widget-simple .widget-content small {
            display: block;
            margin-top: 7px;
            font-size: 13px;
            font-weight: 400;
        }

.widget-advanced .widget-header {
    position: relative;
    padding: 15px 15px 50px;
    height: 150px;
    overflow: hidden;
}

.widget-advanced .widget-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
}

.widget-advanced .widget-background-map {
    height: 180px;
    width: 100%;
}

.widget-advanced .widget-content-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    margin: 0;
    background: url('../img/template/ie8_opacity_dark_60.png') repeat;
    background: rgba(0, 0, 0, 0.6);
}

.widget-advanced .widget-main {
    position: relative;
    padding: 50px 15px 15px;
}

.widget-advanced .widget-image-container {
    position: absolute;
    display: inline-block;
    padding: 5px;
    width: 74px;
    height: 74px;
    top: -36px;
    left: 50%;
    margin-left: -36px;
    border-radius: 36px;
    background-color: #ffffff;
}

.widget-advanced .widget-header .widget-image-container {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
}

.widget-advanced-alt .widget-header,
.widget-advanced-alt .widget-main {
    padding: 15px;
}

.widget-advanced-alt .widget-header {
    height: auto;
    min-height: 150px;
}

/* Link Widgets */
a.widget {
    display: block;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

    a.widget:hover,
    a.widget:focus,
    a.widget:active {
        text-decoration: none;
    }

    a.widget.widget-hover-effect1:hover {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
        -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

    a.widget.widget-hover-effect1:active {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
        -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    a.widget.widget-hover-effect2:hover {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.2);
    }

    a.widget.widget-hover-effect2:active {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    a.widget.widget-hover-effect3:hover {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    a.widget.widget-hover-effect3:active {
        -webkit-transform: rotate(2deg) scale(0.95);
        transform: rotate(2deg) scale(0.95);
    }

    a.widget.widget-hover-effect4:hover {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }

    a.widget.widget-hover-effect4:active {
        -webkit-transform: rotate(-1deg) scale(0.95);
        transform: rotate(-1deg) scale(0.95);
    }

/* Content which contains floats */
.content-float .pull-left {
    margin: 0 20px 20px 0;
}

.content-float .pull-right {
    margin: 0 0 20px 20px;
}

/* Draggable Blocks */
.draggable-blocks .block-title {
    cursor: move;
}

.draggable-placeholder {
    background-color: #dddddd;
    border: 1px dashed #999999;
    margin-bottom: 10px;
}

/* Scroll to top link */
#to-top {
    display: none;
    position: fixed;
    bottom: 55px;
    left: 5px;
    border-radius: 3px;
    padding: 0 12px;
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    opacity: 0.1;
    filter: alpha(opacity=10);
}

    #to-top:hover {
        color: #ffffff;
        background-color: #1bbae1;
        text-decoration: none;
        opacity: 1;
        filter: alpha(opacity=100);
    }

/*
=================================================================
(#m05pgs) PAGES
=================================================================
*/

/* Login */
#login-background {
    width: 100%;
    height: 224px;
    overflow: hidden;
    position: relative;
}

    #login-background > img {
        position: absolute;
        width: 2560px;
        height: 400px;
        left: 50%;
        margin-left: -1280px;
    }

#login-alt-container {
    display: none;
}

#login-container,
#login-alt-container {
    position: absolute;
    width: 300px;
    top: 10px;
    left: 50%;
    margin-left: -150px;
    z-index: 1000;
}

    #login-container .login-title {
        padding: 20px 10px;
        background: #444444;
        background: url('../img/template/ie8_opacity_dark_60.png') repeat;
        background: rgba(0, 0, 0, 0.6);
    }

        #login-container .login-title h1,
        #login-alt-container h1 {
            font-size: 26px;
            color: #ffffff;
        }

            #login-container .login-title h1 small,
            #login-alt-container h1 small {
                font-size: 16px;
                color: #dddddd;
            }

    #login-container > .block {
        border: none;
    }

    #login-container .register-terms {
        line-height: 30px;
        margin-right: 10px;
        float: left;
    }

/* Full Background Image */
img.full-bg {
    min-height: 100%;
    min-width: 1280px;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1280px) {
    img.full-bg {
        left: 50%;
        margin-left: -640px;
    }
}

/* Full Page Container */
.full-page-container {
    position: absolute;
    width: 300px;
    padding: 10px;
    top: 20px;
    left: 50%;
    margin-left: -150px;
    z-index: 1000;
    background-color: #333333;
    background-color: rgba(0,0,0,.5);
}

.full-page-section {
    padding: 25px 0;
    margin: 25px -10px;
    background-color: #000000;
    background-color: rgba(0,0,0,.15);
}

/* Countdown */
.countdown-con {
    color: #ffffff;
    text-align: center;
}

    .countdown-con .countdown-num {
        font-size: 56px;
        font-weight: bold;
    }

    .countdown-con .countdown-info {
        font-size: 16px;
        color: rgba(255, 255, 255, .6);
    }

/* Calendar */
.calendar-events {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .calendar-events li {
        color: #ffffff;
        margin-bottom: 5px;
        padding: 5px 10px;
        border-radius: 3px;
        background-color: #555555;
        opacity: 0.85;
        filter: alpha(opacity=85);
    }

        .calendar-events li:hover {
            cursor: move;
            opacity: 1;
            filter: alpha(opacity=100);
        }

/* Gallery */
.gallery img, .gallery a img, .gallery-image img, a[data-toggle="lightbox-image"] img {
    max-width: 100%;
}

a[data-toggle="lightbox-image"],
a.gallery-link {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

    .gallery a:hover img,
    .gallery-image:hover img,
    a[data-toggle="lightbox-image"]:hover img {
        opacity: 0.75;
        filter: alpha(opacity=75);
    }

.gallery-image {
    position: relative;
}

.gallery-image-options {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
}

.gallery-image:hover .gallery-image-options {
    display: block;
}

.gallery > .row > div {
    margin-bottom: 15px;
}

.gallery.gallery-widget > .row > div {
    margin-bottom: 0;
    padding-top: 7px;
    padding-bottom: 7px;
}

/* Media Items */
.media-items {
    position: relative;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
    background-color: #f9f9f9;
    border: 2px solid #f1f1f1;
    -webkit-transition: all .15s ease-out;
    transition: all .15s ease-out;
}

    .media-items:hover {
        border-color: #cccccc;
    }

        .media-items:hover .media-items-options {
            display: block;
        }

    .media-items .media-items-options {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        padding: 10px;
        display: none;
    }

    .media-items .media-items-content {
        padding: 40px 0 20px;
    }

/* Charts */
.pie-chart .pie-avatar {
    position: absolute;
    top: 8px;
    left: 8px;
}

.chart {
    height: 360px;
}

.chart-tooltip,
.mini-chart-tooltip {
    position: absolute;
    display: none;
    color: #ffffff;
    background-color: #000000;
    padding: 4px 10px;
}

.chart-pie-label {
    font-size: 12px;
    text-align: center;
    padding: 8px 12px;
    color: #ffffff;
}

.mini-chart-tooltip {
    left: 0;
    top: 0;
    visibility: hidden;
}

.legend table td {
    padding: 4px;
    font-size: 14px;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-header {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    padding: 0 15px;
    min-height: 60px;
    line-height: 60px;
    background-color: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    z-index: 500;
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .timeline-list:after {
        position: absolute;
        display: block;
        width: 2px;
        top: 0;
        left: 95px;
        bottom: 0;
        content: "";
        background-color: #f0f0f0;
        z-index: 1;
    }

.timeline-header + .timeline-list:after {
    top: 60px;
}

.timeline-list li {
    position: relative;
    margin: 0;
    padding: 15px 0;
}

.timeline-list.timeline-hover li:hover {
    background-color: #f9f9f9;
}

.timeline-list .timeline-icon {
    position: absolute;
    left: 80px;
    top: 10px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 15px;
    z-index: 500;
}

.timeline-list .active .timeline-icon {
    background-color: #1bbae1;
    border-color: #1bbae1;
    color: #ffffff;
}

.timeline-list .timeline-time {
    float: left;
    width: 70px;
    text-align: right;
}

.timeline-list .timeline-content {
    margin-left: 120px;
}

.block-content-full .timeline-content {
    padding-right: 20px;
}

.media-feed {
    margin-bottom: 0;
}

    .media-feed > .media {
        margin-top: 0;
        padding: 20px 20px 0;
        border-top: 1px dotted #dbe1e8;
    }

        .media-feed > .media:first-child {
            border-top: none;
        }

    .media-feed.media-feed-hover > .media:hover {
        background-color: #f9f9f9;
    }

/* Error */
#error-container {
    padding: 120px 20px;
    position: relative;
}

    #error-container .error-options {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    #error-container h1 {
        font-size: 96px;
        color: #ffffff;
        margin-bottom: 40px;
    }

    #error-container h2 {
        color: #cccccc;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    #error-container form {
        padding: 20px;
        border-radius: 3px;
        background: #ffffff;
        background: url('../img/template/ie8_opacity_light_10.png') repeat;
        background: rgba(255, 255, 255, 0.1);
    }

    #error-container .form-control {
        border-color: #ffffff;
    }

/* Pricing Table */
.table.table-pricing {
    background-color: #ffffff;
}

.table-pricing th,
.table-pricing td {
    text-align: center;
}

.table-pricing th {
    font-size: 24px !important;
}

.table-pricing td {
    font-size: 15px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.table-pricing .table-price {
    background-color: #f9f9f9;
}

    .table-pricing.table-featured .table-price,
    .table-pricing .table-price.table-featured {
        background-color: #252525;
    }

.table-pricing.table-featured th,
.table-pricing th.table-featured {
    background-color: #1bbae1;
    border-bottom: 2px solid #394263;
    color: #ffffff;
}

.table-pricing.table-featured td,
.table-pricing td.table-featured {
    background-color: #394263;
    color: #ffffff;
}

/* Chat UI */
.chatui-container {
    position: relative;
}

.chatui-people,
.chatui-talk {
    overflow-y: hidden;
}

    .chatui-people .chatui-header {
        font-size: 14px;
        line-height: 14px;
        color: #999999;
        text-transform: uppercase;
        padding: 5px 20px;
    }

    .chatui-people hr {
        border-top-color: #252525;
        border-top-color: rgba(0, 0, 0, 0.25);
    }

    .chatui-people .list-group-item {
        background: transparent;
        min-height: 52px;
        border: 0;
        border-radius: 0 !important;
    }

        .chatui-people .list-group-item .badge {
            margin-top: 7px;
        }

        .chatui-people .list-group-item .list-group-item-heading {
            color: #ffffff;
            line-height: 32px;
            margin: 0;
        }

        .chatui-people .list-group-item:hover,
        .chatui-people .list-group-item:focus {
            background: url('../img/template/ie8_opacity_dark_20.png') repeat;
            background: rgba(0, 0, 0, 0.2);
        }

        .chatui-people .list-group-item img {
            float: left;
            width: 32px;
            height: 32px;
            margin-right: 10px;
        }

.chatui-talk {
    top: 0;
    bottom: 50px;
}

    .chatui-talk ul {
        padding: 15px;
        margin: 0;
        list-style: none;
    }

    .chatui-talk li {
        padding: 5px 10px;
        margin-bottom: 7px;
    }

    .chatui-talk .chatui-talk-msg {
        padding: 15px 10px;
        padding-right: 50px;
        border-left: 5px solid #333333;
        background-color: #f6f6f6;
        position: relative;
    }

        .chatui-talk .chatui-talk-msg.chatui-talk-msg-highlight {
            padding-left: 50px;
            border-left: none;
            border-right-width: 5px;
            border-right-style: solid;
        }

.chatui-talk-msg .chatui-talk-msg-avatar {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
}

.chatui-talk-msg.chatui-talk-msg-highlight .chatui-talk-msg-avatar {
    top: 8px;
    right: auto;
    left: 8px;
}

.chatui-input {
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #eeeeee;
}
/* Tasks */
.task-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .task-list li {
        padding: 15px 40px 15px 15px;
        margin-bottom: 10px;
        background-color: #ffffff;
        border-radius: 3px;
        position: relative;
        -webkit-transition: box-shadow 0.15s ease-out;
        transition: box-shadow 0.15s ease-out;
    }

        .task-list li:hover {
            -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        }

        .task-list li.in-1x {
            margin-left: 15px;
        }

        .task-list li.in-2x {
            margin-left: 30px;
        }

        .task-list li > .task-close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #000000;
            opacity: 0;
            filter: alpha(opacity=0);
            -webkit-transition: opacity 0.2s ease-out;
            transition: opacity 0.2s ease-out;
        }

        .task-list li:hover > .task-close {
            opacity: .25;
            filter: alpha(opacity=25);
        }

        .task-list li.task-done {
            opacity: .50;
            filter: alpha(opacity=50);
        }

            .task-list li.task-done > label {
                text-decoration: line-through;
            }

/*
=================================================================
(#m06bos) BOOTSTRAP OVERWRITE/EXTEND STYLES
=================================================================
*/

/* Navbar */
.navbar.navbar-default {
    background-color: #f9fafc;
}

.navbar.navbar-inverse {
    background-color: #4c5471;
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    border-width: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
    .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
    h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
    .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
        font-weight: 300;
        color: #777777;
    }

h1, h2, h3 {
    margin-bottom: 2px;
}

.text-primary,
.text-primary:hover,
a,
a:hover,
a:focus,
a.text-primary,
a.text-primary:hover,
a.text-primary:focus {
    color: #1bbae1;
}

    .text-danger,
    .text-danger:hover,
    a.text-danger,
    a.text-danger:hover,
    a.text-danger:focus {
        color: #e74c3c;
    }

    .text-warning,
    .text-warning:hover,
    a.text-warning,
    a.text-warning:hover,
    a.text-warning:focus {
        color: #e67e22;
    }

    .text-success,
    .text-success:hover,
    a.text-success,
    a.text-success:hover,
    a.text-success:focus {
        color: #27ae60;
    }

    .text-info,
    .text-info:hover,
    a.text-info,
    a.text-info:hover,
    a.text-info:focus {
        color: #3498db;
    }

    .text-muted,
    .text-muted:hover,
    a.text-muted,
    a.text-muted:hover,
    a.text-muted:focus {
        /*color: #999999;*/
        color: #2196F3;
        font-size: 12px;
    }

    .text-light,
    .text-light:hover,
    a.text-light,
    a.text-light:hover,
    a.text-light:focus {
        color: #ffffff;
    }

b, strong {
    font-weight: 600;
}

ul,
ol {
    padding-left: 30px;
}

.list-li-push li {
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
}

article p {
    font-size: 16px;
    line-height: 1.8;
}

.well {
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
}

.page-header {
    border-bottom-width: 1px;
    border-bottom-color: #dddddd;
    margin: 10px 0 20px;
}

.sub-header {
    margin: 10px 0 20px;
    padding: 10px 0;
    border-bottom: 1px dotted #dddddd;
}

blockquote {
    border-left-width: 3px;
}

blockquote {
    margin: 20px 0;
    padding: 30px 60px 30px 20px;
    position: relative;
    width: 100%;
    border-color: #eaedf1;
}

    blockquote:before {
        display: block;
        content: "\201C";
        font-family: serif;
        font-size: 96px;
        position: absolute;
        right: 10px;
        top: -30px;
        color: #eaedf1;
    }

    blockquote.pull-right:before {
        left: 10px;
        right: auto;
    }

/* Forms */
label {
    font-weight: 600;
    margin-bottom: 0px;
}

fieldset legend {
    font-size: 16px;
    padding: 30px 0 10px;
    border-bottom: 2px solid #eaedf1;
}

input[type="file"] {
    padding-top: 7px;
}

input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
input[type="date"].form-control,
input[type="tel"].form-control,
input[type="url"].form-control,
input[type="number"].form-control,
textarea.form-control {
    -webkit-appearance: none;
    border-radius: 0px;
    border-color: #00bcd4;
    height: 25px;
}

.form-control {
    font-size: 12px;
    padding: 4px 8px;
    max-width: 100%;
    margin: 1px 0;
    color: #394263;
    border-color: #00bcd4;
    height: 25px;
}

.form-control-borderless .form-control,
.form-control-borderless .input-group-addon,
.form-control-borderless,
.form-control-borderless:focus {
    border: transparent !important;
}

.input-group {
    margin-top: 1px;
    margin-bottom: 1px;
}

    .input-group .form-control {
        margin-top: 0;
    }

.form-control:focus {
    border-color: #1bbae1;
}

.help-block {
    color: #ef2929;
    font-weight: 400;
}

.input-group-addon {
    min-width: 20px;
    text-align: center;
    background-color: #dbdbdb;
    border-color: #b1b1b1;
    padding: 4px 6px;
}

.form-horizontal .control-label {
    margin-bottom: 5px;
    text-align: left;
}

.form-bordered {
    /*margin: -15px -15px -1px;*/
}

.modal-body .form-bordered {
    margin-bottom: -20px;
}

.form-bordered fieldset legend {
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.form-bordered .form-group {
    margin: 0;
    border: none;
    padding: 5px;
    border-bottom: 1px dashed #eaedf1;
}

    .form-bordered .form-group.form-actions {
        background-color: #f9fafc;
        border-bottom: none;
    }

.form-horizontal.form-bordered .form-group {
    padding-left: 0;
    padding-right: 0;
}

.form-bordered .help-block {
    margin-bottom: 0;
}

.has-success .form-control,
.has-warning .form-control,
.has-error .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-success .help-block,
.has-success .control-label,
.has-success .input-group-addon,
.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .radio,
.has-success .radio-inline {
    color: #27ae60;
}

.has-success .form-control,
.has-success .input-group-addon {
    border-color: #27ae60;
    background-color: #ffffff;
}

    .has-success .form-control:focus {
        border-color: #166638;
    }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .input-group-addon,
.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .radio,
.has-warning .radio-inline {
    color: #e67e22;
}

.has-warning .form-control,
.has-warning .input-group-addon {
    border-color: #e67e22;
    background-color: #ffffff;
}

    .has-warning .form-control:focus {
        border-color: #b3621b;
    }

.has-error .help-block,
.has-error .control-label,
.has-error .input-group-addon,
.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .radio,
.has-error .radio-inline {
    color: #e74c3c;
}

.has-error .form-control,
.has-error .input-group-addon {
    border-color: #e74c3c !important;
    background-color: #ffffff;
}

    .has-error .form-control:focus {
        border-color: #c0392b;
    }

/* Form Wizards */
.wizard-steps {
    border-bottom: 1px solid #eaedf1;
    margin-bottom: 20px;
}

.form-bordered .wizard-steps {
    margin-bottom: 0;
}

.wizard-steps .row {
    margin: 0;
}

    .wizard-steps .row div {
        padding: 15px 0;
        font-size: 15px;
        text-align: center;
    }

.form-bordered .wizard-steps .row div {
    padding-top: 10px;
}

.wizard-steps span {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 1px solid #1bbae1;
    border-radius: 50px;
}

.wizard-steps div.done span,
.wizard-steps div.active span {
    background-color: #1bbae1;
    color: #ffffff;
}

.wizard-steps div.done span {
    opacity: 0.25;
    filter: alpha(opacity=25);
}

.wizard-steps div.active span {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* Form Select Switches */
.switch {
    margin: 1px 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

    .switch input {
        position: absolute;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .switch span {
        position: relative;
        display: inline-block;
        width: 54px;
        height: 28px;
        border-radius: 28px;
        background-color: #f9f9f9;
        border: 1px solid #dddddd;
        -webkit-transition: background-color 0.35s;
        transition: background-color 0.35s;
    }

        .switch span:after {
            content: "";
            position: absolute;
            left: 2px;
            top: 1px;
            bottom: 1px;
            width: 24px;
            background-color: #ffffff;
            border: 1px solid #dddddd;
            border-radius: 50%;
            -webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
            box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
            -webkit-transition: all 0.15s ease-out;
            transition: all 0.15s ease-out;
        }

    .switch input:checked + span:after {
        left: 26px;
        border: none;
        -webkit-box-shadow: -2px 0 3px rgba(0, 0, 0, 0.1);
        box-shadow: -2px 0 3px rgba(0, 0, 0, 0.1);
    }

    .switch input:checked + span {
        background-color: #eeeeee;
    }

.switch-default span {
    border-color: #dbe1e8;
}

.switch-default input:checked + span {
    background-color: #dbe1e8;
}

.switch-primary span {
    border-color: #1bbae1;
}

.switch-primary input:checked + span {
    background-color: #1bbae1;
}

.switch-info span {
    border-color: #7abce7;
}

.switch-info input:checked + span {
    background-color: #7abce7;
}

.switch-success span {
    border-color: #aad178;
}

.switch-success input:checked + span {
    background-color: #aad178;
}

.switch-warning span {
    border-color: #f7be64;
}

.switch-warning input:checked + span {
    background-color: #f7be64;
}

.switch-danger span {
    border-color: #ef8a80;
}

.switch-danger input:checked + span {
    background-color: #ef8a80;
}

.lt-ie9 .switch input {
    position: static;
    opacity: 1;
    filter: alpha(opacity=100);
}

.lt-ie9 .switch span,
.lt-ie9 .switch span:after {
    display: none !important;
}

/* Tables */
.table.table-vcenter th,
.table.table-vcenter td {
    vertical-align: middle;
}

.table-options {
    padding: 6px 0;
}

.table thead > tr > th {
    /*    font-size: 18px;*/
    font-weight: 600;
}

    .table thead > tr > th > small {
        font-weight: 400;
        font-size: 75%;
    }

.table thead > tr > th,
.table thead > tr > td,
.table tfoot > tr > th,
.table tfoot > tr > td {
    /*    padding-top: 14px;
    padding-bottom: 14px;*/
}

.table tfoot > tr > th,
.table tfoot > tr > td {
    background-color: #f9fafc;
}

.table-borderless tbody > tr > th,
.table-borderless tbody > tr > td {
    border-top-width: 0;
}

.table thead > tr > th,
.table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td,
.table tbody > tr > td,
.table tfoot > tr > td,
.table tbody + tbody,
.table-bordered,
.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: #bdbdbd;
    border-left: solid 1px #bdbdbd;
    border-right: solid 1px #bdbdbd;
}

.table {
    border: Solid 1px #dedede;
}

    .table .headerRow {
        background-color: #d7d7d7;
        color: #000;
    }

    .table .filterRow {
        background-color: #e4e4e4;
    }

    .table .headerRow th input {
        /* border: solid 1px #00bcd4;*/
    }

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #eaedf1;
}

/* List Group */
.list-group-item {
    border-color: #eaedf1;
}

a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
    background-color: #1bbae1;
    border-color: #1bbae1;
}

    a.list-group-item.active .list-group-item-text,
    a.list-group-item.active:hover .list-group-item-text,
    a.list-group-item.active:focus .list-group-item-text {
        color: #ffffff;
    }

a.list-group-item:hover,
a.list-group-item:focus {
    background-color: #f9fafc;
}

a.list-group-item.active > .badge {
    background: url('../img/template/ie8_opacity_dark_40.png') repeat;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

/* Navs */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    color: #fff;
    background-color: #1bbae1;
}

.nav > li i {
    font-size: 18px;
}

.nav-pills > .active > a > .badge {
    color: #1bbae1;
}

.nav-stacked > li > a {
    margin: 4px 0 0;
}

.nav .caret,
.nav a:hover .caret,
.nav a:focus .caret {
    border-top-color: #1bbae1;
    border-bottom-color: #1bbae1;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: #f9fafc;
}

.nav-tabs {
    border-bottom-color: #eaedf1;
}

    .nav-tabs > li {
        margin-bottom: 0;
    }

        .nav-tabs > li > a {
            padding-left: 7px;
            padding-right: 7px;
            margin-bottom: -1px;
        }

            .nav-tabs > li > a:hover {
                border-color: #eaedf1;
            }

        .nav-tabs > li.active > a,
        .nav-tabs > li.active > a:hover,
        .nav-tabs > li.active > a:focus {
            color: #394263;
            border-color: #eaedf1;
            border-bottom-color: transparent;
        }

.nav-pills > li.active > a > .badge {
    background: url('../img/template/ie8_opacity_dark_20.png') repeat;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.nav-pills.nav-icons > li > a i {
    margin-right: 10px;
}

.nav-pills.nav-icons > li.active > a i,
.nav-pills.nav-icons > li.active > a:hover i,
.nav-pills.nav-icons > li.active > a:focus i {
    color: #ffffff;
}

.dropdown-menu {
    padding: 0;
    font-size: 13px;
    border-color: #dbe1e8;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

    .dropdown-menu > li > a {
        padding: 6px 10px;
    }

    .dropdown-menu i {
        /*opacity: 0.2; commented by yogesh on 21st jan 19*/
        filter: alpha(opacity=20);
        line-height: 17px;
        padding-right: 5px;
    }

    .dropdown-menu a:hover i {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

    .dropdown-menu .divider {
        margin: 2px 0;
        padding: 0 !important;
        background-color: #cfcfcf;
    }

li.dropdown-header {
    padding: 5px 10px;
    color: #394263;
    background-color: #f9fafc;
    border-top: 1px solid #eaedf1;
    border-bottom: 1px solid #eaedf1;
}

.dropdown-menu li:first-child.dropdown-header {
    border-top: none;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.dropdown-menu.dropdown-custom {
    min-width: 200px;
}

    .dropdown-menu.dropdown-custom > li {
        padding: 8px 10px;
        font-size: 12px;
    }

        .dropdown-menu.dropdown-custom > li > a {
            border-radius: 3px;
        }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -3px;
        margin-left: 0;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
        }

.collapse.in .dropdown.open .dropdown-menu {
    display: block;
    position: static;
    margin: 0 0 0 15px;
    left: auto;
    top: auto;
}

.navbar-fixed-top .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

.pagination > li > a,
.pagination > li > span {
    color: #1bbae1;
    margin-left: 5px;
    margin-right: 5px;
    border: none !important;
    border-radius: 25px !important;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #1bbae1;
}

.pager > li > a,
.pager > li > span {
    border-color: #eaedf1;
}

    .pager > li > a:hover,
    .pagination > li > a:hover {
        background-color: #1bbae1;
        border-color: #1bbae1;
        color: #ffffff;
    }

.pager > li.disabled > a:hover {
    border-color: #eaedf1;
}

/* Horizontal Navigation */
.nav-horizontal {
    padding: 10px 7px 1px;
    margin: 0;
    list-style: none;
}

    .nav-horizontal li {
        display: inline-block;
        margin: 0 3px 9px;
    }

    .nav-horizontal a {
        display: block;
        min-width: 140px;
        border-radius: 3px;
        font-weight: bold;
        text-align: left;
        padding: 8px 10px;
        background-color: #f9fafc;
    }

        .nav-horizontal a:hover,
        .nav-horizontal li.active a {
            background-color: #1bbae1;
            text-decoration: none;
            color: #ffffff;
        }

        .nav-horizontal a:focus {
            text-decoration: none;
        }

        .nav-horizontal a:hover i,
        .nav-horizontal li.active a i {
            color: #ffffff;
            opacity: .6;
            filter: alpha(opacity=60);
        }

    .nav-horizontal i {
        display: inline-block;
        font-size: 14px;
        color: #dbe1e8;
        margin-right: 5px;
    }

/* Popover */
.popover-title {
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
}

/* Tooltip */
.tooltip {
    z-index: 1051;
}

    .tooltip.in {
        opacity: 1;
        filter: alpha(opacity=100);
    }

.tooltip-inner {
    padding: 4px 6px;
    background-color: #000000;
    color: #ffffff;
}

.tooltip.top .tooltip-arrow,
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
    border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow,
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: #000000;
}

/* Breadcrumps */
.breadcrumb {
    background-color: #ffffff;
}

    .breadcrumb i {
        font-size: 14px;
    }

.breadcrumb-top {
    margin: -10px -5px 10px;
    padding: 7px 10px;
    border-top: 1px solid #eaedf1;
    border-bottom: 1px solid #dbe1e8;
    font-size: 12px;
}

    .content-header + .breadcrumb-top,
    .breadcrumb-top + .content-header {
        margin-top: -11px;
    }

.breadcrumb > li + li:before {
    content: "\203a";
}

/* Progress Bars */
.progress,
.progress-bar {
    height: 20px;
    line-height: 20px;
}

.progress-bar-danger {
    background-color: #e74c3c;
}

.progress-bar-warning {
    background-color: #f39c12;
}

.progress-bar-success {
    background-color: #2ecc71;
}

.progress-bar-info {
    background-color: #3498db;
}

/* Modals */
.modal-content {
    border-radius: 3px;
}

.modal-header {
    padding: 15px 15px 14px;
    border-bottom: 1px solid #d5d5d5;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.modal-title {
    font-weight: 300;
}

.modal-body {
    padding: 20px 15px;
}

    .modal-body .nav-tabs {
        margin: 0 -15px 15px;
        padding: 0 5px !important;
    }

.modal-footer {
    margin-top: 0;
    padding: 14px 15px 15px;
    border-top: 1px solid #d5d5d5;
    background-color: #e7e7e7;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Buttons */
.btn {
    margin: 0px 0;
    background-color: #ffffff;
    padding: 2px 12px;
}

    .btn .gi,
    .btn .hi,
    .btn .si,
    .btn .fi {
        line-height: 1;
    }

    .btn.disabled,
    .btn[disabled],
    fieldset[disabled] .btn {
        opacity: 0.4;
        filter: alpha(opacity=40);
    }

.block-options .btn,
.input-group .btn,
.modal-content .btn {
    margin-top: 0;
    margin-bottom: 0;
}

.btn-default {
    background-color: #f1f3f6;
    /*   border-color: #00bcd4;*/
    color: #394263;
}

    .btn-default.btn-alt {
        background-color: #ffffff;
    }

    .btn-default:hover {
        background-color: #eaedf1;
        border-color: #c2c8cf;
    }

    .btn-default:focus,
    .btn-default.focus,
    .btn-default:active,
    .btn-default:active:hover,
    .btn-default:active:focus,
    .btn-default.active,
    .btn-default.active:hover,
    .btn-default.active:focus,
    .open .btn-default.dropdown-toggle,
    .open .btn-default.dropdown-toggle:hover,
    .open .btn-default.dropdown-toggle:focus,
    .open .btn-default.dropdown-toggle.focus {
        background-color: #1083bc;
        border-color: #eaedf1;
        color: #fff;
    }

    .btn-default.disabled,
    .btn-default.disabled:hover,
    .btn-default.disabled:focus,
    .btn-default.disabled:active,
    .btn-default.disabled.active,
    .btn-default[disabled]:hover,
    .btn-default[disabled]:focus,
    .btn-default[disabled].focus,
    .btn-default[disabled]:active,
    .btn-default[disabled].active,
    .btn-default[disabled]:active:focus,
    .btn-default[disabled].active:focus,
    fieldset[disabled] .btn-default:hover,
    fieldset[disabled] .btn-default:focus,
    fieldset[disabled] .btn-default.focus,
    fieldset[disabled] .btn-default:active,
    fieldset[disabled] .btn-default.active,
    fieldset[disabled] .btn-default:active:focus,
    fieldset[disabled] .btn-default.active:focus {
        background-color: #eaedf1;
        border-color: #eaedf1;
    }

.btn-primary {
    background-color: #15b6ff;
    border-color: #1bbae1;
    color: #ffffff;
}

    .btn-primary.btn-alt {
        background-color: #ffffff;
        color: #1bbae1;
    }

    .btn-primary:hover {
        background-color: #1bbae1;
        border-color: #1593b3;
        color: #ffffff;
    }

    .btn-primary:focus,
    .btn-primary.focus,
    .btn-primary:active,
    .btn-primary:active:hover,
    .btn-primary:active:focus,
    .btn-primary.active,
    .btn-primary.active:hover,
    .btn-primary.active:focus,
    .open .btn-primary.dropdown-toggle,
    .open .btn-primary.dropdown-toggle:hover,
    .open .btn-primary.dropdown-toggle:focus,
    .open .btn-primary.dropdown-toggle.focus {
        background-color: #1bbae1;
        border-color: #1bbae1;
        color: #ffffff;
    }

    .btn-primary.disabled,
    .btn-primary.disabled:hover,
    .btn-primary.disabled:focus,
    .btn-primary.disabled:active,
    .btn-primary.disabled.active,
    .btn-primary[disabled]:hover,
    .btn-primary[disabled]:focus,
    .btn-primary[disabled].focus,
    .btn-primary[disabled]:active,
    .btn-primary[disabled].active,
    .btn-primary[disabled]:active:focus,
    .btn-primary[disabled].active:focus,
    fieldset[disabled] .btn-primary:hover,
    fieldset[disabled] .btn-primary:focus,
    fieldset[disabled] .btn-primary.focus,
    fieldset[disabled] .btn-primary:active,
    fieldset[disabled] .btn-primary.active,
    fieldset[disabled] .btn-primary:active:focus,
    fieldset[disabled] .btn-primary.active:focus {
        background-color: #1bbae1;
        border-color: #1bbae1;
        color: #ffffff;
    }

.btn-danger {
    background-color: #F44336 !important;
    border-color: #e74c3c;
    color: #ffffff;
}

    .btn-danger.btn-alt {
        background-color: #ffffff;
        color: #e74c3c;
    }

    .btn-danger:hover {
        background-color: #e74c3c;
        border-color: #9c3428;
        color: #ffffff;
    }

    .btn-danger:focus,
    .btn-danger.focus,
    .btn-danger:active,
    .btn-danger:active:hover,
    .btn-danger:active:focus,
    .btn-danger.active,
    .btn-danger.active:hover,
    .btn-danger.active:focus,
    .open .btn-danger.dropdown-toggle,
    .open .btn-danger.dropdown-toggle:hover,
    .open .btn-danger.dropdown-toggle:focus,
    .open .btn-danger.dropdown-toggle.focus {
        background-color: #e74c3c;
        border-color: #e74c3c;
        color: #ffffff;
    }

    .btn-danger.disabled,
    .btn-danger.disabled:hover,
    .btn-danger.disabled:focus,
    .btn-danger.disabled:active,
    .btn-danger.disabled.active,
    .btn-danger[disabled]:hover,
    .btn-danger[disabled]:focus,
    .btn-danger[disabled].focus,
    .btn-danger[disabled]:active,
    .btn-danger[disabled].active,
    .btn-danger[disabled]:active:focus,
    .btn-danger[disabled].active:focus,
    fieldset[disabled] .btn-danger:hover,
    fieldset[disabled] .btn-danger:focus,
    fieldset[disabled] .btn-danger.focus,
    fieldset[disabled] .btn-danger:active,
    fieldset[disabled] .btn-danger.active,
    fieldset[disabled] .btn-danger:active:focus,
    fieldset[disabled] .btn-danger.active:focus {
        background-color: #e74c3c;
        border-color: #e74c3c;
        color: #ffffff;
    }

.btn-warning {
    background-color: #f7be64;
    border-color: #f39c12;
    color: #ffffff;
}

    .btn-warning.btn-alt {
        background-color: #ffffff;
        color: #f39c12;
    }

    .btn-warning:hover {
        background-color: #f39c12;
        border-color: #b3730c;
        color: #ffffff;
    }

    .btn-warning:focus,
    .btn-warning.focus,
    .btn-warning:active,
    .btn-warning:active:hover,
    .btn-warning:active:focus,
    .btn-warning.active,
    .btn-warning.active:hover,
    .btn-warning.active:focus,
    .open .btn-warning.dropdown-toggle,
    .open .btn-warning.dropdown-toggle:hover,
    .open .btn-warning.dropdown-toggle:focus,
    .open .btn-warning.dropdown-toggle.focus {
        background-color: #f39c12;
        border-color: #f39c12;
        color: #ffffff;
    }

    .btn-warning.disabled,
    .btn-warning.disabled:hover,
    .btn-warning.disabled:focus,
    .btn-warning.disabled:active,
    .btn-warning.disabled.active,
    .btn-warning[disabled]:hover,
    .btn-warning[disabled]:focus,
    .btn-warning[disabled].focus,
    .btn-warning[disabled]:active,
    .btn-warning[disabled].active,
    .btn-warning[disabled]:active:focus,
    .btn-warning[disabled].active:focus,
    fieldset[disabled] .btn-warning:hover,
    fieldset[disabled] .btn-warning:focus,
    fieldset[disabled] .btn-warning.focus,
    fieldset[disabled] .btn-warning:active,
    fieldset[disabled] .btn-warning.active,
    fieldset[disabled] .btn-warning:active:focus,
    fieldset[disabled] .btn-warning.active:focus {
        background-color: #f39c12;
        border-color: #f39c12;
        color: #ffffff;
    }

.btn-success {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #ffffff;
}

    .btn-success.btn-alt {
        background-color: #ffffff;
        color: #7db831;
    }

    .btn-success:hover {
        background-color: #7db831;
        border-color: #578022;
        color: #ffffff;
    }

    .btn-success:focus,
    .btn-success.focus,
    .btn-success:active,
    .btn-success:active:hover,
    .btn-success:active:focus,
    .btn-success.active,
    .btn-success.active:hover,
    .btn-success.active:focus,
    .open .btn-success.dropdown-toggle,
    .open .btn-success.dropdown-toggle:hover,
    .open .btn-success.dropdown-toggle:focus,
    .open .btn-success.dropdown-toggle.focus {
        background-color: #7db831;
        border-color: #7db831;
        color: #ffffff;
    }

    .btn-success.disabled,
    .btn-success.disabled:hover,
    .btn-success.disabled:focus,
    .btn-success.disabled:active,
    .btn-success.disabled.active,
    .btn-success[disabled]:hover,
    .btn-success[disabled]:focus,
    .btn-success[disabled].focus,
    .btn-success[disabled]:active,
    .btn-success[disabled].active,
    .btn-success[disabled]:active:focus,
    .btn-success[disabled].active:focus,
    fieldset[disabled] .btn-success:hover,
    fieldset[disabled] .btn-success:focus,
    fieldset[disabled] .btn-success.focus,
    fieldset[disabled] .btn-success:active,
    fieldset[disabled] .btn-success.active,
    fieldset[disabled] .btn-success:active:focus,
    fieldset[disabled] .btn-success.active:focus {
        background-color: #7db831;
        border-color: #7db831;
        color: #ffffff;
    }

.btn-info {
    background-color: #7abce7;
    border-color: #3498db;
    color: #ffffff;
}

    .btn-info.btn-alt {
        background-color: #ffffff;
        color: #3498db;
    }

    .btn-info:hover {
        background-color: #3498db;
        border-color: #2875a8;
        color: #ffffff;
    }

    .btn-info:focus,
    .btn-info.focus,
    .btn-info:active,
    .btn-info:active:hover,
    .btn-info:active:focus,
    .btn-info.active,
    .btn-info.active:hover,
    .btn-info.active:focus,
    .open .btn-info.dropdown-toggle,
    .open .btn-info.dropdown-toggle:hover,
    .open .btn-info.dropdown-toggle:focus,
    .open .btn-info.dropdown-toggle.focus {
        background-color: #3498db;
        border-color: #3498db;
        color: #ffffff;
    }

    .btn-info.disabled,
    .btn-info.disabled:hover,
    .btn-info.disabled:focus,
    .btn-info.disabled:active,
    .btn-info.disabled.active,
    .btn-info[disabled]:hover,
    .btn-info[disabled]:focus,
    .btn-info[disabled].focus,
    .btn-info[disabled]:active,
    .btn-info[disabled].active,
    .btn-info[disabled]:active:focus,
    .btn-info[disabled].active:focus,
    fieldset[disabled] .btn-info:hover,
    fieldset[disabled] .btn-info:focus,
    fieldset[disabled] .btn-info.focus,
    fieldset[disabled] .btn-info:active,
    fieldset[disabled] .btn-info.active,
    fieldset[disabled] .btn-info:active:focus,
    fieldset[disabled] .btn-info.active:focus {
        background-color: #3498db;
        border-color: #3498db;
        color: #ffffff;
    }

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link.btn-icon:hover,
.btn-link.btn-icon:focus {
    color: #1bbae1;
}

    .btn-link.btn-icon {
        color: #999999;
    }

        .btn-link.btn-icon:hover,
        .btn-link.btn-icon:focus {
            text-decoration: none;
        }

.block-options .btn {
    border-radius: 15px;
    padding-right: 8px;
    padding-left: 8px;
    min-width: 30px;
    text-align: center;
}

/* Panels */
.panel {
    margin-bottom: 20px;
}

.panel-heading {
    padding: 10px;
}

.panel-title {
    font-size: 14px;
}

.panel-default > .panel-heading {
    background-color: #f9f9f9;
}

.panel-group {
    margin-bottom: 20px;
}

/* Pre, Code */
pre {
    background: #151515;
    overflow: scroll;
}

code {
    border: 1px solid #fad4df;
    margin: 1px 0;
    display: inline-block;
}

.btn code {
    display: inline;
    margin: 0;
}

/* Alerts */
.alert {
    border-top-width: 0;
    border-right-width: 2px;
    border-bottom-width: 0;
    border-left-width: 2px;
}

.alert-danger {
    color: #e74c3c;
    background-color: #ffd1cc;
    border-color: #ffb8b0;
}

    .alert-danger .alert-link {
        color: #e74c3c;
    }

.alert-warning {
    color: #e67e22;
    background-color: #ffe4cc;
    border-color: #ffd6b2;
}

    .alert-warning .alert-link {
        color: #e67e22;
    }

.alert-success {
    color: #27ae60;
    background-color: #daf2e4;
    border-color: #b8e5cb;
}

    .alert-success .alert-link {
        color: #27ae60;
    }

.alert-info {
    color: #3498db;
    background-color: #dae8f2;
    border-color: #b8d2e5;
}

    .alert-info .alert-link {
        color: #3498db;
    }

.alert-dismissable .close {
    top: -5px;
    right: -25px;
}

.close {
    text-shadow: none;
    opacity: initial;
}

/* Alternative Alerts */
.alert.alert-alt {
    margin: 0 0 2px;
    padding: 5px;
    font-size: 12px;
    border-width: 0;
    border-left-width: 2px;
}

    .alert.alert-alt small {
        opacity: 0.75;
        filter: alpha(opacity=75);
    }

.alert-alt.alert-dismissable .close {
    right: 0;
}

    .alert-alt.alert-dismissable .close:hover {
        color: #ffffff;
    }

.alert-danger.alert-alt {
    border-color: #e74c3c;
}

.alert-warning.alert-alt {
    border-color: #e67e22;
}

.alert-success.alert-alt {
    border-color: #27ae60;
}

.alert-info.alert-alt {
    border-color: #3498db;
}

.sidebar-content .alert.alert-alt {
    margin-left: -10px;
    padding-left: 10px;
    background: transparent;
    color: #ffffff;
}

#sidebar-alt .sidebar-content .alert.alert-alt {
    margin-left: 0;
    margin-right: -10px;
    padding-left: 0;
    padding-right: 10px;
}

#sidebar-alt .sidebar-content .alert.alert-alt {
    border-width: 0;
    border-right-width: 2px;
}

/* Labels, Badges */
.label,
.badge {
    font-weight: normal;
    font-size: 90%;
}

.label {
    padding: 1px 4px;
}

.badge {
    background: url('../img/template/ie8_opacity_dark_30.png') repeat;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 6px;
}

.badge-success {
    background-color: #28a745 !important;
}

.badge-error {
    background-color: #b94a48 !important;
}

.badge-warning {
    background-color: #f89406 !important;
}

.label-danger {
    background-color: #e74c3c;
}

    .label-danger[href]:hover,
    .label-danger[href]:focus {
        background-color: #ff5542;
    }

.label-warning {
    background-color: #e67e22;
}

    .label-warning[href]:hover,
    .label-warning[href]:focus {
        background-color: #ff8b26;
    }

.label-success {
    background-color: #27ae60 !important;
}

    .label-success[href]:hover,
    .label-success[href]:focus {
        background-color: #2cc76c;
    }

.label-info {
    background-color: #2980b9;
}

    .label-info[href]:hover,
    .label-info[href]:focus {
        background-color: #2f92d4;
    }

.label-primary {
    background-color: #1bbae1;
}

    .label-primary[href]:hover,
    .label-primary[href]:focus {
        background-color: #5ac5e0;
    }

.label-default {
    background-color: #999999;
}

    .label-default[href]:hover,
    .label-default[href]:focus {
        background-color: #777777;
    }

/* Carousel */
.carousel-control.left,
.carousel-control.right,
.carousel-control.left.no-hover:hover,
.carousel-control.right.no-hover:hover {
    background: none;
}

    .carousel-control.left:hover,
    .carousel-control.right:hover {
        background: url('../img/template/ie8_opacity_dark_30.png') repeat;
        background: rgba(0, 0, 0, 0.30);
    }

.carousel-control span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-block;
}

.carousel-control i {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
}

/* Bottom Margin */
p, .table, .alert, .carousel {
    margin-bottom: 20px;
}

/* Removing shadows and radius */
.navbar-form-custom .form-control:hover,
.navbar-form-custom .form-control:focus,
.navbar-form,
.navbar-collapse,
.form-control,
.form-control:focus,
.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus,
.popover,
.progress,
.progress-bar,
.btn.active,
.open .btn.dropdown-toggle,
.panel {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-form-custom .form-control,
.navbar,
.dropdown-menu,
.tooltip-inner,
.breadcrumb,
.alert.alert-alt {
    border-radius: 0;
}

/*
=================================================================
(#m07hes) HELPERS
=================================================================
*/

.push-bit {
    margin-bottom: 10px !important;
}

.push {
    margin-bottom: 15px !important;
}

.push-top-bottom {
    margin-top: 40px;
    margin-bottom: 40px;
}

.display-none {
    display: none;
}

.remove-margin {
    margin: 0 !important;
}

.remove-margin-bottom {
    margin-bottom: 0 !important;
}

.remove-padding {
    padding: 0 !important;
}

.remove-radius {
    border-radius: 0 !important;
}

.remove-box-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.remove-transition {
    -moz-transition: none !important;
    -webkit-transition: none !important;
    transition: none !important;
}

.lt-ie9 .hidden-lt-ie9,
.lt-ie10 .hidden-lt-ie10 {
    display: none !important;
}

.visible-lt-ie9,
.visible-lt-ie10 {
    display: none;
}

.lt-ie9 .visible-lt-ie9,
.lt-ie10 .visible-lt-ie10 {
    display: block;
}

:focus {
    outline: 0 !important;
}

/*
=================================================================
(#m08ths) THEMES
=================================================================
*/

/* Alternative Main Style */
.style-alt #page-content {
    background-color: #ffffff;
}

.style-alt .block {
    border-color: #dbe1e8;
}

    .style-alt .block.block-alt-noborder {
        border-color: transparent;
    }

.style-alt .block-title {
    background-color: #dbe1e8;
    border-bottom-color: #dbe1e8;
}

.style-alt .content-header + .breadcrumb-top,
.style-alt .breadcrumb-top + .content-header,
.style-alt #page-content + footer {
    background-color: #f9fafc;
}

.style-alt .content-header,
.style-alt .breadcrumb-top {
    border-bottom-color: #eaedf1;
}

.style-alt #page-content + footer {
    border-top-color: #eaedf1;
}

.style-alt .widget,
.style-alt .task-list li {
    background-color: #f6f6f6;
}

/* Test Circle used in Color Themes Page */
.test-circle {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    background-color: #eeeeee;
    border: 2px solid #cccccc;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Default Color Theme specific colors */
.themed-color {
    color: #1bbae1;
}

.themed-border {
    border-color: #1bbae1;
}

.themed-background {
    background-color: #1bbae1;
}

.themed-color-dark {
    color: #394263;
}

.themed-border-dark {
    border-color: #394263;
}

.themed-background-dark {
    background-color: #394263;
}

/* Contextual Background Colors */
.themed-background-danger {
    background-color: #e74c3c !important;
}

.themed-background-warning {
    background-color: #e67e22 !important;
}

.themed-background-info {
    background-color: #3498db !important;
}

.themed-background-success {
    background-color: #27ae60 !important;
}

.themed-background-muted {
    background-color: #999999 !important;
}

.themed-background-muted-light {
    background-color: #f9f9f9 !important;
}

/*
=================================================================
(#m09res) RESPONSIVE
=================================================================
*/

/* Small devices, Tablets (>767px) */
@media screen and (min-width: 768px) {

    /* General */
    #login-background {
        height: 400px;
    }

        #login-background > img {
            top: 0;
        }

    #login-container,
    #login-alt-container {
        width: 480px;
        top: 176px;
        margin-left: -240px;
    }

    .full-page-container {
        width: 740px;
        top: 120px;
        padding: 20px;
        margin-left: -370px;
    }

    .full-page-section {
        padding: 50px 0;
        margin: 50px -20px;
    }

    #page-content {
        /*padding: 20px 20px 1px;*/
        padding: 0px 0px 1px;
    }

        .header-section,
        .breadcrumb-top,
        .block,
        .block.full,
        .modal-body,
        #page-content + footer {
            /*    padding-left: 20px;*/
            padding-right: 20px;
        }

            .block .block-content-full {
                margin: -20px -20px -1px;
            }

            .block.full .block-content-full {
                margin: -20px;
            }

    .content-header,
    .content-top,
    .breadcrumb-top {
        /*margin: -20px -20px 20px;*/
        margin: -20px 0px 0px;
    }

        .content-header + .breadcrumb-top,
        .breadcrumb-top + .content-header {
            margin-top: -21px;
        }

    .block,
    .widget {
        /* margin-bottom: 20px;
        min-height: calc(100vh - 34px);*/
    }

    .block-title,
    .block-top {
        margin-left: -20px;
        margin-right: -20px;
    }

    .draggable-placeholder {
        margin-bottom: 20px;
    }

    .navbar-fixed-top .dropdown-menu {
        max-height: none;
        overflow-y: visible;
    }

    /* Forms */
    .form-bordered {
        /*margin-left: -20px;
        margin-right: -20px;*/
    }

        .form-bordered .form-group {
            padding-left: 20px;
            padding-right: 20px;
        }

    .form-horizontal.form-bordered .form-group {
        padding-left: 5px;
        padding-right: 5px;
    }

    /* Tabs */
    .nav-tabs > li > a {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0px;
        margin-right: 3px;
    }

    /* Chat UI */
    .chatui-people,
    .chatui-talk,
    .chatui-input {
        position: absolute;
    }

    .chatui-talk,
    .chatui-input {
        right: 250px;
        left: 0;
    }

    .chatui-people {
        top: 0;
        right: 0;
        bottom: 0;
        width: 250px;
        height: auto;
    }

    .chatui-talk {
        height: auto;
    }

        .chatui-talk .chatui-talk-msg {
            width: 50%;
            margin-left: 50%;
        }

            .chatui-talk .chatui-talk-msg.chatui-talk-msg-highlight {
                margin-left: 0;
                margin-right: 50%;
            }

    .chatui-input {
        bottom: 0;
    }
}

/* Medium devices, Desktops (>991px) */
@media screen and (min-width: 992px) {

    /* General */
    #login-alt-container {
        display: block;
    }

    /* Sidebar Animations */
    .sidebar-no-animations #sidebar,
    .sidebar-no-animations #sidebar-alt {
        -webkit-transition: opacity 0.5s linear, background-color 0.2s ease-out;
        transition: opacity 0.5s linear, background-color 0.2s ease-out;
    }

    .sidebar-no-animations #main-container,
    .sidebar-no-animations.header-fixed-top header.navbar-fixed-top,
    .sidebar-no-animations.header-fixed-bottom header.navbar-fixed-bottom,
    .sidebar-no-animations.footer-fixed #page-content + footer {
        -webkit-transition: none;
        transition: none;
    }

    /* Reset sidebar classes used only on small screens */
    .sidebar-visible-xs #sidebar,
    .sidebar-alt-visible-xs #sidebar-alt {
        width: 0;
    }

    .sidebar-visible-xs #main-container,
    .sidebar-alt-visible-xs #main-container {
        margin-left: 0;
        margin-right: 0;
    }

    .sidebar-visible-xs.header-fixed-top header.navbar-fixed-top,
    .sidebar-visible-xs.header-fixed-bottom header.navbar-fixed-bottom,
    .sidebar-alt-visible-xs.header-fixed-top header.navbar-fixed-top,
    .sidebar-alt-visible-xs.header-fixed-bottom header.navbar-fixed-bottom,
    .sidebar-visible-xs.footer-fixed #page-content + footer,
    .sidebar-alt-visible-xs.footer-fixed #page-content + footer {
        right: 0;
        left: 0;
    }

    /* Both Sidebars */
    #sidebar,
    #sidebar-alt,
    .sidebar-partial #sidebar,
    .sidebar-alt-partial #sidebar-alt {
        width: 0;
        opacity: 0.2;
        filter: alpha(opacity=20);
    }

    .sidebar-partial #sidebar,
    .sidebar-alt-partial #sidebar-alt {
        width: 65px;
    }

        .sidebar-partial #sidebar:hover,
        .sidebar-visible-lg #sidebar,
        .sidebar-visible-lg.sidebar-partial #sidebar,
        .sidebar-alt-partial #sidebar-alt:hover,
        .sidebar-alt-visible-lg #sidebar-alt,
        .sidebar-alt-visible-lg.sidebar-alt-partial #sidebar-alt {
            width: 200px;
            opacity: 1;
            filter: alpha(opacity=100);
        }

        .sidebar-partial #sidebar .sidebar-brand i,
        .sidebar-alt-partial #sidebar-alt .sidebar-brand i {
            display: none;
        }

        .sidebar-partial #sidebar:hover .sidebar-brand i,
        .sidebar-visible-lg #sidebar .sidebar-brand i,
        .sidebar-alt-partial #sidebar-alt:hover .sidebar-brand i,
        .sidebar-alt-visible-lg #sidebar-alt .sidebar-brand i {
            display: inline-block;
        }

    /* Main Sidebar */
    .sidebar-partial #main-container {
        margin-left: 65px;
    }

    .sidebar-partial #sidebar:hover + #main-container,
    .sidebar-visible-lg #main-container {
        margin-left: 200px;
    }

    .sidebar-partial.footer-fixed #main-container #page-content + footer,
    .sidebar-partial.header-fixed-top header.navbar-fixed-top,
    .sidebar-partial.header-fixed-bottom header.navbar-fixed-bottom {
        left: 65px;
    }

    .sidebar-partial #sidebar:hover + #main-container header.navbar-fixed-top,
    .sidebar-partial #sidebar:hover + #main-container header.navbar-fixed-bottom,
    .sidebar-partial #sidebar:hover + #main-container #page-content + footer,
    .sidebar-visible-lg.header-fixed-top header.navbar-fixed-top,
    .sidebar-visible-lg.header-fixed-bottom header.navbar-fixed-bottom,
    .sidebar-visible-lg.footer-fixed #main-container #page-content + footer {
        left: 200px;
    }

    /* Alternative Sidebar */
    .sidebar-alt-partial #main-container {
        margin-right: 65px;
    }

    .sidebar-alt-partial #sidebar-alt:hover ~ #main-container,
    .sidebar-alt-visible-lg #main-container {
        margin-right: 200px;
    }

    .sidebar-alt-partial.footer-fixed #main-container #page-content + footer,
    .sidebar-alt-partial.header-fixed-top header.navbar-fixed-top,
    .sidebar-alt-partial.header-fixed-bottom header.navbar-fixed-bottom {
        right: 65px;
    }

    .sidebar-alt-partial #sidebar-alt:hover ~ #main-container header.navbar-fixed-top,
    .sidebar-alt-partial #sidebar-alt:hover ~ #main-container header.navbar-fixed-bottom,
    .sidebar-alt-partial #sidebar-alt:hover ~ #main-container #page-content + footer,
    .sidebar-alt-visible-lg.header-fixed-top header.navbar-fixed-top,
    .sidebar-alt-visible-lg.header-fixed-bottom header.navbar-fixed-bottom,
    .sidebar-alt-visible-lg.footer-fixed #main-container #page-content + footer {
        right: 200px;
    }

    /* Main Sidebar - Mini mode */
    .sidebar-mini.sidebar-visible-lg-mini #main-container {
        margin-left: 40px;
    }

        .sidebar-mini.sidebar-visible-lg-mini #main-container header.navbar-fixed-top,
        .sidebar-mini.sidebar-visible-lg-mini #main-container header.navbar-fixed-bottom,
        .sidebar-mini.sidebar-visible-lg-mini #main-container #page-content + footer {
            left: 40px;
        }

    .sidebar-mini.sidebar-visible-lg-mini #sidebar {
        overflow: visible;
        opacity: 1;
        filter: alpha(opacity=100);
        z-index: 1029;
    }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-content {
            width: 40px;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav-mini-hide,
        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-header > span {
            display: none;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-header {
            padding: 0;
            margin: 5px 0;
            border-top: 1px solid rgba(255, 255, 255, .1);
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav li {
            position: relative;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav .sidebar-nav-menu + ul {
            position: absolute;
            width: 220px;
            top: 0;
            right: -220px;
            margin: 0;
            padding: 6px 5px;
            border-left: 3px solid #1bbae1;
            background-color: #394263;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav ul a {
            margin: 0;
            padding-left: 10px;
            border-left: none;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav ul ul {
            margin-left: 0;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav > li.active > ul {
            display: none;
        }

        .sidebar-mini.sidebar-visible-lg-mini #sidebar .sidebar-nav .sidebar-nav-menu.open + ul {
            display: block !important;
        }

    /* Nav Horizontal */
    .nav-horizontal a {
        text-align: center;
        min-width: 130px;
        padding: 12px 15px;
    }

    .nav-horizontal i {
        display: block;
        height: 55px;
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 42px;
        padding: 10px;
    }

    .table-responsive {
        overflow-x: visible;
    }
}

/* Large devices, Desktops (>1199px) */
@media screen and (min-width: 1200px) {

    /* Main Layout */
    .header-fixed-top .sidebar-content,
    .header-fixed-bottom .sidebar-content {
        padding-bottom: 0;
    }

    /* General */
    article p {
        font-size: 19px;
        line-height: 1.9;
    }
}

/*
=================================================================
(#m10rts) RETINA
=================================================================
*/

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
    /* If you did use a CSS image background, you can put your high resolution image here */

}

/*
=================================================================
(#m11prs) PRINT
=================================================================
*/

@media print {
    #sidebar, #sidebar-alt, .content-header, .breadcrumb-top, .block-title .block-options, #page-content + footer, #to-top {
        display: none !important;
    }

    #page-content {
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
    }

    #main-container {
        margin: 0 !important;
    }

    .block, .block.full {
        border: none !important;
        padding: 0 !important;
    }

    .block-title {
        margin: 0 0 20px !important;
    }
}


.btn > .fa, .btn > .gi {
    margin-right: 7px;
}

.view-animation.ng-enter, .view-animation.ng-leave {
    transition: 1s linear linear;
}

.view-animation.ng-enter {
    opacity: 0.8;
}

    .view-animation.ng-leave,
    .view-animation.ng-enter.ng-enter-active {
        opacity: 1;
    }

        .view-animation.ng-leave.ng-leave-active {
            opacity: 0.8;
        }

.farma-pageheader {
}

    .farma-pageheader h3 {
        /*margin: 0px 0px 0px;
        border-bottom: solid 2px #FF5722;
        color: #ff5722;
        font-size: 17px;
        padding-bottom: 5px;
        font-weight: bold;
    
        margin-bottom: 25px;
        background: rgba(30, 124, 123, 0);*/
    }

        .farma-pageheader h3 span {
            font-size: 15px;
            font-weight: normal;
        }

.toolbar {
}

    .toolbar span {
        padding: 0 10px;
        border-right: solid 1px #555a59;
        cursor: pointer;
        font-size: 20px !important;
        color: #000 !important;
    }

.left_arrow {
    border: Solid 20px transparent;
    border-left: solid 20px #1bbae1;
}

.empty_arrow {
    border: Solid 20px transparent;
    border-left: solid 20px #1bbae1;
}

.active_tab {
    background: #1bbae1;
    padding: 0;
}

.inactive_tab {
    background: #f39c12;
    padding: 0;
}

    .active_tab, .inactive_tab .heading {
        color: #fff;
    }

.arrow-right {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid green;
}
/*===TABS*/
.nav-tabs {
    /*border-bottom: 2px solid rgba(0, 0, 0, 0.1);*/
    border-bottom: 0px solid rgb(60 60 60);
}

    /*  .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
        border-width: 0;
    }*/

    .nav-tabs > li > a {
        border: none;
        /*color: #000;
        font-weight: bold;
        background: #e6e6e6;*/
        color: #222222;
        font-weight: 500;
        background: #e6e6e6;
    }


    .nav-tabs > li.active > a {
        border: solid 1px silver;
        color: #1a1c1c !important;
        background: #ffffff;
        font-weight: bold;
        border-bottom: solid 0px #fff;
    }

    .nav-tabs > li > a::after {
        content: "";
        background: 2px solid rgb(60 60 60);
        height: 2px;
        position: absolute;
        width: 100%;
        left: 0px;
        bottom: -1px;
        /*  transition: all 250ms ease 0s;*/
        transform: scale(0);
    }

    .nav-tabs > li.active > a::after, .nav-tabs > li:hover > a::after {
        transform: scale(1);
    }

.tab-nav > li > a::after {
    background: #21527d none repeat scroll 0% 0%;
    color: #fff;
}

.tab-pane {
    padding: 15px 0;
}

.tab-content {
    /*padding: 20px;*/
}

.selected input {
    background: #50e6f9;
}

.selected td {
    /*  border-top: solid 1px #2696a5 !important;
    bo*/ rder-bottom: solid 1px #2696a5 !important;
    background: #1baae154; /*#50e6f9; */
    /* color: #fff;*/
    font-style: italic;
}

    .selected td span {
        color: #116a01;
    }

    .selected td:nth-child(1) {
        border-left: solid 2px #0accca;
    }

.pivotRow_DB :first-child {
    width: 250px;
}
/*End of Tab*/
.vcenter {
    vertical-align: middle;
    padding: 6px;
    padding-left: 0px;
}

.tableInput {
    margin-bottom: 0px !important;
}

    .tableInput input {
        border: none;
        margin: 0px;
        /* padding: 0px;*/
        border-radius: 0px;
        padding-left: 5px;
        height: 25px !important;
    }

    .tableInput tr {
        line-height: 25px;
    }

    .tableInput td {
        padding: 0px !important;
        border: solid 1px;
        line-height: 25px !important;
        padding: 0 4px 0 2px !important;
    }

.itemInfoBox {
    background: #9dfffe;
    padding: 10px;
    border: Solid 1px #8ddcdb;
    border-radius: 5px;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.tableInfo {
    border-bottom: solid 1px #dbe1e8;
    background: #fff;
    padding: 5px 2px 4px 0px;
    font-style: italic;
}

.labelHeading {
    font-weight: bold;
}

.square-box {
    position: relative;
    width: 15%;
    overflow: hidden;
    background: #4679BD;
    margin-right: 20px;
}

    .square-box:before {
        content: "";
        display: block;
        padding-top: 100%;
    }

.square-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}

    .square-content div {
        display: table;
        width: 100%;
        height: 100%;
    }

    .square-content span {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        color: white;
    }

.siteBox {
    /*background: #1ffffd;*/
    padding: 5px;
    /*border: Solid 1px #15d2d0;*/
}

.paymentBox {
    background: #9fd7f3;
    border: solid 1px #71d0ff;
    padding: 7px;
}

.panel-heading h3 {
    border: none;
}

.panel-title {
    font-weight: bold;
}

.site-group-header {
    background-color: #588094;
    color: #fff;
    height: 26px;
    padding: 4px;
    border: solid 1px #4e6e7d;
}

.panel-heading {
    cursor: pointer;
    height: 35px;
}

md-dialog {
    max-width: 90%;
    max-height: fit-content;
    width: 90%;
    height: 60%;
    border-radius: 0;
}

@media screen and (min-width:1490px ) {
    md-dialog {
        max-width: 70%;
        max-height: fit-content !important;
        width: 70%;
        height: 80%;
        /*   height: 65%;*/
        border-radius: 0;
    }
}

@media screen and (max-width:600px ) {
    md-dialog {
        max-width: 90% !important;
        max-height: fit-content !important;
        width: 90% !important;
        height: 80%;
        /*   height: 65%;*/
        border-radius: 0;
    }
}

.md-dialog-container {
    /*top:0px !important;
    height: 700px !important;*/
}

.blueWidget div {
    background-color: blue;
    height: 300px;
    margin: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
}

    .blueWidget div table {
        border: none !important;
        padding: 5px;
    }

.blueWidgetheaderRow {
    background: red;
}

.blueWidget div table tr td {
    border: solid 1px #4b4bf1;
    border-left: none;
    border-right: none;
}

.dashboardWidget {
    max-height: 300px;
    overflow-x: auto;
    overflow-y: auto;
    overflow-style: auto;
}

    .dashboardWidget table {
        border: none !important;
        border-color: #90CAF9 !important;
    }

        .dashboardWidget table > tbody > tr > td, th {
            /* border-color: #90CAF9 !important;*/
            border: none;
            /*  border-bottom: solid 1px;*/
            -webkit-marquee: auto medium infinite scroll normal;
            overflow-x: -webkit-marquee;
        }

        .dashboardWidget table > tbody > tr {
            background-color: #fff;
            border: solid 1px #90CAF9;
        }

            .dashboardWidget table > tbody > tr:nth-child(odd) {
                background-color: #E3F2FD;
                border: solid 1px #90CAF9;
            }

.dashboard_panel_footer {
    text-align: right;
    padding-right: 30px;
    font-weight: bold;
}

.dashboard-widget1 {
    border: solid 1px #0073ab !important;
}

.dashboard-widget1-heading {
    background-color: #0073ab !important;
    color: #fff;
}

.dashboard-widget2 {
    border: solid 1px #83b9d4 !important;
}

.dashboard-widget2-heading {
    background-color: #83b9d4 !important;
    color: #fff;
}

.dashboard-widget3 {
    border: solid 1px #F44336 !important;
}

.dashboard-widget3-heading {
    background-color: #F44336 !important;
    color: #fff;
}

.dashboard-widget4 {
    border: solid 1px #F44336 !important;
}

.dashboard-widget4-heading {
    background-color: #F44336 !important;
    color: #fff;
}

.alert_circle {
    background: #00BCD4;
    padding: 9px;
    border-radius: 50%;
    color: #fff;
}

.orangeWidget div {
    background-color: orange;
    height: 300px;
    margin: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.recordNav {
    /*background: #e4e4e4; 
    padding: 8px;
    border-radius: 5px;*/
}

    .recordNav div {
        cursor: pointer;
    }

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 50%;
}

    .btn-circle.btn-lg {
        width: 50px;
        height: 50px;
        padding: 10px 16px;
        font-size: 18px;
        line-height: 1.33;
        border-radius: 25px;
    }

    .btn-circle.btn-xl {
        width: 70px;
        height: 70px;
        padding: 10px 16px;
        font-size: 24px;
        line-height: 1.33;
        border-radius: 35px;
    }

.round {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: #222;
    color: #FFF;
    text-align: center;
}

    .round.hollow {
        display: inline-block;
        height: 30px;
        width: 30px;
        line-height: 30px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        background-color: #FFF;
        color: #222;
        text-align: center;
        -webkit-box-shadow: 0px 0px 0px 3px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 0px 3px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 0px 3px rgba(0,0,0,0.75);
    }

    .round.round-sm {
        height: 20px;
        width: 20px;
        line-height: 20px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        font-size: 0.7em;
    }

    .round.round-lg {
        height: 40px;
        width: 40px;
        line-height: 40px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        font-size: 1.5em;
    }

    .round.blue {
        background-color: #3EA6CE;
    }

    .round.orange {
        background-color: #FF6701;
    }

    .round.green {
        background-color: #42A129;
    }

    .round.hollow.blue {
        color: #3EA6CE;
        background-color: #FFF;
        -webkit-box-shadow: 0px 0px 0px 3px #3EA6CE;
        -moz-box-shadow: 0px 0px 0px 3px #3EA6CE;
        box-shadow: 0px 0px 0px 3px #3EA6CE;
    }

    .round.hollow.orange {
        color: #FF6701;
        background-color: #FFF;
        -webkit-box-shadow: 0px 0px 0px 3px #FF6701;
        -moz-box-shadow: 0px 0px 0px 3px #FF6701;
        box-shadow: 0px 0px 0px 3px #FF6701;
    }

    .round.hollow.green {
        color: #42A129;
        background-color: #FFF;
        -webkit-box-shadow: 0px 0px 0px 3px #42A129;
        -moz-box-shadow: 0px 0px 0px 3px #42A129;
        box-shadow: 0px 0px 0px 3px #42A129;
    }

.overflow-td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.primaryBox {
    background: #03c7e0;
    color: #fff;
    padding: 10px;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.hpadding10 {
    padding-right: 10px;
    padding-left: 10px;
}

.loginBox {
    margin-top: 100px;
    text-align: center;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0px 0 3px 0px;
}

.arrow {
    border: solid #0b8df5;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.closedSite {
    background: #01d4c0;
    color: #fff;
}

.paymentClosedSite {
    background: #01d4c0;
    color: #fff;
}

.table {
    font-size: 12px !important;
}

.col-1 {
    background-color: #f39c12;
    text-align: center;
    color: #ffff;
}

.col-2 {
    background-color: #3498db;
    text-align: center;
    color: #ffff;
}

.col-3 {
    background-color: #394263;
    text-align: center;
    color: #ffff;
}

.col-4 {
    background-color: #dddddd;
    text-align: center;
    color: #ffff;
}

.tblFooter {
    background: rgb(215 215 215);
}

    .tblFooter td {
        font-weight: bold;
    }

.rac-success {
    background-color: green;
    color: #fff;
}

.dailyTranBox {
    border: solid 1px #e4e4e4;
}

    .dailyTranBox div {
        height: 400px;
        overflow-y: scroll;
    }

.dailyTranBoxLeft {
    /*border-right: solid 2px #00bcd4;*/
}

.dailyTranBoxRight {
}

.sticky_bottom {
    background: #f1f1f1;
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    border-top: solid 1px #b5b4b4;
}

.leftnav_separator {
    margin: 2px 0px 2px 0px;
}

.total_td {
    text-align: right;
    background: #ddd;
    font-weight: bold;
    /*font-size: 14px;*/
}

.stock-register .total_td {
    text-align: center;
    background: #ddd;
    font-weight: bold;
    font-size: 14px;
}

.stock-register .sub-total {
    background: #b9e8ff;
    border: solid 1px #a6d9f3;
}

.sub-total {
    font-weight: 600;
}

.page-heading {
    padding: 4px 8px 4px;
    /* border-left: 10px solid #1bbae1; */
    background: #034c4b;
    font-size: 14px;
    border-radius: 5px;
    /* font-weight: bold; */
    background: linear-gradient(#078cc9, #078cc9, #078cc9);
    /* border: solid 1px; */
    color: #fff;
    margin-bottom: 18px;
}

.IssBlock {
    background-color: #fff2df;
    padding: 5px;
    text-align: center;
    color: #0e0e0e;
    min-height: 27px;
}

.recBlock {
    background-color: #b9e9ff;
    padding: 5px;
    text-align: center;
    color: #000;
    min-height: 27px;
}

.total_right_col {
    color: #000;
    font-weight: bold;
    text-align: right;
    border: none;
}

.addItemBox {
    background: #e9e9e9;
    padding: 4px 0;
    border: solid 1px #e9e9e9;
    border-bottom: none;
}

.addWithTable {
    border: solid 0px #7f8f96;
}

.total {
    font-weight: bold;
}

.deleted {
    color: red;
}

.triangle-right {
    height: 0;
    /* border-top: 25px solid transparent; */
    border-left: 40px solid #00BCD4;
    border-bottom: 25px solid transparent;
}

.page-header-block {
    margin-top: 19px !important;
    /*border-bottom: solid 2px #00bcd4;*/
    color: #fff;
}

.circle-nav {
    width: 36px;
    height: 36px;
    border: white 2px solid;
    text-align: center;
    line-height: 36px;
    margin-top: 28px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    background: #039be5;
    cursor: pointer;
    font-size: 1.2em;
}

.triangle-left {
    width: 40px;
    /* background: rebeccapurple; */
    float: left;
    /* padding: 2px; */
    height: 0;
    /* border-top: 25px solid transparent; */
    border-top: 25px solid transparent;
    border-right: 40px solid #00BCD4;
}

.page-header-text {
    /* display: inline-block; */
    /* width: 90%; */
    color: #11171e;
    font-size: 13px;
    /* background: antiquewhite; */
    /*  padding: 2px;*/
    margin-left: 5px;
    font-weight: 600;
}

/*.center-col {
    width: 100%;
    height: calc(100vh - 34px);
    text-align: center;
    vertical-align: middle;
    color: white;

    @media (max-width:400px ) {
        padding:100px 0px;
    }
}

.login-form {
    width: 100%;
    margin: 0 auto;
    color: #353535;
}

.login-left {
    background: url("../../img/login-bg.jpg") no-repeat;
    background-size: cover;
    height: 100%;
    display: table;
}

    .login-left .login-brand {
        position: absolute;
        top: 25px;
        left: 25px;
    }

    .login-left .bottom-line {
        position: absolute;
        left: 0px;
        bottom: 25px;
        width: 100%;
    }

        .login-left .bottom-line p {
            font-style: normal;
            font-size: 13px;
        }

    .login-left h2 {
        text-transform: uppercase;
        font-weight: 500;
        padding: 75px 0px;
        color: rgba(255, 255, 255, 0.9);
    }

    .login-left p {
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 18px;
        font-style: italic;
        font-weight: 300;
    }

.login-right {
    background: #fff;
}

    .login-right .register-section {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .login-right h2 {
        font-weight: 400;
    }

    .login-right p {
        margin-bottom: 55px;
        font-size: 16px;
    }

    .login-right .login-form {
        clear: both;
        width: 90%;
        max-width: 540px;
        margin: 0 auto;
        text-align: left;
    }

    .login-right .form-control {
        height: 55px;
        border-color: #e4e4e4;
        box-shadow: none;
        margin-bottom: 25px;
    }

    .login-right label {
        font-weight: 300;
        font-size: 13px;
        margin-left: 2px;
    }

    .login-right .social-login {
        margin: 40px 0px;
    }

        .login-right .social-login p {
            border-bottom: #e6e6e6 solid 1px;
            padding-bottom: 15px;
            margin-bottom: 30px !important;
        }

        .login-right .social-login h4 a {
            margin-bottom: 15px;
            display: inline-block;
        }

*/
.settingsDiv {
    display: flex;
    height: calc(100vh - 50px);
}

.settingsList {
    list-style: none;
}


@media (max-width: 522px) {
    .settingsDiv {
        display: block;
    }
}

.settingsLeftCol {
    background: #ebebeb;
    /* height: 100%; */
    border-right: solid 1px #d8d8d8;
    padding-top: 10px;
    margin-top: -4px;
    width: 20%;
}

.settingsRightCol {
    background: #fff;
    /* height: 100%; */
}

.settingsLeftCol .nav li.active a {
    /*  color: rgb(12 169 245);*/
    color: rgb(12 169 245);
    /* font-weight: bold; */
    background: none;
    background: #039be5;
    /* font-weight: bold; */
    color: #ffffff;
    /*    border-radius: 3px;*/
}

.settingsLeftCol .nav li > a {
    margin: 0px 0 0;
    color: #393939;
    /* font-weight: bold; */
    padding: 6px;
    background: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .settingsLeftCol .nav li > a span {
        padding-left: 5px;
    }

.table {
    font-weight: normal;
}

md-toolbar.md-default-theme:not(.md-menu-toolbar), md-toolbar:not(.md-menu-toolbar) {
    background-color: #039be5;
    color: rgba(255,255,255,0.87);
}

.headingCol {
    background-color: #ececec;
    font-weight: bold;
    vertical-align: inherit !important;
}

.no-border {
    border: none;
}

    .no-border td {
        border: none !important;
    }

#boxshadow {
    position: relative;
    box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.56);
    padding: 10px;
    background: white;
    margin-top: 100px;
}

    #boxshadow img {
        width: 100%;
        border: 1px solid #8a4419;
        border-style: inset;
    }

    #boxshadow::after {
        content: '';
        position: absolute;
        z-index: -1; /* hide shadow behind image */
        box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
        width: 70%;
        left: 15%; /* one half of the remaining 30% */
        height: 100px;
        bottom: 0;
    }

.toolbar-company {
    background: #039be5;
    border: none;
    color: #fff;
    font-size: 16px;
}

#userList .activeUser {
    color: #000000;
}

#userList .in-activeUser {
    color: #e74c3c;
}

#userList .actions {
    cursor: pointer;
}

.block-header {
    background: #ceeefd;
    border: solid 1px #acdbf1;
    line-height: 31px;
    border-radius: 3px;
    margin-bottom: 15px;
    color: #212121;
    cursor: pointer;
}

    .block-header i {
        vertical-align: middle;
        font-size: 22px;
    }

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.panel-title a {
    display: block;
    position: relative;
}

    .panel-title a:after {
        position: absolute;
        top: 0px;
        right: 5px;
        content: '\f077';
        font-family: 'FontAwesome';
    }

    .panel-title a.collapsed:after {
        position: absolute;
        top: 0px;
        right: 5px;
        content: '\f078';
        font-family: 'FontAwesome';
    }

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
 
*******************************/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 420px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -420px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -420px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom-color: #d5d5d5;
    background-color: #e7e7e7;
}

.modal-open {
    padding: 0 !important;
    overflow-y: auto;
}


.cancelled {
    color: red;
}

.settled {
    color: #12bb12;
}

.totalRow {
    background-color: #a0e0ff;
}

    .totalRow td {
        text-align: right;
        font-weight: bold;
    }

input[type="radio"] {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    transform: scale(1.3);
}

input, select {
    /*text-transform: uppercase;*/
}

.nodatafound {
    text-align: center;
    font-size: 13px;
}

.number_td {
    text-align: right;
}

.text-white {
    color: #fff;
}

.sizeSeletBox {
    height: 27px;
    /* padding: 0px; */
    border: none;
    margin: 0px;
    border-radius: 0px;
}
/* loader css */
#circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 5px solid #505050;
    border-top: 5px solid #09f;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.normalfont {
    font-weight: normal;
}

.taxes_box {
    padding-top: 8px;
    padding-bottom: 8px;
    background: #E1F5FE;
    border: solid 1px #a7d7ec;
    border-right: 0px;
    border-top: none;
}

.clickable {
    color: #039be5;
}

    .clickable:hover {
        font-style: italic;
        text-decoration: underline;
    }

.btn-group {
    cursor: pointer;
}

.issueItem_inventory_box {
    line-height: 33px;
    background: #ecf9ff;
    border: solid 1px #9ccfe6;
}

/* make the TH elements pretty */
.table-fixed thead {
    width: 100%;
    background: #0073ab;
    color: #fff;
}

    .table-fixed thead tr th {
        font-size: 12px;
        font-weight: bold;
        padding: 7px;
    }

        .table-fixed thead tr th:nth-child(1) {
            width: 200px;
        }

        .table-fixed thead tr th:not(:first-child) {
            width: 108px;
            text-align: center;
        }

.table-fixed tbody {
    height: 200px;
    overflow-y: auto;
    width: 100%;
}

    .table-fixed tbody tr td:nth-child(1) {
        width: 200px;
        border: none;
    }

.table-fixed tr {
    border-bottom: solid 1px #9fe0ff !important;
    border-right: solid 1px #39b0ea !important;
}

.table-fixed tbody tr:nth-child(odd) {
    background-color: #E3F2FD;
}

.table-fixed tbody tr td:not(:first-child) {
    width: 108px;
    border: none;
    text-align: center;
    border: none;
    font-weight: bold;
}

.table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
    display: block;
}

    .table-fixed tbody td, .table-fixed thead > tr > th {
        border-bottom-width: 0;
        padding: 5px !important;
    }
/* ----Fixed header table for fixed columns*/

/* make the TH elements pretty */
.table-sticky thead {
    width: 100%;
    background: #0073ab;
    color: #fff;
}

    .table-sticky thead tr th {
        font-size: 12px;
        font-weight: bold;
        padding: 7px;
    }





.table-sticky tbody {
    height: 200px;
    overflow-y: auto;
    width: 100%;
}



.table-sticky tr {
    border-bottom: solid 1px #8acaf9;
}

.table-sticky tbody tr:nth-child(odd) {
    background-color: #E3F2FD;
}

.table-sticky thead, .table-sticky tbody, .table-sticky tr, .table-sticky td, .table-sticky th {
    display: block;
}

    .table-sticky tbody td, .table-sticky thead > tr > th {
        border: none !important;
        padding: 5px !important;
    }

.no-border {
    border: none !important;
}

.printbutton {
    background-color: #FF5722 !important;
}


.box-title a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff;
}

    .box-title a:after {
        position: absolute;
        top: 0px;
        right: 10px;
        content: '\f077';
        font-family: 'FontAwesome';
    }

    .box-title a.collapsed:after {
        /*position: absolute;*/
        top: 0px;
        right: 5px;
        content: '\f078';
        font-family: 'FontAwesome';
    }

.bg-primary {
    background-color: #00BCD4;
}

.list-li {
    padding: 5px;
    font-weight: 100;
}

.dashboard-box-shaddow {
    -webkit-box-shadow: 1px 1px 1px #e4e4e4;
    box-shadow: 1px 1px 1px #e4e4e4;
    /*border: solid 1px #e4e4e4;*/
    border-radius: 4px;
    box-shadow: 0px 2px 2px #545454;
    max-height: 300px;
    font-size: 12px;
    background-image: linear-gradient(to right top, #b7c1d0, #006eb3, #047dd6, #84a9e0, #549dc4);
}

dashboard-box-shaddow a {
    color: #fff;
}

.dashboard-box-shaddow li {
    border: none;
    background: transparent;
    color: #fff;
}

.dashboard-box-shaddow div:nth-child(2) {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 200px;
    margin-bottom: 5px;
}

.dashboard-box-shaddow p {
    margin-top: 10px;
}

.groupitem td:not(:first-child) {
    font-size: 11px !important;
    color: #1e0df9;
    background: #fff5d5 !important;
}

.groupitem input {
    font-size: 11px !important;
    color: #1e0df9;
    background: #fff5d5 !important;
}

.docsBox {
    padding: 30px;
}

    .docsBox div img {
        background: #fff;
        padding: 30px;
        border: solid 2px black;
        border-radius: 5px;
        height: 100px !important;
        width: 100px !important;
        opacity: 1;
        display: block;
        transition: .5s ease;
        backface-visibility: hidden;
    }

.controlbox {
    transition: .5s ease;
    /* opacity: 0.6; */
    position: absolute;
    top: 87%;
    left: 37%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 98px;
    background: #000000a1;
    height: 24px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .controlbox:hover {
    }

.loadedImage {
    padding: 0px !important;
}
/*.imageContainer:hover .image {
  opacity: 0.3;
}

.imageContainer:hover .middle {
  opacity: 1;
}*/

.notification-box {
    position: fixed;
    top: 5px;
    right: 15px;
    /*  height: 99vh;*/
    width: 300px;
    /*  background: #ffffff;*/
    /* border: solid 1px #5a5a5a; */
    border-radius: 3px;
    /*  display: none;*/
}

input:focus {
    background-color: yellow;
}

button:focus {
    background-color: yellow;
}

.round-box {
    background: #e8e8e8;
    padding: 10px;
    border-radius: 5px;
    margin-top: 30px;
    border: solid 1px #c1c1c1;
}

.searchableselect button {
    border: solid 1px #039be5;
    background: #fff;
    color: #000;
}

    .searchableselect button:disabled {
        border: solid 1px #039be5;
        background: #fff;
        color: #000;
    }


.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.toolbar-list li {
    background: #0e9be0;
    display: inline;
    padding: 0px 5px 0px 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.toolbar-list .seaparator {
    padding: 0px 0px 0px 0px;
}

    .toolbar-list .seaparator span {
        background: white;
        width: 2px;
        height: 13px;
        display: inline-flex;
    }

.table-list tr:nth-child(even) {
    background-color: #f9f9f9;
}

.disable-ctl {
    color: #cccccc !important;
    cursor: default;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.p-0 {
    padding: 0;
}

.pl-0 {
    padding: 0;
}

.pr-0 {
    padding: 0;
}

.pl-1 {
    padding-left: 5px;
}

.dashoard
.table td {
    font-size: 11px !important;
    padding: 5px !important;
}

.dbbox {
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;*/
    box-shadow: 0px 0px 8px 1px rgba(156, 156, 156, 1);
}

.required {
    color: red;
}

.page-content {
    min-height: calc(100vh - 128px);
    margin-left: 0px;
    margin-right: 0px;
}

input[type="radio"], input[type="checkbox"] {
    margin: 0px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

.box1 {
    background-color: rgb(255 245 213);
    border: solid 1px #ebe1c0;
}

.toast-top-center {
    top: 88px !important;
    left: 50px;
    margin: auto;
}

hr {
    border-top-color: #b9b9b9
}

.btnBlock {
    /*  position: absolute;*/
    padding: 11px;
    background: #e0e0e0;
    border-top: solid 1px #c6c6c6;
    bottom: 0px;
    width: 100%;
    padding-left: 22px;
    cursor: pointer;
}

@media (max-width: 522px) {
    .btnBlock {
        position: relative;
    }
}

.d-flex {
    display: flex;
}

.ml-0 {
    margin-left: 0px;
}

.ml-1 {
    margin-left: 5px;
}

.mr-1 {
    margin-right: 5px;
}

.mt-1 {
    margin-top: 5px;
}

.mb-1 {
    margin-bottom: 5px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
    }
}

.flex-item {
    flex: 1; /* Distribute space equally */
}

@media (max-width: 768px) {
    .flex-item {
        flex: 0 0 100%; /* Full width on mobile */
        max-width: 100% !important;
    }
}

.flex-item-left {
    flex: 50%;
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-item-right {
    flex: 50%;
}

.flex-fill {
    flex: 1 1 auto !important;
}
/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
    .flex-item-right, .flex-item-left {
        flex: 100%;
    }
}

md-dialog-actions {
    margin-top: 30px;
    border-top: solid 1px #c5c5c5;
    background: #ebebeb;
}

.form-group {
    margin-bottom: 0px;
}

.callout-heading {
    border-left: solid 4px #4CAF50;
    padding-left: 8px;
}

    .callout-heading h4 {
        font-weight: bold;
    }

.ag-grid-header {
    font-size: 13px;
}

.ag-grid-text-center, .ag-header-group-cell {
    text-align: center;
    justify-content: center;
}

:where(.ag-header-group-cell) .ag-header-cell-comp-wrapper {
    display: flex;
    justify-content: center;
}

.dashboard {
}

    .dashboard .panel-heading {
        /*background: linear-gradient(0deg, rgba(3, 155, 229, 0.82) 0%, rgba(3, 155, 229, 1) 100%);
        border-bottom: solid 2px #ffffff;*/
        border-bottom: none;
        color: #000;
    }

    .dashboard .panel {
        border: none;
    }

    .dashboard .btn-group .btn {
        background: #007cb9;
        color: #fff;
        border-color: #3b9ecf;
    }

    .dashboard .panel-heading .subheading {
        border-bottom: solid 2px;
        border-bottom-color: #ff6956;
        padding-bottom: 3px;
    }
.ceo-dashboard-widget {
    background: #dddddd;
}

.operations-dashboard-widget .operations-dashboard-widget-title {
    font-size: 13px;
    color: #555;
    font-weight: 600;
    letter-spacing: .02em;
    text-align: left;
}
.operations-dashboard-widget .operations-dashboard-widget-value {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.1;
    text-align: left;
    padding-left: 2px;
}
.operations-dashboard-widget .operations-dashboard-widget-hint {
    font-size: 11px;
    margin-top: 3px;
    line-height: 1.3;
    text-align: left;
}
.operations-dashboard-widget .operations-dashboard-widget-head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.operations-dashboard-widget .operations-dashboard-widget-meta {
    flex: 1;
    min-width: 0;
}
.operations-dashboard-widget {
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}
.operations-dashboard-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,.10);
}
    .operations-dashboard-widget .operations-dashboard-widget-icon {
        width: 40px;
        height: 40px;
        margin: 0;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        background: rgb(217 222 255 / 75%);
        color: #2eb41b;
    }
.operations-dashboard-widget.ops-widget-active {
    border-top: 3px solid #39a3f4;
    background: linear-gradient(180deg,#f7fcff 0%,#eef8ff 100%);
}
.operations-dashboard-widget.ops-widget-completed {
    border-top: 3px solid #5cb85c;
    background: linear-gradient(180deg,#f8fdf8 0%,#eef9ef 100%);
}
.operations-dashboard-widget.ops-widget-delayed {
    border-top: 3px solid #d9534f;
    background: linear-gradient(180deg,#fff9f9 0%,#fff1f1 100%);
}
.operations-dashboard-widget.ops-widget-idle {
    border-top: 3px solid #f0ad4e;
    background: linear-gradient(180deg,#fffdf8 0%,#fff7ea 100%);
}
.operations-dashboard-widget.ops-widget-productivity {
    border-top: 3px solid #6f42c1;
    background: linear-gradient(180deg,#fbfaff 0%,#f2efff 100%);
}
.operations-dashboard-widget.ops-widget-inventory {
    border-top: 3px solid #17a2b8;
    background: linear-gradient(180deg,#f8fdff 0%,#eef9fc 100%);
}

.template-thumbnail {
    position: relative;
    overflow: hidden;
}

    .template-thumbnail:after {
        position: absolute;
        background: #15a305;
        content: 'Default';
        width: 126px;
        height: 63px;
        bottom: -20px;
        left: -36px;
        transform: rotate(36deg);
        color: white;
        display: flex;
        align-content: center;
        align-items: flex-start;
        justify-content: center;
        padding-top: 5px;
    }

.filter {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .filter {
        display: block;
    }
}

@media screen and (-webkit-min-device-pixel-ration:0) {
    input[type ="date"].form-control {
        line-height: initial !important;
    }
}

.form-control {
    line-height: initial !important;
}

.sticky-buttons {
    position: sticky;
    bottom: 0;
    background: #f3f3f3;
    padding: 10px 0;
    z-index: 9999;
    border-top: 1px solid #ddd;
}
/*LOADING CSS*/
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
}

.loader-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.spinner {
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-color-1 {
    background-color: #eaeaea
}

.dashed-separator {
    margin-bottom: 0px;
    margin-top: 0px;
    border: dashed 1px #b9b9b9;
    border-top: 0px;
}
.tile{
    cursor:pointer !important;
}

.selected-tile {
    background-color: #33cf00 !important;
}

    .selected-tile .metric-value {
        color: #ffffff !important;
    }

    .selected-tile .metric-label {
        color: #ffffff !important;
    }
.billlist-actions {
    display: flex;
    justify-content: space-evenly;
}