/*
 * 
 *  ---------------------------------------
 *  ---------- TABLE OF CONTENTS ----------
 *  ---------------------------------------
 *  
 *  1.  VARIABLES
 *  2.  RESET STYLES
 *  3.  HEADER PANEL
 *          3.1     HEADER LEFT
 *          3.2     HEADER RIGHT
 *  4.  LEFT PANEL
 *          4.1     NAVIGATION STYLES
 *          4.2     INFO SUMMARY
 *  5.  MAIN PANEL
 *          5.1     DASHBOARD
 *          5.2.    MAIN PANEL MENU
 *  6.  FORM STYLES
 *          6.1     FORM WIZARD STYLES
 *  7.  UI ELEMENTS
 *  8.  EMAIL
 *  9.  TABLES
 *  10. PAGES
 *          10.1    CALENDAR
 *          10.2    MEDIA MANAGER
 *          10.3    PROFILE
 *          10.4    BLOG LIST
 *          10.5    BLOG SINGLE
 *          10.6    PEOPLE DIRECTORY
 *          10.7    NOT FOUND PAGE
 *          10.8    SEARCH RESULTS
 *          10.9    INVOICE
 *          10.10   TIMELINE
 *          10.11   LOCKED SCREEN
 *          10.12   SIGN IN
 *          10.13   SIGN UP
 *  11. LEFT PANEL COLLAPSED
 *  12. RIGHT PANEL STYLES
 *  13. HORIZONTAL MENU
 *  14. FIXED WIDTH
 *  15. MODALS
 *  16. BUG TRACKER
 *  17. ADDITIONAL STYLES
 *          17.1    DROPDOWN
 *          17.2    ICON
 *          17.3    TIME PICKER
 *          17.4    COLOR PICKER
 *          17.5    STICKY HEADER
 *          17.6    CUSTOM STYLES
 *          17.7    DROPDOWN SELECT
 *          17.8    CONFIRMBOX
 *          17.9    DATE PICKER
 *          17.10   NAV
 *  18. MEDIA QUERIES
 *  
 */





/*********** 1. VARIABLES ************/
/*************************************/

:root{
    --main-color:#546271;
    --main-color-active:#222c38;
    --light-grey:#fafafa;
    --medium-grey:#546271;
    --dark-grey:#222c38;
    --text-menu:#b9bbbe;
    --text-sub-menu:#546271;
    --link:#488cc3;
    --link-hover:#4479a5;
    --item-hover:#deedf9;
    --input-focus:#47a1ea;
}


/********** 2. RESET STYLES **********/
/*************************************/

.btn-group .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
}

html,body,body>section{height: 100%;}

body {
    background: var(--main-color);
    font-family: 'Lato', 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, sans-serif !important;
    line-height: 21px;
    color: #343f4b;
}

body.notfound,
body.signin {
    background: #e4e7ea;
}

input,select,textarea {
    font-family: 'Lato', 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, sans-serif !important;
    color: #636e7b;
}

a { color: var(--link); }
a:hover, a:focus, a:active { color: var(--link-hover); outline: none; }

h1,h2,h3,h4,h5 {
    font-family: 'Lato', 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, sans-serif;
}

strong {
    font-family: 'Lato';
    font-weight: 700;
}

/* preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f6f6f6; 
    color: #afb0b1;
    z-index: 10000; 
}

#status {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%; 
    top: 50%;
    margin: -15px 0 0 -15px;
    font-size: 32px;
}

a.no-decoration:hover,
a.no-decoration:active,
a.no-decoration:focus{
    text-decoration: none;
}


/********** 3. HEADER PANEL **********/
/*************************************/


.headerbar {
    background: var(--light-grey);
    color: #FFF;
    border-bottom: 1px solid #ddd;
}

.headerbar::after {
    clear: both;
    display: block;
    content: '';
}


/***** 3.1 HEADER LEFT *****/

.menutoggle {
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    color: var(--text-sub-menu);
    text-align: center;
}

.menutoggle:hover,
.menutoggle:active,
.menutoggle:focus {
    color: var(--link-hover);
}

.menutoggle .fa,
.menutoggle .glyphicon {
    margin: 14px 0 0 15px;
}

.header-left {
    float: left;
}



/***** 3.2 HEADER RIGHT *****/

.header-right {
    float: right;
}

.header-right .nav > li {
    margin-left: 20px;
}

.header-right .nav > li > a {
    border-radius: 20px;
}


.logged_user {
    color: var(--medium-grey);
    line-height: 30px;
    display: flex !important;
    align-items: baseline;
    gap: 5px;
    border: 1px var(--medium-grey) solid;
    padding: 0 10px;
    margin: 5px 0;
    background-color: white;
    text-transform: uppercase;
    font-size: 11px;
}

.logged_user.ROLE_CLIENT {
    color: var(--main-color);
    border-color: var(--main-color);
}

.logged_user.ROLE_CT {
    color: #47a1ea;
    border-color: #47a1ea;
}

.logged_user.ROLE_ADMIN {
    color: #e50158;
    border-color: #e50158;
}



/********** 4. LEFT PANEL **********/
/***********************************/

.leftpanel {
    width: 90px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.sticky-leftpanel {
    position: fixed;
    height: 100%;
    overflow-y: auto;
}

.logopanel {
    padding: 8px 10px;
    background: #FFF;
    text-align: center;
    
}

.logopanel img {
    height: 50px;
    margin: 0;
}

.leftpanelinner {
    padding: 5px 15px;
}


/***** 4.1 NAVIGATION STYLES *****/


.nav-bracket {
    margin-bottom: 30px;
}

.nav-bracket > li > a {
    color: var(--text-menu);
    padding: 12px;
    text-align: center;
}

.nav-bracket > li > a > span {
    display: none;
}

.nav-bracket > li > a:hover,
.nav-bracket > li > a:active,
.nav-bracket > li > a:focus {
    background: var(--main-color-active);
}

.nav-bracket > li:hover > a > span {
    color: #b9bbbe;
    position: absolute;
    background: var(--main-color-active);
    padding: 13px 20px 12px 5px;
    left: 55px;
    top: 0;
    text-align: left;
    z-index: 100;
    display: block;
    border-left: 0;
    white-space: nowrap;
    -moz-border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
}

.nav-bracket > li.active > a {
    background: transparent;
}

.nav-bracket > li.active > a:before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #FFF;
    top: 14px;
    right: -15px;
}

.nav-bracket > li.active > a:hover,
.nav-bracket > li.active > a:focus {
    background: transparent;
    color: #fff;
}

.nav-bracket > li.active > a:hover > span {
    display: none;
}

.nav-bracket li .fa,
.nav-bracket li .glyphicon {
    font-size: 20px;
    vertical-align: middle;
    text-align: center;
}


/***** 4.2 INFO SUMMARY *****/


.infosummary {
    margin: 30px 0;
}

.infosummary ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.infosummary li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.infosummary li:after {
    clear: both;
    display: block;
    content: '';
}

.infosummary .datainfo {
    float: left;
    line-height: normal;
}

.infosummary .datainfo h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
}

.infosummary span {
    font-size: 11px;
    line-height: normal;
    text-transform: uppercase;
    font-size: 10px;
    opacity: 0.4;
}

.infosummary .chart {
    float: right;
    margin-top: 5px;
    opacity: 0.6;
}



/********** 5. MAIN PANEL **********/
/***********************************/
.mainpanel {
    margin-left: 90px;
    background: #FFF;
    min-height: 100%;
}

.pageheader {
    padding: 12px 10px 13px;
    display: inline-block;
}

.pageheader ul.breadcrumb {
    background: inherit;
}

.pageheader ul.breadcrumb li.active {
    color: var(--text-sub-menu);
}

.pageheader ul.breadcrumb li.active a {
    color: var(--text-sub-menu);
}

.pageheader ul.breadcrumb .breadcrumb-list-menu {
    display: inherit;
}

.pageheader ul.breadcrumb .breadcrumb-list-menu a {
    display: none;
}

.pageheader ul.breadcrumb .breadcrumb-list-menu a.active {
    display: inherit;
}

.pageheader ul.breadcrumb .breadcrumb-list-menu .dropdown-toggle-caret {
    color: var(--link);
    display: inherit;
    padding: 0px 3px;
    cursor: pointer;
    border-radius: 3px;
    margin: 0 3px;
}

.pageheader ul.breadcrumb li.active .breadcrumb-list-menu .dropdown-toggle-caret {
    color: var(--text-sub-menu);
}

.pageheader ul.breadcrumb .breadcrumb-list-menu .dropdown-toggle-caret:active,
.pageheader ul.breadcrumb li.active .breadcrumb-list-menu .dropdown-toggle-caret:active {
    background: var(--link-hover);
    color: #FFF;
}

.breadcrumb-menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: normal;
    padding: 5px 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.breadcrumb-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-menu ul > li > a {
    display: block;
    padding: 2px 15px;
    font-size: 12px;
    color: inherit;
}

.breadcrumb-menu ul > li > a.active {
    background: #f5f5f5;
    text-decoration: none;
}

.breadcrumb-menu ul > li > a:hover {
    background: var(--item-hover)!important;
    text-decoration: none;
}

.pageheader .nav > li > a {
    color: var(--text-sub-menu);
}

.pageheader .nav > li > a:hover,
.pageheader .nav > li.active > a {
    background: var(--medium-grey);
    color: #FFF;
}

.contentpanel {
    padding: 20px;
    position: relative;
}

.contentpanel::after {
    clear: both;
    display: block;
    content: '';
}

.contentpanel h1.title {
    text-align: center;
    margin: 15px 0 40px;
    font-size: 22px;
}

.contentpanel h1.title small {
    font-size: 60%;
}

.contentpanel h1.title i.fa {
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 4px solid var(--main-color);
    background: var(--main-color);
    font-size: 40px;
    margin-bottom: 10px;
    padding: 13px 15px;
    color: #FFF;
    width: fit-content;
}

.contentpanel h1.title i.fa-folder,
.contentpanel h1.title i.fa-folder-o {
    padding: 13px 16px;
}
.contentpanel h1.title i.fa-id-card-o {
    padding: 13px 11px;
}
.contentpanel h1.title i.fa-pencil-square-o {
    padding: 15px 10px 11px 16px;
}
.contentpanel h1.title i.fa-check-square-o {
    padding: 15px 12px 11px 17px;
}
.contentpanel h1.title i.fa-check {
    padding: 13px;
}
.contentpanel h1.title i.fa-cloud-upload {
    padding: 13px 12px;
}
.contentpanel h1.title i.fa-line-chart {
    padding: 13px 11px;
}
.contentpanel h1.title i.fa-picture-o {
    padding: 13px 12px;
}
.contentpanel h1.title i.fa-tachometer {
    padding: 13px 13px;
}
.contentpanel h1.title i.fa-mobile {
    padding: 13px 24px;
}

form .form-group:last-child {
    margin-bottom: 0;
}

.row-pad-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-pad-5 [class*="col-lg"],
.row-pad-5 [class*="col-md"],
.row-pad-5 [class*="col-sm"] {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Lato';
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: normal;
    background: var(--main-color);
    padding: 7px 11px;
    display: inline-block;
    position: relative;
    top: -12px;
}

.subtitle .fa {
    margin-right: 5px;
}

p {
    margin-bottom: 10px;
}

.panel {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    box-shadow: none;
}

.panel-highlight {
    border: 2px solid #546271;
}

.panel-highlight>.panel-heading {
    color: #fff;
    background-color: #546271;
    border-color: #546271;
}

.panel .panel-heading {
    border-radius: 0px;
}

.panel .panel-body {
    overflow: auto;
}

.panel h2 {
    margin: 0;
    font-size: 16px;
}

.panel h2 small {
    color: inherit;
}

.alert.fixed-top {
    border-width: 0;
    border-bottom-width: 1px;
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.alert {
    max-height: 200px;
    overflow: auto;
    border-radius: 0;
    border: 0;
}

.wrap-alert-info .alert {
    max-height: 500px;
    padding-top: 22px;
    padding-bottom: 23px;
}



/***** 5.1. DASHBOARD ******/

.panel-stat {
    background: none;
}

.panel-stat .panel-heading {
    padding: 15px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.panel-stat .stat {
    color: #fff;
    max-width: 250px;
}

.panel-stat .stat img {
    text-align: center;
}

.panel-stat i {
    font-size: 30px;
    border: 1px solid #fff;
    opacity: 0.5;
    flex: 0 0 50px;
}

.panel-stat .stat-label {
    text-transform: uppercase;
    font-size: 11px;
    opacity: 0.75;
    display: block;
    line-height: normal;
    margin-bottom: 2px;
}

.row-panel {
    display: flex;
    align-items: baseline;
    padding: 15px 0;
}

.panel-stat h1 {
    margin: 0;
    line-height: 36px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 38px;
    flex: 1;
    text-align: center;
}

.panel-stat h4 {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.sublabel {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.ex-donut-chart {
    text-align: center;
    height: 298px;
}

.ex-line-chart {
    height: 248px;
}

.ex-donut-chart > svg,
.ex-line-chart > svg {
    width: 100% !important;
}



/***** 5.2. MAIN PANEL MENU ******/

.contentpanel-menu {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.contentpanel-menu > ul {
    position: relative;
    padding: 0;
    margin:0;
    text-align: center;
}

.contentpanel-menu > ul > li {
    position: relative;
    display: inline-block;
}

.contentpanel-menu > ul > li > a {
    color: #8a939c;
    border-radius: 0;
    padding: 10px 15px;
    display: inline-block;
}

.contentpanel-menu > ul > li > a:hover,
.contentpanel-menu > ul > li > a:active,
.contentpanel-menu > ul > li > a:focus {
    color: var(--main-color);
    text-decoration: none;
}

.contentpanel-menu > ul > li.active > a {
    background: inherit;
    border-bottom: 2px solid var(--input-focus);
    color: var(--main-color);
}



/********** 6. FORM STYLES **********/
/************************************/

.ckbox,
.rdio {
    position: relative;
}

.ckbox input[type="checkbox"],
.rdio input[type="radio"] {
    opacity: 0;
}

.ckbox label,
.rdio label {
    padding-left: 10px;
    cursor: pointer;
    margin-bottom: 7px !important;
}

.ckbox.has-error label,
.rdio.has-error label {
    color: #a94442;
}

.ckbox label:before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    display: inline-block;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #CCC;
    background: #fff;
}

.ckbox input[type="checkbox"]:disabled + label  {
    color: #999;
}

.ckbox input[type="checkbox"]:disabled + label:before  {
    background-color: #eee;
}

.ckbox input[type="checkbox"]:checked + label::after  {
    font-family: 'FontAwesome';
    content: "\F00C";
    position: absolute;
    top: 0;
    left: 3.5px;
    display: inline-block;
    font-size: 11px;
    width: 16px;
    height: 16px;
    color: #fff;
}

.ckbox-default input[type="checkbox"]:checked + label:before {
    border-color: #CCC;
}

.ckbox-default input[type="checkbox"]:checked + label::after {
    color: #333;
}

.ckbox-primary input[type="checkbox"]:checked + label:before {
    border-color: #357EBD;
    background-color: #428BCA;
}

.ckbox-warning input[type="checkbox"]:checked + label:before {
    border-color: #EEA236;
    background-color: #F0AD4E;
}

.ckbox-success input[type="checkbox"]:checked + label:before {
    border-color: #1CAF9A;
    background-color: #1CAF9A;
}

.ckbox-danger input[type="checkbox"]:checked + label:before {
    border-color: #D43F3A;
    background-color: #D9534F;
}

.rdio label:before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    display: inline-block;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid #bbb;
    background: #fff;
}

.rdio input[type="radio"]:disabled + label  {
    color: #999;
}

.rdio input[type="radio"]:disabled + label:before  {
    background-color: #eee;
}

.rdio input[type="radio"]:checked + label::after  {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    display: inline-block;
    font-size: 11px;
    width: 10px;
    height: 10px;
    background-color: #2B7990;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.rdio-default input[type="radio"]:checked + label:before {
    border-color: #CCC;
}

.rdio-primary input[type="radio"]:checked + label:before {
    border-color: #428BCA;
}

.rdio-primary input[type="radio"]:checked + label::after {
    background-color: #18446B;
}

.rdio-warning input[type="radio"]:checked + label:before {
    border-color: #F0AD4E;
}

.rdio-warning input[type="radio"]:checked + label::after {
    background-color: #F0AD4E;
}

.rdio-success input[type="radio"]:checked + label:before {
    border-color: #1CAF9A;
}

.rdio-success input[type="radio"]:checked + label::after {
    background-color: #15695D;
}

.rdio-danger input[type="radio"]:checked + label:before {
    border-color: #D9534F;
}

.rdio-danger input[type="radio"]:checked + label::after {
    background-color: #AB3431;
}

.btn input[type=radio]
,.btn input[type=checkbox]{
    margin-top: 2px;
}
.btn.ckbox input[type="checkbox"] + label:before,
.btn.rdio input[type="radio"] + label:before {
    left: 10px;
    margin-top: -9px;
    top: 50%;
}
.btn.ckbox input[type="checkbox"]:checked + label:after {
    left: 11px;
    margin-top: -8px;
    top: 50%;
}
.btn.rdio input[type="radio"]:checked + label:after {
    left: 14px;
    margin-top: -5px;
    top: 50%;
}
.btn.rdio input[type="radio"]:disabled + label,
.btn.ckbox input[type="checkbox"]:disabled + label {
    color: inherit;
}
.btn.ckbox label, .btn.rdio label {
    margin-bottom: 0!important;
    vertical-align: top
}
.btn.rdio label input[type='text'],
.btn.ckbox label input[type='text']{
    height: 27px;
    padding: 0px 6px;
    position:absolute;
    right: 2px;
    text-align: center;
    top: 2px;
    width:50px;
}


pre {
    font-size: 12px;
    color: #C7254E;
    border: 1px solid #ddd;
    padding: 8px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #fff;
    margin-left: 90px;
}

label.error {
    color: #B94A48;
    margin-top: 2px;
}

label.error:empty {
    display: none !important;    
}


.asterisk {
    color: #D9534F;
}

div.error {
    margin-bottom: 20px;
    display: none;
    position: relative;
}

div.error label.error {
    display: block;
    padding-left: 25px;
    position: relative;
}

div.error label.error:before {
    font-family: 'Glyphicons Halflings';
    content: '\e101';
    position: absolute;
    top: -2px;
    left: 0;
    font-size: 16px;
    color: #D9534F;
    display: inline-block;
}

.bootstrap-timepicker .dropdown-menu {
    top: 40px;
}

.loader {
    position: relative;
}
.loader:before {
    content: "\f1ce";
    display: inline-block;
    top: 10px;
    left: 10px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
.loader.loader-select:before {
    position: absolute;
    z-index: 10;
}
.loader select {
    padding-left: 25px
}


/***** 6.1 FORM WIZARD STYLES *****/


.basic-wizard .nav li a {
    background: #e4e7ea;
    border-bottom: 1px solid #ccc;
    color: #4A535E;
    border-right: 1px solid #ccc;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    opacity: 0.75;
}

.basic-wizard .nav li:last-child a {
    border-right: 0;
}

.basic-wizard .nav li a:hover {
    background-color: #f7f7f7;
    opacity: 1;
}

.basic-wizard .nav li.active a,
.basic-wizard .nav li.active a:focus,
.basic-wizard .nav li.active a:active {
    background: #fcfcfc;
    border-bottom-color: #fcfcfc;
    color: #333;
    opacity: 1;
}

.basic-wizard ul li a span {
    font-family: 'Lato', sans-serif;
}

.basic-wizard .pager {
    margin: 0;
    border-top: 1px solid #ddd;
    background: #f7f7f7;
    padding: 10px;
}

.basic-wizard .pager li a {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border-color: #357EBD;
    background-color: #428BCA;
    color: #fff;
}

.basic-wizard .pager li a:hover {
    background-color: #3276B1;
    border-color: #285E8E;
}

.basic-wizard .pager li.disabled a {
    background: #eee;
    color: #999;
    border-color: #ccc;
}

.basic-wizard .progress {
    height: 12px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.basic-wizard .nav-disabled-click li a:hover,
.basic-wizard .nav-disabled-click li a:active,
.basic-wizard .nav-disabled-click li a:focus {
    background-color: #E4E7EA;
    opacity: 0.75;
    color: #4A535E;
    cursor: default;
}

.basic-wizard .nav-disabled-click li.active a:hover,
.basic-wizard .nav-disabled-click li.active a:active,
.basic-wizard .nav-disabled-click li.active a:focus {
    background: #fcfcfc;
    color: #333;
    opacity: 1;
}

.basic-wizard .tab-content {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.tab-pane::after {
    clear: both;
    display: block;
    content: '';
}




/********** 7. UI ELEMENTS **********/
/*********************************/


.identity-link {
    color: inherit;
}

.identity-link:hover {
    color: inherit;
}

.btn-demo::after {
    clear: both;
    display: block;
    content: '';
}

.btn-demo .btn {
    float: left;
    margin: 0 10px 10px 0;
}

.fonticon-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.fontawesome-list {
    list-style: none;
    padding: 0;
}

.fonticon-list li,
.fontawesome-list li {
    display: block;
    margin-bottom: 5px;
}

.fonticon-list li span,
.fontawesome-list li span {
    color: #333;
    vertical-align: middle;
    margin-right: 8px;
    min-width: 20px;
    display: inline-block;
    width: 20px;
}

.tooltip-example .btn,
.popover-example .btn {
    margin: 0 5px 5px 0;
}

.tooltipflot {
    background-color: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #fff;
    padding: 3px 10px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.jqstooltip{ 
    min-height: 25px;
    border: 0;
    min-width: 30px;
    height: auto !important;
    width: auto !important;
}

.tinystat {
    display: inline-block;
}

.tinystat .chart,
.tinystat .datainfo {
    display: inline-block;
    vertical-align: middle;
}

.tinystat .chart {
    margin-right: 5px;
}

.tinystat .text-muted {
    text-transform: uppercase;
    font-size: 10px;
}

.tinystat h4 {
    margin: 0;
    color: #333;
    font-family: 'Lato';
    line-height: normal;
    font-size: 16px;
    font-weight: 700;
}

.panel-morris .body-chart {
    height: 300px;
}

.panel-morris .body-chart > svg {
    width: 100% !important;
}

.widget-quick-status-post .nav-tabs > li > a {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.widget-quick-status-post .panel-body {
    padding: 0;
}

.widget-messaging .panel-btns .panel-edit {
    padding: 15px 17px;
    opacity: 0.5;
    font-size: 24px;
    margin-top: -18px;
    margin-right: -20px;
    position: relative;
}

.widget-messaging .panel-btns .panel-edit:hover {
    opacity: 1;
}

.widget-messaging .panel-body {
    padding: 0;
}

.widget-messaging ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-messaging ul li {
    padding: 15px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.widget-messaging ul li:hover {
    background-color: #fcfcfc;
}

.widget-messaging ul li:first-child {
    border-top: 0;
}

.widget-messaging .sender {
    font-size: 13px;
    color: #333;
    margin: 0;
    font-family: 'Lato';
    line-height: normal;
    font-weight: 700;
}

.widget-messaging ul li small {
    line-height: normal;
}

.widget-today .panel-heading,
.widget-time .panel-heading {
    height: 115px;
}

.widget-today .glyphicon,
.widget-today .fa {
    font-size: 72px;
    color: #fff;
    opacity: 1;
}

.widget-time .glyphicon,
.widget-time .fa {
    font-size: 60px;
    color: #fff;
    opacity: 1;
}
.widget-today .today,
.widget-time .today {
    line-height: normal;
    margin: 0;
    color: #333;
    font-family: 'Lato';
    font-size: 20px;
    font-weight: 700;
}

.widget-photoday .panel-body {
    padding: 0;
}

.widget-photoday .photoday img {
    width: 100%;
    display: block;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.widget-photoday .photo-details {
    padding: 15px;
}

.widget-photoday .photo-title {
    color: #333;
    font-size: 16px;
    margin: 0;
    font-family: 'Lato';
    line-height: normal;
    font-weight: 700;
}

.widget-photoday .photo-details small {
    display: block;
}

.widget-photoday .photo-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e3e3e3;
    background-color: #f7f7f7;
}

.widget-photoday .photo-meta li {
    display: table-cell;
    width: 1%;
    text-align: center;
    border-left: 1px solid #e3e3e3;
}

.widget-photoday .photo-meta li:first-child {
    border-left: 0;
}

.widget-photoday .photo-meta li a,
.widget-photoday .photo-meta li span {
    padding: 15px 10px;
    display: block;
    color: #999;
    font-size: 12px;
}

.widget-photoday .photo-meta li a:hover {
    color: #666;
    text-decoration: none;
}

.widget-bloglist .media {
    border-bottom: 1px solid #eee;
    padding: 0;
}

.widget-bloglist .media .thumbnail {
    margin-bottom: 15px;
}

.widget-weather {
    overflow: hidden;
}

.widget-weather .panel-body {
    padding: 0;
    background-color: #1D2939;
}

.widget-weather .row {
    margin: 0;
}

.widget-weather .temp,
.widget-weather .weather {
    padding: 0;
}

.widget-weather .temp {
    background-color: #e63c14;
    color: #fff;
    padding: 10px 0;
}

.widget-weather .temp h1 {
    font-size: 60px;
    font-family: 'Lato';
    font-weight: 300;
}

.widget-weather .temp h1 span {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: -10px;
}

.widget-weather .temp h5 {
    text-transform: uppercase;
}

.widget-weather .weather-icon {
    color: #666;
    font-size: 60px;
    background-color: #fff;
    display: block;
    padding: 20px 0;
}

.widget-weather .weather > div {
    width: 50%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding-top: 10px;
}

.widget-profile .panel-heading {
    position: relative;
}

.widget-profile .cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 105px;
    overflow: hidden;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.widget-profile .cover img {
    width: 100%;
    display: block;
}

.widget-profile .panel-body {
    position: relative;
    padding: 0;
}

.widget-profile-img {
    position: relative;
    margin-top: 30px;
    margin-left: 15px;
}

.widget-profile-title {
    background: #428BCA;
    margin-top: -77px;
    padding: 15px 0 15px 120px;
    color: #fff;
}

.widget-profile-title h4 {
    font-size: 18px;
    margin: 0;
    line-height: normal;
}

.widget-profile-title small {
    line-height: normal;
}

.widget-profile blockquote {
    font-size: 18px;
    border-left: 0;
    margin: 0;
    color: #555;
    padding: 15px;
}

.widget-profile-title .fa {
    margin-right: 7px;
}

.widget-profile .row {
    margin: 0;
}

.widget-profile .row > div {
    padding: 0;
}

.widget-profile .row > div > span {
    display: block;
    border-right: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    padding: 15px 10px;
    text-transform: uppercase;
    background: #1D2939;
    color: #fff;
}

.widget-profile .row > div:first-child span {
    -moz-border-radius: 0 0 0 3px;
    -webkit-border-radius: 0 0 0 3px;
    border-radius: 0 0 0 3px;
}

.widget-profile .row > div:last-child span {
    border-right: 0;
    -moz-border-radius: 0 0 3px 0;
    -webkit-border-radius: 0 0 3px 0;
    border-radius: 0 0 3px 0;
}

.widget-todo .panel-btns i {
    font-size: 12px;
}

.widget-todo .todo-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.widget-todo .panel-body {
    padding: 0;
}

.widget-todo .todo-list li {
    border-bottom: 1px solid #eee;
    padding: 15px 10px 8px 20px;
}

.widget-todo .todo-list li input:checked + label {
    text-decoration: line-through;
}

.widget-todo .todo-list .todo-form {
    padding-bottom: 15px;   
}

.widget-todo .todo-list li .btn {
    margin: 0;
    padding: 6px 10px;
}

.widget-slider .carousel-control.right,
.widget-slider .carousel-control.left {
    background: none;
}

.widget-slider .carousel-control {
    width: auto;
    text-shadow: none;
    color: #fff;
    bottom: auto;
    top: -55px;
    padding: 0;
    line-height: normal;
}

.widget-slider .carousel-control.left {
    left: auto;
    right: 25px;
}

.widget-slider .carousel-control span {
    line-height: normal;
    font-size: 18px;
}

.widget-slider .media {
    padding-bottom: 0;
}

.widget-slider .carousel-indicators {
    top: -53px;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
}

.widget-info {
    border: 0;
}

.widget-info-inline {
    display: inline-block;
}

.widget-info .panel-heading {
    border: 0;
    position: relative;
}

.widget-info .panel-heading h1 {
    font-size: 40px;
}

.widget-info .panel-heading h1 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.widget-info .panel-heading h1 small {
    color: #FFF;
}

.widget-info .panel-heading label {
    display: block;
    font-size: 16px;
    line-height: normal;
    font-weight: 100;
}

.widget-info.panel-default .panel-heading {
    box-shadow: 0px 2px 0 #DDD;
}

.widget-info.panel-warning .panel-heading {
    background: #F0AD4E;
    box-shadow: 0px 2px 0 #F0AD4E;
    color: #FFF;
}

.widget-info.panel-success .panel-heading {
    background: #1CAF9A;
    box-shadow: 0px 2px 0 #1CAF9A;
    color: #FFF;
}

a:hover .widget-info.panel-default .panel-heading {
    background: #DDD;
    box-shadow: 0px 2px 0 #BBB;
}

a:active .widget-info.panel-default .panel-heading {
    top: 2px;
    border: 0;
    box-shadow: 0px -2px 0 #BBB;
}

.graphe-tile {
}

.graphe-tile .graphe-title {
    margin-top: 16px;
    line-height: 1.3;
    font-size: 1.75em;
}

.graphe-tile .graphe-desc {
    font-size: 1.15em;
    font-weight: 100;
}

.graphe-tile .highcharts {
    background: #f5f5f5;
}




/********** 8. EMAIL **********/
/******************************/



.btn-compose-email {
    padding: 10px 0;
    margin-bottom: 20px;
}

.nav-email > li > a > .badge {
    margin-top: 2px;
}

.nav-email > li > a {
    color: #444;   
}

.nav-email > li > a > i {
    width: 16px;
    text-align: center;
    margin-right: 10px;
}

.nav-email > li > a:hover {
    background-color: #d8dcdf;
}

.table-email {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    margin: 0;
    background-color: #f7f7f7;
}

.table-email tr.unread td {
    background-color: #fff;
}

.table-email tbody > tr > td {
    vertical-align: middle;
}

.table-email tr:hover {
    background-color: #eee;
    cursor: pointer;
}

.table-email tr.selected td {
    background-color: #eee;
}

.table-email .ckbox {
    width: 18px;
    height: 19px;
}

.table-email .ckbox input[type="checkbox"]:checked + label:after {
    top: 2px;
}

.table-email .star {
    color: #ccc;
}

.table-email .star-checked {
    color: #F0AD4E;
}

.table-email td:first-child {
    width: 30px;
}

.table-email td:nth-child(2) {
    width: 30px;
}

.table-email .media {
    margin: 0;
    padding: 0;
}

.table-email .media-object {
    width: 35px;
}

.table-email .media h4 {
    margin: 0;
    font-size: 14px;
    line-height: normal;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.table-email .media-meta {
    font-size: 11px;
    color: #999;
}

.table-email .email-summary {
    margin: 2px 0 0 0;
}

.table-email .email-summary strong {
    color: #333;
}

.read-panel {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.read-panel .media-object {
    width: 35px;
}

.read-panel .media h4 {
    margin: 2px 0 0 0;
    font-size: 14px;
    line-height: normal;
}

.read-panel .media-meta {
    font-size: 12px;
}

.email-subject {
    color: #333;
}




/********** 9. TABLES **********/
/*******************************/



.dataTables_length .chosen-container {
    min-width: 75px;
}

.dataTables_length .chosen-container-single .chosen-single {
    padding-right: 0;
}

.table-action {
    text-align: center;
}

.table-action-hide a {
    opacity: 0;
}

.table-action a,
.table-action-hide a {
    display: inline-block;
    margin-right: 5px;
    color: #666;
}

.table-action a:hover,
.table-action-hide a:hover {
    color: #333;
}

.table-action a:last-child,
.table-action-hide a:last-child {
    margin-right: 0;
}

.table-primary thead tr th {
    background-color: #428BCA;
}

.table-success thead tr th {
    background-color: #e63c14;
}

.table-warning thead tr th {
    background-color: #F0AD4E;
}

.table-danger thead tr th {
    background-color: #D9534F;
}

.table-info thead tr th {
    background-color: #5BC0DE;
}

.table-dark thead tr th {
    background-color: #1D2939;
}

.table.table-primary thead tr th,
.table.table-success thead tr th,
.table.table-danger thead tr th,
.table.table-warning thead tr th,
.table.table-info thead tr th,
.table.table-dark thead tr th {
    color: #fff;
    border-bottom: 0;
}

.table-bordered.table-primary thead tr th,
.table-bordered.table-success thead tr th,
.table-bordered.table-warning thead tr th,
.table-bordered.table-danger thead tr th,
.table-bordered.table-info thead tr th,
.table-bordered.table-dark thead tr th {
    border-color: rgba(255,255,255,0.2);
}



/********** 10. PAGES **********/
/*******************************/


/***** 10.1 CALENDAR *****/

.external-event {
    background: #428BCA;
    margin-bottom: 5px;
    padding: 6px 10px;
    color: #fff;
    font-size: 13px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}


/***** 10.2 MEDIA MANAGER *****/

.filemanager-options {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    background: #fcfcfc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
}

.filemanager-options li {
    display: inline-block;
    padding: 12px 15px;
    border-right: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.filemanager-options li a {
    color: #666;
}

.filemanager-options li a.disabled {
    opacity: 0.5;
    cursor: default;
}

.filemanager-options li a.disabled:hover {
    text-decoration: none;
}

.filemanager-options li i {
    font-size: 14px;
    margin-right: 5px;
    color: #444;
}

.filemanager-options .ckbox label {
    margin: 0 !important;
}

.filemanager-options .filter-type {
    float: right;
    border-right: 0;
    border-left: 1px solid #eee;
}

.filemanager-options .filter-type a {
    display: inline-block;
    margin-right: 10px;
}

.filemanager-options .filter-type a:last-child {
    margin-right: 0;
}

.filemanager-options .filter-type a:first-child {
    margin-left: 10px;
}

.filemanager-options .filter-type a.active {
    text-decoration: underline;
    color: #2A6496;
}

.filemanager .thmb {
    border: 1px solid #fcfcfc;
    background: #fcfcfc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
}

.filemanager .thmb.checked {
    border-color: #ccc;
}

.filemanager .thmb::after {
    clear: both;
    display: block;
    content: '';
}

.filemanager .ckbox {
    position: absolute;
    top: 15px;
    left: 15px;
    display: none;
}

.filemanager .fm-group {
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
}

.filemanager .fm-toggle {
    padding: 1px 4px;
    line-height: normal;
    background: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.filemanager .fm-menu {
    min-width: 120px;
}

.filemanager .fm-menu a {
    font-size: 12px;
    color: #333;
}

.filemanager .fm-menu i {
    margin-right: 7px;
    color: #999;
    width: 16px;
    font-size: 13px;
}

.filemanager .thmb-prev {
    background: #eee;
    overflow: hidden;
}

.filemanager .thmb-prev a {
    display: block;
}

.filemanager .fm-title {
    margin-bottom: 0;
    font-size: 13px;
}

.filemanager .fm-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.fm-sidebar {
    padding-left: 10px;
}

.fm-sidebar .subtitle a {
    color: #999;
    font-size: 11px;
}

.fm-sidebar .subtitle a:hover {
    text-decoration: none;
    color: #333;
}

.folder-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.folder-list li {
    display: block;
    border-bottom: 1px solid #ddd;
}

.folder-list li a {
    display: block;
    padding: 5px 0;
    color: #666;
}

.folder-list li a:hover {
    color: #333;
    text-decoration: none;
}

.folder-list li i {
    margin-right: 10px;
    width: 16px;
}

.fm-sidebar .tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fm-sidebar .tag-list li {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
}

.fm-sidebar .tag-list li a {
    display: block;
    padding: 2px 7px;
    font-size: 11px;
    background: #fcfcfc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #666;
}

.fm-sidebar .tag-list li a:hover {
    color: #fff;
    text-decoration: none;
    background: #428BCA;
}


/****** 10.3 PROFILE *****/


.profile-name {
    margin: 0;
    margin-bottom: 10px;
    color: #333;
}

.profile-location,
.profile-position {
    font-size: 13px;
    margin-bottom: 3px;
}

.profile-location .fa,
.profile-position .fa {
    width: 16px;
    margin-right: 8px;
    text-align: center;
}

.profile-header {
    margin-bottom: 30px;
}

.profile-header .btn .fa {
    margin-right: 7px;
}

.profile-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-social-list li {
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.profile-social-list li:first-child {
    padding-top: 0;
}

.profile-social-list li .fa {
    margin-right: 10px;
    width: 16px;
}

.activity-list {
    padding: 20px 10px;
}

.activity-list .act-media {
    border-bottom: 1px solid #eee;
}

.activity-list .act-thumb {
    width: 28px;
    vertical-align: middle;
}

.activity-list .act-media-body {
    line-height: 16px;
}

.activity-list .media-body p {
    line-height: 21px;
    font-size: 13px;
}

.activity-list .media-title {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0;
}

.activity-list .blog-media {
    padding-bottom: 0;
}

.activity-list .blog-media .media-object {
    width: 120px;
    margin-right: 10px;
    margin-top: 5px;
}

.activity-list .blog-media .media-title {
    margin: 0;
}

.activity-list .img-single img {
    width: 50%;
}

.uploadphoto-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.uploadphoto-list li {
    width: 20%;
    float: left;
}

.uploadphoto-list li a {
    display: block;
    margin-right: 5px;
}

.follower-list {
    padding: 10px;
}

.follower-list .media {
    border-bottom: 1px solid #eee;
}

.follower-list .btn .fa {
    margin-right: 5px;
}

.follower-list .media-object {
    margin-right: 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.follower-name {
    color: #333;
    margin: 0;
    font-size: 18px;
    margin-bottom: 5px;
}

.events {
    padding: 10px;
}

.events .subtitle {
    margin-bottom: 20px;
}

.events .media-object {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.events-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.events-list .event-body {
    font-size: 13px;
}

.event-body small {
    display: block;
}

.event-body small .fa {
    margin-right: 5px;
    width: 14px;
    text-align: center;
}

.event-body p {
    margin-top: 10px;
}

.event-title {
    margin: 0;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: 'Lato';
    font-weight: 700;
    line-height: normal;
}


/****** 10.4 BLOG LIST ******/


.blog-item {
    background: #fcfcfc;
    margin-bottom: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    position: relative;
}

.blog-img img {
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.blog-details {
    padding: 15px;
}

.blog-title {
    font-family: 'Lato';
    margin: 0;
    font-weight: 700;
}

.blog-title a {
    color: #333;
}

.blog-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.blog-meta::after {
    clear: both;
    display: block;
    content: '';
}

.blog-meta li {
    float: left;
    padding: 0 5px;
    border-right: 1px solid #ddd;
    line-height: normal;
    font-size: 11px;
    margin-bottom: 5px;
}

.blog-meta li:first-child {
    padding-left: 0;
}

.blog-meta li:last-child {
    padding-right: 0;
    border-right: 0;
}

.blog-summary {
    font-size: 13px;
}

.blog-summary p {
    margin: 10px 0;
}

.blog-summary .btn {
    margin-top: 10px;
}

.blog-quote .quote {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}

.blog-quote .quote a {
    padding: 15px;
    background: #1d2939;
    color: #dadfe6;
    display: block;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
}

.blog-quote .quote a:hover {
    text-decoration: none;
    background: #2c394c;
}

.blog-quote .quote-author {
    display: block;
    font-family: 'Lato';
    opacity: 0.5;
}

.blog-quote .blog-meta {
    margin-top: 3px;
}

.blog-video {
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    height: 0;
    padding-top: 30px;
    padding-bottom: 56.25%;
    position: relative;
}

.blog-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    top: 0;
    left: 0;
}

.blog-quote .quote-primary a {
    background-color: #428BCA;
}

.blog-quote .quote-primary a:hover {
    background-color: #357EBD;
}

.blog-quote .quote-success a {
    background-color: #e63c14;
    color: #fff;
}

.blog-quote .quote-success a:hover {
    background-color: #17A08C;
}

.blog-quote .quote-danger a {
    background-color: #D9534F;
    color: #fff;
}

.blog-quote .quote-danger a:hover {
    background-color: #D43F3A;
}



/***** 10.5 BLOG SINGLE *****/


.panel-blog .blog-img img {
    width: 100%;	
}

.blogsingle-title {
    font-family: 'Lato';
    color: #333;
    margin: 0;
}

.blog-content {
    max-width: 975px;
}

.authorpanel {
    margin: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.authorpanel::after {
    clear: both;
    display: block;
    content: '';
}

.authorpanel .media {
    padding: 0;
}

.authorpanel .media-object {
    margin-right: 15px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.authorpanel p {
    margin-bottom: 0;
    font-size: 13px;
}

.blog-sidebar {
    font-size: 13px;
    padding-left: 5px;
    margin-top: 5px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    display: block;
    border-bottom: 1px solid #ddd;
}

.sidebar-list li a {
    padding: 7px 0;
    display: block;
}

.sidebar-list li i {
    display: inline-block;
    margin-right: 5px;
}

.comment-list .media {
    border-bottom: 1px solid #ddd;
}

.comment-list .media-object {
    width: 60px;
    margin-right: 10px;
}

.comment-list h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
}

.comment-list .media-body {
    font-size: 13px;
    position: relative;
}

.comment-list .reply {
    padding: 3px 8px;
    line-height: normal;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.comment-list .media-body p:last-child {
    margin-bottom: 0;
}

.comment-list .media-body .media:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/****** 10.6 PEOPLE DIRECTORY ******/


.letter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
}

.letter-list li {
    border-left: 1px solid #eee;
    display: table-cell;
    width: 1%;
}

.letter-list li:first-child {
    border-left: 0;
}

.letter-list li a {
    display: block;
    padding: 8px 0;
    text-align: center;
    text-transform: uppercase;
    background: #f7f7f7;
    -moz-transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.letter-list li:first-child a {
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.letter-list li:last-child a {
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.letter-list li a:hover {
    color: #fff;
    background: #428BCA;
    text-decoration: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.people-item {
    background: #fcfcfc;
    padding: 20px;
    font-size: 13px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    margin-bottom: 20px;
}

.people-item .media {
    padding: 0;
}

.people-item .media-object {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin-right: 10px;
    width: 110px;
    height: 110px;
}

.people-item .fa {
    margin-right: 5px;
}

.person-name {
    margin: 0 0 5px 0;
    color: #428BCA;
}

.people-item .social-list {
    margin-top: 10px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.people-item .social-list::after {
    clear: both;
    display: block;
    content: '';
}

.people-item .social-list li {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
}

.people-item .social-list li a {
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 3px 5px;
    width: 30px;
    display: block;
    text-align: center;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #666;
}

.people-item .social-list li a:hover {
    background-color: #eee;
    color: #333;
}

.people-item .social-list li a .fa {
    margin-right: 0;
}


/***** 10.7 NOT FOUND PAGE *****/


.notfoundpanel {
    text-align: center;
    margin-top: 10%;
    width: 600px;
    margin: 10% auto 0 auto;
}

.notfoundpanel h1 {
    font-size: 130px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 130px;
}

.notfoundpanel h3 {
    color: #333;
    margin: 0;
}

.notfound h4 {
    font-size: 14px;
}

.notfoundpanel form {
    width: 350px;
    margin: 20px auto 0 auto;
}

.notfoundpanel .form-control {
    width: 250px;
    float: left;
}


/***** 10.8 SEARCH RESULTS *****/


.nav-sr li {
    border-bottom: 1px solid #ddd;  
}

.nav-sr li a {
    padding: 5px 0;
    color: #555;
}

.nav-sr li a:hover {
    background: none;
    color: #333;
}

.nav-sr li a i {
    margin-right: 5px;
}

.results-list .media {
    border-bottom: 1px solid #eee;
}

.results-list .media-object {
    width: 125px;
    margin-right: 10px;
}

.results-list .filename {
    margin: 0;
    font-size: 16px;
}

.results-list .media-body {
    line-height: 18px;
}



/***** 10.9 INVOICE *****/


.table-invoice {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}

.table-invoice thead > tr > th {
    background: none;
}

.table-invoice thead > tr > th:last-child,
.table-invoice thead > tr > th:nth-child(3),
.table-invoice thead > tr > th:nth-child(2) {
    text-align: right;
}

.table-invoice tbody > tr > td:last-child,
.table-invoice tbody > tr > td:nth-child(3),
.table-invoice tbody > tr > td:nth-child(2) {
    width: 15%;
    text-align: right;
}

.table-total {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: right;
}

.table-total > tbody > tr > td {
    border: 0;
}

.table-total > tbody > tr > td:last-child {
    border-bottom: 1px solid #ddd;
    width: 15%;
    text-align: right;
}

.table-total > tbody > tr > td:first-child {
    text-align: right;
    color: #333;
}



/****** 10.10. TIMELINE ******/


.timeline-post .panel-body {
    padding: 0;
}

.timeline-post .form-control {
    border: 0;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    resize: vertical;
}

.timeline-post .form-control:focus {
    -moz-box-shdow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.timeline-post .panel-footer {
    padding: 10px;
    background: #f7f7f7;
}

.timeline-btns {
    padding: 5px;
}

.timeline-btns a {
    display: inline-block;
    font-size: 14px;
    width: 20px;
    height: 20px;
    color: #ccc;
    text-align: center;
    margin-right: 5px;
}

.timeline-btns a:hover {
    color: #666;
}

.panel-timeline .panel-heading {
    padding: 10px 10px 6px 10px;
    border-bottom: 0;
}

.panel-timeline .panel-body {
    padding: 0 10px;   
}

.panel-timeline .panel-heading .media {
    margin: 0;
    padding: 0;
}

.panel-timeline .panel-heading .media-object,
.panel-timeline .panel-footer .media-object {
    width: 32px;
    border-radius: 1px;
}

.panel-timeline .panel-body .media {
    margin-top: 10px;
    padding-bottom: 10px;
}

.panel-timeline .panel-body .media-object {
    width: 150px;
}

.panel-timeline .panel-body h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.panel-timeline h4 {
    margin: 0;
    font-size: 13px;
    line-height: normal;
}

.panel-timeline .panel-footer {
    padding: 10px;
}

.panel-timeline .panel-footer .form-control {
    padding: 8px 10px;
    border-radius: 0;
}

.timeline-btns {
    padding: 10px;
}

.timeline-btns:after {
    clear: both;
    display: block;
    content: '';
}

.timeline-video {
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    height: 0;
    padding-top: 30px;
    padding-bottom: 56.25%;
    position: relative;
}

.timeline-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    top: 0;
    left: 0;
}



/***** 10.11 LOCKED SCREEN *****/


.lockedpanel {
    width: 250px;
    margin: 10% auto 0 auto;
    text-align: center;
}

.lockedpanel .loginuser {
    text-align: center;
}

.lockedpanel .loginuser img {
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    background: rgba(255,255,255,0.4);
    padding: 5px;
}

.lockedpanel .locked {
    font-size: 42px;
    margin-bottom: 20px;
}

.lockedpanel .logged {
    margin-top: 20px;
}

.lockedpanel .logged h4 {
    margin: 0;
    font-size: 21px;
    color: #333;
}

.lockedpanel form {
    margin-top: 20px;
}

.lockedpanel form .btn {
    display: block;
    margin-top: 10px;
}



/***** 10.12 SIGN IN *****/

.signinpanel .logopanel {
    float: none;
    width: auto;
    padding: 0;
    background: none;
}

.signinpanel .logopanel h1 {
    background-color: white;
    padding: 10px;
    margin: 0 auto;
    width: fit-content;
    border-radius: 5px;
}

.signinpanel .signin-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.signinpanel .form-control {
    display: block;
    margin-top: 15px;
}

.signinpanel .btn {
    margin-top: 15px;
}

.signinpanel form {
    background: var(--light-grey);
    border: 1px solid #ddd;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    padding: 30px;
    margin: 60px 0;
}

.signinpanel form a {
    color: #666;
}

.registerpanel form {
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.registerpanel form .form-control,
.registerpanel form input[type='file'] {
    margin-top: 10px;
}

.registerpanel form .col-error ul {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    color: #a94442;
    margin-bottom: 0;
    padding: 6px;
    list-style: none;
    margin-top: 10px;
}


/***** 10.13 SIGN UP *****/


.signuppanel {
    margin: 5% auto 0 auto;
    width: 780px;
}

.signuppanel .row {
    margin-left: -5px;
    margin-right: -5px;
}

.signuppanel .logopanel {
    float: none;
    width: auto;
    padding: 0;
    background: none;
}

.signuppanel .col-sm-6,
.signuppanel .col-sm-5,
.signuppanel .col-sm-3,
.signuppanel .col-sm-4 {
    padding-left: 5px;
    padding-right: 5px;
}

.signuppanel .signup-info {
    padding-right: 20px;
}

.signuppanel form {
    background: rgba(255,255,255,0.2);
    border: 1px solid #ccc;
    -moz-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -webkit-box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    box-shadow: 0 3px 0 rgba(12,12,12,0.03);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 30px;
}

.feat-list {
    margin-top: 20px;
}

.feat-list .fa {
    font-size: 20px;
    border: 2px solid #636e7b;
    padding: 4px 5px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    float: left;
}

.feat-list h4 {
    margin-left: 45px;
    padding-top: 3px;
}

.feat-list p {
    margin-left: 45px;
}

.signup-footer {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 10px;
    font-size: 12px;
}




/********** 12. RIGHT PANEL STYLES **********/
/********************************************/


.chat-view {
    margin-right: 240px;
}

.rightpanel {
    width: 240px;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    right: -240px;
    display: none;
}

.chat-view .rightpanel {
    display: block;
    right: 0;
}

.chat-relative-view {
    right: 240px;
}

.chat-relative-view .rightpanel {
    display: block;
    right: 0;
}

.rightpanel,
.rightpanel label {
    color: #999;
}

.rightpanel .nav-tabs {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #131d29;
    position: fixed;
    width: 240px;
}

.rightpanel .nav-tabs > li {
    display: table-cell;
    width: 1%;
}

.rightpanel .nav-tabs > li > a {
    padding: 15px 20px 16px 20px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: rgba(255,255,255,0.5);
}

.rightpanel .nav-tabs > .active > a,
.rightpanel .nav-tabs > .active > a:hover,
.rightpanel .nav-tabs > .active > a:focus {
    background: #1D2939;
    color: #fff;
}

.rightpanel .tab-content {
    background: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 45px;
}

.chatuserlist {
    list-style: none;
    padding: 0;
    border-bottom: 1px dotted rgba(255,255,255,0.05);
}

.chatuserlist li {
    border-top: 1px dotted rgba(255,255,255,0.05);
}

.chatuserlist .media-thumb {
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #999;
    padding: 3px;
    display: block;
}

.chatuserlist .media {
    margin: 10px 0;
    padding: 0;
}

.chatuserlist .online .media-thumb {
    border-color: #e63c14;
}

.chatuserlist .media-object {
    width: 30px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.chatuserlist .media-body {
    line-height: normal;
    padding-top: 7px;
}

.chatuserlist .media-body small {
    color: #666;
    display: block;
}

.chatuserlist .media-body strong {
    color: #bbb;
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.chatuserlist .badge {
    margin-top: 5px;
}

.rightpanel .pane-settings {
    font-size: 13px;
}



/********** 15. MODALS **********/
/********************************/


.bs-example-modal-panel .modal-content {
    background: none;
}

.modal-photo-viewer {
    margin-top: 0;
    margin-bottom: 0;
    top: 50%;
    left: 50%;
    width: auto;
    position: absolute;
}

.modal-photo-viewer .modal-content {
    position: relative;
    width: 900px;
    height: 600px;
    margin-left: -50%;
    margin-top: -300px;
}

.modal-photo-viewer .modal-photo-left,
.modal-photo-viewer .modal-photo-right {
    padding: 0;
}

.modal-photo-viewer .modal-photo-left {
    background: #000;
}

.modal-photo-viewer .modal-photo {
    top: 50%;
    position: relative;
}

.modal-photo-viewer .row {
    margin-left: 0;
    margin-right: 0;
}

.modal-photo-viewer .img-responsive {
    max-height: 600px;
    margin: auto;
}

.media-details {
    padding: 20px;
}

.media-details .categ {
    font-size: 11px;
}

.media-details .media-title {
    margin: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 20px;
}

.media-details p {
    font-size: 13px;
}

.media-details .details {
    margin-top: 20px;
}

.media-details .details h4 {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    font-family: 'Lato';
    font-weight: 700;
}

.media-details .table {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.media-details .table tr td {
    padding: 3px 0;
    font-size: 13px;
    background: none;
}



/********** 16. BUG TRACKER **********/
/*************************************/

.panel .panel-table {
    padding: 0;
}

.panel-table .table {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
}

.table-buglist thead tr th:first-child,
.table-buglist tbody tr td:first-child {
    text-align: center;
    width: 30px;
}

.table-buglist .fa {
    cursor: pointer;    
}

.table-buglist .fa-bug {
    color: #D9534F;
}

.table-buglist .fa-magic {
    color: #e63c14;
}

.table-buglist .btn-group {
    margin: 0;
}

.table-buglist .btn-group .dropdown-toggle {
    color: #999;
    cursor: pointer;
}

.table-buglist .btn-group .dropdown-toggle:hover {
    color: #666;
}

.bug-key-title {
    margin: 0;
    margin-bottom: 5px;
}



/********** 17. ADDITIONAL STYLES **********/
/*******************************************/


/***** 17.1 DROPDOWN *****/

.dropdown-menu-head {
    background: #fff
}

.dropdown-menu-head .title {
    background: #1d2939;
    color: #94989d;
    padding: 15px;
    text-transform: uppercase;
    font-size: 11px;
    margin: 0;
}


/***** 17.2 ICON *****/


.tp-icon {
    padding: 10px 20px;
    line-height: 20px;
    border-color: #ddd;
    position: relative;
}

.tp-icon .badge {
    position: absolute;
    font-size: 10px;
    font-weight: normal;
    right: 4px;
    top: 10px;
    line-height: 13px;
    background-color: #e63c14;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 2px 5px;
}


/***** 17.3 TIME PICKER *****/


.bootstrap-timepicker-widget.dropdown-menu {
    width: 230px;
}

/***** 17.4 COLOR PICKER *****/

.colorpicker-input {
    width: 200px;
    float: left;
}

.colorselector {
    margin-top: 4px;
}

/***** 17.5 STICKY HEADER */

.stickyheader .logopanel {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    z-index: 100;
}

.stickyheader .leftpanel {
    top: 50px;
}

.stickyheader .sticky-leftpanel {
    top: 0;
}

.stickyheader .sticky-leftpanel .leftpanelinner {
    margin-top: 55px;
}

.stickyheader .headerbar {
    position: fixed;
    top: 0;
    left: 240px;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px rgba(0,0,0,0.05);
}

.stickyheader .mainpanel {
    padding-top: 50px;
}

.stickyheader .header-right {
    margin-right: 240px;
}

.stickyheader.leftpanel-collapsed .headerbar {
    left: 50px;   
}

.stickyheader.leftpanel-collapsed .header-right {
    margin-right: 0;
}

.stickyheader.chat-view .headerbar {
    right: 240px;
    width: auto;
}


/***** 17.6 CUSTOM STYLES *****/

.mt0    { margin-top: 0!important; }
.mt5    { margin-top: 5px!important; }
.mt10   { margin-top: 10px!important; }
.mt15   { margin-top: 15px!important; }
.mt20   { margin-top: 20px!important; }
.mt30   { margin-top: 30px!important; }
.mt40   { margin-top: 40px!important; }
.mt50   { margin-top: 50px!important; }
.mb0    { margin-bottom: 0!important; }
.mb5    { margin-bottom: 5px!important; }
.mb10   { margin-bottom: 10px!important; }
.mb15   { margin-bottom: 15px!important; }
.mb20   { margin-bottom: 20px!important; }
.mb30   { margin-bottom: 30px!important; }
.mb40   { margin-bottom: 40px!important; }
.mb50   { margin-bottom: 50px!important; }
.ml0    { margin-left: 0!important; }
.ml5    { margin-left: 5px!important; }
.ml10   { margin-left: 10px!important; }
.ml15   { margin-left: 15px!important; }
.ml20   { margin-left: 20px!important; }
.ml30   { margin-left: 30px!important; }
.ml40   { margin-left: 40px!important; }
.ml50   { margin-left: 50px!important; }
.mr0    { margin-right: 0!important; }
.mr5    { margin-right: 5px!important; }
.mr10   { margin-right: 10px!important; }
.mr15   { margin-right: 15px!important; }
.mr20   { margin-right: 20px!important; }
.mr30   { margin-right: 30px!important; }
.mr40   { margin-right: 40px!important; }
.mr50   { margin-right: 50px!important; }

.nomargin {
    margin: 0;
}

.noshadow {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.border-right-0 {
    border-right: 0;
}

.border-left-0 {
    border-left: 0;
}

.nopadding {
    padding: 0 !important;
}

.padding-top-0 {
    padding-top: 0;
}

.padding5 {
    padding: 5px;
}

.padding10 {
    padding: 10px;
}

.serif {
    font-family: 'Georgia, serif';
}

.italic {
    font-style: italic;
}

.dark {
    color: #333;
}

.width100p {
    width: 100%;
}

.width20 {
    width: 20px;
}

.width30 {
    width: 30px;
}

.inblock {
    display: inline-block;
}


/***** 17.7 DROPDOWN SELECT *****/

.dropdown-select-control {
    background: transparent;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
}

.dropdown-select-control.active,
.dropdown-select-control:hover {
    cursor: pointer;
    background: white;
    border-color: var(--input-focus);
    outline: 0;
    -webkit-box-shadow: 0 0 10px rgba(102,175,233,.8);
    box-shadow: 0 0 10px rgba(102,175,233,.8);
}

.dropdown-select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 240px;
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: normal;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-select .dropdown-select-loader {
    text-align: center;
}

.dropdown-select .dropdown-select-search {
    padding: 0 8px;
    position: relative;
}

.dropdown-select .dropdown-select-search:after {
    content: "\f002";
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 20px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    color: #c7c7c7;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dropdown-select .dropdown-select-search .dropdown-select-input:after {
    padding-right: 30px;
}

.dropdown-select .dropdown-select-content {
    margin-top: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 0 8px;
}

.dropdown-select .dropdown-select-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.dropdown-select .dropdown-select-content ul li {
    padding: 2px 5px;
}
.dropdown-select .dropdown-select-content ul li:hover {
    background: var(--item-hover);
    cursor: pointer;
}


/***** 17.8 CONFIRMBOX *****/

.confirmbox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    margin-top: 2px;
    margin-bottom: 0;
    width: 180px;
    font-size: 15px;
    font-weight: normal;
    padding: 8px 10px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.confirmbox p{
    font-size: 12px;
}


/***** 17.9 DATE PICKER *****/

.ui-datepicker {
    background: #FFF;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.ui-datepicker .ui-datepicker-header {
    background: var(--light-grey);
    margin: -5px;
    border: 0;
    padding: 2px 0;
    border-bottom: 1px solid #ddd;
}

.ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
    border: 0;
    height: 29px;
    top: 0;
    left: 0;
}
 
.ui-datepicker .ui-datepicker-next {
    left: auto;
    right: 0;
}

.ui-datepicker .ui-datepicker-prev:hover, 
.ui-datepicker .ui-datepicker-next:hover {
    background: var(--main-color);
}

.ui-datepicker .ui-datepicker-prev span, 
.ui-datepicker .ui-datepicker-next span {
    background: none;
    text-indent: 0;
}

.ui-datepicker .ui-datepicker-prev span:before, 
.ui-datepicker .ui-datepicker-next span:before {
    content: "\f104";
    position: relative;
    display: inline-block;
    top: -2px;
    left: 3px;
    margin-right: 100px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    color: var(--main-color);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} 

.ui-datepicker .ui-datepicker-next span:before {
    content: "\f105";
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover span:before, 
.ui-datepicker .ui-datepicker-next:hover span:before {
    color: #FFF;
}

.ui-datepicker .ui-datepicker-title {
    color: var(--main-color);
}

.ui-datepicker .ui-datepicker-calendar thead th span {
    color: var(--main-color);
    font-weight: bold;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    border: 1px solid #EEE;
    color: var(--main-color);
    background: #FFF;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-hover {
    border-color: var(--item-hover);
    background: var(--item-hover);
}

.ui-datepicker .ui-datepicker-calendar .ui-state-active {
    border-color: var(--main-color);
    color: #FFF;
    background: var(--main-color);
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight {
    border-color: var(--main-color);
}


/***** 17.10 NAV *****/

.nav-inline {
    display: inline-block;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 100px;
}

.nav-inline > li {
    float: left;
}

.nav-inline > li > a {
    color: #8a939c;
    border-radius: 0;
    padding: 10px 15px;
    display: inline-block;
}

.nav-inline > li > a:hover,
.nav-inline > li > a:active,
.nav-inline > li > a:focus {
    color: var(--main-color);
    text-decoration: none;
    background: none;
}

.nav-inline > li.active > a {
    background: none;
    border-bottom: 2px solid var(--input-focus);
    color: var(--main-color);
}


/********** 18. MEDIA QUERIES **********/
/***************************************/


@media screen and (max-width: 480px) {
    .mainpanel {
        margin-left: 4px;
    }
    
    .leftpanel {
        display: none;
    }
    
    .pageheader {
        display: none;
    }
    
    .pageheader .nav > li {
        text-align: center;
        width: 100%;
    }
    
    .menutoggle {
        display: block;
    }
    
    .leftpanel-show .leftpanel {
        width: 70px;
    }
    
    .leftpanel-show .mainpanel {
        margin-left: 70px;
    }
    
    .leftpanel-show .leftpanel {
        display: block;
    }
    
    .leftpanel-show .pageheader {
        display: block;
    }
    
    .nav-bracket > li:hover > a > span {
        left: 37px;
    }
}

@media (min-width: 992px) {
    
    .div-center {
        margin: 0 auto;
        text-align: center;
    }
    
    .div-center [class*="col-"] {
        float: none;
        display: inline-block;
        text-align: left;
    }
    
}