/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[Master Stylesheet]

Project:    HELSINKI
Version:    1.0 
author:     myii-developer 

-------------------------------------------------------------------------------------
[Table of contents]

1. Body
    2. wrap
        3. page-header
            4. leftside-header
            4. rightside-header
        3. page-body
            4. left-sidebar
            4. content
                5. content-header
            4. right-sidebar
            
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
html,
body {
    width: 100%;
    font-size: 13px;
}

body {
    background: #202020;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 22px;
    overflow-x: hidden;
    overflow-y: scroll;
}

a {
    color: #0077DD;
}

a:hover,
a:focus {
    color: #0077DD;
}

a:active {
    color: #002544;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

/* WRAPPER*/
/*================================================*/
.wrap {
    min-height: 100%;
    width: 100%;
}

/* PAGE HEADER*/
/*================================================*/
.page-header {
    height: 50px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    border: none;
}

/* PAGE BODY*/
/*================================================*/
.page-body {
    display: block;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
}

/*CONTENT OF THE PAGE*/
/*================================================*/
.content {
    display: block;
    position: relative;
    vertical-align: top;
    margin-left: 220px;
    padding: 0;
    background: #ECECEC;
    min-height: 100vh;
}

.content > .row + .row {
    padding-top: 10px;
}

.content-header {
    border-bottom: none;
    height: 40px;
    padding: 0;
}

/* LEFT SIDEBAR*/
/*================================================*/
.left-sidebar {
    display: block;
    height: 100%;
    float: left;
    position: relative;
    width: 220px;
    z-index: 1030;
}

/* Left-sidebar COLLAPSE*/
/*================================================*/
html.left-sidebar-collapsed .content {
    margin-left: 60px;
}

html.left-sidebar-collapsed .left-sidebar {
    width: 60px;
}

/* RIGHT SIDEBAR*/
/*================================================*/
.right-sidebar {
    display: block;
    height: 100%;
    float: right;
    position: relative;
    width: 240px;
    z-index: 1020;
    position: fixed;
    bottom: 0;
    right: 0;
    padding-bottom: 50px;
    top: 50px;
    margin-right: -240px;
    -webkit-transition-property: margin;
    -moz-transition-property: margin;
    transition-property: margin;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
}

.right-sidebar .nano-content {
    padding-bottom: 50px;
}

/* right-sidebar OPENED*/
/*================================================*/
html.right-sidebar-opened .right-sidebar {
    margin-right: 0;
}

/* SCROLL TO TOP*/
/*================================================*/
.scroll-to-top {
    position: fixed;
    bottom: 17px;
    right: 8px;
    width: 40px;
    z-index: 1010;
    height: 40px;
    display: none;
    border-radius: 50%;
    text-align: center;
    background: #004E90;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.53);
}

.scroll-to-top i {
    color: #FFFFFF;
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* STYLE - FIXED*/
/*================================================*/
@media only screen and (min-width: 768px) {
    html.fixed .page-header {
        position: fixed;
        z-index: 1051;
    }

    html.fixed .content {
        margin-top: 40px;
    }

    html.fixed .content-header {
        position: fixed;
        z-index: 1050;
        top: 50px;
        left: 220px;
        right: 0;
        margin: 0;
        -webkit-transition-property: left;
        -moz-transition-property: left;
        transition-property: left;
        -webkit-transition-duration: 0.25s;
        -moz-transition-duration: 0.25s;
        transition-duration: 0.25s;
        -webkit-transition-timing-function: ease-out;
        -moz-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        transition-delay: 0;
    }

    html.fixed .left-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        padding-bottom: 50px;
        top: 50px;
    }

    html.fixed .left-sidebar .nano-content {
        padding-bottom: 100px;
    }

    /* Fixed -  Left-sidebar collapse */
    html.fixed.left-sidebar-collapsed .content .content-header {
        left: 60px;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* STYLE - SCROLL*/
/*================================================*/
@media only screen and (min-width: 768px) {
    html.scroll .left-sidebar,
    html.scroll-left-sidebar .left-sidebar {
        position: absolute;
    }

    html.scroll .left-sidebar .nano,
    html.scroll-left-sidebar .left-sidebar .nano {
        position: static;
        overflow: visible;
    }

    html.scroll .left-sidebar .nano .nano-content,
    html.scroll-left-sidebar .left-sidebar .nano .nano-content {
        position: static;
        overflow: visible;
        margin-right: 0 !important;
        outline: none;
    }

    html.scroll .left-sidebar .nano .nano-pane,
    html.scroll-left-sidebar .left-sidebar .nano .nano-pane {
        display: none !important;
    }

    html.scroll .content,
    html.scroll-content-header .content {
        margin-top: 0;
    }

    html.scroll .content-header,
    html.scroll-content-header .content-header {
        position: initial;
        margin: -30px -30px 30px -30px;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* MOBIL VERSION*/
/*================================================*/
@media only screen and (max-width: 767px) {
    html .page-body {
        min-height: 0;
        padding-top: 0;
    }

    html .page-body .content {
        margin-left: 0;
        padding: 10px;
    }

    html .page-body .content-header {
        margin: -10px -10px 10px -10px;
    }

    html .page-body .left-sidebar {
        bottom: 0;
        margin-left: -100%;
        min-height: 0;
        min-width: 100%;
        padding-bottom: 50px;
        position: fixed;
        overflow: hidden;
        top: 50px;
        -webkit-transition-property: margin;
        -moz-transition-property: margin;
        transition-property: margin;
        -webkit-transition-duration: 0.25s;
        -moz-transition-duration: 0.25s;
        transition-duration: 0.25s;
        -webkit-transition-timing-function: ease-out;
        -moz-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        transition-delay: 0;
    }

    html.left-sidebar-open .left-sidebar {
        margin-left: 0;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGE HEADER */
/*================================================*/
.page-header {
    background: #202020;
    color: #FFFFFF;
}

.page-header .leftside-header {
    display: inline-block;
}

.page-header .leftside-header .logo {
    height: 50px;
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #FFF !important;
    line-height: 50px;
    padding-left: 15px;
}

.page-header .leftside-header .logo img {
    width: 100%;
    padding: 5px 4px;
    margin-left: -4px;
}

.page-header .leftside-header .toggle-left-sidebar {
    color: #FFFFFF;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 10px;
    font-size: 18px;
    font-size: 1.38462rem;
    cursor: pointer;
}

.page-header .rightside-header {
    float: right;
    height: 50px;
    margin-right: 5px;
}

.page-header .rightside-header .header-middle {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.page-header .rightside-header .header-separator {
    border-left: 1px solid rgba(204, 204, 204, 0.46);
    height: 25px;
    width: 1px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

.page-header .rightside-header .header-section {
    display: inline-block;
    padding: 0 4px;
    vertical-align: middle;
}

.page-header .rightside-header .header-section .log-out {
    color: #0085F6;
    font-size: 22px;
    font-size: 1.69231rem;
    line-height: 22px;
    line-height: 1.69231rem;
    padding: 3px;
    cursor: pointer;
}

.page-header .rightside-header .header-section .log-out:hover {
    color: #FFFFFF;
}

.page-header .dropdown-box {
    background: #FFFFFF;
    color: #404040;
    position: absolute;
    display: none;
    z-index: 1000;
    border-radius: 0 0px 3px 3px;
    box-shadow: 1px 2px 4px 0px rgba(32, 32, 32, 0.7);
}

.page-header .dropdown-box:before {
    font-family: "FontAwesome";
    font-size: 18px;
    font-size: 1.38462rem;
    content: "\f0d8 ";
    color: #FFFFFF;
    position: absolute;
    top: -16px;
    right: 8px;
}

.page-header .dropdown-box .drop-header {
    padding: 6px 10px;
    height: 40px;
    background: #FFFFFF;
    border-bottom: 2px solid #ECECEC;
    color: #000000;
}

.page-header .dropdown-box .drop-header h3 {
    display: inline-block;
    font-size: 15px;
    margin: 5px 0;
}

.page-header .dropdown-box .drop-header h3 i {
    margin-right: 6px;
    color: #004E90;
}

.page-header .dropdown-box .drop-header span.badge {
    float: right;
    margin-top: 4px;
}

.page-header .dropdown-box .drop-content.basic {
    text-align: left;
}

.page-header .dropdown-box .drop-content.basic ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-header .dropdown-box .drop-content.basic ul li {
    cursor: pointer;
    border-bottom: 1px solid #ECECEC;
    color: #202020;
}

.page-header .dropdown-box .drop-content.basic ul li:last-child {
    border: none;
}

.page-header .dropdown-box .drop-content.basic ul li i {
    margin-right: 6px;
}

.page-header .dropdown-box .drop-content.basic ul li a {
    display: block;
    padding: 6px 10px;
    color: #202020 !important;
}

.page-header .dropdown-box .drop-content.basic ul li:hover {
    background: #F7F7F7;
    font-weight: bold;
}

.page-header .dropdown-box .drop-content.basic ul li:hover i {
    color: #004E90;
}

.page-header .dropdown-box .drop-footer {
    padding: 5px;
    text-align: center;
    background: #F2F2F2;
}

.page-header .dropdown-box .drop-footer h3,
.page-header .dropdown-box .drop-footer a {
    cursor: pointer;
    color: #999999;
    margin: 3px 0;
    font-size: 12px;
    font-size: 0.92308rem;
    line-height: 12px;
    line-height: 0.92308rem;
}

.page-header .dropdown-box .drop-footer h3:hover,
.page-header .dropdown-box .drop-footer a:hover {
    font-weight: bold;
}

.page-header #user-headerbox {
    cursor: pointer;
    position: relative;
}

.page-header #user-headerbox .user-header-wrap .user-photo {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 10px;
}

.page-header #user-headerbox .user-header-wrap .user-photo img {
    width: 100%;
}

.page-header #user-headerbox .user-header-wrap .user-info {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    margin-top: 10px;
}

.page-header #user-headerbox .user-header-wrap .user-info span {
    display: block;
    font-weight: bold;
}

.page-header #user-headerbox .user-header-wrap .user-info span.user-name {
    color: #FFFFFF;
    font-size: 15px;
    font-size: 1.15385rem;
    line-height: 18px;
    line-height: 1.38462rem;
}

.page-header #user-headerbox .user-header-wrap .user-info span.user-profile {
    color: #0B8FFF;
    font-size: 11px;
    font-size: 0.84615rem;
    line-height: 14px;
    line-height: 1.07692rem;
}

.page-header #user-headerbox .user-header-wrap > i {
    color: #FFFFFF;
    padding: 10px 0px 10px 10px;
    font-size: 11px;
    font-size: 0.84615rem;
}

.page-header #user-headerbox .user-header-wrap > i.icon-close {
    display: none;
}

.page-header #user-headerbox.open i.icon-close {
    display: inline-block;
}

.page-header #user-headerbox.open i.icon-open {
    display: none;
}

.page-header #user-headerbox .dropdown-box {
    display: none;
    width: 100%;
    margin-top: -1px;
    border: 1px solid #E8E8E8;
    min-width: 160px;
    right: -10px;
}

.page-header #notice-headerbox .notice {
    margin: 0 5px;
    display: inline-block;
    position: relative;
}

.page-header #notice-headerbox .notice > i {
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    font-size: 1.23077rem;
    padding: 5px;
}

.page-header #notice-headerbox .notice > i:hover {
    color: #006AC3;
}

.page-header #notice-headerbox .notice.open > i {
    color: #0077DD;
}

.page-header #notice-headerbox .notice .dropdown-box {
    width: 250px;
    right: 0;
    margin-top: 11px;
}

.page-header #notice-headerbox #alerts-notice .drop-header,
.page-header #notice-headerbox #checklist-notice .drop-header,
.page-header #notice-headerbox #messages-notice .drop-header {
    background: #FFFFFF;
    color: #000000;
    border-bottom: 1px solid #006AC3;
}

.page-header #notice-headerbox #alerts-notice .drop-header i,
.page-header #notice-headerbox #checklist-notice .drop-header i,
.page-header #notice-headerbox #messages-notice .drop-header i {
    color: #002D53;
}

.page-header #search-headerbox {
    color: #FFFFFF !important;
}

.page-header #search-headerbox #search {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.4902);
    padding: 2px 5px;
    background: none !important;
}

.page-header #search-headerbox #search::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.page-header #search-headerbox #search:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.8);
}

.page-header #search-headerbox #search::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.8);
}

.page-header #search-headerbox #search:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.page-header #search-headerbox #search:focus {
    outline: none !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.page-header #search-headerbox .search {
    background: #006AC3;
    color: #FFFFFF;
    margin-left: 5px;
    cursor: pointer;
    padding: 8px 8px;
    border-radius: 50%;
}

@media only screen and (max-width: 767px) {
    .page-header {
        background: none;
        height: auto;
        position: static;
    }

    .page-header .leftside-header {
        position: fixed;
        background: #003867;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1035;
    }

    .page-header .rightside-header {
        background: #004E90;
        float: none !important;
        margin-top: 50px;
        width: 100%;
        text-align: right;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* CONTENT*/
/*================================================*/
.content {
    -webkit-transition-property: margin-left;
    -moz-transition-property: margin-left;
    transition-property: margin-left;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.content .content-header {
    background: #006AC3;
    color: #FFFFFF;
}

.content .content-header .leftside-content-header,
.content .content-header .rightside-content-header {
    display: inline-block;
    height: 40px;
}

.content .content-header .leftside-content-header {
    padding-left: 20px;
}

.content .content-header .rightside-content-header {
    float: right;
    padding-right: 20px;
}

.content .content-header ul.breadcrumbs {
    list-style: none;
    line-height: 40px;
    margin: 0;
    padding: 0;
}

.content .content-header ul.breadcrumbs li {
    display: inline-block;
    font-size: 15px;
    font-size: 1.15385rem;
    line-height: 18px;
    line-height: 1.38462rem;
    vertical-align: middle;
}

.content .content-header ul.breadcrumbs li:first-child a:before {
    content: none;
}

.content .content-header ul.breadcrumbs li:first-child i {
    padding-right: 8px;
}

.content .content-header ul.breadcrumbs li a {
    color: #FFFFFF;
}

.content .content-header ul.breadcrumbs li a:before {
    font-family: "FontAwesome";
    content: "\f105 ";
    font-weight: bold;
    padding: 0 6px 0px 5px;
    color: #003867;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* RIGHT SIDEBAR */
/*================================================*/
.right-sidebar {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #ECECEC;
}

.right-sidebar .right-sidebar-toggle {
    position: absolute;
    top: 40px;
    left: -30px;
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    cursor: pointer;
    text-align: center;
    border-bottom-left-radius: 50%;
}

.right-sidebar .right-sidebar-toggle i {
    font-size: 20px;
    line-height: 30px;
}

.right-sidebar .right-sidebar-toggle i:hover {
    color: #004E90;
}

.right-sidebar .template-settings {
    padding: 10px;
}

.right-sidebar .template-settings .toggle-settings {
    padding: 0;
    list-style: none;
}

.right-sidebar .template-settings .toggle-settings li {
    display: block;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #F1F1F1;
}

.right-sidebar .template-settings .toggle-settings li:last-child {
    border-bottom: none;
}

.right-sidebar .template-settings .toggle-settings li .text {
    display: inline-block;
}

.right-sidebar .template-settings .toggle-settings li .switch {
    float: right;
    margin-top: 5px;
}

.right-sidebar .template-settings .toggle-colors {
    padding: 0;
    margin-top: 25px;
    list-style: none;
}

.right-sidebar .template-settings .toggle-colors li {
    display: block;
    padding: 0 15px;
    margin-bottom: 5px;
}

.right-sidebar .template-settings .toggle-colors li img {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .right-sidebar .template-settings h4:first-child {
        display: none;
    }

    .right-sidebar .template-settings .toggle-settings {
        display: none;
    }

    .right-sidebar .right-sidebar-toggle {
        top: 90px;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LEFT SIDEBAR*/
/*================================================*/
.left-sidebar {
    background: #202020;
    color: #FFFFFF;
    -webkit-transition-property: width;
    -moz-transition-property: width;
    transition-property: width;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
}

.left-sidebar .nano {
    background: #202020;
}

.left-sidebar .left-sidebar-header {
    position: relative;
    height: 40px;
    background: #151515;
}

.left-sidebar .left-sidebar-header .left-sidebar-title {
    padding: 10px;
    font-size: 10px;
    color: #006AC3;
    font-weight: bold;
    height: 40px;
    margin-right: 60px;
    -webkit-transition-property: margin;
    -moz-transition-property: margin;
    transition-property: margin;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.left-sidebar .left-sidebar-header .left-sidebar-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 40px;
    background-color: #000000;
    text-align: center;
    cursor: pointer;
}

.left-sidebar .left-sidebar-header .left-sidebar-toggle i {
    font-size: 20px;
    line-height: 40px;
}

.left-sidebar .left-sidebar-header .left-sidebar-toggle i:hover {
    color: #CCCCCC;
}

@media only screen and (max-width: 768px) {
    .left-sidebar .left-sidebar-header {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    html.left-sidebar-collapsed .left-sidebar-title {
        opacity: 0;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LEFT SIDEBAR NAVIGATION*/
/*================================================*/
ul#main-nav {
    margin-right: 4px;
}

ul#main-nav > li {
    border-bottom: 1px solid #2A2A2A;
}

ul#main-nav > li.active-item > a {
    box-shadow: 2px -1px 0 #006AC3 inset !important;
    border-bottom-left-radius: 5px;
    background: #131313;
    color: #FFFFFF !important;
}

ul#main-nav > li.open-item > a {
    box-shadow: 0 -1px 0 #006AC3 inset;
    border-bottom-left-radius: 5px;
}

ul#main-nav > li.open-item > a > i {
    color: #006AC3;
}

ul#main-nav li a {
    padding: 12px 20px;
    font-size: 13px;
    color: #FFFFFF;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

ul#main-nav li a:hover, ul#main-nav li a:focus {
    background: #131313;
}

ul#main-nav li a > i {
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
}

ul#main-nav li span {
    vertical-align: middle;
}

ul#main-nav li.has-child-item {
    position: relative;
}

ul#main-nav li.has-child-item > a:after {
    font-family: "FontAwesome";
    font-size: 10px;
    font-size: 0.76923rem;
    content: "\f067";
    color: #FFFFFF;
    position: absolute;
    padding: 14px;
    right: 0;
    top: 0;
}

ul#main-nav li.has-child-item.open-item > ul.child-nav {
    display: block;
}

ul#main-nav li.has-child-item.open-item > a:after {
    content: "\f068";
}

ul#main-nav ul.child-nav {
    border-radius: 5px;
    display: none;
}

ul#main-nav ul.child-nav.level-1 {
    background: #161616;
    box-shadow: 0 -5px 5px -3px rgba(0, 0, 0, 0.6) inset;
}

ul#main-nav ul.child-nav.level-1 li a {
    padding: 10px 50px;
}

ul#main-nav ul.child-nav.level-1 li a:hover, ul#main-nav ul.child-nav.level-1 li a:focus {
    background: #0C0C0C;
}

ul#main-nav ul.child-nav.level-2 {
    background: #0E0E0E;
    box-shadow: 0 0px 4px 2px rgba(0, 0, 0, 0.4) inset;
}

ul#main-nav ul.child-nav.level-2 li a {
    padding: 8px 70px;
}

ul#main-nav ul.child-nav.level-3 {
    background: #070707;
    box-shadow: 0 0px 0px 5px #000 inset;
}

ul#main-nav ul.child-nav.level-3 li a {
    padding: 6px 90px;
}

@media only screen and (min-width: 768px) {
    html.left-sidebar-collapsed .left-sidebar #main-nav > li.open-item > a {
        box-shadow: none;
    }

    html.left-sidebar-collapsed .left-sidebar #main-nav > li > a {
        overflow: hidden;
        text-overflow: clip;
    }

    html.left-sidebar-collapsed .left-sidebar #main-nav > li > a span {
        visibility: hidden;
    }

    html.left-sidebar-collapsed .left-sidebar #main-nav li.has-child-item a:after {
        display: none;
    }

    html.left-sidebar-collapsed .left-sidebar #main-nav li.has-child-item ul.child-nav {
        display: none;
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover {
        width: 220px;
        min-height: 100vh;
        background: rgba(32, 32, 32, 0.1);
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover .nano-content {
        background: rgba(32, 32, 32, 0.9);
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav > li.open-item > a {
        box-shadow: 0 -1px 0 #004E90 inset;
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav > li > a {
        overflow: visible;
        text-overflow: initial;
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav > li > a span {
        visibility: visible;
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav li.has-child-item a:after {
        display: block;
    }

    html.left-sidebar-collapsed .left-sidebar .nano:hover #main-nav li.has-child-item.open-item > ul.child-nav {
        display: block;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LEFT SIDEBAR SUBNAVIGATION */
/*================================================*/
ul#main-nav ul.child-nav li a:before {
    position: absolute;
    content: "";
    left: 28px;
    top: 0;
    bottom: 0;
    border-left: 1px solid #2F2F2F;
}

ul#main-nav ul.child-nav li:hover > a:before {
    border-color: #006AC3;
}

ul#main-nav ul.child-nav li.active-item > a:before {
    border-color: #004E90 !important;
}

ul#main-nav ul.child-nav li.open-item:before {
    position: absolute;
    content: "";
    left: 28px;
    top: 42px;
    bottom: 0;
    border-top: 1px solid #006AC3;
    width: 23px;
}

ul#main-nav ul.child-nav li.open-item > a:before {
    border-color: #006AC3;
}

ul#main-nav ul.child-nav li.has-child-item > a:after {
    padding: 10px;
}

ul#main-nav ul.child-nav li .level-2 li.open-item:before {
    left: 50px;
    top: 38px;
    width: 21px;
}

ul#main-nav ul.child-nav li .level-2 li a:before {
    left: 50px;
}

ul#main-nav ul.child-nav li .level-2 li.has-child-item > a:after {
    padding: 8px;
}

ul#main-nav ul.child-nav li .level-3 li a:before {
    left: 70px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HEADINGS*/
/*================================================*/
h1 {
    font-size: 36px;
    font-size: 2.76923rem;
}

h2 {
    margin-top: 15px;
    font-size: 30px;
    font-size: 2.30769rem;
}

h3 {
    margin-top: 15px;
    font-size: 24px;
    font-size: 1.84615rem;
}

h4 {
    font-size: 18px;
    font-size: 1.38462rem;
}

h5 {
    font-size: 16px;
    font-size: 1.23077rem;
}

h6 {
    font-size: 14px;
    font-size: 1.07692rem;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* BLOCKQUOTES*/
/*================================================*/
blockquote {
    font-size: 14px;
    font-size: 1.07692rem;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PANELS*/
/*================================================*/
.panel .panel-header,
.panel .panel-footer {
    padding: 10px 12px;
}

.panel .panel-content {
    padding: 12px;
}

.panel .panel-header {
    position: relative;
    border-radius: 4px 4px 0px 0;
    border-bottom: 1px solid #CCCCCC;
}

.panel .panel-header .panel-title {
    color: #333333;
    font-size: 16px;
    font-size: 1.23077rem;
    font-weight: bold;
    margin: 5px 0;
}

.panel .panel-header .panel-subtitle {
    color: #585858;
    font-size: 12px;
    font-size: 0.92308rem;
    margin: 0;
}

.panel .panel-header .panel-actions {
    position: absolute;
    top: 10px;
    right: 12px;
}

.panel .panel-header .panel-actions ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.panel .panel-header .panel-actions ul li {
    display: inline-block;
}

.panel .panel-header .panel-actions ul li.action {
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    color: #585858;
    box-shadow: 1px 1px 2px;
    margin-right: 2px;
}

.panel .panel-header .panel-actions ul li:hover {
    color: #202020;
}

.panel .panel-header .panel-actions ul li span {
    vertical-align: middle;
}

.panel .panel-header .panel-actions ul li.toggle-panel span:before {
    font-family: "FontAwesome";
    font-size: 10px;
    font-size: 0.76923rem;
    content: "\f068";
}

.panel .panel-header .panel-actions ul li.toggle-panel.panel-collapse span:before {
    content: "\f067";
}

.panel .panel-footer {
    border: none;
}

.panel .panel-header.border {
    border-width: 2px;
    background: none !important;
}

.panel .panel-header.border .panel-title,
.panel .panel-header.border .panel-actions {
    color: #333333 !important;
}

.panel .panel-header.panel-success {
    background: #67C23A;
}

.panel .panel-header.panel-success .panel-title,
.panel .panel-header.panel-success .panel-actions li.action {
    color: #FFF;
}

.panel .panel-header.panel-success .panel-actions li.action {
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 1px 1px 2px #4F6C23;
}

.panel .panel-header.panel-success.border {
    border-color: #67C23A;
}

.panel .panel-header.panel-warning {
    background: #E6A23C;
}

.panel .panel-header.panel-warning .panel-title,
.panel .panel-header.panel-warning .panel-actions li.action {
    color: #FFF;
}

.panel .panel-header.panel-warning .panel-actions li.action {
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 1px 1px 2px #BA6C01;
}

.panel .panel-header.panel-warning.border {
    border-color: #E6A23C;
}

.panel .panel-header.panel-danger {
    background: #F56C6C;
}

.panel .panel-header.panel-danger .panel-title,
.panel .panel-header.panel-danger .panel-actions li.action {
    color: #FFF;
}

.panel .panel-header.panel-danger .panel-actions li.action {
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 1px 1px 2px #7E1E1B;
}

.panel .panel-header.panel-danger.border {
    border-color: #F56C6C;
}

.panel .panel-header.panel-info {
    background: #2D8CF0;
}

.panel .panel-header.panel-info .panel-title,
.panel .panel-header.panel-info .panel-actions li.action {
    color: #FFF;
}

.panel .panel-header.panel-info .panel-actions li.action {
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 1px 1px 2px #2D8CF0;
}

.panel .panel-header.panel-info.border {
    border-color: #2D8CF0;
}

.panel .panel-header.panel-lighter-1 {
    background: #006AC3;
}

.panel .panel-header.panel-lighter-1 .panel-title,
.panel .panel-header.panel-lighter-1 .panel-actions {
    color: #FFFFFF;
}

.panel .panel-header.panel-lighter-1.border {
    border-color: #006AC3;
}

.panel .panel-header.panel-lighter-2 {
    background: #0B8FFF;
}

.panel .panel-header.panel-lighter-2 .panel-title,
.panel .panel-header.panel-lighter-2 .panel-actions {
    color: #FFFFFF;
}

.panel .panel-header.panel-lighter-2.border {
    border-color: #0B8FFF;
}

.panel .panel-header.panel-primary {
    background: #004E90;
}

.panel .panel-header.panel-primary .panel-title,
.panel .panel-header.panel-primary .panel-actions {
    color: #FFFFFF;
}

.panel .panel-header.panel-primary.border {
    border-color: #004E90;
}

.panel .panel-header.panel-darker-1 {
    background: #003867;
}

.panel .panel-header.panel-darker-1 .panel-title,
.panel .panel-header.panel-darker-1 .panel-actions {
    color: #FFFFFF;
}

.panel .panel-header.panel-darker-1.border {
    border-color: #003867;
}

.panel .panel-header.panel-darker-2 {
    background: #002D53;
}

.panel .panel-header.panel-darker-2 .panel-title,
.panel .panel-header.panel-darker-2 .panel-actions {
    color: #FFFFFF;
}

.panel .panel-header.panel-darker-2.border {
    border-color: #002D53;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* ACCORDIONS*/
/*================================================*/
.panel-accordion {
    border: 1px solid #ECECEC;
    box-shadow: none;
}

.panel-accordion:hover {
    box-shadow: 1px 1px 2px #ECECEC;
}

.panel-accordion .panel-header {
    padding: 0;
}

.panel-accordion .panel-header .panel-title {
    margin: 0;
    font-size: 14px;
    font-size: 1.07692rem;
    line-height: 14px;
    line-height: 1.07692rem;
    padding: 12px;
    display: block;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* TABS*/
/*================================================*/
.tabs {
    background: #F7F7F7;
    margin-bottom: 20px;
    margin-top: 15px;
}

.tabs .nav-tabs > li > a {
    border-radius: 0;
}

.tabs .nav-tabs > li.active a {
    border-top: 2px solid #004E90;
}

.tabs .nav-tabs.nav-justified > li.active a {
    border-top: 2px solid #004E90;
}

.tabs .tab-content {
    background: #FFFFFF;
    padding: 10px;
    border: 1px solid #DDD;
    border-top: 0;
}

.tabs.tabs-vertical .nav-tabs {
    border: 0;
}

.tabs.tabs-vertical .nav-tabs > li {
    float: none;
    margin-bottom: 0;
}

.tabs.tabs-vertical .nav-tabs > li:last-child a {
    border-bottom: 0;
}

.tabs.tabs-vertical .tab-content {
    overflow: hidden;
    border: 1px solid #DDD;
}

.tabs.tabs-vertical.tabs-left .nav-tabs {
    float: left;
}

.tabs.tabs-vertical.tabs-left .nav-tabs li {
    margin-right: -3px;
}

.tabs.tabs-vertical.tabs-left .nav-tabs li.active a {
    border: 1px solid #DDD;
    border-right-color: transparent;
    border-left: 2px solid #004E90;
}

.tabs.tabs-vertical.tabs-right .nav-tabs {
    float: right;
}

.tabs.tabs-vertical.tabs-right .nav-tabs li {
    margin-left: -3px;
}

.tabs.tabs-vertical.tabs-right .nav-tabs li.active a {
    border: 1px solid #DDD;
    border-left-color: transparent;
    border-right: 2px solid #004E90;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* BUTTONS*/
/*================================================*/
.btn {
    border-radius: 2px;
    border: 1px solid transparent;
    transition: all 0.5s ease !important;
    background-image: none !important;
    box-shadow: none !important;
    background: #ECECEC;
}

.btn:hover {
    background: #CCCCCC;
}

.btn.btn-wide {
    min-width: 120px;
}

.btn.btn-o {
    background: none;
    font-weight: bold;
}

.btn.btn-transparent {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: transparent !important;
    outline-color: transparent !important;
}

.btn.btn-loading i {
    padding: 0 5px;
    position: relative;
}

.btn-group-vertical .btn {
    margin-top: 0;
    margin-bottom: 0;
}

.btn-success {
    background: #67C23A !important;
    border-color: #67C23A !important;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
    background: #719A32 !important;
    color: #FFF !important;
}

.btn-success.btn-o {
    color: #67C23A !important;
}

.btn-success.btn-o:hover, .btn-success.btn-o:focus, .btn-success.btn-o:active {
    color: #FFF !important;
}

.btn-warning {
    background: #E6A23C;
    border-color: #E6A23C;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
    background: #F79001;
    color: #FFF;
}

.btn-warning.btn-o {
    color: #E6A23C;
}

.btn-warning.btn-o:hover, .btn-warning.btn-o:focus, .btn-warning.btn-o:active {
    color: #FFF;
}

.btn-danger {
    background: #F56C6C;
    border-color: #F56C6C;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    background: #B02A26;
    color: #FFF;
}

.btn-danger.btn-o {
    color: #F56C6C;
}

.btn-danger.btn-o:hover, .btn-danger.btn-o:focus, .btn-danger.btn-o:active {
    color: #FFF;
}

.btn-info {
    background: #2D8CF0;
    border-color: #2D8CF0;
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
    background: #2880DC;
    color: #FFF;
}

.btn-info.btn-o {
    color: #2D8CF0;
}

.btn-info.btn-o:hover, .btn-info.btn-o:focus, .btn-info.btn-o:active {
    color: #FFF;
}

.btn-lighter-1 {
    background: #006AC3;
    border-color: #006AC3;
    color: #FFFFFF;
}

.btn-lighter-1:hover, .btn-lighter-1:focus, .btn-lighter-1:active {
    background: #00549A !important;
    color: #FFFFFF;
}

.btn-lighter-1.btn-o {
    color: #006AC3;
}

.btn-lighter-1.btn-o:hover, .btn-lighter-1.btn-o:focus, .btn-lighter-1.btn-o:active {
    color: #FFFFFF;
}

.btn-lighter-2 {
    background: #0B8FFF;
    border-color: #0B8FFF;
    color: #FFFFFF;
}

.btn-lighter-2:hover, .btn-lighter-2:focus, .btn-lighter-2:active {
    background: #007AE2 !important;
    color: #FFFFFF;
}

.btn-lighter-2.btn-o {
    color: #0B8FFF;
}

.btn-lighter-2.btn-o:hover, .btn-lighter-2.btn-o:focus, .btn-lighter-2.btn-o:active {
    color: #FFFFFF;
}

.btn-primary {
    background: #004E90 !important;
    border-color: #004E90 !important;
    color: #FFFFFF !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #003867 !important;
    color: #FFFFFF;
}

.btn-primary.btn-o {
    color: #004E90;
}

.btn-primary.btn-o:hover, .btn-primary.btn-o:focus, .btn-primary.btn-o:active {
    color: #FFFFFF;
}

.btn-darker-1 {
    background: #003867;
    border-color: #003867;
    color: #FFFFFF;
}

.btn-darker-1:hover, .btn-darker-1:focus, .btn-darker-1:active {
    background: #00223E !important;
    color: #FFFFFF;
}

.btn-darker-1.btn-o {
    color: #003867;
}

.btn-darker-1.btn-o:hover, .btn-darker-1.btn-o:focus, .btn-darker-1.btn-o:active {
    color: #FFFFFF;
}

.btn-darker-2 {
    background: #002D53;
    border-color: #002D53;
    color: #FFFFFF;
}

.btn-darker-2:hover, .btn-darker-2:focus, .btn-darker-2:active {
    background: #00172A !important;
    color: #FFFFFF;
}

.btn-darker-2.btn-o {
    color: #002D53;
}

.btn-darker-2.btn-o:hover, .btn-darker-2.btn-o:focus, .btn-darker-2.btn-o:active {
    color: #FFFFFF;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* ALERTS*/
/*================================================*/
.alert.alert-success {
    background: #67C23A !important;
    color: #FFFFFF;
}

.alert.alert-warning {
    background: #E6A23C !important;
    color: #FFFFFF;
}

.alert.alert-danger {
    background: #F56C6C !important;
    color: #FFFFFF;
}

.alert.alert-info {
    background: #2D8CF0 !important;
    color: #FFFFFF;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* MODALS*/
/*================================================*/
.modal .modal-content .modal-header.state {
    padding: 10px 15px;
}

.modal .modal-content .modal-header.state i {
    margin-right: 10px;
    border: 1px solid #FFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.modal .modal-content .modal-header.modal-success {
    background: #67C23A;
    color: #FFF;
}

.modal .modal-content .modal-header.modal-warning {
    background: #E6A23C;
    color: #FFF;
}

.modal .modal-content .modal-header.modal-danger {
    background: #F56C6C;
    color: #FFF;
}

.modal .modal-content .modal-header.modal-info {
    background: #2D8CF0;
    color: #FFF;
}

.modal-content .modal-header.modal-primary {
    background: #004E90;
    color: #FFFFFF;
    border-radius: 4px 4px 0 0;
}

.modal .modal-content .modal-footer {
    padding: 10px 15px;
}

.modal .modal-content .modal-footer .btn {
    margin-bottom: 0;
}

body.modal-open .animated {
    animation-fill-mode: initial;
}

body.modal-open .row.animated {
    -webkit-animation: none;
}

@media (min-width: 768px) {
    .modal-dialog {
        margin: 50px auto;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* FORMS*/
/*================================================*/
.form-group:last-child, .form-group:last-of-type {
    margin-bottom: 0;
}

.form-group .help-block {
    margin-bottom: 5px;
}

.form-group.has-success .form-control {
    border-color: #67C23A;
}

.form-group.has-success .control-label,
.form-group.has-success .form-control-feedback {
    color: #67C23A;
}

.form-group.has-warning .form-control {
    border-color: #E6A23C;
}

.form-group.has-warning .control-label,
.form-group.has-warning .form-control-feedback {
    color: #E6A23C;
}

.form-group.has-error .form-control {
    border-color: #F56C6C;
}

.form-group.has-error .control-label,
.form-group.has-error .form-control-feedback {
    color: #F56C6C;
}

form button.btn {
    margin-bottom: 0;
}

.form-stripe .form-group {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ECECEC;
}

.form-stripe .form-group:last-child, .form-stripe .form-group:last-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.input-with-icon {
    display: block;
    position: relative;
}

.input-with-icon > input {
    padding-left: 30px !important;
    background: rgba(0, 0, 0, 0);
    color: #FFF;
}

.input-with-icon i {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 5px;
    z-index: 10;
    padding: 0 5px;
    line-height: 34px;
    color: #999999;
}

.input-with-icon.right-icon-input > input {
    padding-left: 12px !important;
    padding-right: 30px !important;
}

.input-with-icon.right-icon-input i {
    left: auto;
    right: 5px;
}

.checkbox-custom {
    position: relative;
    margin-bottom: 5px;
}

.checkbox-custom.checkbox-inline {
    padding-left: 0;
    margin: 0;
}

.checkbox-custom.checkbox-inline label {
    margin-right: 15px;
}

.checkbox-custom:last-child, .checkbox-custom:last-of-type {
    margin-bottom: 0;
}

.checkbox-custom input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    margin-left: -20px;
}

.checkbox-custom input[type="checkbox"]:checked + label:after {
    font-family: "FontAwesome";
    content: "\F00C";
    top: 6px;
    left: 0;
    margin-top: -5px;
    font-size: 11px;
    line-height: 1;
    padding: 5px;
    width: 20px;
    height: 20px;
    color: #FFF;
}

.checkbox-custom input[type="checkbox"]:checked + label:before {
    border-color: #999999;
    border-width: 10px;
}

.checkbox-custom input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled:checked + label:after {
    color: #999999;
}

.checkbox-custom input[type="checkbox"]:disabled + label {
    cursor: not-allowed;
}

.checkbox-custom input[type="checkbox"]:disabled + label:before {
    background-color: #999999;
}

.checkbox-custom label.check {
    cursor: pointer;
    display: inline-block;
    padding-left: 30px !important;
    position: relative;
    transition: border .2s linear 0s, color .2s linear 0s;
    font-weight: normal;
}

.checkbox-custom label.check:before, .checkbox-custom label.check:after {
    position: absolute;
    display: inline-block;
    transition: border .2s linear 0s, color .2s linear 0s;
}

.checkbox-custom label.check:before {
    content: "";
    background-color: #FFF;
    border: 1px solid #C8C7CC;
    border-radius: 2px;
    height: 20px;
    width: 20px;
    left: 0;
    margin-right: 10px;
    top: 1px;
}

.checkbox-custom label.check + label.error {
    display: block;
}

.checkbox-success input[type="checkbox"]:checked + label:after {
    color: #FFF;
}

.checkbox-success input[type="checkbox"]:checked + label:before {
    border-color: #67C23A;
}

.checkbox-warning input[type="checkbox"]:checked + label:after {
    color: #FFF;
}

.checkbox-warning input[type="checkbox"]:checked + label:before {
    border-color: #E6A23C;
}

.checkbox-danger input[type="checkbox"]:checked + label:after {
    color: #FFF;
}

.checkbox-danger input[type="checkbox"]:checked + label:before {
    border-color: #F56C6C;
}

.checkbox-info input[type="checkbox"]:checked + label:after {
    color: #FFF;
}

.checkbox-info input[type="checkbox"]:checked + label:before {
    border-color: #1890FF;
}

.checkbox-primary input[type="checkbox"]:checked + label:after {
    color: #FFFFFF;
}

.checkbox-primary input[type="checkbox"]:checked + label:before {
    border-color: #004E90;
}

.radio-custom {
    position: relative;
    margin-bottom: 5px;
}

.radio-custom.radio-inline {
    padding-left: 0;
    margin: 0;
}

.radio-custom.radio-inline label {
    margin-right: 15px;
}

.radio-custom:last-child, .radio-custom:last-of-type {
    margin-bottom: 0;
}

.radio-custom input[type="radio"] {
    opacity: 0;
    position: absolute;
    margin-left: -20px;
}

.radio-custom input[type="radio"]:checked + label:before {
    border-width: 6px;
    background: #999999;
    border-color: #FFF;
}

.radio-custom input[type="radio"]:disabled {
    cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled:checked + label:before {
    background: #999999;
}

.radio-custom input[type="radio"]:disabled + label {
    cursor: not-allowed;
}

.radio-custom input[type="radio"]:disabled + label:before {
    background-color: #FFFFFF;
}

.radio-custom label {
    cursor: pointer;
    display: inline-block;
    padding-left: 30px !important;
    position: relative;
    line-height: 22px;
    min-height: 20px;
}

.radio-custom label:before, .radio-custom label:after {
    height: 18px;
    width: 18px;
    left: 0;
    margin-right: 10px;
    bottom: 2px;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
    display: inline-block;
    position: absolute;
    content: "";
}

.radio-custom label:before {
    border: 1px solid #D0D0D0;
    border-radius: 99px;
}

.radio-custom label:after {
    border: 1px solid #C8C7CC;
    border-radius: 99px;
}

.radio-custom label + label.error {
    display: block;
}

.radio-success input[type="radio"]:checked + label:before {
    background: #67C23A;
}

.radio-warning input[type="radio"]:checked + label:before {
    background: #E6A23C;
}

.radio-danger input[type="radio"]:checked + label:before {
    background: #F56C6C;
}

.radio-info input[type="radio"]:checked + label:before {
    background: #1890FF;
}

.radio-primary input[type="radio"]:checked + label:before {
    background: #004E90;
}

.switch {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 26px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CCC;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #004E90;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.required {
    display: inline-block;
    color: #F56C6C;
    font-size: 15px;
    font-size: 1.15385rem;
    font-weight: bold;
    margin-left: 3px;
}

label.error {
    color: #F56C6C;
    margin-bottom: 0;
    margin-top: 3px;
    font-size: 11px;
    font-size: 0.84615rem;
    width: 100%;
}

.message-container {
    display: none;
    padding: 10px;
}

.message-container ul {
    padding-left: 20px;
}

.message-container ul label {
    color: #FFFFFF;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* FROMS - WIZARD*/
/*================================================*/
.form-wizard .tab-steps ul {
    list-style: none;
    padding: 0;
}

.form-wizard .tab-steps ul li {
    display: inline-block;
    padding-top: 5px;
    position: relative;
    -webkit-transition-property: margin;
    -moz-transition-property: margin;
    transition-property: margin;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.form-wizard .tab-steps ul li a {
    padding: 10px 15px;
    background-color: #ECECEC;
    font-size: 16px;
    line-height: 26px;
    color: #999999;
    border-radius: 4px;
    min-width: 100px;
    display: block;
}

.form-wizard .tab-steps ul li a .tab-number {
    margin-right: 6px;
    border-radius: 50%;
    border: 2px solid #999999;
    width: 26px;
    height: 26px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    line-height: 22px;
}

.form-wizard .tab-steps ul li.active a {
    background: #004E90;
    color: #FFFFFF;
}

.form-wizard .tab-steps ul li.active a .tab-number {
    border-color: #F7F7F7;
}

.form-wizard .tab-content {
    min-height: 100px;
    padding: 10px;
    margin: 15px 0;
}

.form-wizard .tab-buttons .next,
.form-wizard .tab-buttons .finish {
    float: right;
}

.form-wizard .tab-buttons .finish {
    margin-left: 10px;
}

.form-wizard.wizard-block .tab-steps ul {
    display: table;
    width: 100%;
}

.form-wizard.wizard-block .tab-steps ul li {
    display: table-cell;
    text-align: center;
    padding-right: 4px;
}

.form-wizard.wizard-block .tab-steps ul li:last-child {
    padding-right: 0;
}

.form-wizard.wizard-arrows .tab-steps li {
    min-width: 100px;
}

.form-wizard.wizard-arrows .tab-steps li a {
    padding-right: 25px;
    padding-left: 10px;
    position: relative;
    height: 46px;
}

.form-wizard.wizard-arrows .tab-steps li a:before, .form-wizard.wizard-arrows .tab-steps li a:after {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-color: #ECECEC #ECECEC #ECECEC transparent;
    border-style: solid;
    border-width: 23px 10px 23px 20px;
}

.form-wizard.wizard-arrows .tab-steps li a:before {
    border-color: #F7F7F7 #CCCCCC #CCCCCC transparent;
    left: -28px;
}

.form-wizard.wizard-arrows .tab-steps li:first-child a {
    padding-left: 25px;
}

.form-wizard.wizard-arrows .tab-steps li:first-child a:before, .form-wizard.wizard-arrows .tab-steps li:first-child a:after {
    content: none;
}

.form-wizard.wizard-arrows .tab-steps li.active a:after {
    border-color: #004E90 #004E90 #004E90 transparent;
}

.form-wizard.wizard-icons .tab-steps ul {
    height: 90px;
}

.form-wizard.wizard-icons .tab-steps ul li {
    margin-right: 0;
}

.form-wizard.wizard-icons .tab-steps ul li a {
    background: none;
    color: #FFFFFF;
    padding: 10px 0;
}

.form-wizard.wizard-icons .tab-steps ul li a .tab-icon {
    border-radius: 50%;
    border: 2px solid #CCCCCC;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    line-height: 36px;
    position: relative;
    z-index: 2;
    background: #CCCCCC;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.form-wizard.wizard-icons .tab-steps ul li a .tab-text {
    padding: 5px 15px;
    font-size: 12px;
    position: absolute;
    top: 50px;
    display: block;
    width: 100%;
    color: #CCCCCC;
}

.form-wizard.wizard-icons .tab-steps ul li a:before {
    content: "";
    border-top: 2px solid #CCCCCC;
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
}

.form-wizard.wizard-icons .tab-steps ul li:first-child a:before {
    content: none;
}

.form-wizard.wizard-icons .tab-steps ul li.validated a {
    color: #FFFFFF;
}

.form-wizard.wizard-icons .tab-steps ul li.validated a:before {
    border-color: #004E90;
}

.form-wizard.wizard-icons .tab-steps ul li.validated a .tab-icon {
    border-color: #004E90;
    background: #004E90;
}

.form-wizard.wizard-icons .tab-steps ul li.validated a .tab-text {
    color: #004E90;
}

.form-wizard.wizard-icons .tab-steps ul li.active a {
    color: #004E90;
}

.form-wizard.wizard-icons .tab-steps ul li.active a:before {
    border-color: #004E90;
}

.form-wizard.wizard-icons .tab-steps ul li.active a .tab-icon {
    border-color: #004E90;
    background: #FFFFFF;
}

.form-wizard.wizard-icons .tab-steps ul li.active a .tab-text {
    color: #004E90;
}

@media only screen and (max-width: 991px) {
    .form-wizard.wizard-scroll-tabs .tab-steps ul, .form-wizard.wizard-arrows .tab-steps ul, .form-wizard.wizard-icons .tab-steps ul {
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

    .form-wizard.wizard-scroll-tabs .tab-steps ul li, .form-wizard.wizard-arrows .tab-steps ul li, .form-wizard.wizard-icons .tab-steps ul li {
        padding-right: 0;
        display: inline-block;
        width: 100%;
    }

    .form-wizard.wizard-scroll-tabs .tab-steps ul li.validated, .form-wizard.wizard-arrows .tab-steps ul li.validated, .form-wizard.wizard-icons .tab-steps ul li.validated {
        margin-left: -100%;
    }

    .form-wizard.wizard-scroll-tabs .tab-steps ul li.validated.active, .form-wizard.wizard-arrows .tab-steps ul li.validated.active, .form-wizard.wizard-icons .tab-steps ul li.validated.active {
        margin-left: 0;
    }

    .form-wizard.wizard-list-tabs .tab-steps ul li {
        padding-right: 0;
        display: block;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* TABLES*/
/*================================================*/
.table-layout {
    table-layout: fixed;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background: #67C23A;
    color: #FFF;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background: #E6A23C;
    color: #FFF;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background: #F56C6C;
    color: #FFF;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background: #1890FF;
    color: #FFF;
}

.table.text-center {
    text-align: center !important;
}

.table.text-center th {
    text-align: center !important;
}

.table.table-hover > tbody > tr:hover > td, .table.table-hover > tbody > tr:hover > th {
    background-color: #ECECEC;
}

.table button.btn {
    margin-bottom: 0;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* LIGHT-BOX*/
/*================================================*/
.gallery-wrap {
    padding: 5px;
}

.gallery-wrap .row > div {
    padding: 4px;
}

.unshown {
    visibility: hidden;
}

.shown {
    visibility: visible;
}

.badge {
    padding: 4px 8px;
    margin: 0 2px;
}

.badge.badge-xs {
    padding: 4px 6px;
    font-size: 10px;
}

.badge.badge-md {
    padding: 5px 8px;
    font-size: 14px;
    line-height: 1.5;
}

.badge.badge-lg {
    padding: 6px 10px;
    font-size: 16px;
    line-height: 1.4;
}

.badge.badge-top-right {
    position: absolute;
    top: -5px;
    right: -5px;
}

.badge.badge-top-left {
    position: absolute;
    top: -5px;
    left: -5px;
}

.badge.badge-bottom-right {
    position: absolute;
    bottom: -5px;
    right: -5px;
}

.badge.badge-bottom-left {
    position: absolute;
    bottom: -5px;
    left: -5px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - BOXES*/
/*================================================*/
.widgetbox .title {
    font-weight: bold;
    margin: 8px 0;
}

.widgetbox .subtitle {
    margin: 3px 0;
}

.widgetbox .icon {
    display: block;
}

.widgetbox.wbox-1 .title {
    margin-top: 0;
    font-size: 28px;
    font-size: 2.15385rem;
    line-height: 28px;
    line-height: 2.15385rem;
}

.widgetbox.wbox-1 .subtitle {
    font-size: 18px;
    font-size: 1.38462rem;
    line-height: 18px;
    line-height: 1.38462rem;
}

.widgetbox.wbox-2 {
    text-align: right;
}

.widgetbox.wbox-2 .title {
    font-size: 28px;
    font-size: 2.15385rem;
    line-height: 28px;
    line-height: 2.15385rem;
}

.widgetbox.wbox-2 .subtitle {
    font-size: 14px;
    font-size: 1.07692rem;
    line-height: 14px;
    line-height: 1.07692rem;
}

.widgetbox.wbox-2 .icon {
    text-align: left;
    font-size: 60px;
    font-size: 4.61538rem;
}

.widgetbox.wbox-3 {
    text-align: center;
}

.widgetbox.wbox-3 a {
    color: #FFFFFF;
}

.widgetbox.wbox-3 .title {
    font-size: 22px;
    font-size: 1.69231rem;
    line-height: 22px;
    line-height: 1.69231rem;
}

.widgetbox.wbox-3 .subtitle {
    font-size: 14px;
    font-size: 1.07692rem;
    line-height: 14px;
    line-height: 1.07692rem;
    margin-bottom: 15px;
}

.widgetbox.wbox-3 .numbers {
    font-size: 20px;
    font-size: 1.53846rem;
    line-height: 20px;
    line-height: 1.53846rem;
    margin-bottom: 10px;
}

.widgetbox.wbox-3 .icon {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 48px;
    font-size: 3.69231rem;
}

.widgetbox.wbox-4 {
    text-align: center;
    color: #FFFFFF;
}

.widgetbox.wbox-4 a {
    color: #FFFFFF;
}

.widgetbox.wbox-4 .title {
    font-size: 22px;
    font-size: 1.69231rem;
    line-height: 22px;
    line-height: 1.69231rem;
}

.widgetbox.wbox-4 .subtitle {
    font-size: 16px;
    font-size: 1.23077rem;
    line-height: 16px;
    line-height: 1.23077rem;
    font-weight: bold;
}

.widgetbox.wbox-4 .icon {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 48px;
    font-size: 3.69231rem;
}

.widgetbox.wbox-4 .owl-theme .owl-nav {
    margin-top: 0;
}

.widgetbox.wbox-4 .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.4);
}

.widgetbox.wbox-4 .owl-theme .owl-dots .owl-dot.active span, .widgetbox.wbox-4 .owl-theme .owl-dots .owl-dot:hover span {
    background: #ECECEC;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - LISTS*/
/*================================================*/
.widget-list {
    position: relative;
}

.widget-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list.list-to-do .add-item {
    position: absolute;
    right: 15px;
    top: 10px;
    box-shadow: 2px 2px 1px #FFFFFF !important;
}

.widget-list.list-to-do .list-title {
    padding: 12px 10px;
    margin: 0;
}

.widget-list.list-to-do ul li {
    padding: 8px 10px;
}

.widget-list.list-to-do ul li:nth-child(odd) {
    background: #F7F7F7;
}

.widget-list.list-to-do ul li input[type="checkbox"]:checked + label {
    text-decoration: line-through;
}

.widget-list.list-to-do ul label {
    margin-bottom: 0;
}

.widget-list.list-left-element li {
    background: #F7F7F7;
    margin-bottom: 3px;
}

.widget-list.list-left-element li:last-child {
    margin-bottom: 0;
}

.widget-list.list-left-element li:hover {
    background: #ECECEC;
}

.widget-list.list-left-element a {
    display: table;
    padding: 6px 8px;
}

.widget-list.list-left-element .left-element,
.widget-list.list-left-element .text {
    display: table-cell;
    vertical-align: middle;
}

.widget-list.list-left-element .left-element {
    min-width: 45px;
    height: 45px;
}

.widget-list.list-left-element .left-element i {
    font-size: 30px;
    padding: 8px;
}

.widget-list.list-left-element .left-element img {
    width: 100%;
    border-radius: 3px;
}

.widget-list.list-left-element .text {
    width: 90%;
    padding-left: 12px;
}

.widget-list.list-left-element .text .title {
    display: block;
    font-size: 16px;
    color: #000000;
}

.widget-list.list-left-element .text .subtitle {
    color: #999999;
}

.widget-list.list-left-element.list-sm a {
    padding: 4px 8px;
}

.widget-list.list-left-element.list-sm a .left-element {
    max-width: 30px;
    height: 30px;
}

.widget-list.list-left-element.list-sm a .left-element i {
    font-size: 20px;
    padding: 5px;
}

.widget-list.list-left-element.list-sm a .text {
    white-space: nowrap;
}

.widget-list.list-left-element.list-sm a .text .title {
    font-size: 13px;
    display: inline-block;
}

.widget-list.list-left-element.list-sm a .text .subtitle {
    font-size: 11px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - POSTS*/
/*================================================*/
.widget-post .panel-header {
    position: relative;
    padding: 0;
}

.widget-post .panel-header img {
    width: 100%;
}

.widget-post .panel-header .main-tag {
    position: absolute;
    width: 100%;
    text-align: center;
    top: -8px;
}

.widget-post .panel-header .main-tag span {
    background-color: #F7F7F7;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: bold;
}

.widget-post .panel-header .group-tag {
    position: absolute;
    bottom: 8px;
    padding-left: 5px;
}

.widget-post .panel-header .group-tag .badge {
    letter-spacing: 2px;
    border-radius: 3px;
    background-color: #202020;
    color: #FFFFFF;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* WIDGETS - TIMELINES*/
/*================================================*/
.timeline {
    position: relative;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 20px;
    height: 100%;
    width: 3px;
    background: #CCCCCC;
}

.timeline .timeline-box {
    margin-bottom: 20px;
    position: relative;
}

.timeline .timeline-box .timeline-icon {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    background: #CCCCCC;
    text-align: center;
}

.timeline .timeline-box .timeline-icon i {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 6px;
    color: #FFFFFF;
}

.timeline .timeline-box .timeline-content {
    position: relative;
    margin-left: 54px;
    background: white;
    border-radius: 4px 4px 0px 0;
    padding: 8px 15px;
}

.timeline .timeline-box .timeline-content:before {
    font-family: "FontAwesome";
    font-size: 24px;
    font-size: 1.84615rem;
    content: "\f0d9";
    color: #FFFFFF;
    position: absolute;
    top: 6px;
    left: -8px;
}

.timeline .timeline-box .timeline-content .tl-title {
    margin-top: 5px;
}

.timeline .timeline-box .timeline-footer {
    margin-left: 54px;
    padding: 3px 8px;
    background: #F7F7F7;
    border-radius: 0 0px 4px 4px;
}

.timeline .timeline-box .timeline-footer span {
    font-size: 10px;
    color: #999999;
}

.timeline.tl-right:before {
    left: auto;
    right: 20px;
}

.timeline.tl-right .timeline-box .timeline-icon {
    position: absolute;
    right: 7px;
    left: initial;
}

.timeline.tl-right .timeline-box .timeline-content {
    margin-right: 54px;
    margin-left: 0;
}

.timeline.tl-right .timeline-box .timeline-content:before {
    right: -8px;
    content: "\f0da";
    left: initial;
}

.timeline.tl-right .timeline-box .timeline-footer {
    margin-right: 54px;
    margin-left: 0;
    text-align: right;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - ACCOUNTS*/
/*================================================*/

html.accounts .page-body {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 50px;
}

html.accounts .logo {
    max-width: 420px;
    margin: 20px auto 0;
    margin-bottom: 40px;
    color: #FFF;
    text-align: center;
    font-size: 1.5rem;
    line-height: 80px;
}

html.accounts .logo img {
    display: block;
    margin: auto;
    width: 50%;
    min-width: 140px;
}

html.accounts .box {
    background: rgba(0, 0, 0, .5);
    border-radius: 5px;
    padding: 15px;
    max-width: 420px;
    margin: 20px auto 0;
}

html.sign-in body {
    background: #F7F7F7;
}

html.sign-in body hr {
    border-color: #CCCCCC;
    width: 90%;
    margin: 15px auto;
}

html.forgot-password body {
    background: #005CAA;
}

html.lock-screen {
    background: #004E90;
}

html.lock-screen .wrap .box {
    max-width: 350px;
    padding: 0;
    z-index: 100;
}

html.lock-screen .wrap .panel .panel-content {
    border-radius: 5px;
}

html.lock-screen .logo {
    max-width: 350px;
    margin-bottom: 50px;
}

html.lock-screen .logo .avatar {
    margin: auto;
    max-width: 150px;
    box-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 2px solid #003867;
    padding: 2px;
}

html.lock-screen .logo .avatar img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #001C34;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - ERRORS*/
/*================================================*/
.error-number,
.error-name,
.error-text {
    text-align: center;
}

.error-number {
    font-size: 130px;
    font-size: 10rem;
    line-height: 130px;
    line-height: 10rem;
    color: #004E90;
}

.error-name {
    margin: 0;
}

.error-text {
    margin-top: 20px;
    font-size: 14px;
    font-size: 1.07692rem;
}

html.error-500 .page-body,
html.error-404 .page-body {
    padding: 10px;
}

html.error-500 body {
    background: #003867;
}

html.error-404 body {
    background: #ECECEC;
}

@media only screen and (max-width: 767px) {
    .error-number {
        font-size: 90px;
        font-size: 6.92308rem;
        line-height: 90px;
        line-height: 6.92308rem;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - FAQ*/
/*================================================*/
.faq-accordion .panel {
    border-radius: 0;
    margin: 0;
}

.faq-accordion .panel .panel-header,
.faq-accordion .panel .panel-footer {
    border-radius: 0;
}

.faq-accordion .panel .panel-header .panel-title {
    font-weight: normal;
    font-size: 14px;
    font-size: 1.07692rem;
    line-height: 20px;
    line-height: 1.53846rem;
    padding: 8px 12px;
}

.faq-accordion .panel .panel-content {
    margin: 15px 20px;
    background: #F7F7F7;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - USER PROFILE*/
/*================================================*/
.profile-photo {
    max-width: 140px;
    display: inline-block;
    vertical-align: top;
}

.profile-photo img {
    width: 100%;
    border-radius: 3px;
}

.user-header-info {
    display: inline-block;
    margin-left: 20px;
}

.user-header-info .user-name {
    color: #585858;
}

.user-header-info .user-position {
    padding: 4px 12px;
    display: inline-block;
    border-radius: 3px;
    margin-top: 0;
    background-color: #004E90;
    color: #FFF;
}

.user-header-info .user-social-media {
    position: absolute;
    margin-top: 5px;
}

.user-header-info .user-social-media a {
    color: #999999;
}

.user-header-info .user-social-media a:hover {
    color: #004E90;
}

ul.user-contact-info {
    list-style: none;
    padding: 0;
}

ul.user-contact-info li {
    padding: 4px 0;
    border-bottom: 1px solid #ECECEC;
}

ul.user-contact-info li:last-child {
    border: none;
}

@media only screen and (max-width: 767px) {
    .user-header-info .user-social-media {
        position: initial;
    }
}

@media only screen and (max-width: 450px) {
    .profile-photo {
        display: block;
        max-width: initial;
        margin: auto !important;
    }

    .user-header-info {
        margin-left: 0;
    }

    .user-header-info .user-name {
        margin-top: 20px;
    }
}

.search-results-list {
    padding: 10px 15px;
}

.search-results-list .search-item:nth-of-type(odd) {
    background: #F7F7F7;
}

.search-results-list .search-item {
    padding: 8px;
    border-top: 1px solid #DDD;
}

.search-results-list .search-item:hover {
    background-color: #ECECEC;
}

.search-results-list .search-item p {
    line-height: 16px;
}

.search-results-list .search-item .search-title {
    color: #404040;
    text-decoration: underline;
}

.search-results-list .search-item .search-title:hover {
    color: #006AC3;
}

.search-results-grid .search-item-content {
    height: 200px;
}

.search-results-grid .search-item-content .search-title {
    color: #404040;
    text-decoration: underline;
}

.search-results-grid .search-item-content .search-title:hover {
    color: #006AC3;
}

.search-results-grid .search-item-content .text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.search-results-grid .search-item-content .badge {
    padding: 4px 6px;
    font-size: 10px;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - PROJECTS List*/
/*================================================*/
.projects-list .p-progress,
.project-detail .p-progress {
    position: relative;
    float: left;
    text-align: center;
    margin-right: 20px;
    padding-top: 5px;
}

.projects-list .p-progress .value,
.project-detail .p-progress .value {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    font-weight: bold;
    display: block;
    left: 0;
    right: 0;
}

.projects-list .header-project-list,
.projects-list .item-project-list {
    text-align: center;
    padding: 6px;
    margin: 0;
}

.projects-list .header-project-list {
    font-size: 12px;
    font-weight: bold;
    border-bottom: 2px solid #CCCCCC;
}

.projects-list .header-project-list .h-progress {
    float: left;
    margin-right: 20px;
    width: 50px;
}

.projects-list .item-project-list:nth-of-type(even) {
    background: #F7F7F7;
}

.projects-list .item-project-list .p-project {
    text-align: left;
}

.projects-list .item-project-list .p-project .p-name {
    font-weight: bold;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #585858;
}

.projects-list .item-project-list .p-project .p-update {
    display: block;
}

.projects-list .item-project-list .p-tags,
.projects-list .item-project-list .p-options,
.projects-list .item-project-list .p-deadline {
    padding-top: 20px;
}

.projects-list .item-project-list .p-tags .badge {
    border-radius: 3px;
}

.projects-list .item-project-list .p-deadline {
    font-weight: bold;
}

.projects-list .item-project-list .p-deadline.days {
    color: #F56C6C;
}

.projects-list .item-project-list .p-deadline.weaks {
    color: #E6A23C;
}

.projects-list .item-project-list .p-options .btn {
    border-color: #CCCCCC;
    padding: 6px 8px;
}

@media only screen and (max-width: 1199px) {
    .projects-list .header-project-list {
        display: none;
    }

    .projects-list .item-project-list {
        border-bottom: 1px solid #CCCCCC;
    }

    .projects-list .item-project-list .p-project {
        height: 65px;
    }

    .projects-list .item-project-list .p-tags,
    .projects-list .item-project-list .p-options,
    .projects-list .item-project-list .p-deadline {
        padding-top: 10px;
    }

    .projects-list .item-project-list .p-deadline:before {
        content: "Deadline: ";
        color: #999999;
        font-size: 11px;
    }
}

@media only screen and (max-width: 767px) {
    .projects-list .item-project-list .p-project {
        height: auto;
    }

    .projects-list .item-project-list .p-project .p-progress {
        float: none;
        margin-right: 0;
    }

    .projects-list .item-project-list .p-project .p-name {
        white-space: initial;
        text-align: center;
    }

    .projects-list .item-project-list .p-project .p-update {
        text-align: center;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* PAGES - PROJECTS Detail*/
/*================================================*/
.project-detail .p-data {
    margin-left: 100px;
}

.project-detail .p-data .p-name {
    color: #585858;
    margin-bottom: 3px;
    font-size: 18px;
}

.project-detail .p-data .p-update {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #CCCCCC;
    font-size: 12px;
}

.project-detail .p-data .p-status {
    float: right;
    margin-left: 10px;
}

.project-detail .p-data .p-status .badge {
    border-radius: 3px;
}

.project-detail .p-data .p-deadline {
    text-align: right;
}

.project-detail .p-data .p-deadline:after {
    content: "|";
    padding-left: 8px;
}

.p-info ul {
    list-style: none;
    padding: 0;
    width: 49%;
    display: inline-block;
}

.p-info ul li {
    padding: 2px 5px;
    font-size: 14px;
    border-bottom: 1px solid #CCCCCC;
}

.p-info ul li:nth-of-type(odd) {
    background: #F7F7F7;
}

.p-info ul li:last-child {
    border-bottom: none;
}

.p-info span {
    color: #004E90;
    font-weight: bold;
    font-size: 13px;
    display: block;
}

.p-info .p-description {
    padding: 5px;
}

@media only screen and (max-width: 767px) {
    .project-detail .p-progress {
        margin-right: 0;
        display: block;
        float: none;
    }

    .project-detail .p-data {
        margin-left: 0;
    }

    .project-detail .p-data .p-name {
        margin-bottom: 5px;
    }

    .p-info ul {
        width: 100%;
        display: block;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - BACKGROUNDS &  BORDERS*/
/*================================================*/
.bg-success {
    background: #67C23A !important;
}

.bg-warning {
    background: #E6A23C !important;
}

.bg-danger {
    background: #F56C6C !important;
}

.bg-info {
    background: #1890FF !important;
}

.bg-lighter-1 {
    background: #006AC3 !important;
}

.bg-lighter-2 {
    background: #0B8FFF !important;
}

.bg-primary {
    background: #004E90 !important;
}

.bg-darker-1 {
    background: #003867 !important;
}

.bg-darker-2 {
    background: #002D53 !important;
}

.bg-scale-0 {
    background: rgba(0, 0, 0, 0) !important;
}

.bg-scale-1 {
    background: #ECECEC !important;
}

.bg-scale-2 {
    background: #CCCCCC !important;
}

.bg-scale-3 {
    background: #999999 !important;
}

.bg-scale-4 {
    background: #585858 !important;
}

.bg-scale-5 {
    background: #202020 !important;
}

.bg-scale-6 {
    background: #151515 !important;
}

.bg-none {
    background: none !important;
}

.bg-trans {
    background: rgba(255, 255, 255, 0.4);
}

.b-rounded {
    border-radius: 5px;
}

.b-straight {
    border-radius: 0 !important;
}

.b-none {
    border: 0 solid #CCC !important;
}

.b-xs {
    border: 1px solid #CCC !important;
}

.b-sm {
    border: 2px solid #CCC !important;
}

.b-md {
    border: 3px solid #CCC !important;
}

.b-lg {
    border: 4px solid #CCC !important;
}

.b-xl {
    border: 5px solid #CCC !important;
}

.bt-none {
    border-top: 0 solid #CCC !important;
}

.bt-xs {
    border-top: 1px solid #CCC !important;
}

.bt-sm {
    border-top: 2px solid #CCC !important;
}

.bt-md {
    border-top: 3px solid #CCC !important;
}

.bt-lg {
    border-top: 4px solid #CCC !important;
}

.bt-xl {
    border-top: 5px solid #CCC !important;
}

.bb-none {
    border-bottom: 0 solid #CCC !important;
}

.bb-xs {
    border-bottom: 1px solid #CCC !important;
}

.bb-sm {
    border-bottom: 2px solid #CCC !important;
}

.bb-md {
    border-bottom: 3px solid #CCC !important;
}

.bb-lg {
    border-bottom: 4px solid #CCC !important;
}

.bb-xl {
    border-bottom: 5px solid #CCC !important;
}

.bl-none {
    border-left: 0 solid #CCC !important;
}

.bl-xs {
    border-left: 1px solid #CCC !important;
}

.bl-sm {
    border-left: 2px solid #CCC !important;
}

.bl-md {
    border-left: 3px solid #CCC !important;
}

.bl-lg {
    border-left: 4px solid #CCC !important;
}

.bl-xl {
    border-left: 5px solid #CCC !important;
}

.br-none {
    border-right: 0 solid #CCC !important;
}

.br-xs {
    border-right: 1px solid #CCC !important;
}

.br-sm {
    border-right: 2px solid #CCC !important;
}

.br-md {
    border-right: 3px solid #CCC !important;
}

.br-lg {
    border-right: 4px solid #CCC !important;
}

.br-xl {
    border-right: 5px solid #CCC !important;
}

.b-success {
    border-color: #67C23A !important;
}

.b-warning {
    border-color: #E6A23C !important;
}

.b-danger {
    border-color: #F56C6C !important;
}

.b-info {
    border-color: #1890FF !important;
}

.b-lighter-1 {
    border-color: #006AC3 !important;
}

.b-lighter-2 {
    border-color: #0B8FFF !important;
}

.b-primary {
    border-color: #004E90 !important;
}

.b-darker-1 {
    border-color: #003867 !important;
}

.b-darker-2 {
    border-color: #002D53 !important;
}

.b-scale-0 {
    border-color: #F7F7F7 !important;
}

.b-scale-1 {
    border-color: #ECECEC !important;
}

.b-scale-2 {
    border-color: #CCCCCC !important;
}

.b-scale-3 {
    border-color: #999999 !important;
}

.b-scale-4 {
    border-color: #585858 !important;
}

.b-scale-5 {
    border-color: #202020 !important;
}

.b-scale-6 {
    border-color: #151515 !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - MARGINS &  PADDINGS*/
/*================================================*/
.m-auto {
    margin: 0 auto !important;
}

.m-none {
    margin: 0 !important;
}

.m-xs {
    margin: 5px !important;
}

.m-sm {
    margin: 10px !important;
}

.m-md {
    margin: 15px !important;
}

.m-lg {
    margin: 20px !important;
}

.m-xl {
    margin: 25px !important;
}

.mt-none {
    margin-top: 0 !important;
}

.mt-xs {
    margin-top: 5px !important;
}

.mt-sm {
    margin-top: 10px !important;
}

.mt-md {
    margin-top: 15px !important;
}

.mt-lg {
    margin-top: 20px !important;
}

.mt-xl {
    margin-top: 25px !important;
}

.mb-none {
    margin-bottom: 0 !important;
}

.mb-xs {
    margin-bottom: 5px !important;
}

.mb-sm {
    margin-bottom: 10px !important;
}

.mb-md {
    margin-bottom: 15px !important;
}

.mb-lg {
    margin-bottom: 20px !important;
}

.mb-xl {
    margin-bottom: 25px !important;
}

.ml-none {
    margin-left: 0 !important;
}

.ml-xs {
    margin-left: 5px !important;
}

.ml-sm {
    margin-left: 10px !important;
}

.ml-md {
    margin-left: 15px !important;
}

.ml-lg {
    margin-left: 20px !important;
}

.ml-xl {
    margin-left: 25px !important;
}

.mr-none {
    margin-right: 0 !important;
}

.mr-xs {
    margin-right: 5px !important;
}

.mr-sm {
    margin-right: 10px !important;
}

.mr-md {
    margin-right: 15px !important;
}

.mr-lg {
    margin-right: 20px !important;
}

.mr-xl {
    margin-right: 25px !important;
}

.mv-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mv-xs {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mv-sm {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mv-md {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mv-lg {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mv-xl {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mh-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mh-xs {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mh-sm {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mh-md {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mh-lg {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mh-xl {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.p-none {
    padding: 0 !important;
}

.p-xs {
    padding: 5px !important;
}

.p-sm {
    padding: 10px !important;
}

.p-md {
    padding: 15px !important;
}

.p-lg {
    padding: 20px !important;
}

.p-xl {
    padding: 25px !important;
}

.pt-none {
    padding-top: 0 !important;
}

.pt-xs {
    padding-top: 5px !important;
}

.pt-sm {
    padding-top: 10px !important;
}

.pt-md {
    padding-top: 15px !important;
}

.pt-lg {
    padding-top: 20px !important;
}

.pt-xl {
    padding-top: 25px !important;
}

.pb-none {
    padding-bottom: 0 !important;
}

.pb-xs {
    padding-bottom: 5px !important;
}

.pb-sm {
    padding-bottom: 10px !important;
}

.pb-md {
    padding-bottom: 15px !important;
}

.pb-lg {
    padding-bottom: 20px !important;
}

.pb-xl {
    padding-bottom: 25px !important;
}

.pl-none {
    padding-left: 0 !important;
}

.pl-xs {
    padding-left: 5px !important;
}

.pl-sm {
    padding-left: 10px !important;
}

.pl-md {
    padding-left: 15px !important;
}

.pl-lg {
    padding-left: 20px !important;
}

.pl-xl {
    padding-left: 25px !important;
}

.pr-none {
    padding-right: 0 !important;
}

.pr-xs {
    padding-right: 5px !important;
}

.pr-sm {
    padding-right: 10px !important;
}

.pr-md {
    padding-right: 15px !important;
}

.pr-lg {
    padding-right: 20px !important;
}

.pr-xl {
    padding-right: 25px !important;
}

.pv-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pv-xs {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.pv-sm {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pv-md {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.pv-lg {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.pv-xl {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.ph-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ph-xs {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.ph-sm {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.ph-md {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.ph-lg {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.ph-xl {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - TEXT*/
/*================================================*/
.color-success {
    color: #67C23A !important;
}

.color-success a {
    color: #67C23A !important;
}

.color-success a:hover, .color-success a:active, .color-success a:focus {
    color: #A0CB5D !important;
}

.color-warning {
    color: #E6A23C !important;
}

.color-warning a {
    color: #E6A23C !important;
}

.color-warning a:hover, .color-warning a:active, .color-warning a:focus {
    color: #FEB756 !important;
}

.color-danger {
    color: #F56C6C !important;
}

.color-danger a {
    color: #F56C6C !important;
}

.color-danger a:hover, .color-danger a:active, .color-danger a:focus {
    color: #DB5B57 !important;
}

.color-info {
    color: #1890FF !important;
}

.color-info a {
    color: #1890FF !important;
}

.color-info a:hover, .color-info a:active, .color-info a:focus {
    color: #85D0E7 !important;
}

.color-lighter-1 {
    color: #006AC3 !important;
}

.color-lighter-1 a {
    color: #006AC3 !important;
}

.color-lighter-1 a:hover, .color-lighter-1 a:active, .color-lighter-1 a:focus {
    color: #0077DD !important;
}

.color-lighter-2 {
    color: #0B8FFF !important;
}

.color-lighter-2 a {
    color: #0B8FFF !important;
}

.color-lighter-2 a:hover, .color-lighter-2 a:active, .color-lighter-2 a:focus {
    color: #259BFF !important;
}

.color-primary {
    color: #004E90 !important;
}

.color-primary a {
    color: #004E90 !important;
}

.color-primary a:hover, .color-primary a:active, .color-primary a:focus {
    color: #005CAA !important;
}

.color-darker-1 {
    color: #003867 !important;
}

.color-darker-1 a {
    color: #003867 !important;
}

.color-darker-1 a:hover, .color-darker-1 a:active, .color-darker-1 a:focus {
    color: #004681 !important;
}

.color-darker-2 {
    color: #002D53 !important;
}

.color-darker-2 a {
    color: #002D53 !important;
}

.color-darker-2 a:hover, .color-darker-2 a:active, .color-darker-2 a:focus {
    color: #003B6C !important;
}

.color-dark {
    color: #000000 !important;
}

.color-dark a {
    color: #000000 !important;
}

.color-dark a:hover, .color-dark a:active, .color-dark a:focus {
    color: #1A1A1A !important;
}

.color-muted {
    color: #999999 !important;
}

.color-muted a {
    color: #999999 !important;
}

.color-muted a:hover, .color-muted a:active, .color-muted a:focus {
    color: #B3B3B3 !important;
}

.color-light {
    color: #FFFFFF !important;
}

.color-light a {
    color: #FFFFFF !important;
}

.color-light a:hover, .color-light a:active, .color-light a:focus {
    color: white !important;
}

.color-w {
    color: #FFF !important;
}

.color-w a {
    color: #FFF !important;
}

.color-b {
    color: #000 !important;
}

.color-b a {
    color: #000 !important;
}

.color-b a:hover, .color-b a:active, .color-b a:focus {
    color: #1A1A1A !important;
}

.text-xs {
    font-size: 9px;
    font-size: 0.69231rem;
}

.text-sm {
    font-size: 13px;
    font-size: 1rem;
}

.text-md {
    font-size: 17px;
    font-size: 1.30769rem;
}

.text-lg {
    font-size: 21px;
    font-size: 1.61538rem;
}

.text-xl {
    font-size: 29px;
    font-size: 2.23077rem;
}

.text-normal {
    font-weight: initial !important;
}

.text-bold {
    font-weight: bold !important;
}

.text-italic {
    font-style: italic !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.ws-nowrap {
    white-space: nowrap;
}

.code {
    background-color: #F9F2F4;
    color: #F56C6C !important;
    font-size: 12px !important;
    line-height: 14px !important;
    padding: 2px 3px;
    font-family: monospace;
    font-weight: initial;
    font-style: initial;
    text-transform: none;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* HELPERS - DISPLAY &  POSITIONS*/
/*================================================*/
.d-ib {
    display: inline-block;
}

.d-block {
    display: block;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

.va-middle {
    vertical-align: middle;
}

/* HELPERS - X-ELEMENTS*/
/*================================================*/
.input-group-addon {
    background-color: #FFF;
}
.x-success {
    background: #67C23A;
    border-color: #67C23A;
    color: #FFF;
}

.x-success:hover, .x-success:focus, .x-success:active, .x-success.x-o:hover, .x-success.x-o:focus, .x-success.x-o:active {
    background: #719A32;
    color: #FFF;
}

.x-success.x-o {
    color: #FFF;
}

.x-success.x-o:hover, .x-success.x-o:focus, .x-success.x-o:active {
    color: #FFF;
}

.x-warning {
    background: #E6A23C;
    border-color: #E6A23C;
}

.x-warning:hover, .x-warning:focus, .x-warning:active, .x-warning.x-o:hover, .x-warning.x-o:focus, .x-warning.x-o:active {
    background: #F79001;
    color: #FFF;
}

.x-warning.x-o {
    color: #E6A23C;
}

.x-warning.x-o:hover, .x-warning.x-o:focus, .x-warning.x-o:active {
    color: #FFF;
}

.x-danger {
    background: #F56C6C;
    border-color: #F56C6C;
    color: #FFF;
}

.x-danger:hover, .x-danger:focus, .x-danger:active, .x-danger.x-o:hover, .x-danger.x-o:focus, .x-danger.x-o:active {
    background: #B02A26;
    color: #FFF;
}

.x-danger.x-o {
    color: #F56C6C;
}

.x-danger.x-o:hover, .x-danger.x-o:focus, .x-danger.x-o:active {
    color: #FFF;
}
.x-info {
    color: #FFF;
    background: #1890FF;
    border-color: #1890FF !important;
}

.x-info:hover, .x-info:focus, .x-info:active, .x-info.x-o:hover, .x-info.x-o:focus, .x-info.x-o:active {
    background: #1890FF;
    color: #FFF;
}

.x-info.x-o {
    color: #1890FF;
}

.x-info.x-o:hover, .x-info.x-o:focus, .x-info.x-o:active {
    color: #FFF;
}

.x-lighter-1 {
    background: #006AC3;
    border-color: #006AC3;
    color: #FFFFFF;
}

.x-lighter-1:hover, .x-lighter-1:focus, .x-lighter-1:active, .x-lighter-1.x-o:hover, .x-lighter-1.x-o:focus, .x-lighter-1.x-o:active {
    background: #00549A;
    color: #FFFFFF;
}

.x-lighter-1.x-o {
    color: #006AC3;
}

.x-lighter-1.x-o:hover, .x-lighter-1.x-o:focus, .x-lighter-1.x-o:active {
    color: #FFFFFF;
}

.x-lighter-2 {
    background: #0B8FFF;
    border-color: #0B8FFF;
    color: #FFFFFF;
}

.x-lighter-2:hover, .x-lighter-2:focus, .x-lighter-2:active, .x-lighter-2.x-o:hover, .x-lighter-2.x-o:focus, .x-lighter-2.x-o:active {
    background: #007AE2;
    color: #FFFFFF;
}

.x-lighter-2.x-o {
    color: #0B8FFF;
}

.x-lighter-2.x-o:hover, .x-lighter-2.x-o:focus, .x-lighter-2.x-o:active {
    color: #FFFFFF;
}

.x-primary {
    background: #004E90;
    border-color: #004E90;
    color: #FFFFFF;
}

.x-primary:hover, .x-primary:focus, .x-primary:active, .x-primary.x-o:hover, .x-primary.x-o:focus, .x-primary.x-o:active {
    background: #003867;
    color: #FFFFFF;
}

.x-primary.x-o {
    color: #004E90;
}

.x-primary.x-o:hover, .x-primary.x-o:focus, .x-primary.x-o:active {
    color: #FFFFFF;
}

.x-darker-1 {
    background: #003867;
    border-color: #003867;
    color: #FFFFFF;
}

.x-darker-1:hover, .x-darker-1:focus, .x-darker-1:active, .x-darker-1.x-o:hover, .x-darker-1.x-o:focus, .x-darker-1.x-o:active {
    background: #00223E;
    color: #FFFFFF;
}

.x-darker-1.x-o {
    color: #003867;
}

.x-darker-1.x-o:hover, .x-darker-1.x-o:focus, .x-darker-1.x-o:active {
    color: #FFFFFF;
}

.x-darker-2 {
    background: #002D53;
    border-color: #002D53;
    color: #FFFFFF;
}

.x-darker-2:hover, .x-darker-2:focus, .x-darker-2:active, .x-darker-2.x-o:hover, .x-darker-2.x-o:focus, .x-darker-2.x-o:active {
    background: #00172A;
    color: #FFFFFF;
}

.x-darker-2.x-o {
    color: #002D53;
}

.x-darker-2.x-o:hover, .x-darker-2.x-o:focus, .x-darker-2.x-o:active {
    color: #FFFFFF;
}

.x-o {
    background: none;
    font-weight: bold;
    border: 1px solid;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* TEMPLATE DEMOS*/
/*================================================*/
html.margin-padding .panel {
    box-shadow: none;
}

html.margin-padding .code {
    display: block;
}

html.margin-padding .box-margin {
    border: 1px solid #FFF;
    background: #FFAD72;
    margin-bottom: 8px;
}

html.margin-padding .box-in {
    border: 1px solid #999999;
    background: #F7F7F7;
}

html.margin-padding .box-padding {
    margin-bottom: 8px;
}

html.margin-padding .box-padding .box-in {
    background: #A2FD8C;
}

.section-subtitle {
    margin-top: 15px;
}

.section-text {
    margin-top: -10px;
}

.highlight {
    color: #004E90;
    font-weight: bold;
}

.img-animated {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 200px;
}

.img-center {
    display: block;
    margin: auto;
}

.img-responsive {
    display: block;
    width: 100%;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - NANO-SCROLL*/
/*================================================*/
.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nano > .nano-content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.nano > .nano-content:focus {
    outline: thin dotted;
}

.nano > .nano-content::-webkit-scrollbar {
    display: none;
}

.nano.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}

.nano > .nano-pane {
    display: block !important;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 5px;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden \9;
    /* Target only IE7 and IE8 with this hack */
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.nano > .nano-pane > .nano-slider {
    background: #004E90;
    position: relative;
    margin: 0 1px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.nano:hover > .nano-pane {
    visibility: visible \9;
    /* Target only IE7 and IE8 with this hack */
    opacity: 0.99;
}

.nano .nano-pane.active, .nano .nano-pane.flashed {
    visibility: visible \9;
    /* Target only IE7 and IE8 with this hack */
    opacity: 0.99;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - PNOTIFY*/
/*================================================*/
.ui-pnotify {
    top: 15px;
    right: 15px;
}

.ui-pnotify .ui-pnotify-container {
    padding: 15px 15px 15px 65px;
    border: none;
}

.ui-pnotify .ui-pnotify-container.pnotify-sharp {
    border-radius: 0;
}

.ui-pnotify .ui-pnotify-container .ui-pnotify-icon {
    width: 50px;
    position: absolute;
    left: 5px;
    top: 15px;
    margin: 0;
    text-align: center;
}

.ui-pnotify .ui-pnotify-container .ui-pnotify-icon > span {
    height: 40px;
    width: 40px;
    display: inline-block;
    float: none;
    margin: 0;
    padding: 0;
    font-size: 26px;
    font-size: 2rem;
    line-height: 36px;
    line-height: 2.76923rem;
    border: 2px solid #FFF;
    border-radius: 50%;
}

.ui-pnotify .ui-pnotify-container .ui-pnotify-title {
    font-size: 16px;
    font-size: 1.23077rem;
    font-weight: bold;
}

.ui-pnotify .ui-pnotify-container .ui-pnotify-text {
    font-size: 13px;
    font-size: 1.5rem;
    line-height: 18px;
    line-height: 1.38462rem;
}

.ui-pnotify .ui-pnotify-container .ui-pnotify-closer,
.ui-pnotify .ui-pnotify-container .ui-pnotify-sticker {
    position: absolute;
    right: 12px;
    top: 6px;
}

.ui-pnotify .ui-pnotify-container .ui-pnotify-sticker {
    right: 26px;
}

.ui-pnotify.pnotify-no-icon .ui-pnotify-container {
    padding-left: 15px;
}

.ui-pnotify.stack-bar-top {
    right: 0;
    top: 0;
}

.ui-pnotify.stack-bar-bottom {
    margin-left: 15%;
    right: auto;
    bottom: 0;
    top: auto;
    left: auto;
}

.ui-pnotify.stack-modal {
    width: 100% !important;
    left: 0 !important;
    top: 35% !important;
    margin: 0;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

.ui-pnotify.stack-modal .ui-pnotify-container {
    padding: 30px 25% 15px 25%;
}

.ui-pnotify.stack-modal .ui-pnotify-container .ui-pnotify-title {
    font-size: 26px;
    font-size: 2rem;
    line-height: 36px;
    line-height: 2.76923rem;
    margin-top: 4px;
    margin-bottom: 15px;
}

.ui-pnotify.stack-modal .ui-pnotify-container .ui-pnotify-icon {
    top: 0;
    left: 0;
    position: relative;
    margin-right: 10px;
}

.ui-pnotify.stack-modal .ui-pnotify-container .ui-pnotify-text {
    margin-bottom: 20px;
}

.ui-pnotify.pnotify-primary .ui-pnotify-container.alert {
    background: #004E90 !important;
}

.ui-pnotify.pnotify-dark .ui-pnotify-container.alert {
    background: #000000 !important;
}

.ui-pnotify.pnotify-light .ui-pnotify-container.alert {
    background: #F7F7F7 !important;
    color: #999999 !important;
}

.ui-pnotify.pnotify-light .ui-pnotify-container.alert .ui-pnotify-icon > span {
    border-color: #999999;
}

.ui-pnotify-modal-overlay {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

@media only screen and (max-width: 767px) {
    .ui-pnotify.stack-bar-bottom {
        margin-left: 0;
        width: 100% !important;
    }

    .ui-pnotify.stack-modal .ui-pnotify-container {
        padding: 30px 10% 15px 10%;
    }
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - TOASTR*/
/*================================================*/
#toast-container > .toast {
    background-image: none !important;
}

#toast-container > .toast:before {
    position: fixed;
    font-family: FontAwesome;
    font-size: 24px;
    line-height: 18px;
    float: left;
    color: #FFF;
    padding-right: 0.5em;
    margin: auto 0.5em auto -1.5em;
}

#toast-container > div,
#toast-container > div:hover {
    -moz-box-shadow: 0 0 12px #999999;
    -webkit-box-shadow: 0 0 12px #999999;
    box-shadow: 0 0 12px #999999;
}

#toast-container > .toast-warning:before {
    content: "\f12a";
}

#toast-container > .toast-error:before {
    content: "\f071";
}

#toast-container > .toast-info:before {
    content: "\f05a";
}

#toast-container > .toast-success:before {
    content: "\f00c";
}

.toast-success {
    background: #67C23A;
}

.toast-info {
    background: #003867;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - OWL-CAROUSEL*/
/*================================================*/
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENTS - SELECT2*/
/*================================================*/
.select-tag-success + span .select2-selection__choice {
    background: #67C23A !important;
    color: #FFF !important;
}

.select-tag-warning + span .select2-selection__choice {
    background: #E6A23C !important;
    color: #FFF !important;
}

.select-tag-danger + span .select2-selection__choice {
    background: #F56C6C !important;
    color: #FFF !important;
}

.select-tag-info + span .select2-selection__choice {
    background: #1890FF !important;
    color: #FFF !important;
}

.select2-selection__choice__remove {
    color: #CCC !important;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* COMPONENT - HAMBURGER ICONS */
/*================================================*/
.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 40px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.5s;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 18.5px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: white;
}

.c-hamburger span::before,
.c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFF;
    content: "";
}

.c-hamburger--htla span {
    transition: transform 0.5s;
}

.c-hamburger--htla span::before {
    transform-origin: top right;
    transition: transform 0.5s, width 0.5s, top 0.5s;
}

.c-hamburger--htla span::after {
    transform-origin: bottom right;
    transition: transform 0.5s, width 0.5s, bottom 0.5s;
}

.c-hamburger--htla span {
    transform: rotate(180deg);
}

.c-hamburger--htla span::before,
.c-hamburger--htla span::after {
    width: 50%;
}

.c-hamburger--htla span::before {
    top: 0;
    transform: translateX(15px) translateY(1.5px) rotate(45deg);
}

.c-hamburger--htla span::after {
    bottom: 0;
    transform: translateX(15px) translateY(-1.5px) rotate(-45deg);
}

/* active state, i.e. menu open */
html.left-sidebar-collapsed .c-hamburger--htla span {
    transform: none;
}

html.left-sidebar-collapsed .c-hamburger--htla span::before,
html.left-sidebar-collapsed .c-hamburger--htla span::after {
    width: 100%;
}

html.left-sidebar-collapsed .c-hamburger--htla span::before {
    top: 7px;
    transform: none;
}

html.left-sidebar-collapsed .c-hamburger--htla span::after {
    top: -7px;
    transform: none;
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* BOOTSTRAP OVERWRITE*/
/*================================================*/
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background: #004E90;
    border-color: #004E90;
}

.pagination > li > a,
.pagination > li > span {
    color: #004E90;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #003867;
}

#imgCode {
    display: inline;
    margin-top: 0;
    width: 30%;
    height: 35px;
    border: 0;
    border-radius: 3px;
}
#canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
}
.copyright {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 30px;
    line-height: 30px;
    color: #FFF;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 1;
}
.copy{
    cursor:pointer!important;
}
.panel {
    margin-bottom: 0;
}
.logo a {
    color: #FFF !important;
}